From 649dab6afb1f819d1650a0eed5a482434f8931ca Mon Sep 17 00:00:00 2001 From: "Bernhart, Bryan" Date: Tue, 4 Apr 2023 13:57:01 -0700 Subject: [PATCH] Rename MemorySegment => HeapSegment. --- .github/workflows/.patches/dawn.diff | 2 +- README.md | 2 +- include/gpgmm_d3d12.h | 14 ++-- src/fuzzers/D3D12ResidencyManagerFuzzer.cpp | 6 +- src/gpgmm/d3d12/HeapD3D12.cpp | 12 +-- src/gpgmm/d3d12/HeapD3D12.h | 4 +- src/gpgmm/d3d12/JSONSerializerD3D12.cpp | 2 +- src/gpgmm/d3d12/ResidencyManagerD3D12.cpp | 81 +++++++++---------- src/gpgmm/d3d12/ResidencyManagerD3D12.h | 14 ++-- src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp | 8 +- .../d3d12/ResourceHeapAllocatorD3D12.cpp | 4 +- src/gpgmm/d3d12/UtilsD3D12.cpp | 6 +- src/gpgmm/d3d12/UtilsD3D12.h | 4 +- src/mvi/gpgmm_d3d12.cpp | 4 +- src/mvi/gpgmm_d3d12.h | 4 +- .../D3D12EventTraceReplay.cpp | 2 +- ...queuewritebuffertests_manywritebuffer.json | 2 +- ...ctml_samples_directmlxsuperresolution.json | 2 +- .../traces/webgpu_forest_demo.json | 2 +- ...nd2end_mobilenetv2nchwtests_nchwtest0.json | 2 +- .../traces/webnn_mobilenetv2_nchw.json | 2 +- .../end2end/D3D12ResidencyManagerTests.cpp | 28 +++---- 22 files changed, 98 insertions(+), 109 deletions(-) diff --git a/.github/workflows/.patches/dawn.diff b/.github/workflows/.patches/dawn.diff index 97c9ec5fc..17e94f731 100644 --- a/.github/workflows/.patches/dawn.diff +++ b/.github/workflows/.patches/dawn.diff @@ -765,7 +765,7 @@ index fe99a63ac..353e47b82 100644 - - return std::move(descriptorHeap); + heapDesc.SizeInBytes = mSizeIncrement * descriptorCount; -+ heapDesc.HeapSegmentGroup = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; ++ heapDesc.HeapSegment = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; + + CreateHeapCallback callback(mDevice->GetD3D12Device(), descriptorCount, mHeapType); + ComPtr descriptorHeap; diff --git a/README.md b/README.md index 94bb578d6..932992957 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Residency also works for non-resources too: ```cpp gpgmm::d3d12::HEAP_DESC shaderVisibleHeap = {}; shaderVisibleHeap.SizeInBytes = kHeapSize; -shaderVisibleHeap.HeapSegmentGroup = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; +shaderVisibleHeap.HeapSegment = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; ComPtr descriptorHeap; CreateHeapContext createHeapContext(heapDesc); diff --git a/include/gpgmm_d3d12.h b/include/gpgmm_d3d12.h index e64981741..73223c0ee 100644 --- a/include/gpgmm_d3d12.h +++ b/include/gpgmm_d3d12.h @@ -165,7 +165,7 @@ namespace gpgmm::d3d12 { Required parameter. */ - DXGI_MEMORY_SEGMENT_GROUP HeapSegmentGroup; + DXGI_MEMORY_SEGMENT_GROUP HeapSegment; /** \brief Specifies heaps options. @@ -583,23 +583,23 @@ namespace gpgmm::d3d12 { A reservation is the lowest amount of physical memory the application need to continue operation safely. - @param memorySegmentGroup Memory segment to reserve. + @param heapSegment Memory segment to reserve. @param availableForReservation Amount of memory to reserve, in bytes. @param[out] pCurrentReservationOut the amount of memory reserved, which may be less then the |reservation| when under video memory pressure. A value of nullptr will update but not return the current reservation. */ - virtual HRESULT SetVideoMemoryReservation( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, uint64_t availableForReservation, - uint64_t* pCurrentReservationOut = nullptr) = 0; + virtual HRESULT SetVideoMemoryReservation(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, + uint64_t availableForReservation, + uint64_t* pCurrentReservationOut = nullptr) = 0; /** \brief Get the current budget and memory usage. - @param memorySegmentGroup Memory segment to retrieve info from. + @param heapSegment Memory segment to retrieve info from. @param[out] pVideoMemoryInfoOut Pointer to DXGI_QUERY_VIDEO_MEMORY_INFO to populate. A value of nullptr will update but not return the current info. */ - virtual HRESULT QueryVideoMemoryInfo(const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + virtual HRESULT QueryVideoMemoryInfo(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfoOut) = 0; /** \brief Update the residency status of a heap. diff --git a/src/fuzzers/D3D12ResidencyManagerFuzzer.cpp b/src/fuzzers/D3D12ResidencyManagerFuzzer.cpp index cd63b5ae1..be24671e8 100644 --- a/src/fuzzers/D3D12ResidencyManagerFuzzer.cpp +++ b/src/fuzzers/D3D12ResidencyManagerFuzzer.cpp @@ -30,12 +30,12 @@ namespace { std::vector> gAllocationsBelowBudget = {}; uint64_t GetBudgetLeft(gpgmm::d3d12::IResidencyManager* const residencyManager, - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup) { + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment) { if (residencyManager == nullptr) { return 0; } DXGI_QUERY_VIDEO_MEMORY_INFO segment = {}; - gResidencyManager->QueryVideoMemoryInfo(memorySegmentGroup, &segment); + gResidencyManager->QueryVideoMemoryInfo(heapSegment, &segment); return (segment.Budget > segment.CurrentUsage) ? (segment.Budget - segment.CurrentUsage) : 0; } @@ -89,7 +89,7 @@ extern "C" int LLVMFuzzerInitialize(int* argc, char*** argv) { gDevice->GetCustomHeapProperties(0, allocationDesc.HeapType); const DXGI_MEMORY_SEGMENT_GROUP bufferMemorySegment = - gpgmm::d3d12::GetMemorySegmentGroup(heapProperties.MemoryPoolPreference, arch.UMA); + gpgmm::d3d12::GetHeapSegment(heapProperties.MemoryPoolPreference, arch.UMA); constexpr uint64_t kBufferMemorySize = GPGMM_MB_TO_BYTES(1); const D3D12_RESOURCE_DESC bufferDesc = CreateBufferDesc(kBufferMemorySize); diff --git a/src/gpgmm/d3d12/HeapD3D12.cpp b/src/gpgmm/d3d12/HeapD3D12.cpp index ce239c014..def8739d7 100644 --- a/src/gpgmm/d3d12/HeapD3D12.cpp +++ b/src/gpgmm/d3d12/HeapD3D12.cpp @@ -77,12 +77,12 @@ namespace gpgmm::d3d12 { // Ensure enough budget exists before creating the heap to avoid an out-of-memory error. if (!isResidencyDisabled && (descriptor.Flags & HEAP_FLAG_ALWAYS_IN_BUDGET)) { uint64_t bytesEvicted = descriptor.SizeInBytes; - ReturnIfFailed(residencyManager->EvictInternal( - descriptor.SizeInBytes, descriptor.HeapSegmentGroup, &bytesEvicted)); + ReturnIfFailed(residencyManager->EvictInternal(descriptor.SizeInBytes, + descriptor.HeapSegment, &bytesEvicted)); if (bytesEvicted < descriptor.SizeInBytes) { DXGI_QUERY_VIDEO_MEMORY_INFO currentVideoInfo = {}; - if (SUCCEEDED(residencyManager->QueryVideoMemoryInfo(descriptor.HeapSegmentGroup, + if (SUCCEEDED(residencyManager->QueryVideoMemoryInfo(descriptor.HeapSegment, ¤tVideoInfo))) { gpgmm::ErrorLog(MessageId::kBudgetExceeded) << "Unable to create heap because not enough budget exists (" @@ -173,7 +173,7 @@ namespace gpgmm::d3d12 { bool isResidencyDisabled) : MemoryBase(descriptor.SizeInBytes, descriptor.Alignment), mPageable(std::move(pageable)), - mMemorySegmentGroup(descriptor.HeapSegmentGroup), + mHeapSegment(descriptor.HeapSegment), mResidencyLock(0), mIsResidencyDisabled(isResidencyDisabled), mState(RESIDENCY_STATUS_UNKNOWN) { @@ -214,8 +214,8 @@ namespace gpgmm::d3d12 { mLastUsedFenceValue = fenceValue; } - DXGI_MEMORY_SEGMENT_GROUP Heap::GetMemorySegmentGroup() const { - return mMemorySegmentGroup; + DXGI_MEMORY_SEGMENT_GROUP Heap::GetHeapSegment() const { + return mHeapSegment; } void Heap::AddResidencyLockRef() { diff --git a/src/gpgmm/d3d12/HeapD3D12.h b/src/gpgmm/d3d12/HeapD3D12.h index 82594da00..fddfa4f1a 100644 --- a/src/gpgmm/d3d12/HeapD3D12.h +++ b/src/gpgmm/d3d12/HeapD3D12.h @@ -63,7 +63,7 @@ namespace gpgmm::d3d12 { bool IsExternal() const override; HRESULT SetDebugNameImpl(LPCWSTR name) override; - DXGI_MEMORY_SEGMENT_GROUP GetMemorySegmentGroup() const; + DXGI_MEMORY_SEGMENT_GROUP GetHeapSegment() const; // The residency manager must know the last fence value that any portion of the pageable was // submitted to be used so that we can ensure this pageable stays resident in memory at @@ -84,7 +84,7 @@ namespace gpgmm::d3d12 { // mLastUsedFenceValue denotes the last time this pageable was submitted to the GPU. uint64_t mLastUsedFenceValue = 0; - DXGI_MEMORY_SEGMENT_GROUP mMemorySegmentGroup; + DXGI_MEMORY_SEGMENT_GROUP mHeapSegment; RefCounted mResidencyLock; bool mIsResidencyDisabled; RESIDENCY_STATUS mState; diff --git a/src/gpgmm/d3d12/JSONSerializerD3D12.cpp b/src/gpgmm/d3d12/JSONSerializerD3D12.cpp index aa8f0f677..bfe8e9329 100644 --- a/src/gpgmm/d3d12/JSONSerializerD3D12.cpp +++ b/src/gpgmm/d3d12/JSONSerializerD3D12.cpp @@ -162,7 +162,7 @@ namespace gpgmm::d3d12 { JSONDict dict; dict.AddItem("SizeInBytes", desc.SizeInBytes); dict.AddItem("Alignment", desc.Alignment); - dict.AddItem("HeapSegmentGroup", desc.HeapSegmentGroup); + dict.AddItem("HeapSegment", desc.HeapSegment); dict.AddItem("Flags", desc.Flags); if (desc.DebugName != nullptr) { dict.AddItem("DebugName", WCharToUTF8(desc.DebugName)); diff --git a/src/gpgmm/d3d12/ResidencyManagerD3D12.cpp b/src/gpgmm/d3d12/ResidencyManagerD3D12.cpp index 2b2835856..88499ad75 100644 --- a/src/gpgmm/d3d12/ResidencyManagerD3D12.cpp +++ b/src/gpgmm/d3d12/ResidencyManagerD3D12.cpp @@ -329,9 +329,9 @@ namespace gpgmm::d3d12 { if (!heap->IsInList() && !heap->IsResidencyLocked()) { ComPtr pageable; ReturnIfFailed(heap->QueryInterface(IID_PPV_ARGS(&pageable))); - ReturnIfFailedDevice(MakeResident(heap->GetMemorySegmentGroup(), heap->GetSize(), 1, - pageable.GetAddressOf()), - mDevice); + ReturnIfFailedDevice( + MakeResident(heap->GetHeapSegment(), heap->GetSize(), 1, pageable.GetAddressOf()), + mDevice); heap->SetResidencyState(RESIDENCY_STATUS_CURRENT_RESIDENT); // Untracked heaps, created not resident, are not already attributed toward residency @@ -417,7 +417,7 @@ namespace gpgmm::d3d12 { return E_INVALIDARG; } - LRUCache* cache = GetVideoMemorySegmentCache(heap->GetMemorySegmentGroup()); + LRUCache* cache = GetVideoMemorySegmentCache(heap->GetHeapSegment()); ASSERT(cache != nullptr); heap->InsertAfter(cache->tail()); @@ -428,8 +428,8 @@ namespace gpgmm::d3d12 { } DXGI_QUERY_VIDEO_MEMORY_INFO* ResidencyManager::GetVideoMemoryInfo( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup) { - switch (memorySegmentGroup) { + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment) { + switch (heapSegment) { case DXGI_MEMORY_SEGMENT_GROUP_LOCAL: return &mLocalVideoMemorySegment.Info; case DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL: @@ -441,8 +441,8 @@ namespace gpgmm::d3d12 { } ResidencyManager::LRUCache* ResidencyManager::GetVideoMemorySegmentCache( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup) { - switch (memorySegmentGroup) { + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment) { + switch (heapSegment) { case DXGI_MEMORY_SEGMENT_GROUP_LOCAL: return &mLocalVideoMemorySegment.cache; case DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL: @@ -457,20 +457,19 @@ namespace gpgmm::d3d12 { // manager. Returns the amount of memory reserved, which may be less then the |reservation| when // under video memory pressure. HRESULT ResidencyManager::SetVideoMemoryReservation( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, uint64_t availableForReservation, uint64_t* pCurrentReservationOut) { TRACE_EVENT0(TraceEventCategory::kDefault, "ResidencyManager.SetVideoMemoryReservation"); std::lock_guard lock(mMutex); - DXGI_QUERY_VIDEO_MEMORY_INFO* videoMemorySegmentInfo = - GetVideoMemoryInfo(memorySegmentGroup); + DXGI_QUERY_VIDEO_MEMORY_INFO* videoMemorySegmentInfo = GetVideoMemoryInfo(heapSegment); videoMemorySegmentInfo->AvailableForReservation = availableForReservation; if (IsBudgetNotificationUpdatesDisabled()) { - ReturnIfFailed(UpdateMemorySegmentInternal(memorySegmentGroup)); + ReturnIfFailed(UpdateMemorySegmentInternal(heapSegment)); } if (pCurrentReservationOut != nullptr) { @@ -481,21 +480,20 @@ namespace gpgmm::d3d12 { } HRESULT ResidencyManager::UpdateMemorySegmentInternal( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup) { + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment) { // For UMA adapters, non-local is always zero. - if (mIsUMA && memorySegmentGroup == DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL) { + if (mIsUMA && heapSegment == DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL) { return S_OK; } DXGI_QUERY_VIDEO_MEMORY_INFO queryVideoMemoryInfoOut; - ReturnIfFailed( - mAdapter->QueryVideoMemoryInfo(0, memorySegmentGroup, &queryVideoMemoryInfoOut)); + ReturnIfFailed(mAdapter->QueryVideoMemoryInfo(0, heapSegment, &queryVideoMemoryInfoOut)); // The video memory budget provided by QueryVideoMemoryInfo is defined by the operating // system, and may be lower than expected in certain scenarios. Under memory pressure, we // cap the external reservation to half the available budget, which prevents the external // component from consuming a disproportionate share of memory and ensures forward progress. - DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfo = GetVideoMemoryInfo(memorySegmentGroup); + DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfo = GetVideoMemoryInfo(heapSegment); pVideoMemoryInfo->CurrentReservation = std::min( static_cast(queryVideoMemoryInfoOut.Budget * mMinPctOfBudgetToReserve), @@ -508,19 +506,16 @@ namespace gpgmm::d3d12 { if (previousUsage > pVideoMemoryInfo->CurrentUsage && GPGMM_BYTES_TO_MB(previousUsage - pVideoMemoryInfo->CurrentUsage) > 0) { gpgmm::DebugLog(MessageId::kMemoryUsageUpdated) - << GetMemorySegmentName(memorySegmentGroup, mIsUMA) - << " GPU memory usage went down by " + << GetMemorySegmentName(heapSegment, mIsUMA) << " GPU memory usage went down by " << GPGMM_BYTES_TO_MB(previousUsage - pVideoMemoryInfo->CurrentUsage) << " MBs."; } else if (previousUsage < pVideoMemoryInfo->CurrentUsage && GPGMM_BYTES_TO_MB(pVideoMemoryInfo->CurrentUsage - previousUsage) > 0) { gpgmm::DebugLog(MessageId::kMemoryUsageUpdated) - << GetMemorySegmentName(memorySegmentGroup, mIsUMA) - << " GPU memory usage went up by " + << GetMemorySegmentName(heapSegment, mIsUMA) << " GPU memory usage went up by " << GPGMM_BYTES_TO_MB(pVideoMemoryInfo->CurrentUsage - previousUsage) << " MBs."; } else if (previousUsage < pVideoMemoryInfo->CurrentUsage) { gpgmm::DebugLog(MessageId::kMemoryUsageUpdated) - << GetMemorySegmentName(memorySegmentGroup, mIsUMA) - << " GPU memory usage went up by " + << GetMemorySegmentName(heapSegment, mIsUMA) << " GPU memory usage went up by " << GPGMM_BYTES_TO_MB(pVideoMemoryInfo->CurrentUsage) << " MBs."; } @@ -534,14 +529,13 @@ namespace gpgmm::d3d12 { if (previousBudget > pVideoMemoryInfo->Budget && GPGMM_BYTES_TO_MB(previousBudget - pVideoMemoryInfo->Budget) > 0) { gpgmm::DebugLog(MessageId::kMemoryUsageUpdated) - << GetMemorySegmentName(memorySegmentGroup, mIsUMA) + << GetMemorySegmentName(heapSegment, mIsUMA) << " GPU memory budget went down by " << GPGMM_BYTES_TO_MB(previousBudget - pVideoMemoryInfo->Budget) << " MBs."; } else if (previousBudget < pVideoMemoryInfo->Budget && GPGMM_BYTES_TO_MB(pVideoMemoryInfo->Budget - previousBudget) > 0) { gpgmm::DebugLog(MessageId::kMemoryUsageUpdated) - << GetMemorySegmentName(memorySegmentGroup, mIsUMA) - << " GPU memory budget went up by " + << GetMemorySegmentName(heapSegment, mIsUMA) << " GPU memory budget went up by " << GPGMM_BYTES_TO_MB(pVideoMemoryInfo->Budget - previousBudget) << " MBs."; } } @@ -550,8 +544,7 @@ namespace gpgmm::d3d12 { if (pVideoMemoryInfo->Budget > 0 && pVideoMemoryInfo->CurrentUsage > pVideoMemoryInfo->Budget) { WarnEvent(MessageId::kBudgetExceeded, this) - << GetMemorySegmentName(memorySegmentGroup, mIsUMA) - << " GPU memory usage exceeds budget: " + << GetMemorySegmentName(heapSegment, mIsUMA) << " GPU memory usage exceeds budget: " << GPGMM_BYTES_TO_MB(pVideoMemoryInfo->CurrentUsage) << " vs " << GPGMM_BYTES_TO_MB(pVideoMemoryInfo->Budget) << " MBs."; } else { @@ -560,7 +553,7 @@ namespace gpgmm::d3d12 { if (pVideoMemoryInfo->Budget > 0 && currentUsageOfBudget > kMinCurrentUsageOfBudgetReportingThreshold) { EventMessage message = WarnEvent(MessageId::kBudgetExceeded, this); - message << GetMemorySegmentName(memorySegmentGroup, mIsUMA) + message << GetMemorySegmentName(heapSegment, mIsUMA) << " GPU memory usage is above budget threshold: " << uint64_t(currentUsageOfBudget * 100) << "% vs " << uint64_t(kMinCurrentUsageOfBudgetReportingThreshold * 100) << "%"; @@ -584,15 +577,14 @@ namespace gpgmm::d3d12 { // Not all segments could be used. GPGMM_TRACE_EVENT_METRIC( - ToString(GetMemorySegmentName(memorySegmentGroup, mIsUMA), " GPU memory usage (%)") - .c_str(), + ToString(GetMemorySegmentName(heapSegment, mIsUMA), " GPU memory usage (%)").c_str(), (pVideoMemoryInfo->CurrentUsage > pVideoMemoryInfo->Budget) ? 100 : SafeDivide(pVideoMemoryInfo->CurrentUsage, pVideoMemoryInfo->Budget) * 100); // Reservations are optional. GPGMM_TRACE_EVENT_METRIC( - ToString(GetMemorySegmentName(memorySegmentGroup, mIsUMA), " GPU memory reserved (MB)") + ToString(GetMemorySegmentName(heapSegment, mIsUMA), " GPU memory reserved (MB)") .c_str(), GPGMM_BYTES_TO_MB(pVideoMemoryInfo->CurrentReservation)); @@ -607,30 +599,30 @@ namespace gpgmm::d3d12 { } HRESULT ResidencyManager::QueryVideoMemoryInfo( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfoOut) { std::lock_guard lock(mMutex); if (IsBudgetNotificationUpdatesDisabled()) { - ReturnIfFailed(UpdateMemorySegmentInternal(memorySegmentGroup)); + ReturnIfFailed(UpdateMemorySegmentInternal(heapSegment)); } if (pVideoMemoryInfoOut != nullptr) { - *pVideoMemoryInfoOut = *GetVideoMemoryInfo(memorySegmentGroup); + *pVideoMemoryInfoOut = *GetVideoMemoryInfo(heapSegment); } return S_OK; } - // Evicts |evictSizeInBytes| bytes of memory in |memorySegmentGroup| and returns the number of + // Evicts |evictSizeInBytes| bytes of memory in |heapSegment| and returns the number of // bytes evicted. HRESULT ResidencyManager::EvictInternal(uint64_t bytesToEvict, - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, uint64_t* bytesEvictedOut) { TRACE_EVENT0(TraceEventCategory::kDefault, "ResidencyManager.Evict"); - DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfo = GetVideoMemoryInfo(memorySegmentGroup); + DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfo = GetVideoMemoryInfo(heapSegment); if (IsBudgetNotificationUpdatesDisabled()) { - ReturnIfFailed(UpdateMemorySegmentInternal(memorySegmentGroup)); + ReturnIfFailed(UpdateMemorySegmentInternal(heapSegment)); } // If a budget wasn't provided, it not possible to evict. This is because either the budget @@ -670,7 +662,7 @@ namespace gpgmm::d3d12 { // emptying the cache is undesirable, because it can mean either 1) the cache is not // accurately accounting for GPU allocations, or 2) an external component is // using all of the budget and is starving us, which will cause thrash. - LRUCache* cache = GetVideoMemorySegmentCache(memorySegmentGroup); + LRUCache* cache = GetVideoMemorySegmentCache(heapSegment); ASSERT(cache != nullptr); if (cache->empty()) { @@ -777,7 +769,7 @@ namespace gpgmm::d3d12 { ComPtr pageable; ReturnIfFailed(heap->QueryInterface(IID_PPV_ARGS(&pageable))); - if (heap->GetMemorySegmentGroup() == DXGI_MEMORY_SEGMENT_GROUP_LOCAL) { + if (heap->GetHeapSegment() == DXGI_MEMORY_SEGMENT_GROUP_LOCAL) { localSizeToMakeResident += heap->GetSize(); localHeapsToMakeResident.push_back(pageable.Get()); } else { @@ -862,13 +854,13 @@ namespace gpgmm::d3d12 { return S_OK; } - HRESULT ResidencyManager::MakeResident(const DXGI_MEMORY_SEGMENT_GROUP memorySegmentGroup, + HRESULT ResidencyManager::MakeResident(const DXGI_MEMORY_SEGMENT_GROUP heapSegment, uint64_t sizeToMakeResident, uint32_t numberOfObjectsToMakeResident, ID3D12Pageable** allocations) { TRACE_EVENT0(TraceEventCategory::kDefault, "ResidencyManager.MakeResident"); - ReturnIfFailed(EvictInternal(sizeToMakeResident, memorySegmentGroup, nullptr)); + ReturnIfFailed(EvictInternal(sizeToMakeResident, heapSegment, nullptr)); DebugEvent(MessageId::kBudgetExceeded, this) << "GPU page-in. Number of allocations: " << numberOfObjectsToMakeResident << " (" @@ -896,8 +888,7 @@ namespace gpgmm::d3d12 { // If nothing can be evicted after MakeResident has failed, we cannot continue // execution and must throw a fatal error. uint64_t evictedSizeInBytes = 0; - ReturnIfFailed( - EvictInternal(mEvictSizeInBytes, memorySegmentGroup, &evictedSizeInBytes)); + ReturnIfFailed(EvictInternal(mEvictSizeInBytes, heapSegment, &evictedSizeInBytes)); if (evictedSizeInBytes == 0) { gpgmm::ErrorLog(MessageId::kBudgetInvalid) << "Unable to evict enough heaps to stay within budget. This " diff --git a/src/gpgmm/d3d12/ResidencyManagerD3D12.h b/src/gpgmm/d3d12/ResidencyManagerD3D12.h index f0c8be6a7..7c6e68055 100644 --- a/src/gpgmm/d3d12/ResidencyManagerD3D12.h +++ b/src/gpgmm/d3d12/ResidencyManagerD3D12.h @@ -57,11 +57,11 @@ namespace gpgmm::d3d12 { IResidencyList* const* ppResidencyLists, uint32_t count) override; - HRESULT SetVideoMemoryReservation(const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + HRESULT SetVideoMemoryReservation(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, uint64_t availableForReservation, uint64_t* pCurrentReservationOut = nullptr) override; - HRESULT QueryVideoMemoryInfo(const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + HRESULT QueryVideoMemoryInfo(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfoOut) override; HRESULT SetResidencyState(IHeap* pHeap, const RESIDENCY_STATUS& state) override; @@ -80,7 +80,7 @@ namespace gpgmm::d3d12 { std::unique_ptr caps); HRESULT EvictInternal(uint64_t bytesToEvict, - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, uint64_t* bytesEvictedOut = nullptr); HRESULT InsertHeap(Heap* heap); @@ -109,17 +109,17 @@ namespace gpgmm::d3d12 { DXGI_QUERY_VIDEO_MEMORY_INFO Info = {}; }; - HRESULT MakeResident(const DXGI_MEMORY_SEGMENT_GROUP memorySegmentGroup, + HRESULT MakeResident(const DXGI_MEMORY_SEGMENT_GROUP heapSegment, uint64_t sizeToMakeResident, uint32_t numberOfObjectsToMakeResident, ID3D12Pageable** allocations); - LRUCache* GetVideoMemorySegmentCache(const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup); + LRUCache* GetVideoMemorySegmentCache(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment); DXGI_QUERY_VIDEO_MEMORY_INFO* GetVideoMemoryInfo( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup); + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment); - HRESULT UpdateMemorySegmentInternal(const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup); + HRESULT UpdateMemorySegmentInternal(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment); HRESULT StartBudgetNotificationUpdates(); void StopBudgetNotificationUpdates(); diff --git a/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp b/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp index a5887b281..66b0ff18f 100644 --- a/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp +++ b/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp @@ -1118,8 +1118,8 @@ namespace gpgmm::d3d12 { heapProperties.MemoryPoolPreference = GetMemoryPool(heapProperties, residencyManager->IsUMA()); - const DXGI_MEMORY_SEGMENT_GROUP segment = GetMemorySegmentGroup( - heapProperties.MemoryPoolPreference, residencyManager->IsUMA()); + const DXGI_MEMORY_SEGMENT_GROUP segment = + GetHeapSegment(heapProperties.MemoryPoolPreference, residencyManager->IsUMA()); DXGI_QUERY_VIDEO_MEMORY_INFO* currentVideoInfo = residencyManager->GetVideoMemoryInfo(segment); @@ -1484,8 +1484,8 @@ namespace gpgmm::d3d12 { if (IsResidencyEnabled()) { resourceHeapDesc.Flags |= GetHeapFlags(heapFlags, mIsAlwaysCreatedInBudget); - resourceHeapDesc.HeapSegmentGroup = GetMemorySegmentGroup( - heapProperties.MemoryPoolPreference, mResidencyManager->IsUMA()); + resourceHeapDesc.HeapSegment = + GetHeapSegment(heapProperties.MemoryPoolPreference, mResidencyManager->IsUMA()); } // Since residency is per heap, every committed resource is wrapped in a heap object. diff --git a/src/gpgmm/d3d12/ResourceHeapAllocatorD3D12.cpp b/src/gpgmm/d3d12/ResourceHeapAllocatorD3D12.cpp index d495b80da..6df730f7e 100644 --- a/src/gpgmm/d3d12/ResourceHeapAllocatorD3D12.cpp +++ b/src/gpgmm/d3d12/ResourceHeapAllocatorD3D12.cpp @@ -62,8 +62,8 @@ namespace gpgmm::d3d12 { const bool isResidencyEnabled = (mResidencyManager != nullptr); if (isResidencyEnabled) { resourceHeapDesc.Flags |= GetHeapFlags(mHeapFlags, mIsAlwaysCreatedInBudget); - resourceHeapDesc.HeapSegmentGroup = GetMemorySegmentGroup( - mHeapProperties.MemoryPoolPreference, mResidencyManager->IsUMA()); + resourceHeapDesc.HeapSegment = + GetHeapSegment(mHeapProperties.MemoryPoolPreference, mResidencyManager->IsUMA()); } D3D12_HEAP_DESC heapDesc = {}; diff --git a/src/gpgmm/d3d12/UtilsD3D12.cpp b/src/gpgmm/d3d12/UtilsD3D12.cpp index c6c6fae6e..104c63d98 100644 --- a/src/gpgmm/d3d12/UtilsD3D12.cpp +++ b/src/gpgmm/d3d12/UtilsD3D12.cpp @@ -436,7 +436,7 @@ namespace gpgmm::d3d12 { return object->SetName(name); } - DXGI_MEMORY_SEGMENT_GROUP GetMemorySegmentGroup(D3D12_MEMORY_POOL memoryPool, bool isUMA) { + DXGI_MEMORY_SEGMENT_GROUP GetHeapSegment(D3D12_MEMORY_POOL memoryPool, bool isUMA) { if (isUMA) { return DXGI_MEMORY_SEGMENT_GROUP_LOCAL; } @@ -448,12 +448,12 @@ namespace gpgmm::d3d12 { return DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL; } - const char* GetMemorySegmentName(DXGI_MEMORY_SEGMENT_GROUP memorySegmentGroup, bool isUMA) { + const char* GetMemorySegmentName(DXGI_MEMORY_SEGMENT_GROUP heapSegment, bool isUMA) { if (isUMA) { return "Shared"; } - switch (memorySegmentGroup) { + switch (heapSegment) { case DXGI_MEMORY_SEGMENT_GROUP_LOCAL: return "Dedicated"; diff --git a/src/gpgmm/d3d12/UtilsD3D12.h b/src/gpgmm/d3d12/UtilsD3D12.h index 8fc74706e..a368cc51b 100644 --- a/src/gpgmm/d3d12/UtilsD3D12.h +++ b/src/gpgmm/d3d12/UtilsD3D12.h @@ -27,8 +27,8 @@ namespace gpgmm::d3d12 { bool IsDepthFormat(DXGI_FORMAT format); bool IsAllowedToUseSmallAlignment(const D3D12_RESOURCE_DESC& Desc); HRESULT SetDebugObjectName(ID3D12Object* object, LPCWSTR name); - DXGI_MEMORY_SEGMENT_GROUP GetMemorySegmentGroup(D3D12_MEMORY_POOL memoryPool, bool isUMA); - const char* GetMemorySegmentName(DXGI_MEMORY_SEGMENT_GROUP memorySegmentGroup, bool isUMA); + DXGI_MEMORY_SEGMENT_GROUP GetHeapSegment(D3D12_MEMORY_POOL memoryPool, bool isUMA); + const char* GetMemorySegmentName(DXGI_MEMORY_SEGMENT_GROUP heapSegment, bool isUMA); ID3D12Device* GetDevice(ID3D12DeviceChild* pDeviceChild); } // namespace gpgmm::d3d12 diff --git a/src/mvi/gpgmm_d3d12.cpp b/src/mvi/gpgmm_d3d12.cpp index febbb9791..09b2e994f 100644 --- a/src/mvi/gpgmm_d3d12.cpp +++ b/src/mvi/gpgmm_d3d12.cpp @@ -188,14 +188,14 @@ namespace gpgmm::d3d12 { } HRESULT ResidencyManager::SetVideoMemoryReservation( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, uint64_t availableForReservation, uint64_t* pCurrentReservationOut) { return S_OK; } HRESULT ResidencyManager::QueryVideoMemoryInfo( - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfoOut) { return S_OK; } diff --git a/src/mvi/gpgmm_d3d12.h b/src/mvi/gpgmm_d3d12.h index fd5ad77d3..de4057e07 100644 --- a/src/mvi/gpgmm_d3d12.h +++ b/src/mvi/gpgmm_d3d12.h @@ -119,10 +119,10 @@ namespace gpgmm::d3d12 { ID3D12CommandList* const* ppCommandLists, IResidencyList* const* ppResidencyLists, uint32_t count) override; - HRESULT SetVideoMemoryReservation(const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + HRESULT SetVideoMemoryReservation(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, uint64_t availableForReservation, uint64_t* pCurrentReservationOut = nullptr) override; - HRESULT QueryVideoMemoryInfo(const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup, + HRESULT QueryVideoMemoryInfo(const DXGI_MEMORY_SEGMENT_GROUP& heapSegment, DXGI_QUERY_VIDEO_MEMORY_INFO* pVideoMemoryInfoOut) override; HRESULT SetResidencyState(IHeap* pHeap, const RESIDENCY_STATUS& state) override; HRESULT QueryStats(RESIDENCY_MANAGER_STATS* pResidencyManagerStats) override; diff --git a/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp b/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp index 95c0f0358..825c6d358 100644 --- a/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp +++ b/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp @@ -530,7 +530,7 @@ class D3D12EventTraceReplay : public D3D12TestBase, public CaptureReplayTestWith ConvertToD3D12HeapProperties(args["Heap"]["Properties"]); HEAP_DESC resourceHeapDesc = {}; - resourceHeapDesc.HeapSegmentGroup = GetMemorySegmentGroup( + resourceHeapDesc.HeapSegment = GetHeapSegment( heapProperties.MemoryPoolPreference, mCaps->IsAdapterUMA()); resourceHeapDesc = ConvertAndApplyToHeapDesc(args["Heap"], resourceHeapDesc); diff --git a/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json b/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json index 4ea3907a1..12fbc29f0 100644 --- a/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json +++ b/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 32208, "ts": 303, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 0, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8a720", "tid": 35568, "ts": 46, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8a720", "tid": 35568, "ts": 274, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234fff803c0", "tid": 35568, "ts": 388, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15f00", "tid": 35568, "ts": 622, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16bf0", "tid": 35568, "ts": 2668, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce164a0", "tid": 35568, "ts": 4435, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce162f0", "tid": 35568, "ts": 4894, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16890", "tid": 35568, "ts": 5037, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16d10", "tid": 35568, "ts": 5254, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17070", "tid": 35568, "ts": 5687, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16e30", "tid": 35568, "ts": 6479, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16ec0", "tid": 35568, "ts": 8125, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16020", "tid": 35568, "ts": 10427, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce174f0", "tid": 35568, "ts": 10550, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16380", "tid": 35568, "ts": 10665, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16fe0", "tid": 35568, "ts": 10875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17190", "tid": 35568, "ts": 11327, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17580", "tid": 35568, "ts": 12152, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16770", "tid": 35568, "ts": 13923, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16c80", "tid": 35568, "ts": 15511, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17610", "tid": 35568, "ts": 15679, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce172b0", "tid": 35568, "ts": 15886, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15d50", "tid": 35568, "ts": 16144, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17340", "tid": 35568, "ts": 17821, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16410", "tid": 35568, "ts": 18568, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16920", "tid": 35568, "ts": 20392, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15e70", "tid": 35568, "ts": 21976, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17c40", "tid": 35568, "ts": 22085, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16800", "tid": 35568, "ts": 22195, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce173d0", "tid": 35568, "ts": 22405, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16a40", "tid": 35568, "ts": 22842, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce160b0", "tid": 35568, "ts": 23664, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17460", "tid": 35568, "ts": 25331, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce176a0", "tid": 35568, "ts": 27044, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17730", "tid": 35568, "ts": 27179, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16650", "tid": 35568, "ts": 27324, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17a00", "tid": 35568, "ts": 27560, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17850", "tid": 35568, "ts": 28030, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17a90", "tid": 35568, "ts": 28821, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16140", "tid": 35568, "ts": 30404, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15de0", "tid": 35568, "ts": 34340, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce166e0", "tid": 35568, "ts": 34450, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15f90", "tid": 35568, "ts": 34560, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce161d0", "tid": 35568, "ts": 34770, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae520", "tid": 35568, "ts": 35276, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aee20", "tid": 35568, "ts": 36333, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae760", "tid": 35568, "ts": 37908, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af4e0", "tid": 35568, "ts": 39508, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aeeb0", "tid": 35568, "ts": 39632, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af180", "tid": 35568, "ts": 39772, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b00b0", "tid": 35568, "ts": 39983, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af600", "tid": 35568, "ts": 40424, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afa80", "tid": 35568, "ts": 41207, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae490", "tid": 35568, "ts": 42890, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aeb50", "tid": 35568, "ts": 44687, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae7f0", "tid": 35568, "ts": 44799, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af060", "tid": 35568, "ts": 44909, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae640", "tid": 35568, "ts": 45127, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aebe0", "tid": 35568, "ts": 45558, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae880", "tid": 35568, "ts": 46304, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae5b0", "tid": 35568, "ts": 47910, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aed90", "tid": 35568, "ts": 49478, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aef40", "tid": 35568, "ts": 49586, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af570", "tid": 35568, "ts": 49724, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afd50", "tid": 35568, "ts": 49947, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae910", "tid": 35568, "ts": 50360, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af690", "tid": 35568, "ts": 51184, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afe70", "tid": 35568, "ts": 52776, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aefd0", "tid": 35568, "ts": 54606, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af720", "tid": 35568, "ts": 54717, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af8d0", "tid": 35568, "ts": 54827, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae9a0", "tid": 35568, "ts": 55049, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af210", "tid": 35568, "ts": 55500, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af7b0", "tid": 35568, "ts": 56305, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af840", "tid": 35568, "ts": 58064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aea30", "tid": 35568, "ts": 59642, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aeac0", "tid": 35568, "ts": 59751, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae6d0", "tid": 35568, "ts": 59887, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af960", "tid": 35568, "ts": 60097, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afc30", "tid": 35568, "ts": 60579, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae400", "tid": 35568, "ts": 61331, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aec70", "tid": 35568, "ts": 68101, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af9f0", "tid": 35568, "ts": 69697, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afba0", "tid": 35568, "ts": 69808, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af0f0", "tid": 35568, "ts": 69918, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aed00", "tid": 35568, "ts": 70133, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af2a0", "tid": 35568, "ts": 70570, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234fff803c0", "tid": 35568, "ts": 71302, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 71396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4000000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 71860, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca840", "tid": 35568, "ts": 71874, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca840", "tid": 35568, "ts": 71920, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9f50", "tid": 35568, "ts": 72115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 72372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 72677, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ecab80", "tid": 35568, "ts": 72690, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ecab80", "tid": 35568, "ts": 72718, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 72872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 73032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 73348, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca9e0", "tid": 35568, "ts": 73361, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca9e0", "tid": 35568, "ts": 73388, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec94c0", "tid": 35568, "ts": 73512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 73677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 250000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 73963, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9180", "tid": 35568, "ts": 73976, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9180", "tid": 35568, "ts": 74003, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec8ca0", "tid": 35568, "ts": 74114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9f50", "tid": 35568, "ts": 74333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec8ca0", "tid": 35568, "ts": 74468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 74577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec94c0", "tid": 35568, "ts": 74683, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234fff803c0", "tid": 35568, "ts": 74761, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15f00", "tid": 35568, "ts": 74961, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16e30", "tid": 35568, "ts": 75156, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17580", "tid": 35568, "ts": 75723, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16410", "tid": 35568, "ts": 75984, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce160b0", "tid": 35568, "ts": 76389, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17a90", "tid": 35568, "ts": 76654, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aee20", "tid": 35568, "ts": 77048, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afa80", "tid": 35568, "ts": 77514, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae880", "tid": 35568, "ts": 77790, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af690", "tid": 35568, "ts": 78249, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af7b0", "tid": 35568, "ts": 78521, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae400", "tid": 35568, "ts": 78882, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce164a0", "tid": 35568, "ts": 79117, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce162f0", "tid": 35568, "ts": 79125, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16890", "tid": 35568, "ts": 79131, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16d10", "tid": 35568, "ts": 79136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17070", "tid": 35568, "ts": 79142, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16020", "tid": 35568, "ts": 79604, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce174f0", "tid": 35568, "ts": 79612, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16380", "tid": 35568, "ts": 79619, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16fe0", "tid": 35568, "ts": 79624, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17190", "tid": 35568, "ts": 79630, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16c80", "tid": 35568, "ts": 80032, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17610", "tid": 35568, "ts": 80041, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce172b0", "tid": 35568, "ts": 80047, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15d50", "tid": 35568, "ts": 80052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17340", "tid": 35568, "ts": 80058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15e70", "tid": 35568, "ts": 80270, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17c40", "tid": 35568, "ts": 80278, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16800", "tid": 35568, "ts": 80284, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce173d0", "tid": 35568, "ts": 80290, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16a40", "tid": 35568, "ts": 80296, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce176a0", "tid": 35568, "ts": 80706, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17730", "tid": 35568, "ts": 80714, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16650", "tid": 35568, "ts": 80720, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17a00", "tid": 35568, "ts": 80726, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17850", "tid": 35568, "ts": 80732, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15de0", "tid": 35568, "ts": 80937, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce166e0", "tid": 35568, "ts": 80944, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15f90", "tid": 35568, "ts": 80950, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce161d0", "tid": 35568, "ts": 80956, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae520", "tid": 35568, "ts": 80962, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af4e0", "tid": 35568, "ts": 81392, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aeeb0", "tid": 35568, "ts": 81400, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af180", "tid": 35568, "ts": 81406, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b00b0", "tid": 35568, "ts": 81412, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af600", "tid": 35568, "ts": 81418, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aeb50", "tid": 35568, "ts": 81791, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae7f0", "tid": 35568, "ts": 81799, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af060", "tid": 35568, "ts": 81805, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae640", "tid": 35568, "ts": 81811, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aebe0", "tid": 35568, "ts": 81817, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aed90", "tid": 35568, "ts": 82449, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aef40", "tid": 35568, "ts": 82458, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af570", "tid": 35568, "ts": 82464, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afd50", "tid": 35568, "ts": 82470, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae910", "tid": 35568, "ts": 82476, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aefd0", "tid": 35568, "ts": 82730, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af720", "tid": 35568, "ts": 82739, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af8d0", "tid": 35568, "ts": 82745, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae9a0", "tid": 35568, "ts": 82751, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af210", "tid": 35568, "ts": 82756, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aea30", "tid": 35568, "ts": 83089, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aeac0", "tid": 35568, "ts": 83098, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae6d0", "tid": 35568, "ts": 83103, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af960", "tid": 35568, "ts": 83109, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afc30", "tid": 35568, "ts": 83115, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af9f0", "tid": 35568, "ts": 83473, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afba0", "tid": 35568, "ts": 83482, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af0f0", "tid": 35568, "ts": 83488, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aed00", "tid": 35568, "ts": 83493, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af2a0", "tid": 35568, "ts": 83499, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9180", "tid": 35568, "ts": 83863, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16bf0", "tid": 35568, "ts": 84130, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca9e0", "tid": 35568, "ts": 84635, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ecab80", "tid": 35568, "ts": 84831, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca840", "tid": 35568, "ts": 85015, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16ec0", "tid": 35568, "ts": 85199, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16770", "tid": 35568, "ts": 85574, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16920", "tid": 35568, "ts": 86029, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17460", "tid": 35568, "ts": 86512, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16140", "tid": 35568, "ts": 86922, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae760", "tid": 35568, "ts": 87310, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae490", "tid": 35568, "ts": 87753, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae5b0", "tid": 35568, "ts": 88195, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afe70", "tid": 35568, "ts": 88569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af840", "tid": 35568, "ts": 88971, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aec70", "tid": 35568, "ts": 89470, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8a720", "tid": 35568, "ts": 89601, "pid": 35104 } ] } +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 32208, "ts": 303, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 0, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8a720", "tid": 35568, "ts": 46, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8a720", "tid": 35568, "ts": 274, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234fff803c0", "tid": 35568, "ts": 388, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15f00", "tid": 35568, "ts": 622, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16bf0", "tid": 35568, "ts": 2668, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce164a0", "tid": 35568, "ts": 4435, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce162f0", "tid": 35568, "ts": 4894, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16890", "tid": 35568, "ts": 5037, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16d10", "tid": 35568, "ts": 5254, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17070", "tid": 35568, "ts": 5687, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16e30", "tid": 35568, "ts": 6479, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16ec0", "tid": 35568, "ts": 8125, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16020", "tid": 35568, "ts": 10427, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce174f0", "tid": 35568, "ts": 10550, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16380", "tid": 35568, "ts": 10665, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16fe0", "tid": 35568, "ts": 10875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17190", "tid": 35568, "ts": 11327, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17580", "tid": 35568, "ts": 12152, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16770", "tid": 35568, "ts": 13923, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16c80", "tid": 35568, "ts": 15511, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17610", "tid": 35568, "ts": 15679, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce172b0", "tid": 35568, "ts": 15886, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15d50", "tid": 35568, "ts": 16144, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17340", "tid": 35568, "ts": 17821, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16410", "tid": 35568, "ts": 18568, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16920", "tid": 35568, "ts": 20392, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15e70", "tid": 35568, "ts": 21976, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17c40", "tid": 35568, "ts": 22085, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16800", "tid": 35568, "ts": 22195, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce173d0", "tid": 35568, "ts": 22405, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16a40", "tid": 35568, "ts": 22842, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce160b0", "tid": 35568, "ts": 23664, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17460", "tid": 35568, "ts": 25331, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce176a0", "tid": 35568, "ts": 27044, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17730", "tid": 35568, "ts": 27179, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16650", "tid": 35568, "ts": 27324, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17a00", "tid": 35568, "ts": 27560, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17850", "tid": 35568, "ts": 28030, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce17a90", "tid": 35568, "ts": 28821, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce16140", "tid": 35568, "ts": 30404, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15de0", "tid": 35568, "ts": 34340, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce166e0", "tid": 35568, "ts": 34450, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce15f90", "tid": 35568, "ts": 34560, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fce161d0", "tid": 35568, "ts": 34770, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae520", "tid": 35568, "ts": 35276, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aee20", "tid": 35568, "ts": 36333, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae760", "tid": 35568, "ts": 37908, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af4e0", "tid": 35568, "ts": 39508, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aeeb0", "tid": 35568, "ts": 39632, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af180", "tid": 35568, "ts": 39772, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b00b0", "tid": 35568, "ts": 39983, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af600", "tid": 35568, "ts": 40424, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afa80", "tid": 35568, "ts": 41207, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae490", "tid": 35568, "ts": 42890, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aeb50", "tid": 35568, "ts": 44687, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae7f0", "tid": 35568, "ts": 44799, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af060", "tid": 35568, "ts": 44909, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae640", "tid": 35568, "ts": 45127, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aebe0", "tid": 35568, "ts": 45558, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae880", "tid": 35568, "ts": 46304, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae5b0", "tid": 35568, "ts": 47910, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aed90", "tid": 35568, "ts": 49478, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aef40", "tid": 35568, "ts": 49586, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af570", "tid": 35568, "ts": 49724, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afd50", "tid": 35568, "ts": 49947, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae910", "tid": 35568, "ts": 50360, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af690", "tid": 35568, "ts": 51184, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afe70", "tid": 35568, "ts": 52776, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aefd0", "tid": 35568, "ts": 54606, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af720", "tid": 35568, "ts": 54717, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af8d0", "tid": 35568, "ts": 54827, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae9a0", "tid": 35568, "ts": 55049, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af210", "tid": 35568, "ts": 55500, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af7b0", "tid": 35568, "ts": 56305, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af840", "tid": 35568, "ts": 58064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aea30", "tid": 35568, "ts": 59642, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aeac0", "tid": 35568, "ts": 59751, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae6d0", "tid": 35568, "ts": 59887, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af960", "tid": 35568, "ts": 60097, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afc30", "tid": 35568, "ts": 60579, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ae400", "tid": 35568, "ts": 61331, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aec70", "tid": 35568, "ts": 68101, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af9f0", "tid": 35568, "ts": 69697, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812afba0", "tid": 35568, "ts": 69808, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af0f0", "tid": 35568, "ts": 69918, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812aed00", "tid": 35568, "ts": 70133, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812af2a0", "tid": 35568, "ts": 70570, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234fff803c0", "tid": 35568, "ts": 71302, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 71396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4000000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 71860, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca840", "tid": 35568, "ts": 71874, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca840", "tid": 35568, "ts": 71920, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9f50", "tid": 35568, "ts": 72115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 72372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 72677, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ecab80", "tid": 35568, "ts": 72690, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ecab80", "tid": 35568, "ts": 72718, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 72872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 73032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 73348, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca9e0", "tid": 35568, "ts": 73361, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca9e0", "tid": 35568, "ts": 73388, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec94c0", "tid": 35568, "ts": 73512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 73677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 250000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 73963, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9180", "tid": 35568, "ts": 73976, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9180", "tid": 35568, "ts": 74003, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec8ca0", "tid": 35568, "ts": 74114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9f50", "tid": 35568, "ts": 74333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec8ca0", "tid": 35568, "ts": 74468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 74577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec94c0", "tid": 35568, "ts": 74683, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234fff803c0", "tid": 35568, "ts": 74761, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15f00", "tid": 35568, "ts": 74961, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16e30", "tid": 35568, "ts": 75156, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17580", "tid": 35568, "ts": 75723, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16410", "tid": 35568, "ts": 75984, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce160b0", "tid": 35568, "ts": 76389, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17a90", "tid": 35568, "ts": 76654, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aee20", "tid": 35568, "ts": 77048, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afa80", "tid": 35568, "ts": 77514, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae880", "tid": 35568, "ts": 77790, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af690", "tid": 35568, "ts": 78249, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af7b0", "tid": 35568, "ts": 78521, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae400", "tid": 35568, "ts": 78882, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce164a0", "tid": 35568, "ts": 79117, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce162f0", "tid": 35568, "ts": 79125, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16890", "tid": 35568, "ts": 79131, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16d10", "tid": 35568, "ts": 79136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17070", "tid": 35568, "ts": 79142, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16020", "tid": 35568, "ts": 79604, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce174f0", "tid": 35568, "ts": 79612, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16380", "tid": 35568, "ts": 79619, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16fe0", "tid": 35568, "ts": 79624, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17190", "tid": 35568, "ts": 79630, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16c80", "tid": 35568, "ts": 80032, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17610", "tid": 35568, "ts": 80041, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce172b0", "tid": 35568, "ts": 80047, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15d50", "tid": 35568, "ts": 80052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17340", "tid": 35568, "ts": 80058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15e70", "tid": 35568, "ts": 80270, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17c40", "tid": 35568, "ts": 80278, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16800", "tid": 35568, "ts": 80284, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce173d0", "tid": 35568, "ts": 80290, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16a40", "tid": 35568, "ts": 80296, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce176a0", "tid": 35568, "ts": 80706, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17730", "tid": 35568, "ts": 80714, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16650", "tid": 35568, "ts": 80720, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17a00", "tid": 35568, "ts": 80726, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17850", "tid": 35568, "ts": 80732, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15de0", "tid": 35568, "ts": 80937, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce166e0", "tid": 35568, "ts": 80944, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce15f90", "tid": 35568, "ts": 80950, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce161d0", "tid": 35568, "ts": 80956, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae520", "tid": 35568, "ts": 80962, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af4e0", "tid": 35568, "ts": 81392, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aeeb0", "tid": 35568, "ts": 81400, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af180", "tid": 35568, "ts": 81406, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b00b0", "tid": 35568, "ts": 81412, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af600", "tid": 35568, "ts": 81418, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aeb50", "tid": 35568, "ts": 81791, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae7f0", "tid": 35568, "ts": 81799, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af060", "tid": 35568, "ts": 81805, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae640", "tid": 35568, "ts": 81811, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aebe0", "tid": 35568, "ts": 81817, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aed90", "tid": 35568, "ts": 82449, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aef40", "tid": 35568, "ts": 82458, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af570", "tid": 35568, "ts": 82464, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afd50", "tid": 35568, "ts": 82470, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae910", "tid": 35568, "ts": 82476, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aefd0", "tid": 35568, "ts": 82730, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af720", "tid": 35568, "ts": 82739, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af8d0", "tid": 35568, "ts": 82745, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae9a0", "tid": 35568, "ts": 82751, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af210", "tid": 35568, "ts": 82756, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aea30", "tid": 35568, "ts": 83089, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aeac0", "tid": 35568, "ts": 83098, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae6d0", "tid": 35568, "ts": 83103, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af960", "tid": 35568, "ts": 83109, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afc30", "tid": 35568, "ts": 83115, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af9f0", "tid": 35568, "ts": 83473, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afba0", "tid": 35568, "ts": 83482, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af0f0", "tid": 35568, "ts": 83488, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aed00", "tid": 35568, "ts": 83493, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af2a0", "tid": 35568, "ts": 83499, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9180", "tid": 35568, "ts": 83863, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16bf0", "tid": 35568, "ts": 84130, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca9e0", "tid": 35568, "ts": 84635, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ecab80", "tid": 35568, "ts": 84831, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca840", "tid": 35568, "ts": 85015, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16ec0", "tid": 35568, "ts": 85199, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16770", "tid": 35568, "ts": 85574, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16920", "tid": 35568, "ts": 86029, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce17460", "tid": 35568, "ts": 86512, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fce16140", "tid": 35568, "ts": 86922, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae760", "tid": 35568, "ts": 87310, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae490", "tid": 35568, "ts": 87753, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ae5b0", "tid": 35568, "ts": 88195, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812afe70", "tid": 35568, "ts": 88569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812af840", "tid": 35568, "ts": 88971, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812aec70", "tid": 35568, "ts": 89470, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8a720", "tid": 35568, "ts": 89601, "pid": 35104 } ] } diff --git a/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json b/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json index d047f0d25..0d6e91ceb 100644 --- a/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json +++ b/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 24680, "ts": 161899, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 161620, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8b1d0", "tid": 35568, "ts": 161638, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8b1d0", "tid": 35568, "ts": 161789, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234821b20f0", "tid": 35568, "ts": 161896, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7ab0", "tid": 35568, "ts": 162045, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7480", "tid": 35568, "ts": 163629, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8d40", "tid": 35568, "ts": 165183, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7120", "tid": 35568, "ts": 165292, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b90", "tid": 35568, "ts": 165402, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e89e0", "tid": 35568, "ts": 165607, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7bd0", "tid": 35568, "ts": 166022, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7510", "tid": 35568, "ts": 166764, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e76c0", "tid": 35568, "ts": 168473, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8c20", "tid": 35568, "ts": 170009, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7e10", "tid": 35568, "ts": 170119, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8a70", "tid": 35568, "ts": 170233, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8e60", "tid": 35568, "ts": 170438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7f30", "tid": 35568, "ts": 170849, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7c60", "tid": 35568, "ts": 171606, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8680", "tid": 35568, "ts": 173194, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e85f0", "tid": 35568, "ts": 175087, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e71b0", "tid": 35568, "ts": 175197, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7750", "tid": 35568, "ts": 175308, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8dd0", "tid": 35568, "ts": 175532, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e77e0", "tid": 35568, "ts": 176150, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7cf0", "tid": 35568, "ts": 176996, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7240", "tid": 35568, "ts": 178835, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8cb0", "tid": 35568, "ts": 180868, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8320", "tid": 35568, "ts": 181042, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e83b0", "tid": 35568, "ts": 181216, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7fc0", "tid": 35568, "ts": 181572, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8170", "tid": 35568, "ts": 182239, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b00", "tid": 35568, "ts": 183500, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8ef0", "tid": 35568, "ts": 186030, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 188657, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8f80", "tid": 35568, "ts": 188835, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7d80", "tid": 35568, "ts": 189014, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8440", "tid": 35568, "ts": 189358, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8710", "tid": 35568, "ts": 190231, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e84d0", "tid": 35568, "ts": 191638, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e87a0", "tid": 35568, "ts": 193798, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8830", "tid": 35568, "ts": 196396, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8950", "tid": 35568, "ts": 196565, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 196737, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b99a0", "tid": 35568, "ts": 197077, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b96d0", "tid": 35568, "ts": 197738, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8830", "tid": 35568, "ts": 198988, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8ef0", "tid": 35568, "ts": 201484, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9490", "tid": 35568, "ts": 204096, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9130", "tid": 35568, "ts": 204273, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9e20", "tid": 35568, "ts": 204452, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b95b0", "tid": 35568, "ts": 204793, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9880", "tid": 35568, "ts": 205466, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b85f0", "tid": 35568, "ts": 206793, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9910", "tid": 35568, "ts": 209170, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b89e0", "tid": 35568, "ts": 210975, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9760", "tid": 35568, "ts": 211148, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9520", "tid": 35568, "ts": 211324, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9eb0", "tid": 35568, "ts": 211660, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9f40", "tid": 35568, "ts": 212332, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8f80", "tid": 35568, "ts": 213572, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9010", "tid": 35568, "ts": 216139, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8560", "tid": 35568, "ts": 218693, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b88c0", "tid": 35568, "ts": 218871, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8950", "tid": 35568, "ts": 219050, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9fd0", "tid": 35568, "ts": 219407, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b90a0", "tid": 35568, "ts": 220147, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8320", "tid": 35568, "ts": 221365, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8680", "tid": 35568, "ts": 223937, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8d40", "tid": 35568, "ts": 226754, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9640", "tid": 35568, "ts": 226966, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b87a0", "tid": 35568, "ts": 227175, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b91c0", "tid": 35568, "ts": 227628, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9a30", "tid": 35568, "ts": 228351, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ba060", "tid": 35568, "ts": 229615, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8dd0", "tid": 35568, "ts": 232141, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8170", "tid": 35568, "ts": 233886, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b83b0", "tid": 35568, "ts": 233999, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9be0", "tid": 35568, "ts": 234114, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8200", "tid": 35568, "ts": 234338, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b97f0", "tid": 35568, "ts": 234772, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8290", "tid": 35568, "ts": 235849, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9ac0", "tid": 35568, "ts": 238407, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8440", "tid": 35568, "ts": 240885, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b84d0", "tid": 35568, "ts": 241067, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8a70", "tid": 35568, "ts": 241238, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9b50", "tid": 35568, "ts": 241569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9c70", "tid": 35568, "ts": 242227, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234821b20f0", "tid": 35568, "ts": 243403, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 243527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 96, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 245596, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9590", "tid": 35568, "ts": 245621, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9590", "tid": 35568, "ts": 245676, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9730", "tid": 35568, "ts": 245885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 246371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9b40", "tid": 35568, "ts": 246588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 247003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca5d0", "tid": 35568, "ts": 247214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 247684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1920, "Height": 1080, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 128, "clearValue": { "Format": 87, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 1.000000 } } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8e60", "tid": 35568, "ts": 248055, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 250715, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9c10", "tid": 35568, "ts": 250742, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9c10", "tid": 35568, "ts": 250796, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca770", "tid": 35568, "ts": 251078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 251518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca840", "tid": 35568, "ts": 251729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 252159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 252364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 252760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecab80", "tid": 35568, "ts": 252963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 253353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f0100", "tid": 35568, "ts": 253563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 253965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eff60", "tid": 35568, "ts": 254179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 254565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f01d0", "tid": 35568, "ts": 254762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 255133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef9b0", "tid": 35568, "ts": 255331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 255702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f02a0", "tid": 35568, "ts": 255901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 256268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 257841, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830f0030", "tid": 35568, "ts": 257862, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830f0030", "tid": 35568, "ts": 257914, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eebe0", "tid": 35568, "ts": 258089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 258497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee7d0", "tid": 35568, "ts": 258702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 259079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee3c0", "tid": 35568, "ts": 259296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 259681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eeb10", "tid": 35568, "ts": 259876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 260249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee490", "tid": 35568, "ts": 260462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 260826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef0c0", "tid": 35568, "ts": 261024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 261378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee560", "tid": 35568, "ts": 261575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 261930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830efe90", "tid": 35568, "ts": 262123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 262468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef190", "tid": 35568, "ts": 262669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 263011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee8a0", "tid": 35568, "ts": 263204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 263545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef330", "tid": 35568, "ts": 263738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 264070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eef20", "tid": 35568, "ts": 264267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 264610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee630", "tid": 35568, "ts": 264803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 265132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef260", "tid": 35568, "ts": 265323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 265650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef400", "tid": 35568, "ts": 265841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 266167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef740", "tid": 35568, "ts": 266358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 266679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eed80", "tid": 35568, "ts": 266869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 267184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eee50", "tid": 35568, "ts": 267373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecab80", "tid": 35568, "ts": 267653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f0100", "tid": 35568, "ts": 267816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef9b0", "tid": 35568, "ts": 267957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f02a0", "tid": 35568, "ts": 268094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee3c0", "tid": 35568, "ts": 268230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eeb10", "tid": 35568, "ts": 268365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee560", "tid": 35568, "ts": 268500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830efe90", "tid": 35568, "ts": 268631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef330", "tid": 35568, "ts": 268765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eef20", "tid": 35568, "ts": 268896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef400", "tid": 35568, "ts": 269025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef740", "tid": 35568, "ts": 269150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eee50", "tid": 35568, "ts": 269278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 269474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 3110400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 269936, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830ef810", "tid": 35568, "ts": 269956, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830ef810", "tid": 35568, "ts": 270016, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830efb50", "tid": 35568, "ts": 270294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 270711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12441600, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23481b446e0", "tid": 35568, "ts": 270824, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 271157, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830ef5a0", "tid": 35568, "ts": 271179, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830ef5a0", "tid": 35568, "ts": 271225, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee3c0", "tid": 35568, "ts": 271477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 271887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 298240, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 272247, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830eee50", "tid": 35568, "ts": 272267, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830eee50", "tid": 35568, "ts": 272313, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef4d0", "tid": 35568, "ts": 272485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 272882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 709171200, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23481b44d10", "tid": 35568, "ts": 273014, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 275678, "pid": 35104, "args": { "Heap": { "SizeInBytes": 1073741824, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830eeff0", "tid": 35568, "ts": 275710, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830eeff0", "tid": 35568, "ts": 275763, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 1073741824, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee560", "tid": 35568, "ts": 276090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca840", "tid": 35568, "ts": 276522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 276674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eff60", "tid": 35568, "ts": 276816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f01d0", "tid": 35568, "ts": 276960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eebe0", "tid": 35568, "ts": 277098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee7d0", "tid": 35568, "ts": 277233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee490", "tid": 35568, "ts": 277398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef0c0", "tid": 35568, "ts": 277534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef190", "tid": 35568, "ts": 277666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee8a0", "tid": 35568, "ts": 277802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee630", "tid": 35568, "ts": 277939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef260", "tid": 35568, "ts": 278074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eed80", "tid": 35568, "ts": 278207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 278387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee700", "tid": 35568, "ts": 278608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 279056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee490", "tid": 35568, "ts": 279255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 279687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 57344, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee8a0", "tid": 35568, "ts": 279881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 280301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee630", "tid": 35568, "ts": 280520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 280936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 21504, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f01d0", "tid": 35568, "ts": 281148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 281546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 53248, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee7d0", "tid": 35568, "ts": 281748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee490", "tid": 35568, "ts": 282112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee8a0", "tid": 35568, "ts": 282259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee630", "tid": 35568, "ts": 282395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f01d0", "tid": 35568, "ts": 282532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee7d0", "tid": 35568, "ts": 282668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 282846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee490", "tid": 35568, "ts": 283070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 283435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 283851, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830efc20", "tid": 35568, "ts": 283871, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830efc20", "tid": 35568, "ts": 283922, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef9b0", "tid": 35568, "ts": 284091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 284466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f01d0", "tid": 35568, "ts": 284661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 285017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eea40", "tid": 35568, "ts": 285249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 285598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee630", "tid": 35568, "ts": 285791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 286145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830efa80", "tid": 35568, "ts": 286338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee560", "tid": 35568, "ts": 286696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef4d0", "tid": 35568, "ts": 286891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee3c0", "tid": 35568, "ts": 287078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830efb50", "tid": 35568, "ts": 287281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca5d0", "tid": 35568, "ts": 287441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9730", "tid": 35568, "ts": 287578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca770", "tid": 35568, "ts": 287758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee700", "tid": 35568, "ts": 287921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9b40", "tid": 35568, "ts": 288080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee630", "tid": 35568, "ts": 288214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f01d0", "tid": 35568, "ts": 288349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee490", "tid": 35568, "ts": 288507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830efa80", "tid": 35568, "ts": 288645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eea40", "tid": 35568, "ts": 288778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef9b0", "tid": 35568, "ts": 288930, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234821b20f0", "tid": 35568, "ts": 289027, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7ab0", "tid": 35568, "ts": 289353, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7510", "tid": 35568, "ts": 289685, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7c60", "tid": 35568, "ts": 290684, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7cf0", "tid": 35568, "ts": 291026, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b00", "tid": 35568, "ts": 291931, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e84d0", "tid": 35568, "ts": 292379, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8830", "tid": 35568, "ts": 292822, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b85f0", "tid": 35568, "ts": 293570, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8f80", "tid": 35568, "ts": 294020, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8320", "tid": 35568, "ts": 294800, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ba060", "tid": 35568, "ts": 295249, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8290", "tid": 35568, "ts": 295825, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8d40", "tid": 35568, "ts": 296221, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7120", "tid": 35568, "ts": 296237, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b90", "tid": 35568, "ts": 296247, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e89e0", "tid": 35568, "ts": 296257, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7bd0", "tid": 35568, "ts": 296267, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8c20", "tid": 35568, "ts": 297012, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7e10", "tid": 35568, "ts": 297029, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8a70", "tid": 35568, "ts": 297039, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8e60", "tid": 35568, "ts": 297049, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7f30", "tid": 35568, "ts": 297058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e85f0", "tid": 35568, "ts": 297379, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e71b0", "tid": 35568, "ts": 297393, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7750", "tid": 35568, "ts": 297403, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8dd0", "tid": 35568, "ts": 297413, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e77e0", "tid": 35568, "ts": 297423, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8cb0", "tid": 35568, "ts": 298221, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8320", "tid": 35568, "ts": 298235, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e83b0", "tid": 35568, "ts": 298245, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7fc0", "tid": 35568, "ts": 298255, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8170", "tid": 35568, "ts": 298265, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 299016, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8f80", "tid": 35568, "ts": 299031, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7d80", "tid": 35568, "ts": 299041, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8440", "tid": 35568, "ts": 299051, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8710", "tid": 35568, "ts": 299061, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8830", "tid": 35568, "ts": 299472, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8950", "tid": 35568, "ts": 299487, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 299496, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b99a0", "tid": 35568, "ts": 299507, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b96d0", "tid": 35568, "ts": 299517, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9490", "tid": 35568, "ts": 300185, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9130", "tid": 35568, "ts": 300199, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9e20", "tid": 35568, "ts": 300210, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b95b0", "tid": 35568, "ts": 300220, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9880", "tid": 35568, "ts": 300230, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b89e0", "tid": 35568, "ts": 300829, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9760", "tid": 35568, "ts": 300845, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9520", "tid": 35568, "ts": 300855, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9eb0", "tid": 35568, "ts": 300865, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9f40", "tid": 35568, "ts": 300875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8560", "tid": 35568, "ts": 301446, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b88c0", "tid": 35568, "ts": 301460, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8950", "tid": 35568, "ts": 301470, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9fd0", "tid": 35568, "ts": 301480, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b90a0", "tid": 35568, "ts": 301489, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8d40", "tid": 35568, "ts": 302113, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9640", "tid": 35568, "ts": 302126, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b87a0", "tid": 35568, "ts": 302136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b91c0", "tid": 35568, "ts": 302146, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9a30", "tid": 35568, "ts": 302156, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8170", "tid": 35568, "ts": 302649, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b83b0", "tid": 35568, "ts": 302663, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9be0", "tid": 35568, "ts": 302673, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8200", "tid": 35568, "ts": 302682, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b97f0", "tid": 35568, "ts": 302692, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8440", "tid": 35568, "ts": 303230, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b84d0", "tid": 35568, "ts": 303244, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8a70", "tid": 35568, "ts": 303254, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9b50", "tid": 35568, "ts": 303264, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9c70", "tid": 35568, "ts": 303274, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7480", "tid": 35568, "ts": 303804, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830efc20", "tid": 35568, "ts": 304429, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830f0030", "tid": 35568, "ts": 304761, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9590", "tid": 35568, "ts": 304987, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830ef810", "tid": 35568, "ts": 305198, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830eee50", "tid": 35568, "ts": 305402, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e76c0", "tid": 35568, "ts": 305597, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9c10", "tid": 35568, "ts": 305621, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8e60", "tid": 35568, "ts": 305834, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830ef5a0", "tid": 35568, "ts": 305857, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23481b446e0", "tid": 35568, "ts": 306051, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830eeff0", "tid": 35568, "ts": 306076, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23481b44d10", "tid": 35568, "ts": 318407, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8680", "tid": 35568, "ts": 319386, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7240", "tid": 35568, "ts": 320021, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8ef0", "tid": 35568, "ts": 320848, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e87a0", "tid": 35568, "ts": 321433, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8ef0", "tid": 35568, "ts": 322243, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9910", "tid": 35568, "ts": 322874, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9010", "tid": 35568, "ts": 323570, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8680", "tid": 35568, "ts": 324168, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8dd0", "tid": 35568, "ts": 324945, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9ac0", "tid": 35568, "ts": 325602, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8b1d0", "tid": 35568, "ts": 325893, "pid": 35104 } ] } +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 24680, "ts": 161899, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 161620, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8b1d0", "tid": 35568, "ts": 161638, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8b1d0", "tid": 35568, "ts": 161789, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234821b20f0", "tid": 35568, "ts": 161896, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7ab0", "tid": 35568, "ts": 162045, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7480", "tid": 35568, "ts": 163629, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8d40", "tid": 35568, "ts": 165183, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7120", "tid": 35568, "ts": 165292, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b90", "tid": 35568, "ts": 165402, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e89e0", "tid": 35568, "ts": 165607, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7bd0", "tid": 35568, "ts": 166022, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7510", "tid": 35568, "ts": 166764, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e76c0", "tid": 35568, "ts": 168473, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8c20", "tid": 35568, "ts": 170009, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7e10", "tid": 35568, "ts": 170119, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8a70", "tid": 35568, "ts": 170233, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8e60", "tid": 35568, "ts": 170438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7f30", "tid": 35568, "ts": 170849, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7c60", "tid": 35568, "ts": 171606, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8680", "tid": 35568, "ts": 173194, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e85f0", "tid": 35568, "ts": 175087, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e71b0", "tid": 35568, "ts": 175197, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7750", "tid": 35568, "ts": 175308, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8dd0", "tid": 35568, "ts": 175532, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e77e0", "tid": 35568, "ts": 176150, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7cf0", "tid": 35568, "ts": 176996, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7240", "tid": 35568, "ts": 178835, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8cb0", "tid": 35568, "ts": 180868, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8320", "tid": 35568, "ts": 181042, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e83b0", "tid": 35568, "ts": 181216, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7fc0", "tid": 35568, "ts": 181572, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8170", "tid": 35568, "ts": 182239, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b00", "tid": 35568, "ts": 183500, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8ef0", "tid": 35568, "ts": 186030, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 188657, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8f80", "tid": 35568, "ts": 188835, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7d80", "tid": 35568, "ts": 189014, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8440", "tid": 35568, "ts": 189358, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8710", "tid": 35568, "ts": 190231, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e84d0", "tid": 35568, "ts": 191638, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e87a0", "tid": 35568, "ts": 193798, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8830", "tid": 35568, "ts": 196396, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8950", "tid": 35568, "ts": 196565, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 196737, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b99a0", "tid": 35568, "ts": 197077, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b96d0", "tid": 35568, "ts": 197738, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8830", "tid": 35568, "ts": 198988, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8ef0", "tid": 35568, "ts": 201484, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9490", "tid": 35568, "ts": 204096, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9130", "tid": 35568, "ts": 204273, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9e20", "tid": 35568, "ts": 204452, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b95b0", "tid": 35568, "ts": 204793, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9880", "tid": 35568, "ts": 205466, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b85f0", "tid": 35568, "ts": 206793, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9910", "tid": 35568, "ts": 209170, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b89e0", "tid": 35568, "ts": 210975, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9760", "tid": 35568, "ts": 211148, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9520", "tid": 35568, "ts": 211324, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9eb0", "tid": 35568, "ts": 211660, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9f40", "tid": 35568, "ts": 212332, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8f80", "tid": 35568, "ts": 213572, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9010", "tid": 35568, "ts": 216139, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8560", "tid": 35568, "ts": 218693, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b88c0", "tid": 35568, "ts": 218871, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8950", "tid": 35568, "ts": 219050, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9fd0", "tid": 35568, "ts": 219407, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b90a0", "tid": 35568, "ts": 220147, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8320", "tid": 35568, "ts": 221365, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8680", "tid": 35568, "ts": 223937, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8d40", "tid": 35568, "ts": 226754, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9640", "tid": 35568, "ts": 226966, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b87a0", "tid": 35568, "ts": 227175, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b91c0", "tid": 35568, "ts": 227628, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9a30", "tid": 35568, "ts": 228351, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812ba060", "tid": 35568, "ts": 229615, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8dd0", "tid": 35568, "ts": 232141, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8170", "tid": 35568, "ts": 233886, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b83b0", "tid": 35568, "ts": 233999, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9be0", "tid": 35568, "ts": 234114, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8200", "tid": 35568, "ts": 234338, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b97f0", "tid": 35568, "ts": 234772, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8290", "tid": 35568, "ts": 235849, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9ac0", "tid": 35568, "ts": 238407, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8440", "tid": 35568, "ts": 240885, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b84d0", "tid": 35568, "ts": 241067, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8a70", "tid": 35568, "ts": 241238, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9b50", "tid": 35568, "ts": 241569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b9c70", "tid": 35568, "ts": 242227, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234821b20f0", "tid": 35568, "ts": 243403, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 243527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 96, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 245596, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9590", "tid": 35568, "ts": 245621, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9590", "tid": 35568, "ts": 245676, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9730", "tid": 35568, "ts": 245885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 246371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9b40", "tid": 35568, "ts": 246588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 247003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca5d0", "tid": 35568, "ts": 247214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 247684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1920, "Height": 1080, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 128, "clearValue": { "Format": 87, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 1.000000 } } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234812b8e60", "tid": 35568, "ts": 248055, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 250715, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9c10", "tid": 35568, "ts": 250742, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9c10", "tid": 35568, "ts": 250796, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca770", "tid": 35568, "ts": 251078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 251518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca840", "tid": 35568, "ts": 251729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 252159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 252364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 252760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecab80", "tid": 35568, "ts": 252963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 253353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f0100", "tid": 35568, "ts": 253563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 253965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eff60", "tid": 35568, "ts": 254179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 254565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f01d0", "tid": 35568, "ts": 254762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 255133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef9b0", "tid": 35568, "ts": 255331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 255702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f02a0", "tid": 35568, "ts": 255901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 256268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 257841, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830f0030", "tid": 35568, "ts": 257862, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830f0030", "tid": 35568, "ts": 257914, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eebe0", "tid": 35568, "ts": 258089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 258497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee7d0", "tid": 35568, "ts": 258702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 259079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee3c0", "tid": 35568, "ts": 259296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 259681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eeb10", "tid": 35568, "ts": 259876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 260249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee490", "tid": 35568, "ts": 260462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 260826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef0c0", "tid": 35568, "ts": 261024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 261378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee560", "tid": 35568, "ts": 261575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 261930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830efe90", "tid": 35568, "ts": 262123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 262468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef190", "tid": 35568, "ts": 262669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 263011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee8a0", "tid": 35568, "ts": 263204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 263545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef330", "tid": 35568, "ts": 263738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 264070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eef20", "tid": 35568, "ts": 264267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 264610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee630", "tid": 35568, "ts": 264803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 265132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef260", "tid": 35568, "ts": 265323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 265650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef400", "tid": 35568, "ts": 265841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 266167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef740", "tid": 35568, "ts": 266358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 266679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eed80", "tid": 35568, "ts": 266869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 267184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eee50", "tid": 35568, "ts": 267373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecab80", "tid": 35568, "ts": 267653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f0100", "tid": 35568, "ts": 267816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef9b0", "tid": 35568, "ts": 267957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f02a0", "tid": 35568, "ts": 268094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee3c0", "tid": 35568, "ts": 268230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eeb10", "tid": 35568, "ts": 268365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee560", "tid": 35568, "ts": 268500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830efe90", "tid": 35568, "ts": 268631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef330", "tid": 35568, "ts": 268765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eef20", "tid": 35568, "ts": 268896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef400", "tid": 35568, "ts": 269025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef740", "tid": 35568, "ts": 269150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eee50", "tid": 35568, "ts": 269278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 269474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 3110400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 269936, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830ef810", "tid": 35568, "ts": 269956, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830ef810", "tid": 35568, "ts": 270016, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830efb50", "tid": 35568, "ts": 270294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 270711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12441600, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23481b446e0", "tid": 35568, "ts": 270824, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 271157, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830ef5a0", "tid": 35568, "ts": 271179, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830ef5a0", "tid": 35568, "ts": 271225, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee3c0", "tid": 35568, "ts": 271477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 271887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 298240, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 272247, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830eee50", "tid": 35568, "ts": 272267, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830eee50", "tid": 35568, "ts": 272313, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef4d0", "tid": 35568, "ts": 272485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 272882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 709171200, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23481b44d10", "tid": 35568, "ts": 273014, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 275678, "pid": 35104, "args": { "Heap": { "SizeInBytes": 1073741824, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830eeff0", "tid": 35568, "ts": 275710, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830eeff0", "tid": 35568, "ts": 275763, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 1073741824, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee560", "tid": 35568, "ts": 276090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca840", "tid": 35568, "ts": 276522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 276674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eff60", "tid": 35568, "ts": 276816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f01d0", "tid": 35568, "ts": 276960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eebe0", "tid": 35568, "ts": 277098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee7d0", "tid": 35568, "ts": 277233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee490", "tid": 35568, "ts": 277398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef0c0", "tid": 35568, "ts": 277534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef190", "tid": 35568, "ts": 277666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee8a0", "tid": 35568, "ts": 277802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee630", "tid": 35568, "ts": 277939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef260", "tid": 35568, "ts": 278074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eed80", "tid": 35568, "ts": 278207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 278387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee700", "tid": 35568, "ts": 278608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 279056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee490", "tid": 35568, "ts": 279255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 279687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 57344, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee8a0", "tid": 35568, "ts": 279881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 280301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee630", "tid": 35568, "ts": 280520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 280936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 21504, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f01d0", "tid": 35568, "ts": 281148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 281546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 53248, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee7d0", "tid": 35568, "ts": 281748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee490", "tid": 35568, "ts": 282112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee8a0", "tid": 35568, "ts": 282259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee630", "tid": 35568, "ts": 282395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f01d0", "tid": 35568, "ts": 282532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee7d0", "tid": 35568, "ts": 282668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 282846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee490", "tid": 35568, "ts": 283070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 283435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 283851, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234830efc20", "tid": 35568, "ts": 283871, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234830efc20", "tid": 35568, "ts": 283922, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ef9b0", "tid": 35568, "ts": 284091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 284466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830f01d0", "tid": 35568, "ts": 284661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 285017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830eea40", "tid": 35568, "ts": 285249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 285598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830ee630", "tid": 35568, "ts": 285791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 286145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234830efa80", "tid": 35568, "ts": 286338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee560", "tid": 35568, "ts": 286696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef4d0", "tid": 35568, "ts": 286891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee3c0", "tid": 35568, "ts": 287078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830efb50", "tid": 35568, "ts": 287281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca5d0", "tid": 35568, "ts": 287441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9730", "tid": 35568, "ts": 287578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca770", "tid": 35568, "ts": 287758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee700", "tid": 35568, "ts": 287921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9b40", "tid": 35568, "ts": 288080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee630", "tid": 35568, "ts": 288214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830f01d0", "tid": 35568, "ts": 288349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ee490", "tid": 35568, "ts": 288507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830efa80", "tid": 35568, "ts": 288645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830eea40", "tid": 35568, "ts": 288778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234830ef9b0", "tid": 35568, "ts": 288930, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234821b20f0", "tid": 35568, "ts": 289027, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7ab0", "tid": 35568, "ts": 289353, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7510", "tid": 35568, "ts": 289685, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7c60", "tid": 35568, "ts": 290684, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7cf0", "tid": 35568, "ts": 291026, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b00", "tid": 35568, "ts": 291931, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e84d0", "tid": 35568, "ts": 292379, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8830", "tid": 35568, "ts": 292822, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b85f0", "tid": 35568, "ts": 293570, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8f80", "tid": 35568, "ts": 294020, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8320", "tid": 35568, "ts": 294800, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812ba060", "tid": 35568, "ts": 295249, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8290", "tid": 35568, "ts": 295825, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8d40", "tid": 35568, "ts": 296221, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7120", "tid": 35568, "ts": 296237, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b90", "tid": 35568, "ts": 296247, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e89e0", "tid": 35568, "ts": 296257, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7bd0", "tid": 35568, "ts": 296267, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8c20", "tid": 35568, "ts": 297012, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7e10", "tid": 35568, "ts": 297029, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8a70", "tid": 35568, "ts": 297039, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8e60", "tid": 35568, "ts": 297049, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7f30", "tid": 35568, "ts": 297058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e85f0", "tid": 35568, "ts": 297379, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e71b0", "tid": 35568, "ts": 297393, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7750", "tid": 35568, "ts": 297403, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8dd0", "tid": 35568, "ts": 297413, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e77e0", "tid": 35568, "ts": 297423, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8cb0", "tid": 35568, "ts": 298221, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8320", "tid": 35568, "ts": 298235, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e83b0", "tid": 35568, "ts": 298245, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7fc0", "tid": 35568, "ts": 298255, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8170", "tid": 35568, "ts": 298265, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 299016, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8f80", "tid": 35568, "ts": 299031, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7d80", "tid": 35568, "ts": 299041, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8440", "tid": 35568, "ts": 299051, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8710", "tid": 35568, "ts": 299061, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8830", "tid": 35568, "ts": 299472, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8950", "tid": 35568, "ts": 299487, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 299496, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b99a0", "tid": 35568, "ts": 299507, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b96d0", "tid": 35568, "ts": 299517, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9490", "tid": 35568, "ts": 300185, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9130", "tid": 35568, "ts": 300199, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9e20", "tid": 35568, "ts": 300210, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b95b0", "tid": 35568, "ts": 300220, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9880", "tid": 35568, "ts": 300230, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b89e0", "tid": 35568, "ts": 300829, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9760", "tid": 35568, "ts": 300845, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9520", "tid": 35568, "ts": 300855, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9eb0", "tid": 35568, "ts": 300865, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9f40", "tid": 35568, "ts": 300875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8560", "tid": 35568, "ts": 301446, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b88c0", "tid": 35568, "ts": 301460, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8950", "tid": 35568, "ts": 301470, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9fd0", "tid": 35568, "ts": 301480, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b90a0", "tid": 35568, "ts": 301489, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8d40", "tid": 35568, "ts": 302113, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9640", "tid": 35568, "ts": 302126, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b87a0", "tid": 35568, "ts": 302136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b91c0", "tid": 35568, "ts": 302146, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9a30", "tid": 35568, "ts": 302156, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8170", "tid": 35568, "ts": 302649, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b83b0", "tid": 35568, "ts": 302663, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9be0", "tid": 35568, "ts": 302673, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8200", "tid": 35568, "ts": 302682, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b97f0", "tid": 35568, "ts": 302692, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8440", "tid": 35568, "ts": 303230, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b84d0", "tid": 35568, "ts": 303244, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8a70", "tid": 35568, "ts": 303254, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9b50", "tid": 35568, "ts": 303264, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9c70", "tid": 35568, "ts": 303274, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7480", "tid": 35568, "ts": 303804, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830efc20", "tid": 35568, "ts": 304429, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830f0030", "tid": 35568, "ts": 304761, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9590", "tid": 35568, "ts": 304987, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830ef810", "tid": 35568, "ts": 305198, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830eee50", "tid": 35568, "ts": 305402, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e76c0", "tid": 35568, "ts": 305597, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9c10", "tid": 35568, "ts": 305621, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8e60", "tid": 35568, "ts": 305834, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830ef5a0", "tid": 35568, "ts": 305857, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23481b446e0", "tid": 35568, "ts": 306051, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234830eeff0", "tid": 35568, "ts": 306076, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23481b44d10", "tid": 35568, "ts": 318407, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8680", "tid": 35568, "ts": 319386, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7240", "tid": 35568, "ts": 320021, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8ef0", "tid": 35568, "ts": 320848, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e87a0", "tid": 35568, "ts": 321433, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8ef0", "tid": 35568, "ts": 322243, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9910", "tid": 35568, "ts": 322874, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9010", "tid": 35568, "ts": 323570, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8680", "tid": 35568, "ts": 324168, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b8dd0", "tid": 35568, "ts": 324945, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234812b9ac0", "tid": 35568, "ts": 325602, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8b1d0", "tid": 35568, "ts": 325893, "pid": 35104 } ] } diff --git a/src/tests/capture_replay_tests/traces/webgpu_forest_demo.json b/src/tests/capture_replay_tests/traces/webgpu_forest_demo.json index 23e9d3463..772621499 100644 --- a/src/tests/capture_replay_tests/traces/webgpu_forest_demo.json +++ b/src/tests/capture_replay_tests/traces/webgpu_forest_demo.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 14972, "ts": 3402955, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 3402614, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8b8f0", "tid": 35568, "ts": 3402635, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8b8f0", "tid": 35568, "ts": 3402843, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234830f0070", "tid": 35568, "ts": 3402947, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7090", "tid": 35568, "ts": 3403073, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8560", "tid": 35568, "ts": 3404650, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8ef0", "tid": 35568, "ts": 3406239, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7120", "tid": 35568, "ts": 3406350, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7c60", "tid": 35568, "ts": 3406470, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8a70", "tid": 35568, "ts": 3406683, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7cf0", "tid": 35568, "ts": 3407104, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7f30", "tid": 35568, "ts": 3407854, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7d80", "tid": 35568, "ts": 3409459, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7e10", "tid": 35568, "ts": 3411032, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7fc0", "tid": 35568, "ts": 3411214, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b00", "tid": 35568, "ts": 3411379, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e80e0", "tid": 35568, "ts": 3411646, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8200", "tid": 35568, "ts": 3412069, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 3412900, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e84d0", "tid": 35568, "ts": 3414768, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc10a0", "tid": 35568, "ts": 3416414, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc11c0", "tid": 35568, "ts": 3416522, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1490", "tid": 35568, "ts": 3416630, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0680", "tid": 35568, "ts": 3416853, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0f80", "tid": 35568, "ts": 3417270, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1250", "tid": 35568, "ts": 3418017, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0a70", "tid": 35568, "ts": 3419798, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1130", "tid": 35568, "ts": 3421438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc12e0", "tid": 35568, "ts": 3421546, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1370", "tid": 35568, "ts": 3421658, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b00", "tid": 35568, "ts": 3421870, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1400", "tid": 35568, "ts": 3422298, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 3423080, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc05f0", "tid": 35568, "ts": 3424670, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0710", "tid": 35568, "ts": 3426317, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc07a0", "tid": 35568, "ts": 3426455, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 3426573, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0830", "tid": 35568, "ts": 3426946, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc08c0", "tid": 35568, "ts": 3427611, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc09e0", "tid": 35568, "ts": 3428588, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0e60", "tid": 35568, "ts": 3430285, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0d40", "tid": 35568, "ts": 3431853, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0950", "tid": 35568, "ts": 3431961, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b90", "tid": 35568, "ts": 3432070, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad590", "tid": 35568, "ts": 3432282, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae8b0", "tid": 35568, "ts": 3432698, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad080", "tid": 35568, "ts": 3433472, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae670", "tid": 35568, "ts": 3435025, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ada10", "tid": 35568, "ts": 3436615, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad860", "tid": 35568, "ts": 3436725, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae3a0", "tid": 35568, "ts": 3436836, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae700", "tid": 35568, "ts": 3437048, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad470", "tid": 35568, "ts": 3437464, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad500", "tid": 35568, "ts": 3438244, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ace40", "tid": 35568, "ts": 3439858, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ade00", "tid": 35568, "ts": 3441704, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adc50", "tid": 35568, "ts": 3441818, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916acff0", "tid": 35568, "ts": 3441928, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad620", "tid": 35568, "ts": 3442192, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae040", "tid": 35568, "ts": 3442765, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad740", "tid": 35568, "ts": 3443574, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adfb0", "tid": 35568, "ts": 3445136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad6b0", "tid": 35568, "ts": 3446700, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad110", "tid": 35568, "ts": 3446809, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916add70", "tid": 35568, "ts": 3446922, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adaa0", "tid": 35568, "ts": 3447132, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad7d0", "tid": 35568, "ts": 3447551, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae940", "tid": 35568, "ts": 3448295, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae1f0", "tid": 35568, "ts": 3449897, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adb30", "tid": 35568, "ts": 3451485, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916aeaf0", "tid": 35568, "ts": 3451596, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916acd20", "tid": 35568, "ts": 3451708, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad980", "tid": 35568, "ts": 3451919, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adbc0", "tid": 35568, "ts": 3452336, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad8f0", "tid": 35568, "ts": 3453136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adce0", "tid": 35568, "ts": 3454914, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ade90", "tid": 35568, "ts": 3456656, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adf20", "tid": 35568, "ts": 3456766, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad230", "tid": 35568, "ts": 3456875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae790", "tid": 35568, "ts": 3457121, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae430", "tid": 35568, "ts": 3457532, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae0d0", "tid": 35568, "ts": 3458839, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae4c0", "tid": 35568, "ts": 3460428, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad1a0", "tid": 35568, "ts": 3461983, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae160", "tid": 35568, "ts": 3462104, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad350", "tid": 35568, "ts": 3462212, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae280", "tid": 35568, "ts": 3462424, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad3e0", "tid": 35568, "ts": 3462843, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234830f0070", "tid": 35568, "ts": 3463563, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3463639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3464047, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca500", "tid": 35568, "ts": 3464060, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca500", "tid": 35568, "ts": 3464093, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9730", "tid": 35568, "ts": 3464258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3464500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3464731, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca9e0", "tid": 35568, "ts": 3464744, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca9e0", "tid": 35568, "ts": 3464772, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9e80", "tid": 35568, "ts": 3464883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3465062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194307, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916aea60", "tid": 35568, "ts": 3465131, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3465315, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9f50", "tid": 35568, "ts": 3465328, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9f50", "tid": 35568, "ts": 3465355, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3465511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3465735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec8fe0", "tid": 35568, "ts": 3465866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466260, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec90b0", "tid": 35568, "ts": 3466273, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec90b0", "tid": 35568, "ts": 3466305, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca020", "tid": 35568, "ts": 3466415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80d10", "tid": 35568, "ts": 3466720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3467115, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d80420", "tid": 35568, "ts": 3467128, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d80420", "tid": 35568, "ts": 3467155, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f4b0", "tid": 35568, "ts": 3467271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3467437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f8c0", "tid": 35568, "ts": 3467558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3467723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d809d0", "tid": 35568, "ts": 3467843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80de0", "tid": 35568, "ts": 3468125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1024, "Height": 768, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 4, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 87, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468570, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d7f170", "tid": 35568, "ts": 3468583, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d7f170", "tid": 35568, "ts": 3468610, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 4194304, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f650", "tid": 35568, "ts": 3468738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1024, "Height": 768, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 20, "Layout": 0, "SampleDesc": { "Count": 4, "Quality": 0 }, "Flags": 2 }, "initialResourceState": 0, "clearValue": { "Format": 20, "DepthStencil": { "Depth": 0.000000, "Stencil": 0 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3469177, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d80b70", "tid": 35568, "ts": 3469190, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d80b70", "tid": 35568, "ts": 3469217, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 4194304, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d805c0", "tid": 35568, "ts": 3469344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3469512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fa60", "tid": 35568, "ts": 3469634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 3469814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3469945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80eb0", "tid": 35568, "ts": 3470067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3470240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7ff40", "tid": 35568, "ts": 3470362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3470534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80c40", "tid": 35568, "ts": 3470655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3470826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80690", "tid": 35568, "ts": 3470946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3471118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d800e0", "tid": 35568, "ts": 3471246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3471418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fc00", "tid": 35568, "ts": 3471539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3471710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80760", "tid": 35568, "ts": 3471830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f720", "tid": 35568, "ts": 3472122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80f80", "tid": 35568, "ts": 3472422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d801b0", "tid": 35568, "ts": 3472714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fb30", "tid": 35568, "ts": 3473007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3473177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fcd0", "tid": 35568, "ts": 3473297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3473470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80aa0", "tid": 35568, "ts": 3473633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3473833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fda0", "tid": 35568, "ts": 3473955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fe70", "tid": 35568, "ts": 3474246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80010", "tid": 35568, "ts": 3474537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80830", "tid": 35568, "ts": 3474828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f0a0", "tid": 35568, "ts": 3475118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3475289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f7f0", "tid": 35568, "ts": 3475409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3475580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f240", "tid": 35568, "ts": 3475701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3475872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80900", "tid": 35568, "ts": 3475993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 10, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 10, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476422, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d7f310", "tid": 35568, "ts": 3476435, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d7f310", "tid": 35568, "ts": 3476462, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80280", "tid": 35568, "ts": 3476573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476974, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d80350", "tid": 35568, "ts": 3476987, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d80350", "tid": 35568, "ts": 3477015, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3477123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3477293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f580", "tid": 35568, "ts": 3477415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3477584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3477713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3477874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fa60", "tid": 35568, "ts": 3477998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3478175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fe70", "tid": 35568, "ts": 3478296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3478477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e801b0", "tid": 35568, "ts": 3478598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3478793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 10, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 10, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80eb0", "tid": 35568, "ts": 3478920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3479082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 32, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f240", "tid": 35568, "ts": 3479204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3479377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fb30", "tid": 35568, "ts": 3479498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3479653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f580", "tid": 35568, "ts": 3479742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 3479845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fa60", "tid": 35568, "ts": 3479930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3480057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 6, "MipLevels": 9, "Format": 10, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 10, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80f80", "tid": 35568, "ts": 3480255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3480429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 194256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e804f0", "tid": 35568, "ts": 3480567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fe70", "tid": 35568, "ts": 3480718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3480825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64752, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80690", "tid": 35568, "ts": 3480946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f0a0", "tid": 35568, "ts": 3481233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80280", "tid": 35568, "ts": 3481517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80010", "tid": 35568, "ts": 3481802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80420", "tid": 35568, "ts": 3482087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3482252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fcd0", "tid": 35568, "ts": 3482372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3482537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1008, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f170", "tid": 35568, "ts": 3482657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3482823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 696, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80350", "tid": 35568, "ts": 3482943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3483111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f8c0", "tid": 35568, "ts": 3483234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3483408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f310", "tid": 35568, "ts": 3483530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3483696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f650", "tid": 35568, "ts": 3483859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f990", "tid": 35568, "ts": 3484147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fda0", "tid": 35568, "ts": 3484432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 48, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e805c0", "tid": 35568, "ts": 3484726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 3744, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fa60", "tid": 35568, "ts": 3485014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3485179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1152, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f580", "tid": 35568, "ts": 3485299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3485463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f720", "tid": 35568, "ts": 3485585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3485754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fc00", "tid": 35568, "ts": 3485875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3486039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80c40", "tid": 35568, "ts": 3486162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3486326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80830", "tid": 35568, "ts": 3486446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3486700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80aa0", "tid": 35568, "ts": 3486868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f7f0", "tid": 35568, "ts": 3487183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487601, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23484e7fe70", "tid": 35568, "ts": 3487614, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23484e7fe70", "tid": 35568, "ts": 3487641, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80760", "tid": 35568, "ts": 3487753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3488047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3488201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7ff40", "tid": 35568, "ts": 3488321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3488473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3488598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3488750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80900", "tid": 35568, "ts": 3488873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3489037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3489164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3489492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80b70", "tid": 35568, "ts": 3489634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 3489768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7ff40", "tid": 35568, "ts": 3489856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3489941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80900", "tid": 35568, "ts": 3490025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80900", "tid": 35568, "ts": 3490282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7ff40", "tid": 35568, "ts": 3490554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3490827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3491102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3491236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3491343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3491463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3491628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3491748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3491935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80de0", "tid": 35568, "ts": 3492061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7ff40", "tid": 35568, "ts": 3492194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3492324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7ff40", "tid": 35568, "ts": 3492450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3492603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3492724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3492876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3492996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3493148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f580", "tid": 35568, "ts": 3493272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3493425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3493546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3493710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869588c0", "tid": 35568, "ts": 3493835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3493981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 3494068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3494153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3494237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3494363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959d10", "tid": 35568, "ts": 3494512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3494686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958990", "tid": 35568, "ts": 3494812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3494966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869587f0", "tid": 35568, "ts": 3495087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3495238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959420", "tid": 35568, "ts": 3495358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3495509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3495634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f580", "tid": 35568, "ts": 3495768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 3495859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3495945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3496030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3496133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3496253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3496419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959de0", "tid": 35568, "ts": 3496541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3496728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869590e0", "tid": 35568, "ts": 3496855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869588c0", "tid": 35568, "ts": 3496988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869587f0", "tid": 35568, "ts": 3497076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3497201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958b30", "tid": 35568, "ts": 3497327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3497482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3497602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3497753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958310", "tid": 35568, "ts": 3497873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3498025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3498158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959420", "tid": 35568, "ts": 3498292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3498380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 3498465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3498568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3498688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3498853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3498974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3499160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959420", "tid": 35568, "ts": 3499286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959de0", "tid": 35568, "ts": 3499420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3499507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3499633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959de0", "tid": 35568, "ts": 3499759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3499911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959eb0", "tid": 35568, "ts": 3500031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3500185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3500323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3500475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3500711, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234869591b0", "tid": 35568, "ts": 3500724, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234869591b0", "tid": 35568, "ts": 3500751, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3500869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958310", "tid": 35568, "ts": 3501012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 3501101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 3501186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3501270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3501374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3501496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3501662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3501787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3501976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959b70", "tid": 35568, "ts": 3502103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959eb0", "tid": 35568, "ts": 3502238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3502367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869583e0", "tid": 35568, "ts": 3502493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3502645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3502774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3502938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3503060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3503224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3503503, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23486959eb0", "tid": 35568, "ts": 3503516, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23486959eb0", "tid": 35568, "ts": 3503543, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959830", "tid": 35568, "ts": 3503655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3503807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3503896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 3503981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3504066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3504170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869594f0", "tid": 35568, "ts": 3504292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3504458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3504580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3504767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958a60", "tid": 35568, "ts": 3505014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3505248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 3505352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3505479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869599d0", "tid": 35568, "ts": 3505614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3505776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869588c0", "tid": 35568, "ts": 3505912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3506065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3506185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3506337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959010", "tid": 35568, "ts": 3506462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 3506613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959830", "tid": 35568, "ts": 3506715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869594f0", "tid": 35568, "ts": 3506817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3506921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3507043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3507215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3507343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3507538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959280", "tid": 35568, "ts": 3507665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869588c0", "tid": 35568, "ts": 3507806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3507935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959350", "tid": 35568, "ts": 3508061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3508222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869594f0", "tid": 35568, "ts": 3508350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3508511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3508632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3508793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3508919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3509060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 3509155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959010", "tid": 35568, "ts": 3509242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3509326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3509429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3509551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3509725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3509853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959010", "tid": 35568, "ts": 3510174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869588c0", "tid": 35568, "ts": 3510483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3510798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869595c0", "tid": 35568, "ts": 3511081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3511240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3511364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869594f0", "tid": 35568, "ts": 3511506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3511613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3511733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3511906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3512027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3512180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 3512277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3512404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869594f0", "tid": 35568, "ts": 3512543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3512727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958cd0", "tid": 35568, "ts": 3512853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3513143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3513436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3513799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3514079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3514245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3514374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3514528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 3514617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 3514702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 3514787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 3514871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3514996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959830", "tid": 35568, "ts": 3515130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3515306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3515432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3515584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3515705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3515858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3515978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3516130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3516253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3516406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3516534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3516699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958170", "tid": 35568, "ts": 3516820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3517008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3517179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3517320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3517450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869587f0", "tid": 35568, "ts": 3517577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3517731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3517851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3518021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3518143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3518306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3518432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3518566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3518654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869595c0", "tid": 35568, "ts": 3518738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3518823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 3518906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3518990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3519093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869595c0", "tid": 35568, "ts": 3519214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3519378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3519498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 3519643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3519730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958170", "tid": 35568, "ts": 3519814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 3519898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3519987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3520113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958580", "tid": 35568, "ts": 3520239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3520373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3520492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3520643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3520770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3520923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3521044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3521196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958310", "tid": 35568, "ts": 3521315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3521466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3521590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3521724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3521826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869595c0", "tid": 35568, "ts": 3521927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3522031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3522152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3522323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3522444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3522638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958170", "tid": 35568, "ts": 3522765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3522906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958310", "tid": 35568, "ts": 3522993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3523244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3523526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3523810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3524093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3524235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3524330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3524415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3524519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3524639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3524811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3524931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3525125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3525250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3525393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3525480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3525605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869595c0", "tid": 35568, "ts": 3525731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3525891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3526012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3526186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3526305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3526477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3526635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3526769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3526856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3526941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3527044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3527164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3527328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3527449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3527636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3527762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3527896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3527984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3528083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3528183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3528309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3528436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3528597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3528717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3528890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3529010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3529182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3529340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3529475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3529581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3529701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3529866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3529986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3530173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958310", "tid": 35568, "ts": 3530298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3530434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3530521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3530619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3530719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3530846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3530972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3531134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3531254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3531426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3531546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3531718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3531879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3532013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3532119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3532240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3532404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3532525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3532711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3532838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3532972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3533231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3533505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3533791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3534244, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3534257, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3534285, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3534396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3534540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3534643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3534749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3534835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3534940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3535062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3535237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3535358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3535554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3535681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3535824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 3535911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3536010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3536189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3536456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3536623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3536859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3537013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3537319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3537439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3537611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3537770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3537912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3538019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3538140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3538312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3538433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3538633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3538760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3538902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3538990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3539089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3539190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3539317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3539445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3539606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3539726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3539899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3540020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3540193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3540352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3540494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3540601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3540722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3540896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3541017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3541213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f580", "tid": 35568, "ts": 3541343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3552089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3552222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3552326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3552438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3552578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e6a0", "tid": 35568, "ts": 3552728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3552963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3553088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3553264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eec0", "tid": 35568, "ts": 3553385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3553558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3553724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3553867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3553976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ec50", "tid": 35568, "ts": 3554097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3554270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3554392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3554587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e500", "tid": 35568, "ts": 3554715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3554898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d320", "tid": 35568, "ts": 3555027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3555186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e910", "tid": 35568, "ts": 3555308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3555480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e9e0", "tid": 35568, "ts": 3555601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3555773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3555899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3556060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3556180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3556352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ed20", "tid": 35568, "ts": 3556473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3556667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e290", "tid": 35568, "ts": 3556793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 3556935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e910", "tid": 35568, "ts": 3557024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3557109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ec50", "tid": 35568, "ts": 3557206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3557333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157da70", "tid": 35568, "ts": 3557460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3557620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3557741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3557914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eab0", "tid": 35568, "ts": 3558035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3558207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3558331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3558473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3558560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3558665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3558786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3558959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3559079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eec0", "tid": 35568, "ts": 3559233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 3559321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e9e0", "tid": 35568, "ts": 3559406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ed20", "tid": 35568, "ts": 3559490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3559616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d660", "tid": 35568, "ts": 3559742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3559884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eab0", "tid": 35568, "ts": 3559971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 3560070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3560170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3560297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157edf0", "tid": 35568, "ts": 3560423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3560585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d250", "tid": 35568, "ts": 3560707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3560881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e840", "tid": 35568, "ts": 3561024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3561197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3561356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3561498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3561605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3561725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3561898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3562017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3562213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e020", "tid": 35568, "ts": 3562339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d250", "tid": 35568, "ts": 3562480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e840", "tid": 35568, "ts": 3562568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 3562667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3562767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3562895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eab0", "tid": 35568, "ts": 3563021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3563182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d0b0", "tid": 35568, "ts": 3563303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3563475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3563595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3563766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e840", "tid": 35568, "ts": 3563924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3564066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3564173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e910", "tid": 35568, "ts": 3564293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3564466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e9e0", "tid": 35568, "ts": 3564586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3564780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d250", "tid": 35568, "ts": 3564923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d0b0", "tid": 35568, "ts": 3565065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 3565153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e840", "tid": 35568, "ts": 3565252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e910", "tid": 35568, "ts": 3565352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3565478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e430", "tid": 35568, "ts": 3565604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3565765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eec0", "tid": 35568, "ts": 3565885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3566177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3566506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3566797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d800", "tid": 35568, "ts": 3567089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e9e0", "tid": 35568, "ts": 3567243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3567386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e9e0", "tid": 35568, "ts": 3567523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eec0", "tid": 35568, "ts": 3567665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3567754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3567853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 3567952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eec0", "tid": 35568, "ts": 3568206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3568489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3568781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3569110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d800", "tid": 35568, "ts": 3569252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3569359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3569479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3569652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3569772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3569967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e840", "tid": 35568, "ts": 3570094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3570236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 3570324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3570423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 3570523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3570649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ed20", "tid": 35568, "ts": 3570775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3570935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3571055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3571228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3571348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3571520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3571678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 3571821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3571928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157df50", "tid": 35568, "ts": 3572048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3572221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3572342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3572536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e910", "tid": 35568, "ts": 3572663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3572805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3572892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3572991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157df50", "tid": 35568, "ts": 3573090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3573217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ef90", "tid": 35568, "ts": 3573343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3573505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3573632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3573803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3573924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3574096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ec50", "tid": 35568, "ts": 3574254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3574396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3574502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d0b0", "tid": 35568, "ts": 3574622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3574794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3574914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3575108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d180", "tid": 35568, "ts": 3575235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3575377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3575505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3575631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3575791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3575912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3576085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3576206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3576379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3576503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3576646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3576734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ec50", "tid": 35568, "ts": 3576819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d0b0", "tid": 35568, "ts": 3576903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3577006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3577126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3577299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3577419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3577612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ec50", "tid": 35568, "ts": 3577739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3577882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d0b0", "tid": 35568, "ts": 3578139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3578420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3578712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3579007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 3579149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3579236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 3579321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3579405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3579507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3579627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3579799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3579920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3580114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3580239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3580381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3580509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3580634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3580795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3580915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3581087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3581208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3581379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3581505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3581648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 3581735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3581821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3581904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3582007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3582127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3582299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3582419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3582614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157df50", "tid": 35568, "ts": 3582740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3582882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3583200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3583481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d800", "tid": 35568, "ts": 3583773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3584068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 3584211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3584298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3584383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 3584466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3584569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3584689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3584863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3584983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3585177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3585307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3585450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3585577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3585703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3585864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3585985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3586155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d8d0", "tid": 35568, "ts": 3586287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3586459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3586585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3586745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3586866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3587038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d9a0", "tid": 35568, "ts": 3587158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d800", "tid": 35568, "ts": 3587312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 3587402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3587487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3587571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3587696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d800", "tid": 35568, "ts": 3587822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3588131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3588413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3588707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3589002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3589162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3589282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3589454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f990", "tid": 35568, "ts": 3589585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3589780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d804f0", "tid": 35568, "ts": 3589907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3590214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3590496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3590790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3591085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3591227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3591315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3591400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 3591483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3591567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 3591651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3591755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3591874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3592169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3592490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3592797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3593078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3593251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3593371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3593592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3593766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3593927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3594047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3594219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3594350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d9a0", "tid": 35568, "ts": 3594535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 3594624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f990", "tid": 35568, "ts": 3594710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d8d0", "tid": 35568, "ts": 3594794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3594878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3595004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac280", "tid": 35568, "ts": 3595131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3595272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3595359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3595443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3595527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3595611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3595709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3595810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3595937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab650", "tid": 35568, "ts": 3596062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3596223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3596345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3596516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3596636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3596807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac350", "tid": 35568, "ts": 3596965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3597108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3597195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3597300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab7f0", "tid": 35568, "ts": 3597421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3597594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac5c0", "tid": 35568, "ts": 3597714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3597908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818aba60", "tid": 35568, "ts": 3598034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3598176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3598263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac350", "tid": 35568, "ts": 3598363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab7f0", "tid": 35568, "ts": 3598462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3598645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acde0", "tid": 35568, "ts": 3598828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3598990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3599112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3599285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3599405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3599577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3599735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac5c0", "tid": 35568, "ts": 3599878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3599984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab240", "tid": 35568, "ts": 3600104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3600276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3600397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3600590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acb70", "tid": 35568, "ts": 3600718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3600859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3600947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3601046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab240", "tid": 35568, "ts": 3601147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3601274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acf80", "tid": 35568, "ts": 3601400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3601561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3601681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3601854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3601974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3602146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3602304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3602445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3602552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3602672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3602845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3602965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3603158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab3e0", "tid": 35568, "ts": 3603284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3603425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3603512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3603611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3603711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3603838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab4b0", "tid": 35568, "ts": 3603963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3604124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3604243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3604415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac900", "tid": 35568, "ts": 3604535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3604706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3604864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3605006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3605111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acc40", "tid": 35568, "ts": 3605232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3605404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abc00", "tid": 35568, "ts": 3605532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3605726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3606016, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234818ac350", "tid": 35568, "ts": 3606029, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234818ac350", "tid": 35568, "ts": 3606060, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab240", "tid": 35568, "ts": 3606171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3606367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac900", "tid": 35568, "ts": 3606456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 3606556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acc40", "tid": 35568, "ts": 3606656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3606785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac690", "tid": 35568, "ts": 3606911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3607072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3607193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3607366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3607485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3607657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac900", "tid": 35568, "ts": 3607815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abc00", "tid": 35568, "ts": 3607957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3608063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3608183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3608362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3608484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3608679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acc40", "tid": 35568, "ts": 3608805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3608957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 3609044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac900", "tid": 35568, "ts": 3609144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3609243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3609370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abc00", "tid": 35568, "ts": 3609496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3609657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3609777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3609950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3610069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3610240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3610398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3610541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3610657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3610778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3610951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3611070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3611264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab7f0", "tid": 35568, "ts": 3611391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3611532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3611620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 3611719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3611819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3611945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818aceb0", "tid": 35568, "ts": 3612071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3612232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3612351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3612524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3612643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3612816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3612974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3613116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3613222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab720", "tid": 35568, "ts": 3613342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3613514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac5c0", "tid": 35568, "ts": 3613634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3613828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3613954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3614095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3614182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3614363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab720", "tid": 35568, "ts": 3614465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3614593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3614720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3614880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3615001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3615174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3615293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3615466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3615624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac5c0", "tid": 35568, "ts": 3615767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3615873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3615994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3616167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3616293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3616488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac900", "tid": 35568, "ts": 3616614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 3616757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3616844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3616970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3617096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3617256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3617376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3617549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3617668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3617841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3617965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3618107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3618194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3618278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3618381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3618501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3618674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3618794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3618988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac5c0", "tid": 35568, "ts": 3619113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3619255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 3619343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3619443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3619543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3619669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3619796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3619956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3620076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3620249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3620368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3620540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac760", "tid": 35568, "ts": 3620697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3620839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3620945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3621065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3621238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3621358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3621553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab720", "tid": 35568, "ts": 3621679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 3621821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3621908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac760", "tid": 35568, "ts": 3622007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3622107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3622233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3622364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3622525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3622645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3622817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3622936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3623108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abe70", "tid": 35568, "ts": 3623265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3623408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3623514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3623634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3623806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3623927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3624121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac010", "tid": 35568, "ts": 3624246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3624388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3624477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abe70", "tid": 35568, "ts": 3624576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 3624701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3624828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3624953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3625114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3625233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3625407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac760", "tid": 35568, "ts": 3625526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3625697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3625855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3625997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3626104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abe70", "tid": 35568, "ts": 3626224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3626396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3626575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3626772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac0e0", "tid": 35568, "ts": 3626898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3627040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac760", "tid": 35568, "ts": 3627129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3627255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3627381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3627543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3627662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3627841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac420", "tid": 35568, "ts": 3627962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3628136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3628260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 3628402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3628489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abe70", "tid": 35568, "ts": 3628574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3628677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3628797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3628971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3629091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3629287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abe70", "tid": 35568, "ts": 3629412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3629554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac420", "tid": 35568, "ts": 3629641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3629741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3629887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac420", "tid": 35568, "ts": 3630141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3630424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3630718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3631050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3631192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3631299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3631421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3631595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3631718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3631912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac760", "tid": 35568, "ts": 3632055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3632197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3632284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3632383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3632496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3632624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3632750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3632911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3633031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3633202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3633322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3633493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3633651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 3633792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3633899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3634019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3634192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3634312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3634506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3634632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3634774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3634862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3634961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3635062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3635188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3635314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3635475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3635594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3635767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3635886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3636058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3636215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3636357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3636463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3636583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3636754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3636881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3637077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3637204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3637345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3637432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3637531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3637631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3637758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3637921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3638082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3638298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3638451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3638577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3638730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3638854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3638988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3639095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3639215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3639380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d8d0", "tid": 35568, "ts": 3639500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3639688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3639867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d9a0", "tid": 35568, "ts": 3640155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640547, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3640560, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348157dce0", "tid": 35568, "ts": 3640588, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3640696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3640976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3641118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3641206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3641310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3641431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3641597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3641717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3641904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3642141, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3642154, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23486958720", "tid": 35568, "ts": 3642182, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3642296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3642460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3642582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3642735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3642898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3643050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3643176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3643327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3643415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d9a0", "tid": 35568, "ts": 3643501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d8d0", "tid": 35568, "ts": 3643585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3643688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3643809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3643974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3644094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3644259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3644380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3644526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3644613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3644698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3644782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3644866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3644964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3645048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3645151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3645271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3645503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3645739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 168, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3645915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3646198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 56, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d8d0", "tid": 35568, "ts": 3646342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3646601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3646708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d9a0", "tid": 35568, "ts": 3646828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3647121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3647412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 22056, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3647705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 7352, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3647997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3648169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3648289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3648484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f990", "tid": 35568, "ts": 3648624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3648785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3648940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3649223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d395c0", "tid": 35568, "ts": 3649514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d380a0", "tid": 35568, "ts": 3649797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38310", "tid": 35568, "ts": 3650090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3650262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d383e0", "tid": 35568, "ts": 3650382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3650553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38650", "tid": 35568, "ts": 3650679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d395c0", "tid": 35568, "ts": 3650832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d380a0", "tid": 35568, "ts": 3650920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3651005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3651110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38580", "tid": 35568, "ts": 3651230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3651403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39de0", "tid": 35568, "ts": 3651523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3651696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39010", "tid": 35568, "ts": 3651815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3651984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38310", "tid": 35568, "ts": 3652088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3652215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3652467, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d384b0", "tid": 35568, "ts": 3652480, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d384b0", "tid": 35568, "ts": 3652508, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38170", "tid": 35568, "ts": 3652622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3652796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d395c0", "tid": 35568, "ts": 3652952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38cd0", "tid": 35568, "ts": 3653235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39690", "tid": 35568, "ts": 3653520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38240", "tid": 35568, "ts": 3653801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d390e0", "tid": 35568, "ts": 3654095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3654267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39b70", "tid": 35568, "ts": 3654387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3654558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38310", "tid": 35568, "ts": 3654679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d395c0", "tid": 35568, "ts": 3654834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39690", "tid": 35568, "ts": 3654922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38240", "tid": 35568, "ts": 3655022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3655126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38240", "tid": 35568, "ts": 3655247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3655419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38b30", "tid": 35568, "ts": 3655554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38cd0", "tid": 35568, "ts": 3655723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d390e0", "tid": 35568, "ts": 3655826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3655930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38720", "tid": 35568, "ts": 3656050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3656224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39eb0", "tid": 35568, "ts": 3656344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3656515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38c00", "tid": 35568, "ts": 3656635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3656808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39d10", "tid": 35568, "ts": 3656929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3657118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39900", "tid": 35568, "ts": 3657239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3657412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d391b0", "tid": 35568, "ts": 3657532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3657704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d387f0", "tid": 35568, "ts": 3657824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d388c0", "tid": 35568, "ts": 3658123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39c40", "tid": 35568, "ts": 3658432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38da0", "tid": 35568, "ts": 3658724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39f80", "tid": 35568, "ts": 3659016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3659188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d380a0", "tid": 35568, "ts": 3659308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3659480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d394f0", "tid": 35568, "ts": 3659602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3659774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38e70", "tid": 35568, "ts": 3659909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38f40", "tid": 35568, "ts": 3660201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d390e0", "tid": 35568, "ts": 3660494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39280", "tid": 35568, "ts": 3660786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d395c0", "tid": 35568, "ts": 3661138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3661379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38990", "tid": 35568, "ts": 3661499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3661670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39350", "tid": 35568, "ts": 3661789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3661961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39690", "tid": 35568, "ts": 3662081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3662252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38a60", "tid": 35568, "ts": 3662372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3662543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38cd0", "tid": 35568, "ts": 3662663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3662835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39760", "tid": 35568, "ts": 3662959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3663131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39420", "tid": 35568, "ts": 3663250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3663422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39830", "tid": 35568, "ts": 3663542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3663714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d399d0", "tid": 35568, "ts": 3663833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39aa0", "tid": 35568, "ts": 3664125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3664416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3664709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0990", "tid": 35568, "ts": 3665001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3665173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1420", "tid": 35568, "ts": 3665293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3665466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d07f0", "tid": 35568, "ts": 3665586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3665758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1830", "tid": 35568, "ts": 3665878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1010", "tid": 35568, "ts": 3666170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0580", "tid": 35568, "ts": 3666470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1f80", "tid": 35568, "ts": 3666764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1760", "tid": 35568, "ts": 3667060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3667232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1b70", "tid": 35568, "ts": 3667352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3667523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1d10", "tid": 35568, "ts": 3667644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3667815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d00a0", "tid": 35568, "ts": 3667934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0b30", "tid": 35568, "ts": 3668226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d11b0", "tid": 35568, "ts": 3668517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1c40", "tid": 35568, "ts": 3668826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0c00", "tid": 35568, "ts": 3669117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3669289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1de0", "tid": 35568, "ts": 3669409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3669581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0e70", "tid": 35568, "ts": 3669701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3669874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1900", "tid": 35568, "ts": 3669994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3670165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1350", "tid": 35568, "ts": 3670285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3670456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1eb0", "tid": 35568, "ts": 3670577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3670748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0a60", "tid": 35568, "ts": 3670868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1aa0", "tid": 35568, "ts": 3671160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d15c0", "tid": 35568, "ts": 3671453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0650", "tid": 35568, "ts": 3671744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0cd0", "tid": 35568, "ts": 3672036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3672208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d10e0", "tid": 35568, "ts": 3672328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3672499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d04b0", "tid": 35568, "ts": 3672618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3672790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0170", "tid": 35568, "ts": 3672910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0240", "tid": 35568, "ts": 3673209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0310", "tid": 35568, "ts": 3673511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0da0", "tid": 35568, "ts": 3673804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0f40", "tid": 35568, "ts": 3674096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3674269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d14f0", "tid": 35568, "ts": 3674389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3674565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1690", "tid": 35568, "ts": 3674686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3674856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d08c0", "tid": 35568, "ts": 3674978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3675149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1280", "tid": 35568, "ts": 3675269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3675440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0720", "tid": 35568, "ts": 3675561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3675732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d19d0", "tid": 35568, "ts": 3675852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3676024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d03e0", "tid": 35568, "ts": 3676144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3676317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7180a0", "tid": 35568, "ts": 3676440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3676612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718a60", "tid": 35568, "ts": 3676806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718cd0", "tid": 35568, "ts": 3677191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719760", "tid": 35568, "ts": 3677482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7199d0", "tid": 35568, "ts": 3677774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718650", "tid": 35568, "ts": 3678066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3678237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718170", "tid": 35568, "ts": 3678357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3678529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719eb0", "tid": 35568, "ts": 3678648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3678819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719b70", "tid": 35568, "ts": 3678939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718580", "tid": 35568, "ts": 3679233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719350", "tid": 35568, "ts": 3679525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7188c0", "tid": 35568, "ts": 3679817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719f80", "tid": 35568, "ts": 3680108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3680278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718da0", "tid": 35568, "ts": 3680399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3680570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719830", "tid": 35568, "ts": 3680747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3680920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3681179, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348e718720", "tid": 35568, "ts": 3681192, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348e718720", "tid": 35568, "ts": 3681220, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718240", "tid": 35568, "ts": 3681328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3681502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7195c0", "tid": 35568, "ts": 3681623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3681795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7190e0", "tid": 35568, "ts": 3681916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718c00", "tid": 35568, "ts": 3682218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719d10", "tid": 35568, "ts": 3682509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7187f0", "tid": 35568, "ts": 3682802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718e70", "tid": 35568, "ts": 3683095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3683266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719690", "tid": 35568, "ts": 3683386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3683558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719c40", "tid": 35568, "ts": 3683678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3683851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719de0", "tid": 35568, "ts": 3683971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3684142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719420", "tid": 35568, "ts": 3684262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3684434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718310", "tid": 35568, "ts": 3684555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3684731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7183e0", "tid": 35568, "ts": 3684853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7184b0", "tid": 35568, "ts": 3685146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718990", "tid": 35568, "ts": 3685441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719900", "tid": 35568, "ts": 3685734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718b30", "tid": 35568, "ts": 3686026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3686197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719aa0", "tid": 35568, "ts": 3686318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3686490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7191b0", "tid": 35568, "ts": 3686610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3686781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719280", "tid": 35568, "ts": 3686908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3687079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718f40", "tid": 35568, "ts": 3687199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3687371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7194f0", "tid": 35568, "ts": 3687491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3687663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719010", "tid": 35568, "ts": 3687868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7495c0", "tid": 35568, "ts": 3688169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74aae0", "tid": 35568, "ts": 3688462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749de0", "tid": 35568, "ts": 3688753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74aef0", "tid": 35568, "ts": 3689045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3689217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a120", "tid": 35568, "ts": 3689336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3689508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749350", "tid": 35568, "ts": 3689628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3689800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749b70", "tid": 35568, "ts": 3689921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3690093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749830", "tid": 35568, "ts": 3690213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3690384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749690", "tid": 35568, "ts": 3690504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3690732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b160", "tid": 35568, "ts": 3690855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748cd0", "tid": 35568, "ts": 3691155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748e70", "tid": 35568, "ts": 3691448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a870", "tid": 35568, "ts": 3691739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748990", "tid": 35568, "ts": 3692039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3692211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749900", "tid": 35568, "ts": 3692404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3692599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748da0", "tid": 35568, "ts": 3692784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3692958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7494f0", "tid": 35568, "ts": 3693078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3693250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7483e0", "tid": 35568, "ts": 3693371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3693542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748f40", "tid": 35568, "ts": 3693662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3693832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a940", "tid": 35568, "ts": 3693952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3694123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749010", "tid": 35568, "ts": 3694243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3694414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7487f0", "tid": 35568, "ts": 3694557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3694729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748720", "tid": 35568, "ts": 3694849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a530", "tid": 35568, "ts": 3695140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749d10", "tid": 35568, "ts": 3695431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74aa10", "tid": 35568, "ts": 3695722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749420", "tid": 35568, "ts": 3696014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3696185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7490e0", "tid": 35568, "ts": 3696305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3696476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a6d0", "tid": 35568, "ts": 3696595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3696766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749c40", "tid": 35568, "ts": 3696886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7484b0", "tid": 35568, "ts": 3697177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7499d0", "tid": 35568, "ts": 3697467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a050", "tid": 35568, "ts": 3697759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748310", "tid": 35568, "ts": 3698050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3698222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74abb0", "tid": 35568, "ts": 3698352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3698524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7491b0", "tid": 35568, "ts": 3698644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3698816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ad50", "tid": 35568, "ts": 3698936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a460", "tid": 35568, "ts": 3699228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7488c0", "tid": 35568, "ts": 3699519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ac80", "tid": 35568, "ts": 3699811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ae20", "tid": 35568, "ts": 3700107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3700279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74afc0", "tid": 35568, "ts": 3700398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3700570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a600", "tid": 35568, "ts": 3700691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3700863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748580", "tid": 35568, "ts": 3700983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3701154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749aa0", "tid": 35568, "ts": 3701274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3701446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748650", "tid": 35568, "ts": 3701566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3701737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749280", "tid": 35568, "ts": 3701857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748a60", "tid": 35568, "ts": 3702149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a7a0", "tid": 35568, "ts": 3702442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b090", "tid": 35568, "ts": 3702731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7480a0", "tid": 35568, "ts": 3703023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3703193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749760", "tid": 35568, "ts": 3703314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3703492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749eb0", "tid": 35568, "ts": 3703614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3703785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749f80", "tid": 35568, "ts": 3703905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a1f0", "tid": 35568, "ts": 3704202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b230", "tid": 35568, "ts": 3704493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a2c0", "tid": 35568, "ts": 3704784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a390", "tid": 35568, "ts": 3705076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3705247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b300", "tid": 35568, "ts": 3705367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3705539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b3d0", "tid": 35568, "ts": 3705658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3705830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748170", "tid": 35568, "ts": 3705951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3706121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748240", "tid": 35568, "ts": 3706241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3706412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748b30", "tid": 35568, "ts": 3706544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3706716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748c00", "tid": 35568, "ts": 3706836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bcc0", "tid": 35568, "ts": 3707128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b8b0", "tid": 35568, "ts": 3707419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ba50", "tid": 35568, "ts": 3707711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b980", "tid": 35568, "ts": 3708113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3708333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bb20", "tid": 35568, "ts": 3708462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3708646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bd90", "tid": 35568, "ts": 3708789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3709006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bbf0", "tid": 35568, "ts": 3709137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3709369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74be60", "tid": 35568, "ts": 3709529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3709701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bf30", "tid": 35568, "ts": 3709845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3710083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b4a0", "tid": 35568, "ts": 3710237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3710435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b710", "tid": 35568, "ts": 3710555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3710726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b640", "tid": 35568, "ts": 3710861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b7e0", "tid": 35568, "ts": 3711157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b570", "tid": 35568, "ts": 3711474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa6d0", "tid": 35568, "ts": 3711780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8310", "tid": 35568, "ts": 3712079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3712253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8170", "tid": 35568, "ts": 3712376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3712549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a91b0", "tid": 35568, "ts": 3712670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3712844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9f80", "tid": 35568, "ts": 3712966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3713138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a80a0", "tid": 35568, "ts": 3713260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3713437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8650", "tid": 35568, "ts": 3713559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3713734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8e70", "tid": 35568, "ts": 3735913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3736191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9280", "tid": 35568, "ts": 3736323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3736498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a90e0", "tid": 35568, "ts": 3736622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3736795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa940", "tid": 35568, "ts": 3736918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa1f0", "tid": 35568, "ts": 3737213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa600", "tid": 35568, "ts": 3737506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8720", "tid": 35568, "ts": 3737801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a99d0", "tid": 35568, "ts": 3738095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3738266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9690", "tid": 35568, "ts": 3738387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3738559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aad50", "tid": 35568, "ts": 3738681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3738853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9aa0", "tid": 35568, "ts": 3738974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3739146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa7a0", "tid": 35568, "ts": 3739344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3739559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8f40", "tid": 35568, "ts": 3739683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3739855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aae20", "tid": 35568, "ts": 3739977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3740149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9350", "tid": 35568, "ts": 3740271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3740444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9010", "tid": 35568, "ts": 3740565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3740737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a87f0", "tid": 35568, "ts": 3740858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9420", "tid": 35568, "ts": 3741150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9830", "tid": 35568, "ts": 3741462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9b70", "tid": 35568, "ts": 3741768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x2349535a9c0", "tid": 35568, "ts": 3742004, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3742243, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b7aa390", "tid": 35568, "ts": 3742257, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b7aa390", "tid": 35568, "ts": 3742287, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9de0", "tid": 35568, "ts": 3742396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3742571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a83e0", "tid": 35568, "ts": 3742693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3742865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aaef0", "tid": 35568, "ts": 3742986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3743171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a84b0", "tid": 35568, "ts": 3743293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3743465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aafc0", "tid": 35568, "ts": 3743588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3743761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa050", "tid": 35568, "ts": 3743883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8240", "tid": 35568, "ts": 3744175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a94f0", "tid": 35568, "ts": 3744467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a95c0", "tid": 35568, "ts": 3744761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9c40", "tid": 35568, "ts": 3745067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3745240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9760", "tid": 35568, "ts": 3745361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3745535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9900", "tid": 35568, "ts": 3745660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3745831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9d10", "tid": 35568, "ts": 3745956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3746128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aaa10", "tid": 35568, "ts": 3746249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3746421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a88c0", "tid": 35568, "ts": 3746542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3746716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab090", "tid": 35568, "ts": 3746837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8990", "tid": 35568, "ts": 3747130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8b30", "tid": 35568, "ts": 3747421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa460", "tid": 35568, "ts": 3747712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9eb0", "tid": 35568, "ts": 3748053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3748223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa120", "tid": 35568, "ts": 3748345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3748518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa2c0", "tid": 35568, "ts": 3748639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3748810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab160", "tid": 35568, "ts": 3748931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8a60", "tid": 35568, "ts": 3749224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa530", "tid": 35568, "ts": 3749516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aabb0", "tid": 35568, "ts": 3749809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8c00", "tid": 35568, "ts": 3750100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3750271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aac80", "tid": 35568, "ts": 3750393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3750569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab230", "tid": 35568, "ts": 3750694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3750868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab300", "tid": 35568, "ts": 3750989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3751161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab3d0", "tid": 35568, "ts": 3751281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3751452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8cd0", "tid": 35568, "ts": 3751573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3751744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8da0", "tid": 35568, "ts": 3751865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab4a0", "tid": 35568, "ts": 3752160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab640", "tid": 35568, "ts": 3752453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab570", "tid": 35568, "ts": 3752745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab7e0", "tid": 35568, "ts": 3753036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3753208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abe60", "tid": 35568, "ts": 3753329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3753500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abf30", "tid": 35568, "ts": 3753675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3753847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab710", "tid": 35568, "ts": 3753994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3754166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab8b0", "tid": 35568, "ts": 3754286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3754457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abd90", "tid": 35568, "ts": 3754577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3754748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab980", "tid": 35568, "ts": 3754962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3755302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aba50", "tid": 35568, "ts": 3755475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3755708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abb20", "tid": 35568, "ts": 3755889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3756125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abbf0", "tid": 35568, "ts": 3756246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3756417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abcc0", "tid": 35568, "ts": 3756538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3756709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3756830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e770", "tid": 35568, "ts": 3757123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8300", "tid": 35568, "ts": 3757416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a99c0", "tid": 35568, "ts": 3757708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa5f0", "tid": 35568, "ts": 3758000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3758170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9270", "tid": 35568, "ts": 3758290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3758463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9340", "tid": 35568, "ts": 3758584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3758755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8160", "tid": 35568, "ts": 3758881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9a90", "tid": 35568, "ts": 3759177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9680", "tid": 35568, "ts": 3759470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a84a0", "tid": 35568, "ts": 3759763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa860", "tid": 35568, "ts": 3760054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3760227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa040", "tid": 35568, "ts": 3760347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3760518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8cc0", "tid": 35568, "ts": 3760639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3760810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9b60", "tid": 35568, "ts": 3760931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa6c0", "tid": 35568, "ts": 3761223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aad40", "tid": 35568, "ts": 3761515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaad0", "tid": 35568, "ts": 3761808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a90d0", "tid": 35568, "ts": 3762100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3762271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab150", "tid": 35568, "ts": 3762392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3762564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8d90", "tid": 35568, "ts": 3762684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3762856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8a50", "tid": 35568, "ts": 3762976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3763148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9000", "tid": 35568, "ts": 3763269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3763441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a91a0", "tid": 35568, "ts": 3763562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3763736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab220", "tid": 35568, "ts": 3763857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a94e0", "tid": 35568, "ts": 3764150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8090", "tid": 35568, "ts": 3764442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8640", "tid": 35568, "ts": 3764734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa110", "tid": 35568, "ts": 3765027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3765198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aae10", "tid": 35568, "ts": 3765319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3765491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9d00", "tid": 35568, "ts": 3765612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3765784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9410", "tid": 35568, "ts": 3765905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a95b0", "tid": 35568, "ts": 3766198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab2f0", "tid": 35568, "ts": 3766491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa930", "tid": 35568, "ts": 3766784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaa00", "tid": 35568, "ts": 3767075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3767246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a98f0", "tid": 35568, "ts": 3767367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3767537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab3c0", "tid": 35568, "ts": 3767658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3767829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8e60", "tid": 35568, "ts": 3767949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9f70", "tid": 35568, "ts": 3768241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaba0", "tid": 35568, "ts": 3768534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a88b0", "tid": 35568, "ts": 3768827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa520", "tid": 35568, "ts": 3769119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3769291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9c30", "tid": 35568, "ts": 3769411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3769583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8230", "tid": 35568, "ts": 3769703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3769875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa450", "tid": 35568, "ts": 3769995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3770167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8f30", "tid": 35568, "ts": 3770287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3770492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaee0", "tid": 35568, "ts": 3770640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3770811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a83d0", "tid": 35568, "ts": 3770932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa1e0", "tid": 35568, "ts": 3771224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aac70", "tid": 35568, "ts": 3771518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9750", "tid": 35568, "ts": 3771811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9820", "tid": 35568, "ts": 3772102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3772274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aafb0", "tid": 35568, "ts": 3772394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3772566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa2b0", "tid": 35568, "ts": 3772687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3772859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab080", "tid": 35568, "ts": 3772979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3773150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa790", "tid": 35568, "ts": 3773271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3773443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8570", "tid": 35568, "ts": 3773562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3773734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9dd0", "tid": 35568, "ts": 3773854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8710", "tid": 35568, "ts": 3774145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9ea0", "tid": 35568, "ts": 3774438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a87e0", "tid": 35568, "ts": 3774731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8bf0", "tid": 35568, "ts": 3775045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3775216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8980", "tid": 35568, "ts": 3775338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3775509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8b20", "tid": 35568, "ts": 3775630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3775801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa380", "tid": 35568, "ts": 3775921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abd80", "tid": 35568, "ts": 3776214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abcb0", "tid": 35568, "ts": 3776507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abe50", "tid": 35568, "ts": 3776799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abf20", "tid": 35568, "ts": 3777091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3777263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab490", "tid": 35568, "ts": 3777383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3777554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab560", "tid": 35568, "ts": 3777675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3777848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab630", "tid": 35568, "ts": 3778026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3778197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab700", "tid": 35568, "ts": 3778318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3778490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab7d0", "tid": 35568, "ts": 3778610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3778783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab8a0", "tid": 35568, "ts": 3778903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abb10", "tid": 35568, "ts": 3779195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab970", "tid": 35568, "ts": 3779486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aba40", "tid": 35568, "ts": 3779780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abbe0", "tid": 35568, "ts": 3780072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3780245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d348b0", "tid": 35568, "ts": 3780367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3780539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35410", "tid": 35568, "ts": 3780659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3780873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d354e0", "tid": 35568, "ts": 3781000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3781172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d344a0", "tid": 35568, "ts": 3781293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3781463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34570", "tid": 35568, "ts": 3781584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3781755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34230", "tid": 35568, "ts": 3781875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36ad0", "tid": 35568, "ts": 3782168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35d00", "tid": 35568, "ts": 3782460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d355b0", "tid": 35568, "ts": 3782751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35ea0", "tid": 35568, "ts": 3783054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3783226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35680", "tid": 35568, "ts": 3783347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3783562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35dd0", "tid": 35568, "ts": 3783690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3783863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35b60", "tid": 35568, "ts": 3783986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3784157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35a90", "tid": 35568, "ts": 3784277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3784448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35340", "tid": 35568, "ts": 3784569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3784741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34a50", "tid": 35568, "ts": 3784861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35c30", "tid": 35568, "ts": 3785154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34640", "tid": 35568, "ts": 3785446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35f70", "tid": 35568, "ts": 3785740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36930", "tid": 35568, "ts": 3786031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3786272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36a00", "tid": 35568, "ts": 3786394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3786565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36e10", "tid": 35568, "ts": 3786686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3786858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d358f0", "tid": 35568, "ts": 3786979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3787151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34710", "tid": 35568, "ts": 3787272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3787443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36110", "tid": 35568, "ts": 3787564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3787735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d359c0", "tid": 35568, "ts": 3787856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d347e0", "tid": 35568, "ts": 3788148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36040", "tid": 35568, "ts": 3788440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34cc0", "tid": 35568, "ts": 3788732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35750", "tid": 35568, "ts": 3789023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3789195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d351a0", "tid": 35568, "ts": 3789315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3789487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d361e0", "tid": 35568, "ts": 3789607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3789779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d362b0", "tid": 35568, "ts": 3789899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34980", "tid": 35568, "ts": 3790196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36fb0", "tid": 35568, "ts": 3790487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34b20", "tid": 35568, "ts": 3790779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37220", "tid": 35568, "ts": 3791071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3791242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d372f0", "tid": 35568, "ts": 3791363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3791534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36ba0", "tid": 35568, "ts": 3791656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3791828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d365f0", "tid": 35568, "ts": 3791949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36380", "tid": 35568, "ts": 3792240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37080", "tid": 35568, "ts": 3792532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34bf0", "tid": 35568, "ts": 3792823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35820", "tid": 35568, "ts": 3793116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3793289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34d90", "tid": 35568, "ts": 3793409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3793581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36450", "tid": 35568, "ts": 3793702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3793874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35270", "tid": 35568, "ts": 3793996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3794166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34e60", "tid": 35568, "ts": 3794307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3794502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36520", "tid": 35568, "ts": 3794623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3794793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d366c0", "tid": 35568, "ts": 3794915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36790", "tid": 35568, "ts": 3795208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36860", "tid": 35568, "ts": 3795499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34f30", "tid": 35568, "ts": 3795825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36c70", "tid": 35568, "ts": 3796118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3796289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36ee0", "tid": 35568, "ts": 3796410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3796581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36d40", "tid": 35568, "ts": 3796702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3796874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37150", "tid": 35568, "ts": 3796995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3797169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d373c0", "tid": 35568, "ts": 3797290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3797462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34090", "tid": 35568, "ts": 3797582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3797753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34160", "tid": 35568, "ts": 3797874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35000", "tid": 35568, "ts": 3798167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34300", "tid": 35568, "ts": 3798459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d343d0", "tid": 35568, "ts": 3798752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d350d0", "tid": 35568, "ts": 3799044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3799215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37970", "tid": 35568, "ts": 3799336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3799507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37f20", "tid": 35568, "ts": 3799627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3799797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37d80", "tid": 35568, "ts": 3799919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37630", "tid": 35568, "ts": 3800211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37cb0", "tid": 35568, "ts": 3800503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37b10", "tid": 35568, "ts": 3800794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d377d0", "tid": 35568, "ts": 3801086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3801257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37700", "tid": 35568, "ts": 3801377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3801549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d378a0", "tid": 35568, "ts": 3801670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3801991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37e50", "tid": 35568, "ts": 3802130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3802303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37a40", "tid": 35568, "ts": 3802424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3802596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37be0", "tid": 35568, "ts": 3802718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3802890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37490", "tid": 35568, "ts": 3803011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3803183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37560", "tid": 35568, "ts": 3803333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3803506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c4b0", "tid": 35568, "ts": 3803639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3803813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1dde0", "tid": 35568, "ts": 3803935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1eae0", "tid": 35568, "ts": 3804231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c580", "tid": 35568, "ts": 3804524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ea10", "tid": 35568, "ts": 3804818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ec80", "tid": 35568, "ts": 3805112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3805284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c7f0", "tid": 35568, "ts": 3805417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3805716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c8c0", "tid": 35568, "ts": 3805939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3806242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d010", "tid": 35568, "ts": 3806423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3806740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c650", "tid": 35568, "ts": 3806977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3807251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c0a0", "tid": 35568, "ts": 3807474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3807792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c990", "tid": 35568, "ts": 3808000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3808348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d5c0", "tid": 35568, "ts": 3808587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3808874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f300", "tid": 35568, "ts": 3809098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3809402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ebb0", "tid": 35568, "ts": 3809626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3809927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cf40", "tid": 35568, "ts": 3810149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3810484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c170", "tid": 35568, "ts": 3810679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3810982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e050", "tid": 35568, "ts": 3811221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3811539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e600", "tid": 35568, "ts": 3811746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3812049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ca60", "tid": 35568, "ts": 3812300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3812619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d280", "tid": 35568, "ts": 3812812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3813100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e1f0", "tid": 35568, "ts": 3813321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3813654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1efc0", "tid": 35568, "ts": 3813874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3814225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1dd10", "tid": 35568, "ts": 3814449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3814765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1eef0", "tid": 35568, "ts": 3814985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3815290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d350", "tid": 35568, "ts": 3815513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3815813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d0e0", "tid": 35568, "ts": 3816021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3816338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d420", "tid": 35568, "ts": 3816577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3816866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d690", "tid": 35568, "ts": 3817088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3817426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d900", "tid": 35568, "ts": 3817643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3817963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e390", "tid": 35568, "ts": 3818171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3818401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e6d0", "tid": 35568, "ts": 3818639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3818940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d4f0", "tid": 35568, "ts": 3819164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3819334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d1b0", "tid": 35568, "ts": 3819503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3819676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1deb0", "tid": 35568, "ts": 3819797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3819999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d760", "tid": 35568, "ts": 3820222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3820506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c720", "tid": 35568, "ts": 3820738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3821055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cb30", "tid": 35568, "ts": 3821251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3821584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d830", "tid": 35568, "ts": 3821820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3822124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cc00", "tid": 35568, "ts": 3822245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3822417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ccd0", "tid": 35568, "ts": 3822626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3822914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1df80", "tid": 35568, "ts": 3823137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3823425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cda0", "tid": 35568, "ts": 3823652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3823969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e7a0", "tid": 35568, "ts": 3824206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3824465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1dc40", "tid": 35568, "ts": 3824645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3824841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d9d0", "tid": 35568, "ts": 3825020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3825279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ce70", "tid": 35568, "ts": 3825486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3825788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1daa0", "tid": 35568, "ts": 3825983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3826315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1db70", "tid": 35568, "ts": 3826539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3826869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c240", "tid": 35568, "ts": 3827092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3827352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ee20", "tid": 35568, "ts": 3827672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3827988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3828571, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482c1e530", "tid": 35568, "ts": 3828587, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482c1e530", "tid": 35568, "ts": 3828646, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e120", "tid": 35568, "ts": 3828853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3829169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e460", "tid": 35568, "ts": 3829380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3829669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e870", "tid": 35568, "ts": 3829874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3830187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e940", "tid": 35568, "ts": 3830397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3830687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ed50", "tid": 35568, "ts": 3830907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3831126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f090", "tid": 35568, "ts": 3831347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3831551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f160", "tid": 35568, "ts": 3831734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3832031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f230", "tid": 35568, "ts": 3832198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3832488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f3d0", "tid": 35568, "ts": 3832712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3833026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c310", "tid": 35568, "ts": 3833237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3833484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c3e0", "tid": 35568, "ts": 3833675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3833852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fd90", "tid": 35568, "ts": 3833986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3834159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c215f0", "tid": 35568, "ts": 3834280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3834452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c205b0", "tid": 35568, "ts": 3834572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3834785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20ea0", "tid": 35568, "ts": 3834975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3835213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20f70", "tid": 35568, "ts": 3835335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3835507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fe60", "tid": 35568, "ts": 3835628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3835800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20dd0", "tid": 35568, "ts": 3835921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21790", "tid": 35568, "ts": 3836216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21040", "tid": 35568, "ts": 3836509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21ba0", "tid": 35568, "ts": 3836802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21fb0", "tid": 35568, "ts": 3837095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3837268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20340", "tid": 35568, "ts": 3837388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3837560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21860", "tid": 35568, "ts": 3837682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3837854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21110", "tid": 35568, "ts": 3837974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3838147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22080", "tid": 35568, "ts": 3838267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3838440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c208f0", "tid": 35568, "ts": 3838560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3838732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c209c0", "tid": 35568, "ts": 3838853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f4a0", "tid": 35568, "ts": 3839145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20d00", "tid": 35568, "ts": 3839438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f8b0", "tid": 35568, "ts": 3839735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20750", "tid": 35568, "ts": 3840029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3840201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21a00", "tid": 35568, "ts": 3840322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3840495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ff30", "tid": 35568, "ts": 3840615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3840787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20a90", "tid": 35568, "ts": 3840907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20b60", "tid": 35568, "ts": 3841199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20c30", "tid": 35568, "ts": 3841492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21450", "tid": 35568, "ts": 3841784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c211e0", "tid": 35568, "ts": 3842076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3842256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22220", "tid": 35568, "ts": 3842378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3842550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c212b0", "tid": 35568, "ts": 3842671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3842844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21380", "tid": 35568, "ts": 3842964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3843136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21520", "tid": 35568, "ts": 3843257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3843430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f710", "tid": 35568, "ts": 3843550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3843722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c216c0", "tid": 35568, "ts": 3843843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c200d0", "tid": 35568, "ts": 3844136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21930", "tid": 35568, "ts": 3844429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fbf0", "tid": 35568, "ts": 3844723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20410", "tid": 35568, "ts": 3845016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3845186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f980", "tid": 35568, "ts": 3845308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3845480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20000", "tid": 35568, "ts": 3845601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3845772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c204e0", "tid": 35568, "ts": 3845894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21ad0", "tid": 35568, "ts": 3846186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21c70", "tid": 35568, "ts": 3846479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c201a0", "tid": 35568, "ts": 3846772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22700", "tid": 35568, "ts": 3847064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3847235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20270", "tid": 35568, "ts": 3847356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3847527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fa50", "tid": 35568, "ts": 3847647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3847819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f7e0", "tid": 35568, "ts": 3847940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3848111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fb20", "tid": 35568, "ts": 3848232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3848404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21d40", "tid": 35568, "ts": 3848524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3848759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fcc0", "tid": 35568, "ts": 3848879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21e10", "tid": 35568, "ts": 3849172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22630", "tid": 35568, "ts": 3849500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20680", "tid": 35568, "ts": 3849793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c227d0", "tid": 35568, "ts": 3850087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3850259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21ee0", "tid": 35568, "ts": 3850380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3850552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22150", "tid": 35568, "ts": 3850673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3850845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f570", "tid": 35568, "ts": 3850966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3851137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20820", "tid": 35568, "ts": 3851259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3851430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c222f0", "tid": 35568, "ts": 3851552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3851724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c223c0", "tid": 35568, "ts": 3851845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22490", "tid": 35568, "ts": 3852138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22560", "tid": 35568, "ts": 3852430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f640", "tid": 35568, "ts": 3852722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c228a0", "tid": 35568, "ts": 3853015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3853188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22b10", "tid": 35568, "ts": 3853309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3853480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22d80", "tid": 35568, "ts": 3853601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3853772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c234d0", "tid": 35568, "ts": 3853893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23330", "tid": 35568, "ts": 3854185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23740", "tid": 35568, "ts": 3854476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23810", "tid": 35568, "ts": 3854770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23670", "tid": 35568, "ts": 3855062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3855234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22e50", "tid": 35568, "ts": 3855354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3855527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c230c0", "tid": 35568, "ts": 3855648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3855820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23400", "tid": 35568, "ts": 3855941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3856113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23a80", "tid": 35568, "ts": 3856234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3856407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23dc0", "tid": 35568, "ts": 3856529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3856701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c235a0", "tid": 35568, "ts": 3856901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c238e0", "tid": 35568, "ts": 3857193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22ff0", "tid": 35568, "ts": 3857486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c239b0", "tid": 35568, "ts": 3857821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22f20", "tid": 35568, "ts": 3858114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3858286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23260", "tid": 35568, "ts": 3858407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3858578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22be0", "tid": 35568, "ts": 3858699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3858871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23b50", "tid": 35568, "ts": 3858992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3859164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23c20", "tid": 35568, "ts": 3859285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3859457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23cf0", "tid": 35568, "ts": 3859579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3859751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23e90", "tid": 35568, "ts": 3859873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23f60", "tid": 35568, "ts": 3860166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22970", "tid": 35568, "ts": 3860459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22a40", "tid": 35568, "ts": 3860752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22cb0", "tid": 35568, "ts": 3861044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3861216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23190", "tid": 35568, "ts": 3861337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3861510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d29b0", "tid": 35568, "ts": 3861640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3861813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d43b0", "tid": 35568, "ts": 3861934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3100", "tid": 35568, "ts": 3862226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2400", "tid": 35568, "ts": 3862519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4960", "tid": 35568, "ts": 3862813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2b50", "tid": 35568, "ts": 3863105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3863277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5320", "tid": 35568, "ts": 3863397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3863569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d20c0", "tid": 35568, "ts": 3863690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3863861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4d70", "tid": 35568, "ts": 3863982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3864153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4550", "tid": 35568, "ts": 3864417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3864613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2190", "tid": 35568, "ts": 3864744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3864926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4e40", "tid": 35568, "ts": 3865090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3865373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4f10", "tid": 35568, "ts": 3865510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3865693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4480", "tid": 35568, "ts": 3865823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d39f0", "tid": 35568, "ts": 3866136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4ca0", "tid": 35568, "ts": 3866449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d24d0", "tid": 35568, "ts": 3866761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2670", "tid": 35568, "ts": 3867073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3867263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d42e0", "tid": 35568, "ts": 3867388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3867576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3b90", "tid": 35568, "ts": 3867697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3867870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2a80", "tid": 35568, "ts": 3867991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3868162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4620", "tid": 35568, "ts": 3868284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3868455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d32a0", "tid": 35568, "ts": 3868577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3868748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3ac0", "tid": 35568, "ts": 3868870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4890", "tid": 35568, "ts": 3869164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d53f0", "tid": 35568, "ts": 3869456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2810", "tid": 35568, "ts": 3869749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2260", "tid": 35568, "ts": 3870052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3870226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2740", "tid": 35568, "ts": 3870348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3870535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5250", "tid": 35568, "ts": 3870659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3870833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3c60", "tid": 35568, "ts": 3870955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3871129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3780", "tid": 35568, "ts": 3871267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3871516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d46f0", "tid": 35568, "ts": 3871640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3871812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d25a0", "tid": 35568, "ts": 3871933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2c20", "tid": 35568, "ts": 3872227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2cf0", "tid": 35568, "ts": 3872521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d47c0", "tid": 35568, "ts": 3872815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4a30", "tid": 35568, "ts": 3873108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3873279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3d30", "tid": 35568, "ts": 3873400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3873571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3ed0", "tid": 35568, "ts": 3873691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3873863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2dc0", "tid": 35568, "ts": 3873985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3874156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3fa0", "tid": 35568, "ts": 3874277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3874449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4fe0", "tid": 35568, "ts": 3874584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3874756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4b00", "tid": 35568, "ts": 3874876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2e90", "tid": 35568, "ts": 3875169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4140", "tid": 35568, "ts": 3875462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3e00", "tid": 35568, "ts": 3875756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d28e0", "tid": 35568, "ts": 3876049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3876234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4bd0", "tid": 35568, "ts": 3876356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3876528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d50b0", "tid": 35568, "ts": 3876650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3876822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5180", "tid": 35568, "ts": 3876943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2f60", "tid": 35568, "ts": 3877236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3370", "tid": 35568, "ts": 3877535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4070", "tid": 35568, "ts": 3877828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2330", "tid": 35568, "ts": 3878120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3878292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3920", "tid": 35568, "ts": 3878412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3878584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3030", "tid": 35568, "ts": 3878705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3878877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d31d0", "tid": 35568, "ts": 3878998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3879169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d35e0", "tid": 35568, "ts": 3879290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3879461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3440", "tid": 35568, "ts": 3879582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3879754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3510", "tid": 35568, "ts": 3879961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3880133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d36b0", "tid": 35568, "ts": 3880255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3880426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3850", "tid": 35568, "ts": 3880547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3880719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4210", "tid": 35568, "ts": 3880840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5c10", "tid": 35568, "ts": 3881134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d59a0", "tid": 35568, "ts": 3881426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7f00", "tid": 35568, "ts": 3881719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5800", "tid": 35568, "ts": 3882011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3882182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8170", "tid": 35568, "ts": 3882302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3882473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d83e0", "tid": 35568, "ts": 3882595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3882767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d76e0", "tid": 35568, "ts": 3882888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d77b0", "tid": 35568, "ts": 3883179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7a20", "tid": 35568, "ts": 3883472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d73a0", "tid": 35568, "ts": 3883764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7d60", "tid": 35568, "ts": 3884056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3884227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5ce0", "tid": 35568, "ts": 3884348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3884520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7130", "tid": 35568, "ts": 3884641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3884813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7470", "tid": 35568, "ts": 3884934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d87f0", "tid": 35568, "ts": 3885226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5730", "tid": 35568, "ts": 3885518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5db0", "tid": 35568, "ts": 3885810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d69e0", "tid": 35568, "ts": 3886102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3886273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6290", "tid": 35568, "ts": 3886394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3886565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d54c0", "tid": 35568, "ts": 3886686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3886858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d84b0", "tid": 35568, "ts": 3886978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3887150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8650", "tid": 35568, "ts": 3887270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3887442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8240", "tid": 35568, "ts": 3887563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3887734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6360", "tid": 35568, "ts": 3887856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7540", "tid": 35568, "ts": 3888149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7e30", "tid": 35568, "ts": 3888441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d72d0", "tid": 35568, "ts": 3888732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7880", "tid": 35568, "ts": 3889024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3889196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8720", "tid": 35568, "ts": 3889318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3889490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8310", "tid": 35568, "ts": 3889611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3889783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6430", "tid": 35568, "ts": 3889904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3890075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7950", "tid": 35568, "ts": 3890195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3890368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5e80", "tid": 35568, "ts": 3890488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3890703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7610", "tid": 35568, "ts": 3890830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6ec0", "tid": 35568, "ts": 3891125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7af0", "tid": 35568, "ts": 3891418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5f50", "tid": 35568, "ts": 3891745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7bc0", "tid": 35568, "ts": 3892039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3892211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7c90", "tid": 35568, "ts": 3892332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3892503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7060", "tid": 35568, "ts": 3892624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3892795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6020", "tid": 35568, "ts": 3892916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5590", "tid": 35568, "ts": 3893207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5660", "tid": 35568, "ts": 3893499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7fd0", "tid": 35568, "ts": 3893790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d58d0", "tid": 35568, "ts": 3894084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3894256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d60f0", "tid": 35568, "ts": 3894377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3894681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d80a0", "tid": 35568, "ts": 3894801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3894974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8580", "tid": 35568, "ts": 3895095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3895267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d61c0", "tid": 35568, "ts": 3895387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3895627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6500", "tid": 35568, "ts": 3895749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3895921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5a70", "tid": 35568, "ts": 3896042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3896214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5b40", "tid": 35568, "ts": 3896335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3896507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d65d0", "tid": 35568, "ts": 3896627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3896799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d66a0", "tid": 35568, "ts": 3896920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6770", "tid": 35568, "ts": 3897212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6910", "tid": 35568, "ts": 3897504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6840", "tid": 35568, "ts": 3897797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6ab0", "tid": 35568, "ts": 3898090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3898261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6c50", "tid": 35568, "ts": 3898381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3898553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6b80", "tid": 35568, "ts": 3898674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3898846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6d20", "tid": 35568, "ts": 3898966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3899137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6df0", "tid": 35568, "ts": 3899258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3899430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7200", "tid": 35568, "ts": 3899551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3899722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6f90", "tid": 35568, "ts": 3899843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8f40", "tid": 35568, "ts": 3900135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9b70", "tid": 35568, "ts": 3900427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9690", "tid": 35568, "ts": 3900720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9de0", "tid": 35568, "ts": 3901013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3901186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d95c0", "tid": 35568, "ts": 3901307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3901478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9760", "tid": 35568, "ts": 3901599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3901771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9aa0", "tid": 35568, "ts": 3901891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d90e0", "tid": 35568, "ts": 3902184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d94f0", "tid": 35568, "ts": 3902477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9010", "tid": 35568, "ts": 3902769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9830", "tid": 35568, "ts": 3903061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3903232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9900", "tid": 35568, "ts": 3903354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3903525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9eb0", "tid": 35568, "ts": 3903646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3903818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d88c0", "tid": 35568, "ts": 3903939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9f80", "tid": 35568, "ts": 3904233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d99d0", "tid": 35568, "ts": 3904525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9c40", "tid": 35568, "ts": 3904818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9d10", "tid": 35568, "ts": 3905111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3905282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8990", "tid": 35568, "ts": 3905403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3905575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8a60", "tid": 35568, "ts": 3905696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3905867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8b30", "tid": 35568, "ts": 3905988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3906160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8c00", "tid": 35568, "ts": 3906281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3906452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8cd0", "tid": 35568, "ts": 3906573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3906745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9280", "tid": 35568, "ts": 3906879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3907052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234805b1e20", "tid": 35568, "ts": 3907116, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3907401, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234906d91b0", "tid": 35568, "ts": 3907416, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234906d91b0", "tid": 35568, "ts": 3907448, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8da0", "tid": 35568, "ts": 3907570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3907758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8e70", "tid": 35568, "ts": 3907884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3908059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9420", "tid": 35568, "ts": 3908204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3908414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923100", "tid": 35568, "ts": 3908548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3908723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924b00", "tid": 35568, "ts": 3908846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923510", "tid": 35568, "ts": 3909148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879250b0", "tid": 35568, "ts": 3909442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924890", "tid": 35568, "ts": 3909736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924550", "tid": 35568, "ts": 3910029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3910201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922810", "tid": 35568, "ts": 3910322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3910494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923440", "tid": 35568, "ts": 3910615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3910787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923920", "tid": 35568, "ts": 3910908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879220c0", "tid": 35568, "ts": 3911233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924960", "tid": 35568, "ts": 3911527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924140", "tid": 35568, "ts": 3911819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922a80", "tid": 35568, "ts": 3912113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3912284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924210", "tid": 35568, "ts": 3912405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3912576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879224d0", "tid": 35568, "ts": 3912696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3912869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922400", "tid": 35568, "ts": 3912989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3913161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922330", "tid": 35568, "ts": 3913282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3913453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924a30", "tid": 35568, "ts": 3913574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3913746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879246f0", "tid": 35568, "ts": 3913867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924620", "tid": 35568, "ts": 3914160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924bd0", "tid": 35568, "ts": 3914452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922670", "tid": 35568, "ts": 3914744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879239f0", "tid": 35568, "ts": 3915037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3915208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922f60", "tid": 35568, "ts": 3915343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3915515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879232a0", "tid": 35568, "ts": 3915636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3915807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924ca0", "tid": 35568, "ts": 3915928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922cf0", "tid": 35568, "ts": 3916220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923370", "tid": 35568, "ts": 3916512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922e90", "tid": 35568, "ts": 3916804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923ac0", "tid": 35568, "ts": 3917097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3917268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922190", "tid": 35568, "ts": 3917389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3917561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879247c0", "tid": 35568, "ts": 3917682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3917854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879229b0", "tid": 35568, "ts": 3917974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3918146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879236b0", "tid": 35568, "ts": 3918268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3918439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879225a0", "tid": 35568, "ts": 3918559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3918731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925250", "tid": 35568, "ts": 3918852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924e40", "tid": 35568, "ts": 3919144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922c20", "tid": 35568, "ts": 3919436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879235e0", "tid": 35568, "ts": 3919733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924fe0", "tid": 35568, "ts": 3920024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3920197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923030", "tid": 35568, "ts": 3920316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3920488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923b90", "tid": 35568, "ts": 3920609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3920781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925180", "tid": 35568, "ts": 3920901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3921073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879228e0", "tid": 35568, "ts": 3921193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3921365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922740", "tid": 35568, "ts": 3921504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3921677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922260", "tid": 35568, "ts": 3921840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922b50", "tid": 35568, "ts": 3922134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879253f0", "tid": 35568, "ts": 3922426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879231d0", "tid": 35568, "ts": 3922719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922dc0", "tid": 35568, "ts": 3923011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3923183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923780", "tid": 35568, "ts": 3923303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3923515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925320", "tid": 35568, "ts": 3923642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3923814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924f10", "tid": 35568, "ts": 3923936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3924109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923850", "tid": 35568, "ts": 3924229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3924401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924d70", "tid": 35568, "ts": 3924582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3924754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923fa0", "tid": 35568, "ts": 3924875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923c60", "tid": 35568, "ts": 3925168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923d30", "tid": 35568, "ts": 3925460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923e00", "tid": 35568, "ts": 3925751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923ed0", "tid": 35568, "ts": 3926042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3926214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924070", "tid": 35568, "ts": 3926335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3926506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879242e0", "tid": 35568, "ts": 3926626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3926868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879243b0", "tid": 35568, "ts": 3926989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3927161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924480", "tid": 35568, "ts": 3927283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3927455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925db0", "tid": 35568, "ts": 3927576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3927748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879258d0", "tid": 35568, "ts": 3927869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927c90", "tid": 35568, "ts": 3928161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927950", "tid": 35568, "ts": 3928452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928720", "tid": 35568, "ts": 3928745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928310", "tid": 35568, "ts": 3929037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3929209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879287f0", "tid": 35568, "ts": 3929330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3929501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925e80", "tid": 35568, "ts": 3929622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3929795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926770", "tid": 35568, "ts": 3929916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925590", "tid": 35568, "ts": 3930208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927f00", "tid": 35568, "ts": 3930499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879265d0", "tid": 35568, "ts": 3930791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926ab0", "tid": 35568, "ts": 3931082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3931254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927540", "tid": 35568, "ts": 3931374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3931545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925f50", "tid": 35568, "ts": 3931666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3931836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926840", "tid": 35568, "ts": 3931956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3932129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879259a0", "tid": 35568, "ts": 3932250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3932423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927af0", "tid": 35568, "ts": 3932544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3932715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925a70", "tid": 35568, "ts": 3932835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879284b0", "tid": 35568, "ts": 3933128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927fd0", "tid": 35568, "ts": 3933421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925c10", "tid": 35568, "ts": 3933748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926430", "tid": 35568, "ts": 3934040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3934211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879273a0", "tid": 35568, "ts": 3934331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3934504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879266a0", "tid": 35568, "ts": 3934624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3934796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925660", "tid": 35568, "ts": 3934917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3935087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927200", "tid": 35568, "ts": 3935208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3935422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879254c0", "tid": 35568, "ts": 3935544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3935715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879283e0", "tid": 35568, "ts": 3935836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927610", "tid": 35568, "ts": 3936128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925730", "tid": 35568, "ts": 3936420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879269e0", "tid": 35568, "ts": 3936712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925800", "tid": 35568, "ts": 3937004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3937174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926f90", "tid": 35568, "ts": 3937295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3937466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879272d0", "tid": 35568, "ts": 3937586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3937757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926500", "tid": 35568, "ts": 3937878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926c50", "tid": 35568, "ts": 3938170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927880", "tid": 35568, "ts": 3938461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928650", "tid": 35568, "ts": 3938754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879276e0", "tid": 35568, "ts": 3939045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3939218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927470", "tid": 35568, "ts": 3939339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3939509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925b40", "tid": 35568, "ts": 3939629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3939800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925ce0", "tid": 35568, "ts": 3939920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926020", "tid": 35568, "ts": 3940213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879260f0", "tid": 35568, "ts": 3940505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926d20", "tid": 35568, "ts": 3940797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879277b0", "tid": 35568, "ts": 3941090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3941261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879261c0", "tid": 35568, "ts": 3941382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3941552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926290", "tid": 35568, "ts": 3941673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3941844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926360", "tid": 35568, "ts": 3941965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3942136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926910", "tid": 35568, "ts": 3942257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3942500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927a20", "tid": 35568, "ts": 3942648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3942832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926b80", "tid": 35568, "ts": 3942955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3943127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926df0", "tid": 35568, "ts": 3943248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3943419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926ec0", "tid": 35568, "ts": 3943539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3943711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927060", "tid": 35568, "ts": 3943831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927130", "tid": 35568, "ts": 3944121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927bc0", "tid": 35568, "ts": 3944413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927d60", "tid": 35568, "ts": 3944705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927e30", "tid": 35568, "ts": 3944999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3945170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879280a0", "tid": 35568, "ts": 3945290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3945462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928170", "tid": 35568, "ts": 3945584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3945755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928240", "tid": 35568, "ts": 3945877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928580", "tid": 35568, "ts": 3946169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929760", "tid": 35568, "ts": 3946461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928f40", "tid": 35568, "ts": 3946753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929690", "tid": 35568, "ts": 3947045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3947216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928a60", "tid": 35568, "ts": 3947337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3947508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928b30", "tid": 35568, "ts": 3947629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3947800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929010", "tid": 35568, "ts": 3947920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928c00", "tid": 35568, "ts": 3948213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929de0", "tid": 35568, "ts": 3948504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929350", "tid": 35568, "ts": 3948796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929420", "tid": 35568, "ts": 3949088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3949259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929830", "tid": 35568, "ts": 3949380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3949551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929900", "tid": 35568, "ts": 3949671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3949844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929eb0", "tid": 35568, "ts": 3949964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3950136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879291b0", "tid": 35568, "ts": 3950256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3950427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879299d0", "tid": 35568, "ts": 3950547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3950719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879288c0", "tid": 35568, "ts": 3950839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928cd0", "tid": 35568, "ts": 3951131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928da0", "tid": 35568, "ts": 3951424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929aa0", "tid": 35568, "ts": 3951715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929b70", "tid": 35568, "ts": 3952007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3952179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928e70", "tid": 35568, "ts": 3952300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3952471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879290e0", "tid": 35568, "ts": 3952591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3952763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929280", "tid": 35568, "ts": 3952884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929f80", "tid": 35568, "ts": 3953177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879294f0", "tid": 35568, "ts": 3953468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928990", "tid": 35568, "ts": 3953760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929c40", "tid": 35568, "ts": 3954052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3954223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879295c0", "tid": 35568, "ts": 3954344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3954515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929d10", "tid": 35568, "ts": 3954635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3954805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613570", "tid": 35568, "ts": 3954940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3955112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611420", "tid": 35568, "ts": 3955233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3955404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612940", "tid": 35568, "ts": 3955525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3955696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613cc0", "tid": 35568, "ts": 3955860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946122c0", "tid": 35568, "ts": 3956151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613b20", "tid": 35568, "ts": 3956444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611de0", "tid": 35568, "ts": 3956735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613090", "tid": 35568, "ts": 3957026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3957197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612fc0", "tid": 35568, "ts": 3957318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3957490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612870", "tid": 35568, "ts": 3957611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3957782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611eb0", "tid": 35568, "ts": 3957903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3958135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612390", "tid": 35568, "ts": 3958257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3958429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613d90", "tid": 35568, "ts": 3958573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3958745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611f80", "tid": 35568, "ts": 3958865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946133d0", "tid": 35568, "ts": 3959158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613f30", "tid": 35568, "ts": 3959451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613e60", "tid": 35568, "ts": 3959743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612a10", "tid": 35568, "ts": 3960036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3960207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611280", "tid": 35568, "ts": 3960328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3960500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946114f0", "tid": 35568, "ts": 3960620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3960792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612ae0", "tid": 35568, "ts": 3960912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612bb0", "tid": 35568, "ts": 3961205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612ef0", "tid": 35568, "ts": 3961497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614000", "tid": 35568, "ts": 3961789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612c80", "tid": 35568, "ts": 3962082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3962253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610cd0", "tid": 35568, "ts": 3962374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3962545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612530", "tid": 35568, "ts": 3962666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3962837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610da0", "tid": 35568, "ts": 3962959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3963130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612d50", "tid": 35568, "ts": 3963251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3963423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611d10", "tid": 35568, "ts": 3963544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3963715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611010", "tid": 35568, "ts": 3963836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610f40", "tid": 35568, "ts": 3964127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946115c0", "tid": 35568, "ts": 3964419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612e20", "tid": 35568, "ts": 3964713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611aa0", "tid": 35568, "ts": 3965006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3965178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612050", "tid": 35568, "ts": 3965299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3965471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613300", "tid": 35568, "ts": 3965591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3965762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611690", "tid": 35568, "ts": 3965883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611760", "tid": 35568, "ts": 3966174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946134a0", "tid": 35568, "ts": 3966467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612120", "tid": 35568, "ts": 3966759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946138b0", "tid": 35568, "ts": 3967051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3967222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610e70", "tid": 35568, "ts": 3967343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3967515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611c40", "tid": 35568, "ts": 3967635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3967807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611350", "tid": 35568, "ts": 3967927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613160", "tid": 35568, "ts": 3968218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613230", "tid": 35568, "ts": 3968509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612460", "tid": 35568, "ts": 3968801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611830", "tid": 35568, "ts": 3969094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3969266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946111b0", "tid": 35568, "ts": 3969395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3969567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946110e0", "tid": 35568, "ts": 3969688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3969860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613640", "tid": 35568, "ts": 3969980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3970152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611900", "tid": 35568, "ts": 3970272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3970444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946121f0", "tid": 35568, "ts": 3970565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3970737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946119d0", "tid": 35568, "ts": 3970858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613710", "tid": 35568, "ts": 3971150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611b70", "tid": 35568, "ts": 3971444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613bf0", "tid": 35568, "ts": 3971753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612600", "tid": 35568, "ts": 3972047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3972218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946137e0", "tid": 35568, "ts": 3972338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3972509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946126d0", "tid": 35568, "ts": 3972630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3972801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946127a0", "tid": 35568, "ts": 3972921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3973093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613980", "tid": 35568, "ts": 3973213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3973385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613a50", "tid": 35568, "ts": 3973505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3973895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616e50", "tid": 35568, "ts": 3974093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3974332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615860", "tid": 35568, "ts": 3974487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3974662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946148f0", "tid": 35568, "ts": 3974786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3974959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616630", "tid": 35568, "ts": 3975082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3975254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946168a0", "tid": 35568, "ts": 3975376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3975548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615110", "tid": 35568, "ts": 3975735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3975909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616150", "tid": 35568, "ts": 3976030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3976202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616970", "tid": 35568, "ts": 3976324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3976495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946156c0", "tid": 35568, "ts": 3976616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3976788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616f20", "tid": 35568, "ts": 3976909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615e10", "tid": 35568, "ts": 3977202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614410", "tid": 35568, "ts": 3977495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616d80", "tid": 35568, "ts": 3977789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946149c0", "tid": 35568, "ts": 3978082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3978254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615790", "tid": 35568, "ts": 3978375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3978547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615ba0", "tid": 35568, "ts": 3978669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3978840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946155f0", "tid": 35568, "ts": 3978962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3979134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615c70", "tid": 35568, "ts": 3979256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3979428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615380", "tid": 35568, "ts": 3979550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3979721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616560", "tid": 35568, "ts": 3979842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946167d0", "tid": 35568, "ts": 3980134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614dd0", "tid": 35568, "ts": 3980428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946141a0", "tid": 35568, "ts": 3980720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946144e0", "tid": 35568, "ts": 3981012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3981184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946163c0", "tid": 35568, "ts": 3981305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3981477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616b10", "tid": 35568, "ts": 3981598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3981770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616a40", "tid": 35568, "ts": 3981891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616220", "tid": 35568, "ts": 3982184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615ee0", "tid": 35568, "ts": 3982477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616080", "tid": 35568, "ts": 3982769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946151e0", "tid": 35568, "ts": 3983063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3983235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946145b0", "tid": 35568, "ts": 3983356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3983528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614f70", "tid": 35568, "ts": 3983650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3983822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946162f0", "tid": 35568, "ts": 3983944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3984136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615930", "tid": 35568, "ts": 3984260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3984434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946152b0", "tid": 35568, "ts": 3984625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3984801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615040", "tid": 35568, "ts": 3984927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616be0", "tid": 35568, "ts": 3985221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614680", "tid": 35568, "ts": 3985516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615d40", "tid": 35568, "ts": 3985809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616700", "tid": 35568, "ts": 3986104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3986276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614c30", "tid": 35568, "ts": 3986398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3986571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946170c0", "tid": 35568, "ts": 3986692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3986865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615a00", "tid": 35568, "ts": 3986987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3987159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615ad0", "tid": 35568, "ts": 3987280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3987452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614750", "tid": 35568, "ts": 3987573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3987746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616490", "tid": 35568, "ts": 3987867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614270", "tid": 35568, "ts": 3988160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616cb0", "tid": 35568, "ts": 3988453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616ff0", "tid": 35568, "ts": 3988793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615fb0", "tid": 35568, "ts": 3989086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3989378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615450", "tid": 35568, "ts": 3989616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3989865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617190", "tid": 35568, "ts": 3989997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3990168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614820", "tid": 35568, "ts": 3990289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3990462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617260", "tid": 35568, "ts": 3990583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3990755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617330", "tid": 35568, "ts": 3990875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614d00", "tid": 35568, "ts": 3991174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617400", "tid": 35568, "ts": 3991468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614a90", "tid": 35568, "ts": 3991761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615520", "tid": 35568, "ts": 3992054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3992227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946140d0", "tid": 35568, "ts": 3992405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3992578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614340", "tid": 35568, "ts": 3992700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3992872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614b60", "tid": 35568, "ts": 3992993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3993165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614ea0", "tid": 35568, "ts": 3993286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3993458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618850", "tid": 35568, "ts": 3993580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3993752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946174d0", "tid": 35568, "ts": 3993873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617740", "tid": 35568, "ts": 3994166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946175a0", "tid": 35568, "ts": 3994474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618ac0", "tid": 35568, "ts": 3994802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618920", "tid": 35568, "ts": 3995094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3995266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946186b0", "tid": 35568, "ts": 3995386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3995558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617f60", "tid": 35568, "ts": 3995679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3995852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617810", "tid": 35568, "ts": 3995987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3996160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618510", "tid": 35568, "ts": 3996282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3996454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617c20", "tid": 35568, "ts": 3996575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3996748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618030", "tid": 35568, "ts": 3996869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946179b0", "tid": 35568, "ts": 3997162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946185e0", "tid": 35568, "ts": 3997455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617670", "tid": 35568, "ts": 3997749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618370", "tid": 35568, "ts": 3998041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3998213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618b90", "tid": 35568, "ts": 3998333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3998504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618780", "tid": 35568, "ts": 3998625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3998799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946182a0", "tid": 35568, "ts": 3998921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946189f0", "tid": 35568, "ts": 3999213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618440", "tid": 35568, "ts": 3999506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617cf0", "tid": 35568, "ts": 3999799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946178e0", "tid": 35568, "ts": 4000092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4000264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617dc0", "tid": 35568, "ts": 4000385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4000557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617a80", "tid": 35568, "ts": 4000678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4000849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617b50", "tid": 35568, "ts": 4000970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4001142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617e90", "tid": 35568, "ts": 4001263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4001434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618100", "tid": 35568, "ts": 4001555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4001726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946181d0", "tid": 35568, "ts": 4001848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7874e0", "tid": 35568, "ts": 4002160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789d80", "tid": 35568, "ts": 4002454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7875b0", "tid": 35568, "ts": 4002748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787dd0", "tid": 35568, "ts": 4003042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4003214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7885f0", "tid": 35568, "ts": 4003336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4003508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7878f0", "tid": 35568, "ts": 4003628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4003800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789560", "tid": 35568, "ts": 4003921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4004092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788790", "tid": 35568, "ts": 4004213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4004384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787ea0", "tid": 35568, "ts": 4004505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4004678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7892f0", "tid": 35568, "ts": 4004818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787680", "tid": 35568, "ts": 4005123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789700", "tid": 35568, "ts": 4005417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789b10", "tid": 35568, "ts": 4005756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787750", "tid": 35568, "ts": 4006048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4006220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788fb0", "tid": 35568, "ts": 4006341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4006513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788a00", "tid": 35568, "ts": 4006634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4006805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788520", "tid": 35568, "ts": 4006928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787f70", "tid": 35568, "ts": 4007220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789ff0", "tid": 35568, "ts": 4007512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a260", "tid": 35568, "ts": 4007804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788040", "tid": 35568, "ts": 4008098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4008270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a0c0", "tid": 35568, "ts": 4008391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4008562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789220", "tid": 35568, "ts": 4008684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4008856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787820", "tid": 35568, "ts": 4008978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4009149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788d40", "tid": 35568, "ts": 4009271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4009442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7893c0", "tid": 35568, "ts": 4009597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4009769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788110", "tid": 35568, "ts": 4009890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788380", "tid": 35568, "ts": 4010183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a810", "tid": 35568, "ts": 4010490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789490", "tid": 35568, "ts": 4010783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7886c0", "tid": 35568, "ts": 4011076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4011247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788ad0", "tid": 35568, "ts": 4011368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4011540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7879c0", "tid": 35568, "ts": 4011662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4011833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789630", "tid": 35568, "ts": 4011954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4012126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787a90", "tid": 35568, "ts": 4012247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4012419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788860", "tid": 35568, "ts": 4012541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4012713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788ba0", "tid": 35568, "ts": 4012833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7882b0", "tid": 35568, "ts": 4013126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789cb0", "tid": 35568, "ts": 4013419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788930", "tid": 35568, "ts": 4013712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a4d0", "tid": 35568, "ts": 4014004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4014175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787b60", "tid": 35568, "ts": 4014297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4014469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789150", "tid": 35568, "ts": 4014591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4014762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787c30", "tid": 35568, "ts": 4014883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789e50", "tid": 35568, "ts": 4015177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a740", "tid": 35568, "ts": 4015470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787d00", "tid": 35568, "ts": 4015763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789be0", "tid": 35568, "ts": 4016056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4016228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7881e0", "tid": 35568, "ts": 4016348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4016520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789f20", "tid": 35568, "ts": 4016642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4016813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788450", "tid": 35568, "ts": 4016934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7897d0", "tid": 35568, "ts": 4017226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788c70", "tid": 35568, "ts": 4017519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788e10", "tid": 35568, "ts": 4017812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788ee0", "tid": 35568, "ts": 4018104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4018276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789080", "tid": 35568, "ts": 4018397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4018569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7898a0", "tid": 35568, "ts": 4018690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4018862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789970", "tid": 35568, "ts": 4018984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4019156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789a40", "tid": 35568, "ts": 4019276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4019449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a190", "tid": 35568, "ts": 4019569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4019741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a330", "tid": 35568, "ts": 4019867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a400", "tid": 35568, "ts": 4020161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a5a0", "tid": 35568, "ts": 4020525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a670", "tid": 35568, "ts": 4020823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c7c0", "tid": 35568, "ts": 4021118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4021290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b370", "tid": 35568, "ts": 4021455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4021627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b9f0", "tid": 35568, "ts": 4021748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4021920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ab50", "tid": 35568, "ts": 4022041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4022212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78db40", "tid": 35568, "ts": 4022334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4022504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c960", "tid": 35568, "ts": 4022626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4022798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bfa0", "tid": 35568, "ts": 4022942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ce40", "tid": 35568, "ts": 4023236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b100", "tid": 35568, "ts": 4023530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b1d0", "tid": 35568, "ts": 4023822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c070", "tid": 35568, "ts": 4024115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4024286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ac20", "tid": 35568, "ts": 4024407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4024580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b2a0", "tid": 35568, "ts": 4024701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4024919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c140", "tid": 35568, "ts": 4025040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4025212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d4c0", "tid": 35568, "ts": 4025334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4025505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c620", "tid": 35568, "ts": 4025626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4025797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c210", "tid": 35568, "ts": 4025918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bc60", "tid": 35568, "ts": 4026211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d660", "tid": 35568, "ts": 4026504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d8d0", "tid": 35568, "ts": 4026797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a9b0", "tid": 35568, "ts": 4027090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4027261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bac0", "tid": 35568, "ts": 4027383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4027554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cfe0", "tid": 35568, "ts": 4027675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4027847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c2e0", "tid": 35568, "ts": 4027968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4028138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b6b0", "tid": 35568, "ts": 4028260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4028432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d180", "tid": 35568, "ts": 4028553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4028724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bd30", "tid": 35568, "ts": 4028846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c890", "tid": 35568, "ts": 4029139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d320", "tid": 35568, "ts": 4029432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d730", "tid": 35568, "ts": 4029726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d0b0", "tid": 35568, "ts": 4030020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4030191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ca30", "tid": 35568, "ts": 4030313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4030484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cd70", "tid": 35568, "ts": 4030605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4030777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d800", "tid": 35568, "ts": 4030898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78acf0", "tid": 35568, "ts": 4031190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cbd0", "tid": 35568, "ts": 4031482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b440", "tid": 35568, "ts": 4031774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c3b0", "tid": 35568, "ts": 4032067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4032238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b780", "tid": 35568, "ts": 4032359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4032530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d250", "tid": 35568, "ts": 4032651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4032824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b510", "tid": 35568, "ts": 4032946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d3f0", "tid": 35568, "ts": 4033237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c480", "tid": 35568, "ts": 4033530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b5e0", "tid": 35568, "ts": 4033822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cb00", "tid": 35568, "ts": 4034116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4034288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c6f0", "tid": 35568, "ts": 4034410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4034582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78adc0", "tid": 35568, "ts": 4034704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4034876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d9a0", "tid": 35568, "ts": 4034997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4035169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ae90", "tid": 35568, "ts": 4035290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4035462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bed0", "tid": 35568, "ts": 4035583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4035755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cca0", "tid": 35568, "ts": 4035876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c550", "tid": 35568, "ts": 4036239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d590", "tid": 35568, "ts": 4036532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b850", "tid": 35568, "ts": 4036825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78be00", "tid": 35568, "ts": 4037117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4037289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cf10", "tid": 35568, "ts": 4037410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4037581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78da70", "tid": 35568, "ts": 4037702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4037874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b920", "tid": 35568, "ts": 4037995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4038167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78dc10", "tid": 35568, "ts": 4038288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4038459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bb90", "tid": 35568, "ts": 4038580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4038752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78aa80", "tid": 35568, "ts": 4038873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a8e0", "tid": 35568, "ts": 4039167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78af60", "tid": 35568, "ts": 4039459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b030", "tid": 35568, "ts": 4039753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790240", "tid": 35568, "ts": 4040047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4040219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790e70", "tid": 35568, "ts": 4040341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4040514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e290", "tid": 35568, "ts": 4040635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4040807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e770", "tid": 35568, "ts": 4040928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f880", "tid": 35568, "ts": 4041223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f6e0", "tid": 35568, "ts": 4041515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f950", "tid": 35568, "ts": 4041809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f7b0", "tid": 35568, "ts": 4042101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4042273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790310", "tid": 35568, "ts": 4042395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4042567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791010", "tid": 35568, "ts": 4042688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4042860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f060", "tid": 35568, "ts": 4042981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4043153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fc90", "tid": 35568, "ts": 4043274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4043446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ef90", "tid": 35568, "ts": 4043567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4043738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e910", "tid": 35568, "ts": 4043859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ec50", "tid": 35568, "ts": 4044153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7904b0", "tid": 35568, "ts": 4044446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78de80", "tid": 35568, "ts": 4044738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78df50", "tid": 35568, "ts": 4045030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4045201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790f40", "tid": 35568, "ts": 4045322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4045495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78dce0", "tid": 35568, "ts": 4045616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4045788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fa20", "tid": 35568, "ts": 4045909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790a60", "tid": 35568, "ts": 4046201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790da0", "tid": 35568, "ts": 4046493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78faf0", "tid": 35568, "ts": 4046786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e0f0", "tid": 35568, "ts": 4047078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4047250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fe30", "tid": 35568, "ts": 4047371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4047543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78eab0", "tid": 35568, "ts": 4047664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4047837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f3a0", "tid": 35568, "ts": 4047958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4048130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ed20", "tid": 35568, "ts": 4048251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4048423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790720", "tid": 35568, "ts": 4048544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4048716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790b30", "tid": 35568, "ts": 4048837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f470", "tid": 35568, "ts": 4049130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f540", "tid": 35568, "ts": 4049423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790cd0", "tid": 35568, "ts": 4049717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790580", "tid": 35568, "ts": 4050011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4050182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78edf0", "tid": 35568, "ts": 4050304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4050476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790990", "tid": 35568, "ts": 4050597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4050768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ddb0", "tid": 35568, "ts": 4050890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78eec0", "tid": 35568, "ts": 4051185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790170", "tid": 35568, "ts": 4051477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7903e0", "tid": 35568, "ts": 4051814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790650", "tid": 35568, "ts": 4052107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4052279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e020", "tid": 35568, "ts": 4052401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4052573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e1c0", "tid": 35568, "ts": 4052694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4052866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e360", "tid": 35568, "ts": 4052988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4053160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e840", "tid": 35568, "ts": 4053282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4053455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f130", "tid": 35568, "ts": 4053576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4053791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e430", "tid": 35568, "ts": 4053914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fbc0", "tid": 35568, "ts": 4054208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78eb80", "tid": 35568, "ts": 4054502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e9e0", "tid": 35568, "ts": 4054795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f2d0", "tid": 35568, "ts": 4055088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4055259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fd60", "tid": 35568, "ts": 4055381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4055552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e500", "tid": 35568, "ts": 4055673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4055846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ff00", "tid": 35568, "ts": 4055968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4056139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f200", "tid": 35568, "ts": 4056260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4056432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e5d0", "tid": 35568, "ts": 4056553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4056726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f610", "tid": 35568, "ts": 4056847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ffd0", "tid": 35568, "ts": 4057140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e6a0", "tid": 35568, "ts": 4057434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7900a0", "tid": 35568, "ts": 4057726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7907f0", "tid": 35568, "ts": 4058018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4058190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7908c0", "tid": 35568, "ts": 4058310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4058482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790c00", "tid": 35568, "ts": 4058603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4058774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791830", "tid": 35568, "ts": 4058895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4059067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792460", "tid": 35568, "ts": 4059188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4059361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792940", "tid": 35568, "ts": 4059592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4059764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4060120, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348c793bf0", "tid": 35568, "ts": 4060135, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348c793bf0", "tid": 35568, "ts": 4060168, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7921f0", "tid": 35568, "ts": 4060288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4060478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7926d0", "tid": 35568, "ts": 4060604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4060781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791420", "tid": 35568, "ts": 4060971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4061155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793f30", "tid": 35568, "ts": 4061278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4061450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791de0", "tid": 35568, "ts": 4061572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4061745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7910e0", "tid": 35568, "ts": 4061866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791350", "tid": 35568, "ts": 4062160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793d90", "tid": 35568, "ts": 4062453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7927a0", "tid": 35568, "ts": 4062745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793640", "tid": 35568, "ts": 4063038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4063211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7937e0", "tid": 35568, "ts": 4063333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4063504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793710", "tid": 35568, "ts": 4063625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4063797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792fc0", "tid": 35568, "ts": 4063917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7938b0", "tid": 35568, "ts": 4064210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791280", "tid": 35568, "ts": 4064502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791aa0", "tid": 35568, "ts": 4064794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792870", "tid": 35568, "ts": 4065088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4065260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792a10", "tid": 35568, "ts": 4065380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4065552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7911b0", "tid": 35568, "ts": 4065673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4065844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792530", "tid": 35568, "ts": 4065966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4066137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793090", "tid": 35568, "ts": 4066258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4066430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7914f0", "tid": 35568, "ts": 4066569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4066742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792ae0", "tid": 35568, "ts": 4066863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793a50", "tid": 35568, "ts": 4067156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793b20", "tid": 35568, "ts": 4067490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791900", "tid": 35568, "ts": 4067782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7915c0", "tid": 35568, "ts": 4068076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4068247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791690", "tid": 35568, "ts": 4068369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4068540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792ef0", "tid": 35568, "ts": 4068662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4068833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793980", "tid": 35568, "ts": 4068954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4069125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791d10", "tid": 35568, "ts": 4069246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4069418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791760", "tid": 35568, "ts": 4069548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4069720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7934a0", "tid": 35568, "ts": 4069841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792600", "tid": 35568, "ts": 4070133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7919d0", "tid": 35568, "ts": 4070425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7922c0", "tid": 35568, "ts": 4070717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792390", "tid": 35568, "ts": 4071008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4071180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791f80", "tid": 35568, "ts": 4071301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4071474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791eb0", "tid": 35568, "ts": 4071595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4071765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791b70", "tid": 35568, "ts": 4071885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793160", "tid": 35568, "ts": 4072178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791c40", "tid": 35568, "ts": 4072470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792050", "tid": 35568, "ts": 4072762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793cc0", "tid": 35568, "ts": 4073054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4073225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793e60", "tid": 35568, "ts": 4073346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4073517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793230", "tid": 35568, "ts": 4073637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4073808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7933d0", "tid": 35568, "ts": 4118675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4118952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793570", "tid": 35568, "ts": 4119082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4119257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7841b0", "tid": 35568, "ts": 4119381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4119555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784b70", "tid": 35568, "ts": 4119678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4119852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7871a0", "tid": 35568, "ts": 4119975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4120200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786f30", "tid": 35568, "ts": 4120324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4120497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786d90", "tid": 35568, "ts": 4120619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4120792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7844f0", "tid": 35568, "ts": 4120915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787270", "tid": 35568, "ts": 4121208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786300", "tid": 35568, "ts": 4121503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784f80", "tid": 35568, "ts": 4121796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785a10", "tid": 35568, "ts": 4122094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4122266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786980", "tid": 35568, "ts": 4122387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4122559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784350", "tid": 35568, "ts": 4122681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4122853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786710", "tid": 35568, "ts": 4123021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4123195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786e60", "tid": 35568, "ts": 4123318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4123491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784aa0", "tid": 35568, "ts": 4123613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4123785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787000", "tid": 35568, "ts": 4123906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785ae0", "tid": 35568, "ts": 4124199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7857a0", "tid": 35568, "ts": 4124494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786b20", "tid": 35568, "ts": 4124787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785bb0", "tid": 35568, "ts": 4125080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4125252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7863d0", "tid": 35568, "ts": 4125372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4125546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7870d0", "tid": 35568, "ts": 4125667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4125839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786a50", "tid": 35568, "ts": 4125960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4126131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7868b0", "tid": 35568, "ts": 4126253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4126424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784c40", "tid": 35568, "ts": 4126546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4126718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785fc0", "tid": 35568, "ts": 4126840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785c80", "tid": 35568, "ts": 4127133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787340", "tid": 35568, "ts": 4127427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787410", "tid": 35568, "ts": 4127718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7849d0", "tid": 35568, "ts": 4128011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4128183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785390", "tid": 35568, "ts": 4128304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4128476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7840e0", "tid": 35568, "ts": 4128597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4128769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784280", "tid": 35568, "ts": 4128889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4129061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7845c0", "tid": 35568, "ts": 4129183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4129354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784420", "tid": 35568, "ts": 4129475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4129647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7867e0", "tid": 35568, "ts": 4129769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4130178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784690", "tid": 35568, "ts": 4130314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4130488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784760", "tid": 35568, "ts": 4130614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4130799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7864a0", "tid": 35568, "ts": 4130972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4131158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786bf0", "tid": 35568, "ts": 4131280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4131453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784830", "tid": 35568, "ts": 4131577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4131794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784de0", "tid": 35568, "ts": 4131922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784d10", "tid": 35568, "ts": 4132218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786090", "tid": 35568, "ts": 4132514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784900", "tid": 35568, "ts": 4132809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7856d0", "tid": 35568, "ts": 4133103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4133274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785d50", "tid": 35568, "ts": 4133395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4133567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784eb0", "tid": 35568, "ts": 4133689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4133861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785050", "tid": 35568, "ts": 4133982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4134155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785120", "tid": 35568, "ts": 4134277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4134450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785e20", "tid": 35568, "ts": 4134571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4134743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7851f0", "tid": 35568, "ts": 4134864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7852c0", "tid": 35568, "ts": 4135156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785460", "tid": 35568, "ts": 4135448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785530", "tid": 35568, "ts": 4135741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785600", "tid": 35568, "ts": 4136034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4136206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785870", "tid": 35568, "ts": 4136327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4136498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785940", "tid": 35568, "ts": 4136619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4136790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785ef0", "tid": 35568, "ts": 4136912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786160", "tid": 35568, "ts": 4137204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786230", "tid": 35568, "ts": 4137496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786570", "tid": 35568, "ts": 4137789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786cc0", "tid": 35568, "ts": 4138081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4138254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786640", "tid": 35568, "ts": 4138374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4138546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa870", "tid": 35568, "ts": 4138667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4138840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aaae0", "tid": 35568, "ts": 4138961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4139134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8580", "tid": 35568, "ts": 4139255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4139426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9350", "tid": 35568, "ts": 4139549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4139721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e2c0", "tid": 35568, "ts": 4139843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879165d0", "tid": 35568, "ts": 4140140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879159a0", "tid": 35568, "ts": 4140434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879176e0", "tid": 35568, "ts": 4140727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879177b0", "tid": 35568, "ts": 4141020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4141192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915a70", "tid": 35568, "ts": 4141313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4141485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917e30", "tid": 35568, "ts": 4141606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4141777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918580", "tid": 35568, "ts": 4141898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879166a0", "tid": 35568, "ts": 4142191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917200", "tid": 35568, "ts": 4142485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879169e0", "tid": 35568, "ts": 4142778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879172d0", "tid": 35568, "ts": 4143071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4143244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917fd0", "tid": 35568, "ts": 4143365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4143537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915c10", "tid": 35568, "ts": 4143658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4143831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916ab0", "tid": 35568, "ts": 4143953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4144124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879158d0", "tid": 35568, "ts": 4144246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4144417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879184b0", "tid": 35568, "ts": 4144538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4144710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917880", "tid": 35568, "ts": 4144831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4145003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918650", "tid": 35568, "ts": 4145123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4145295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916500", "tid": 35568, "ts": 4145454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4145695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916f90", "tid": 35568, "ts": 4145871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4146095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915590", "tid": 35568, "ts": 4146282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4146454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917130", "tid": 35568, "ts": 4146575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4146747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916c50", "tid": 35568, "ts": 4146868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916290", "tid": 35568, "ts": 4147162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915660", "tid": 35568, "ts": 4147455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918310", "tid": 35568, "ts": 4147747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917c90", "tid": 35568, "ts": 4148040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4148211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917950", "tid": 35568, "ts": 4148332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4148504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915b40", "tid": 35568, "ts": 4148627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4148798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915ce0", "tid": 35568, "ts": 4148920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917f00", "tid": 35568, "ts": 4149213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879183e0", "tid": 35568, "ts": 4149505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915db0", "tid": 35568, "ts": 4149800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915e80", "tid": 35568, "ts": 4150092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4150265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915f50", "tid": 35568, "ts": 4150386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4150558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916d20", "tid": 35568, "ts": 4150679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4150851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916020", "tid": 35568, "ts": 4150972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4151144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879160f0", "tid": 35568, "ts": 4151266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4151438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879187f0", "tid": 35568, "ts": 4151559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4151730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879173a0", "tid": 35568, "ts": 4151851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918720", "tid": 35568, "ts": 4152144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916360", "tid": 35568, "ts": 4152439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915730", "tid": 35568, "ts": 4152733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916b80", "tid": 35568, "ts": 4153026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4153197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879154c0", "tid": 35568, "ts": 4153318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4153490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917d60", "tid": 35568, "ts": 4153612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4153783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915800", "tid": 35568, "ts": 4153904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916df0", "tid": 35568, "ts": 4154197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879180a0", "tid": 35568, "ts": 4154490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879161c0", "tid": 35568, "ts": 4154783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917a20", "tid": 35568, "ts": 4155076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4155390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918170", "tid": 35568, "ts": 4155514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4155685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917470", "tid": 35568, "ts": 4155807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4155978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916430", "tid": 35568, "ts": 4156099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4156271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916770", "tid": 35568, "ts": 4156392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4156564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917060", "tid": 35568, "ts": 4156685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4156857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916840", "tid": 35568, "ts": 4156978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4157150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916910", "tid": 35568, "ts": 4157271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4157442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917540", "tid": 35568, "ts": 4157564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4157735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916ec0", "tid": 35568, "ts": 4157856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917610", "tid": 35568, "ts": 4158149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917af0", "tid": 35568, "ts": 4158443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917bc0", "tid": 35568, "ts": 4158738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918240", "tid": 35568, "ts": 4159031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4159203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a1f0", "tid": 35568, "ts": 4159324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4159497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919280", "tid": 35568, "ts": 4159618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4159791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918a60", "tid": 35568, "ts": 4159912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919f80", "tid": 35568, "ts": 4160204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791aef0", "tid": 35568, "ts": 4160497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791afc0", "tid": 35568, "ts": 4160790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918f40", "tid": 35568, "ts": 4161147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4161319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879191b0", "tid": 35568, "ts": 4161441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4161613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919350", "tid": 35568, "ts": 4161734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4161907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919420", "tid": 35568, "ts": 4162028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4162199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a7a0", "tid": 35568, "ts": 4162321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4162493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879188c0", "tid": 35568, "ts": 4162614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4162785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919010", "tid": 35568, "ts": 4162907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a600", "tid": 35568, "ts": 4163202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879194f0", "tid": 35568, "ts": 4163495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b710", "tid": 35568, "ts": 4163788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b090", "tid": 35568, "ts": 4164082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4164253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919900", "tid": 35568, "ts": 4164419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4164590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a390", "tid": 35568, "ts": 4164712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4164884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918990", "tid": 35568, "ts": 4165006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4165178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b160", "tid": 35568, "ts": 4165300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4165472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919eb0", "tid": 35568, "ts": 4165593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4165765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a460", "tid": 35568, "ts": 4165887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b570", "tid": 35568, "ts": 4166180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b980", "tid": 35568, "ts": 4166474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879195c0", "tid": 35568, "ts": 4166767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b230", "tid": 35568, "ts": 4167060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4167232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b640", "tid": 35568, "ts": 4167353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4167524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918cd0", "tid": 35568, "ts": 4167645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4167817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a050", "tid": 35568, "ts": 4167938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b7e0", "tid": 35568, "ts": 4168232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b3d0", "tid": 35568, "ts": 4168525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918da0", "tid": 35568, "ts": 4168826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b8b0", "tid": 35568, "ts": 4169118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4169290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919d10", "tid": 35568, "ts": 4169412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4169583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b300", "tid": 35568, "ts": 4169705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4169876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ba50", "tid": 35568, "ts": 4169997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4170168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b4a0", "tid": 35568, "ts": 4170290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4170461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bb20", "tid": 35568, "ts": 4170582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4170754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879199d0", "tid": 35568, "ts": 4170876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bbf0", "tid": 35568, "ts": 4171170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918b30", "tid": 35568, "ts": 4171463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919de0", "tid": 35568, "ts": 4171757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879190e0", "tid": 35568, "ts": 4172107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4172280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a940", "tid": 35568, "ts": 4172402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4172574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918c00", "tid": 35568, "ts": 4172695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4172866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919aa0", "tid": 35568, "ts": 4172987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4173160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918e70", "tid": 35568, "ts": 4173281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4173452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919690", "tid": 35568, "ts": 4173573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4173744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919760", "tid": 35568, "ts": 4173865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a120", "tid": 35568, "ts": 4174158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919830", "tid": 35568, "ts": 4174449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919b70", "tid": 35568, "ts": 4174743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919c40", "tid": 35568, "ts": 4175036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4175209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a530", "tid": 35568, "ts": 4175330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4175502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a2c0", "tid": 35568, "ts": 4175624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4175796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a6d0", "tid": 35568, "ts": 4175918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4176089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a870", "tid": 35568, "ts": 4176211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4176383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791aa10", "tid": 35568, "ts": 4176505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4176707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791aae0", "tid": 35568, "ts": 4176884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791abb0", "tid": 35568, "ts": 4177177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ac80", "tid": 35568, "ts": 4177470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ad50", "tid": 35568, "ts": 4177763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ae20", "tid": 35568, "ts": 4178055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4178228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e700", "tid": 35568, "ts": 4178350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4178521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c9c0", "tid": 35568, "ts": 4178643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4178814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e2f0", "tid": 35568, "ts": 4178936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c340", "tid": 35568, "ts": 4179230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ca90", "tid": 35568, "ts": 4179523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791de10", "tid": 35568, "ts": 4179815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c680", "tid": 35568, "ts": 4180108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4180280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791eb10", "tid": 35568, "ts": 4180401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4180572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cb60", "tid": 35568, "ts": 4180693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4180866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dee0", "tid": 35568, "ts": 4180987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4181163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d110", "tid": 35568, "ts": 4181286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4181460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791da00", "tid": 35568, "ts": 4181582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4181757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c750", "tid": 35568, "ts": 4181883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e490", "tid": 35568, "ts": 4182176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d930", "tid": 35568, "ts": 4182469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cd00", "tid": 35568, "ts": 4182762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791be60", "tid": 35568, "ts": 4183055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4183226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dad0", "tid": 35568, "ts": 4183349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4183520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d1e0", "tid": 35568, "ts": 4183642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4183814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dba0", "tid": 35568, "ts": 4183934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dfb0", "tid": 35568, "ts": 4184228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c8f0", "tid": 35568, "ts": 4184520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dc70", "tid": 35568, "ts": 4184813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c1a0", "tid": 35568, "ts": 4185106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4185277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c0d0", "tid": 35568, "ts": 4185400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4185572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cc30", "tid": 35568, "ts": 4185694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4185865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e080", "tid": 35568, "ts": 4185986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4186157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e630", "tid": 35568, "ts": 4186279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4186451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ebe0", "tid": 35568, "ts": 4186572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4186743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d040", "tid": 35568, "ts": 4186864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c5b0", "tid": 35568, "ts": 4187162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dd40", "tid": 35568, "ts": 4187454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bd90", "tid": 35568, "ts": 4187748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cdd0", "tid": 35568, "ts": 4188040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4188211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e560", "tid": 35568, "ts": 4188333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4188504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ea40", "tid": 35568, "ts": 4188626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4188797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e3c0", "tid": 35568, "ts": 4188919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4189091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ed80", "tid": 35568, "ts": 4189212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4189390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c270", "tid": 35568, "ts": 4189513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4189684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e7d0", "tid": 35568, "ts": 4189805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e150", "tid": 35568, "ts": 4190140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e220", "tid": 35568, "ts": 4190433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d2b0", "tid": 35568, "ts": 4190725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cea0", "tid": 35568, "ts": 4191078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4191250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e8a0", "tid": 35568, "ts": 4191371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4191543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e970", "tid": 35568, "ts": 4191664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4191835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ecb0", "tid": 35568, "ts": 4191956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4192127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d380", "tid": 35568, "ts": 4192248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4192588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ee50", "tid": 35568, "ts": 4192768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4193033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d450", "tid": 35568, "ts": 4193176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4193481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ef20", "tid": 35568, "ts": 4193603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4193774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bf30", "tid": 35568, "ts": 4193895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d520", "tid": 35568, "ts": 4194187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791eff0", "tid": 35568, "ts": 4194480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bcc0", "tid": 35568, "ts": 4194796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c410", "tid": 35568, "ts": 4195089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4195261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c000", "tid": 35568, "ts": 4195382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4195554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c4e0", "tid": 35568, "ts": 4195676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4195848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c820", "tid": 35568, "ts": 4195969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4196140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cf70", "tid": 35568, "ts": 4196262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4196433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d5f0", "tid": 35568, "ts": 4196554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4196725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d6c0", "tid": 35568, "ts": 4196846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d790", "tid": 35568, "ts": 4197139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d860", "tid": 35568, "ts": 4197476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920b90", "tid": 35568, "ts": 4197769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920ac0", "tid": 35568, "ts": 4198062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4198232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879209f0", "tid": 35568, "ts": 4198353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4198523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921d70", "tid": 35568, "ts": 4198645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4198817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920440", "tid": 35568, "ts": 4198938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921f10", "tid": 35568, "ts": 4199232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879206b0", "tid": 35568, "ts": 4199524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879213b0", "tid": 35568, "ts": 4199817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f810", "tid": 35568, "ts": 4200109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4200281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879201d0", "tid": 35568, "ts": 4200403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4200573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920c60", "tid": 35568, "ts": 4200695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4200866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f190", "tid": 35568, "ts": 4200987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4201160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920d30", "tid": 35568, "ts": 4201280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4201453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f400", "tid": 35568, "ts": 4201573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4201744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fc20", "tid": 35568, "ts": 4201866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921890", "tid": 35568, "ts": 4202159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921b00", "tid": 35568, "ts": 4202452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920370", "tid": 35568, "ts": 4202743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f8e0", "tid": 35568, "ts": 4203036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4203207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921bd0", "tid": 35568, "ts": 4203328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4203500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921ca0", "tid": 35568, "ts": 4203621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4203791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879216f0", "tid": 35568, "ts": 4203913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921480", "tid": 35568, "ts": 4204205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f260", "tid": 35568, "ts": 4204498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920e00", "tid": 35568, "ts": 4204790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879202a0", "tid": 35568, "ts": 4205082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4205253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f330", "tid": 35568, "ts": 4205375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4205546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f670", "tid": 35568, "ts": 4205667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4205838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920510", "tid": 35568, "ts": 4205959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4206131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f4d0", "tid": 35568, "ts": 4206251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4206423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f9b0", "tid": 35568, "ts": 4206545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4206716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920850", "tid": 35568, "ts": 4206837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f5a0", "tid": 35568, "ts": 4207131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f740", "tid": 35568, "ts": 4207424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921550", "tid": 35568, "ts": 4207718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920030", "tid": 35568, "ts": 4208059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4208231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920ed0", "tid": 35568, "ts": 4208353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4208524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f0c0", "tid": 35568, "ts": 4208645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4208817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fa80", "tid": 35568, "ts": 4208938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921e40", "tid": 35568, "ts": 4209231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920fa0", "tid": 35568, "ts": 4209524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921620", "tid": 35568, "ts": 4209818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fb50", "tid": 35568, "ts": 4210110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4210282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879212e0", "tid": 35568, "ts": 4210403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4210575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fcf0", "tid": 35568, "ts": 4210696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4210869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879205e0", "tid": 35568, "ts": 4210991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4211163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879217c0", "tid": 35568, "ts": 4211284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4211456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fdc0", "tid": 35568, "ts": 4211577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4211748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fe90", "tid": 35568, "ts": 4211871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920780", "tid": 35568, "ts": 4212164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921070", "tid": 35568, "ts": 4212457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920920", "tid": 35568, "ts": 4212749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ff60", "tid": 35568, "ts": 4213042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4213213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920100", "tid": 35568, "ts": 4213334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4213505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921140", "tid": 35568, "ts": 4213627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4213797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921210", "tid": 35568, "ts": 4213919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921960", "tid": 35568, "ts": 4214211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921a30", "tid": 35568, "ts": 4214505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914d70", "tid": 35568, "ts": 4214797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912190", "tid": 35568, "ts": 4215089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4215260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913030", "tid": 35568, "ts": 4215382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4215554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914ca0", "tid": 35568, "ts": 4215686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4215858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912f60", "tid": 35568, "ts": 4215980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4216152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914890", "tid": 35568, "ts": 4216274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4216445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879128e0", "tid": 35568, "ts": 4216567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4216738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914a30", "tid": 35568, "ts": 4216860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912b50", "tid": 35568, "ts": 4217154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879153f0", "tid": 35568, "ts": 4217447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912dc0", "tid": 35568, "ts": 4217740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914210", "tid": 35568, "ts": 4218032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4218205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879129b0", "tid": 35568, "ts": 4218326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4218497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879120c0", "tid": 35568, "ts": 4218619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4218792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912260", "tid": 35568, "ts": 4218914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879143b0", "tid": 35568, "ts": 4219207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912a80", "tid": 35568, "ts": 4219500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913100", "tid": 35568, "ts": 4219793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913ac0", "tid": 35568, "ts": 4220084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4220257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912330", "tid": 35568, "ts": 4220377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4220548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915180", "tid": 35568, "ts": 4220670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4220840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913920", "tid": 35568, "ts": 4220962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4221134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912400", "tid": 35568, "ts": 4221256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4221427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913b90", "tid": 35568, "ts": 4221549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4221721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913440", "tid": 35568, "ts": 4221842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913510", "tid": 35568, "ts": 4222136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879131d0", "tid": 35568, "ts": 4222429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913c60", "tid": 35568, "ts": 4222722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914b00", "tid": 35568, "ts": 4223016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4223187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912c20", "tid": 35568, "ts": 4223309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4223480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879132a0", "tid": 35568, "ts": 4223644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4223815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914480", "tid": 35568, "ts": 4223937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4224108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913e00", "tid": 35568, "ts": 4224230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4224401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914550", "tid": 35568, "ts": 4224522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4224694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879142e0", "tid": 35568, "ts": 4224840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914620", "tid": 35568, "ts": 4225141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879124d0", "tid": 35568, "ts": 4225434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879125a0", "tid": 35568, "ts": 4225727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912670", "tid": 35568, "ts": 4226020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4226191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879146f0", "tid": 35568, "ts": 4226312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4226484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879135e0", "tid": 35568, "ts": 4226606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4226778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912740", "tid": 35568, "ts": 4226899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912810", "tid": 35568, "ts": 4227191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912cf0", "tid": 35568, "ts": 4227484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912e90", "tid": 35568, "ts": 4227776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913370", "tid": 35568, "ts": 4228068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4228239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914e40", "tid": 35568, "ts": 4228361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4228533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913d30", "tid": 35568, "ts": 4228655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4228826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879136b0", "tid": 35568, "ts": 4228948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4229119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913780", "tid": 35568, "ts": 4229241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4229413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914bd0", "tid": 35568, "ts": 4229578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4229749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879147c0", "tid": 35568, "ts": 4229872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913850", "tid": 35568, "ts": 4230164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879139f0", "tid": 35568, "ts": 4230456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913fa0", "tid": 35568, "ts": 4230749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913ed0", "tid": 35568, "ts": 4231041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4231212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914070", "tid": 35568, "ts": 4231334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4231506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914140", "tid": 35568, "ts": 4231627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4231799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914f10", "tid": 35568, "ts": 4231921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914960", "tid": 35568, "ts": 4232213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914fe0", "tid": 35568, "ts": 4232505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879150b0", "tid": 35568, "ts": 4232797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915250", "tid": 35568, "ts": 4233091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4233261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915320", "tid": 35568, "ts": 4233382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4233554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338310", "tid": 35568, "ts": 4233692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4233864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335ce0", "tid": 35568, "ts": 4233986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4234158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335db0", "tid": 35568, "ts": 4234279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4234451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336360", "tid": 35568, "ts": 4234573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4234744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337c90", "tid": 35568, "ts": 4234866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336ab0", "tid": 35568, "ts": 4235159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338170", "tid": 35568, "ts": 4235452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335590", "tid": 35568, "ts": 4235745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03383e0", "tid": 35568, "ts": 4236037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4236207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336770", "tid": 35568, "ts": 4236329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4236501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03366a0", "tid": 35568, "ts": 4236623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4236795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337af0", "tid": 35568, "ts": 4236917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338240", "tid": 35568, "ts": 4237209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335800", "tid": 35568, "ts": 4237503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335660", "tid": 35568, "ts": 4237797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335730", "tid": 35568, "ts": 4238091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4238262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337d60", "tid": 35568, "ts": 4238384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4238556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336500", "tid": 35568, "ts": 4238678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4238848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335a70", "tid": 35568, "ts": 4238971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4239142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337e30", "tid": 35568, "ts": 4239335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4239508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03358d0", "tid": 35568, "ts": 4239688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4239859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337540", "tid": 35568, "ts": 4239981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4240152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337f00", "tid": 35568, "ts": 4240275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4240446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03365d0", "tid": 35568, "ts": 4240567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4240738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337610", "tid": 35568, "ts": 4240861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337fd0", "tid": 35568, "ts": 4241156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337bc0", "tid": 35568, "ts": 4241448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03384b0", "tid": 35568, "ts": 4241742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336840", "tid": 35568, "ts": 4242034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4242204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338580", "tid": 35568, "ts": 4242326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4242498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337a20", "tid": 35568, "ts": 4242620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4242792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03380a0", "tid": 35568, "ts": 4242914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03359a0", "tid": 35568, "ts": 4243208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335c10", "tid": 35568, "ts": 4243499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338650", "tid": 35568, "ts": 4243793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335b40", "tid": 35568, "ts": 4244086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4244257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336b80", "tid": 35568, "ts": 4244379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4244552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335e80", "tid": 35568, "ts": 4244673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4244844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336910", "tid": 35568, "ts": 4244966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4245137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337130", "tid": 35568, "ts": 4245259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4245429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03369e0", "tid": 35568, "ts": 4245550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4245721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336c50", "tid": 35568, "ts": 4245843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338720", "tid": 35568, "ts": 4246135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03372d0", "tid": 35568, "ts": 4246429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335f50", "tid": 35568, "ts": 4246722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336ec0", "tid": 35568, "ts": 4247015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4247188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336d20", "tid": 35568, "ts": 4247310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4247481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336df0", "tid": 35568, "ts": 4247602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4247774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337200", "tid": 35568, "ts": 4247895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03373a0", "tid": 35568, "ts": 4248187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337470", "tid": 35568, "ts": 4248481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336020", "tid": 35568, "ts": 4248774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03376e0", "tid": 35568, "ts": 4249068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4249239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03387f0", "tid": 35568, "ts": 4249360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4249532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336f90", "tid": 35568, "ts": 4249654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4249826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03377b0", "tid": 35568, "ts": 4249947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337880", "tid": 35568, "ts": 4250240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337950", "tid": 35568, "ts": 4250534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337060", "tid": 35568, "ts": 4250826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03354c0", "tid": 35568, "ts": 4251118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4251291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03360f0", "tid": 35568, "ts": 4251412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4251584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03361c0", "tid": 35568, "ts": 4251705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4251876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336290", "tid": 35568, "ts": 4251998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4252169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336430", "tid": 35568, "ts": 4252290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4252461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339aa0", "tid": 35568, "ts": 4252583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4252755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b160", "tid": 35568, "ts": 4252876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b300", "tid": 35568, "ts": 4253169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339010", "tid": 35568, "ts": 4253462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b710", "tid": 35568, "ts": 4253756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338e70", "tid": 35568, "ts": 4254050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4254221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03390e0", "tid": 35568, "ts": 4254343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4254514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339c40", "tid": 35568, "ts": 4254636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4254837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03391b0", "tid": 35568, "ts": 4254988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4255160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339f80", "tid": 35568, "ts": 4255282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4255452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b4a0", "tid": 35568, "ts": 4255574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4255745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b090", "tid": 35568, "ts": 4255866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a120", "tid": 35568, "ts": 4256158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339420", "tid": 35568, "ts": 4256451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033afc0", "tid": 35568, "ts": 4256745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a1f0", "tid": 35568, "ts": 4257074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4257249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b230", "tid": 35568, "ts": 4257386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4257563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483a1e2d0", "tid": 35568, "ts": 4257631, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4257947, "pid": 35104, "args": { "Heap": { "SizeInBytes": 67108864, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a033bb20", "tid": 35568, "ts": 4257962, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a033bb20", "tid": 35568, "ts": 4257993, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 67108864, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339690", "tid": 35568, "ts": 4258111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4258298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338da0", "tid": 35568, "ts": 4258422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4258596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033aef0", "tid": 35568, "ts": 4258719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4258904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a050", "tid": 35568, "ts": 4259026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4259198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338f40", "tid": 35568, "ts": 4259320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4259491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338a60", "tid": 35568, "ts": 4259614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4259785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ad50", "tid": 35568, "ts": 4259907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4260123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b7e0", "tid": 35568, "ts": 4260246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4260420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a460", "tid": 35568, "ts": 4260542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4260713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339280", "tid": 35568, "ts": 4260835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339350", "tid": 35568, "ts": 4261129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b980", "tid": 35568, "ts": 4261422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b3d0", "tid": 35568, "ts": 4261715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339b70", "tid": 35568, "ts": 4262010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4262182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b8b0", "tid": 35568, "ts": 4262347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4262519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338b30", "tid": 35568, "ts": 4262640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4262812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a530", "tid": 35568, "ts": 4262933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b570", "tid": 35568, "ts": 4263226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03394f0", "tid": 35568, "ts": 4263518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a600", "tid": 35568, "ts": 4263810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ba50", "tid": 35568, "ts": 4264102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4264274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b640", "tid": 35568, "ts": 4264395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4264565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bbf0", "tid": 35568, "ts": 4264686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4264857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ae20", "tid": 35568, "ts": 4264977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4265150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03388c0", "tid": 35568, "ts": 4265271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4265443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338990", "tid": 35568, "ts": 4265564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4265736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a870", "tid": 35568, "ts": 4265857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338c00", "tid": 35568, "ts": 4266151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339eb0", "tid": 35568, "ts": 4266444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03395c0", "tid": 35568, "ts": 4266737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03399d0", "tid": 35568, "ts": 4267029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4267201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339760", "tid": 35568, "ts": 4267322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4267494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a6d0", "tid": 35568, "ts": 4267615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4267788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a2c0", "tid": 35568, "ts": 4267911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339d10", "tid": 35568, "ts": 4268203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338cd0", "tid": 35568, "ts": 4268495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339de0", "tid": 35568, "ts": 4268788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339830", "tid": 35568, "ts": 4269080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4269252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a7a0", "tid": 35568, "ts": 4269372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4269543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339900", "tid": 35568, "ts": 4269677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4269849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a940", "tid": 35568, "ts": 4269971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4270142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033aa10", "tid": 35568, "ts": 4270264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4270504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033aae0", "tid": 35568, "ts": 4270626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4270798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033abb0", "tid": 35568, "ts": 4270918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ac80", "tid": 35568, "ts": 4271211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c5b0", "tid": 35568, "ts": 4271505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ed80", "tid": 35568, "ts": 4271797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c680", "tid": 35568, "ts": 4272089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4272261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033eb10", "tid": 35568, "ts": 4272381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4272553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cf70", "tid": 35568, "ts": 4272674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4272845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ef20", "tid": 35568, "ts": 4272966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4273137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d380", "tid": 35568, "ts": 4273258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4273430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033eff0", "tid": 35568, "ts": 4273551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4273723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e7d0", "tid": 35568, "ts": 4273845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ee50", "tid": 35568, "ts": 4274137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d2b0", "tid": 35568, "ts": 4274427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d790", "tid": 35568, "ts": 4274720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bcc0", "tid": 35568, "ts": 4275012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4275183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ebe0", "tid": 35568, "ts": 4275304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4275475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e8a0", "tid": 35568, "ts": 4275596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4275767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e490", "tid": 35568, "ts": 4275888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4276059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e970", "tid": 35568, "ts": 4276244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4276416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d930", "tid": 35568, "ts": 4276537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4276708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c000", "tid": 35568, "ts": 4276830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ea40", "tid": 35568, "ts": 4277124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d860", "tid": 35568, "ts": 4277417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033da00", "tid": 35568, "ts": 4277710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d6c0", "tid": 35568, "ts": 4278002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4278174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c410", "tid": 35568, "ts": 4278296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4278467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dba0", "tid": 35568, "ts": 4278588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4278760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bd90", "tid": 35568, "ts": 4278880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ecb0", "tid": 35568, "ts": 4279173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dfb0", "tid": 35568, "ts": 4279507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033be60", "tid": 35568, "ts": 4279802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e2f0", "tid": 35568, "ts": 4280094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4280265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dad0", "tid": 35568, "ts": 4280386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4280558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dc70", "tid": 35568, "ts": 4280678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4280850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d110", "tid": 35568, "ts": 4280971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4281142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d450", "tid": 35568, "ts": 4281263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4281434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c1a0", "tid": 35568, "ts": 4281555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4281727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dd40", "tid": 35568, "ts": 4281848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cdd0", "tid": 35568, "ts": 4282144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e630", "tid": 35568, "ts": 4282438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bf30", "tid": 35568, "ts": 4282731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ca90", "tid": 35568, "ts": 4283023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4283194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c0d0", "tid": 35568, "ts": 4283315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4283487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c270", "tid": 35568, "ts": 4283608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4283779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c340", "tid": 35568, "ts": 4283900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c820", "tid": 35568, "ts": 4284193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c750", "tid": 35568, "ts": 4284487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c4e0", "tid": 35568, "ts": 4284780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c8f0", "tid": 35568, "ts": 4285072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4285244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c9c0", "tid": 35568, "ts": 4285365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4285536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033de10", "tid": 35568, "ts": 4285657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4285830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d1e0", "tid": 35568, "ts": 4285951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4286171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d520", "tid": 35568, "ts": 4286301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4286479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cc30", "tid": 35568, "ts": 4286605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4286782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cb60", "tid": 35568, "ts": 4286907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4287111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e560", "tid": 35568, "ts": 4287237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4287414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cd00", "tid": 35568, "ts": 4287575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4287753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cea0", "tid": 35568, "ts": 4287877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d040", "tid": 35568, "ts": 4288206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dee0", "tid": 35568, "ts": 4288509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d5f0", "tid": 35568, "ts": 4288814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e080", "tid": 35568, "ts": 4289116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4289292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e150", "tid": 35568, "ts": 4289418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4289594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e220", "tid": 35568, "ts": 4289719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4289897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e3c0", "tid": 35568, "ts": 4290023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4290227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e700", "tid": 35568, "ts": 4290352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4290530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fcf0", "tid": 35568, "ts": 4290655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4290832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03416f0", "tid": 35568, "ts": 4290984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4291163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f740", "tid": 35568, "ts": 4291288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4291464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340440", "tid": 35568, "ts": 4291589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4291767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f8e0", "tid": 35568, "ts": 4291892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fe90", "tid": 35568, "ts": 4292196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f400", "tid": 35568, "ts": 4292500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f810", "tid": 35568, "ts": 4292802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340510", "tid": 35568, "ts": 4293104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4293281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f9b0", "tid": 35568, "ts": 4293406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4293583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fa80", "tid": 35568, "ts": 4293708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4293884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340850", "tid": 35568, "ts": 4294020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4294220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341d70", "tid": 35568, "ts": 4294342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4294552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f670", "tid": 35568, "ts": 4294687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4294859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340030", "tid": 35568, "ts": 4294980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4295198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f5a0", "tid": 35568, "ts": 4295322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4295495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340ac0", "tid": 35568, "ts": 4295617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4295788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341210", "tid": 35568, "ts": 4295909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340d30", "tid": 35568, "ts": 4296203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fb50", "tid": 35568, "ts": 4296497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f0c0", "tid": 35568, "ts": 4296792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341890", "tid": 35568, "ts": 4297085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4297257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341070", "tid": 35568, "ts": 4297378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4297549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fc20", "tid": 35568, "ts": 4297671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4297841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340e00", "tid": 35568, "ts": 4297963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4298133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03409f0", "tid": 35568, "ts": 4298255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4298428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340100", "tid": 35568, "ts": 4298549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4298721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340b90", "tid": 35568, "ts": 4298842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340920", "tid": 35568, "ts": 4299135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340fa0", "tid": 35568, "ts": 4299429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03401d0", "tid": 35568, "ts": 4299721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03402a0", "tid": 35568, "ts": 4300014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4300185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f190", "tid": 35568, "ts": 4300306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4300478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341140", "tid": 35568, "ts": 4300600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4300772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fdc0", "tid": 35568, "ts": 4300926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4301099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341b00", "tid": 35568, "ts": 4301220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4301393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341620", "tid": 35568, "ts": 4301514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4301748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ff60", "tid": 35568, "ts": 4301914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4302102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341e40", "tid": 35568, "ts": 4302238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4302490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340370", "tid": 35568, "ts": 4302612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4302783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341f10", "tid": 35568, "ts": 4302904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03412e0", "tid": 35568, "ts": 4303196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03405e0", "tid": 35568, "ts": 4303489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03413b0", "tid": 35568, "ts": 4303780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03406b0", "tid": 35568, "ts": 4304073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4304244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340780", "tid": 35568, "ts": 4304366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4304537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340c60", "tid": 35568, "ts": 4304658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4304830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340ed0", "tid": 35568, "ts": 4304952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4305124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f260", "tid": 35568, "ts": 4305245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4305416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341480", "tid": 35568, "ts": 4305538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4305712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341550", "tid": 35568, "ts": 4305832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03417c0", "tid": 35568, "ts": 4306125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341a30", "tid": 35568, "ts": 4306417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341960", "tid": 35568, "ts": 4306710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341bd0", "tid": 35568, "ts": 4307004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4307177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341ca0", "tid": 35568, "ts": 4307355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4307528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f330", "tid": 35568, "ts": 4307650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4307822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f4d0", "tid": 35568, "ts": 4307943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333e00", "tid": 35568, "ts": 4308236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03331d0", "tid": 35568, "ts": 4308529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333370", "tid": 35568, "ts": 4308822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03329b0", "tid": 35568, "ts": 4309115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4309285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333440", "tid": 35568, "ts": 4309406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4309578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332190", "tid": 35568, "ts": 4309699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4309870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03325a0", "tid": 35568, "ts": 4309992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4310163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03346f0", "tid": 35568, "ts": 4310284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4310455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334bd0", "tid": 35568, "ts": 4310576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4310747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335180", "tid": 35568, "ts": 4310869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334550", "tid": 35568, "ts": 4311162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333b90", "tid": 35568, "ts": 4311455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334ca0", "tid": 35568, "ts": 4311747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333c60", "tid": 35568, "ts": 4312040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4312210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334d70", "tid": 35568, "ts": 4312331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4312502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332c20", "tid": 35568, "ts": 4312623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4312794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332740", "tid": 35568, "ts": 4312915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334890", "tid": 35568, "ts": 4313207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332330", "tid": 35568, "ts": 4313500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335250", "tid": 35568, "ts": 4313792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334070", "tid": 35568, "ts": 4314083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4314256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332a80", "tid": 35568, "ts": 4314377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4314550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334f10", "tid": 35568, "ts": 4314671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4314843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332e90", "tid": 35568, "ts": 4314963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4315135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335320", "tid": 35568, "ts": 4315255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4315427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332670", "tid": 35568, "ts": 4315547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4315719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334e40", "tid": 35568, "ts": 4315840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333d30", "tid": 35568, "ts": 4316132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333ed0", "tid": 35568, "ts": 4316433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332810", "tid": 35568, "ts": 4316727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333fa0", "tid": 35568, "ts": 4317020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4317190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03347c0", "tid": 35568, "ts": 4317359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4317555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334210", "tid": 35568, "ts": 4317677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4317849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334140", "tid": 35568, "ts": 4317970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4318142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333ac0", "tid": 35568, "ts": 4318264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4318435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334480", "tid": 35568, "ts": 4318556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4318728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332cf0", "tid": 35568, "ts": 4318850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334620", "tid": 35568, "ts": 4319143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333510", "tid": 35568, "ts": 4319436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332400", "tid": 35568, "ts": 4319729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332dc0", "tid": 35568, "ts": 4320021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4320193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03342e0", "tid": 35568, "ts": 4320315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4320486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03328e0", "tid": 35568, "ts": 4320607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4320779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332f60", "tid": 35568, "ts": 4320900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03335e0", "tid": 35568, "ts": 4321193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03336b0", "tid": 35568, "ts": 4321486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334fe0", "tid": 35568, "ts": 4321778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334960", "tid": 35568, "ts": 4322071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4322243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03350b0", "tid": 35568, "ts": 4322365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4322537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332b50", "tid": 35568, "ts": 4322659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4322830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332260", "tid": 35568, "ts": 4322951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4323123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03343b0", "tid": 35568, "ts": 4323244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4323416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333780", "tid": 35568, "ts": 4323538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4323710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03324d0", "tid": 35568, "ts": 4323831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333850", "tid": 35568, "ts": 4324124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334a30", "tid": 35568, "ts": 4324446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03353f0", "tid": 35568, "ts": 4324738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333920", "tid": 35568, "ts": 4325032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4325205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03320c0", "tid": 35568, "ts": 4325326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4325497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333030", "tid": 35568, "ts": 4325619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4325791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03339f0", "tid": 35568, "ts": 4325913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03332a0", "tid": 35568, "ts": 4326207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334b00", "tid": 35568, "ts": 4326501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333100", "tid": 35568, "ts": 4326793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2a40", "tid": 35568, "ts": 4327106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4327280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3e90", "tid": 35568, "ts": 4327401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4327573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1110", "tid": 35568, "ts": 4327737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4327909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1860", "tid": 35568, "ts": 4328032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4328203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a22f0", "tid": 35568, "ts": 4328325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4328497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1790", "tid": 35568, "ts": 4328618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4328790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2f20", "tid": 35568, "ts": 4328911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4329082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3a80", "tid": 35568, "ts": 4329204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4329376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a11e0", "tid": 35568, "ts": 4329497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4329669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3b50", "tid": 35568, "ts": 4329791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1930", "tid": 35568, "ts": 4330125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1a00", "tid": 35568, "ts": 4330418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a12b0", "tid": 35568, "ts": 4330711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3670", "tid": 35568, "ts": 4331005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4331176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4100", "tid": 35568, "ts": 4331297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4331468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3190", "tid": 35568, "ts": 4331589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4331760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3c20", "tid": 35568, "ts": 4331882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4332054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3260", "tid": 35568, "ts": 4332176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4332347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1ad0", "tid": 35568, "ts": 4332468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4332641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2be0", "tid": 35568, "ts": 4332762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a41d0", "tid": 35568, "ts": 4333130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2b10", "tid": 35568, "ts": 4333424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3f60", "tid": 35568, "ts": 4333718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2cb0", "tid": 35568, "ts": 4334012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4334184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3740", "tid": 35568, "ts": 4334305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4334478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2150", "tid": 35568, "ts": 4334599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4334771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1ba0", "tid": 35568, "ts": 4334892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1c70", "tid": 35568, "ts": 4335185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a38e0", "tid": 35568, "ts": 4335479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2d80", "tid": 35568, "ts": 4335770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2220", "tid": 35568, "ts": 4336065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4336236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a23c0", "tid": 35568, "ts": 4336359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4336531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1380", "tid": 35568, "ts": 4336653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4336825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a42a0", "tid": 35568, "ts": 4336946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3330", "tid": 35568, "ts": 4337240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3810", "tid": 35568, "ts": 4337532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4030", "tid": 35568, "ts": 4337826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a27d0", "tid": 35568, "ts": 4338120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4338291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1d40", "tid": 35568, "ts": 4338413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4338585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4370", "tid": 35568, "ts": 4338706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4338877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3400", "tid": 35568, "ts": 4338998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4339171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1450", "tid": 35568, "ts": 4339292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4339463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2e50", "tid": 35568, "ts": 4339584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4339756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1520", "tid": 35568, "ts": 4339877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1e10", "tid": 35568, "ts": 4340171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a34d0", "tid": 35568, "ts": 4340464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a35a0", "tid": 35568, "ts": 4340758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a15f0", "tid": 35568, "ts": 4341051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4341222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a39b0", "tid": 35568, "ts": 4341344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4341516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1ee0", "tid": 35568, "ts": 4341637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4341809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3cf0", "tid": 35568, "ts": 4341930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1fb0", "tid": 35568, "ts": 4342223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3dc0", "tid": 35568, "ts": 4342516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2080", "tid": 35568, "ts": 4342810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2490", "tid": 35568, "ts": 4343103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4343274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2560", "tid": 35568, "ts": 4343396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4343568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a16c0", "tid": 35568, "ts": 4343689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4343861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2630", "tid": 35568, "ts": 4343982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4344154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2700", "tid": 35568, "ts": 4344275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4344447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1040", "tid": 35568, "ts": 4344568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4344740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a28a0", "tid": 35568, "ts": 4344862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2970", "tid": 35568, "ts": 4345154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2ff0", "tid": 35568, "ts": 4345447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a30c0", "tid": 35568, "ts": 4345741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5b00", "tid": 35568, "ts": 4346033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4346205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4510", "tid": 35568, "ts": 4346326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4346498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5d70", "tid": 35568, "ts": 4346619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4346791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6590", "tid": 35568, "ts": 4346912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7290", "tid": 35568, "ts": 4347206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6f50", "tid": 35568, "ts": 4347499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4ed0", "tid": 35568, "ts": 4347792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4c60", "tid": 35568, "ts": 4348085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4348256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7500", "tid": 35568, "ts": 4348379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4348594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a69a0", "tid": 35568, "ts": 4348717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4348889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a76a0", "tid": 35568, "ts": 4349011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4349182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7360", "tid": 35568, "ts": 4349304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4349476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a52e0", "tid": 35568, "ts": 4349598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4349769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6660", "tid": 35568, "ts": 4349890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4920", "tid": 35568, "ts": 4350181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4fa0", "tid": 35568, "ts": 4350474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5890", "tid": 35568, "ts": 4350766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a49f0", "tid": 35568, "ts": 4351061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4351233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a60b0", "tid": 35568, "ts": 4351354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4351525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a45e0", "tid": 35568, "ts": 4351646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4351818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6e80", "tid": 35568, "ts": 4351939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4b90", "tid": 35568, "ts": 4352234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4ac0", "tid": 35568, "ts": 4352527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a75d0", "tid": 35568, "ts": 4352821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a64c0", "tid": 35568, "ts": 4353115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4353288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a57c0", "tid": 35568, "ts": 4353410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4353582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4d30", "tid": 35568, "ts": 4353704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4353876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a46b0", "tid": 35568, "ts": 4353997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4354169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a53b0", "tid": 35568, "ts": 4354290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4354461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7020", "tid": 35568, "ts": 4354582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4354753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4780", "tid": 35568, "ts": 4354874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6db0", "tid": 35568, "ts": 4355165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4440", "tid": 35568, "ts": 4355460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4e00", "tid": 35568, "ts": 4355753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7770", "tid": 35568, "ts": 4356047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4356219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5e40", "tid": 35568, "ts": 4356340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4356512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6730", "tid": 35568, "ts": 4356633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4356806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7430", "tid": 35568, "ts": 4356927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4850", "tid": 35568, "ts": 4357220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5070", "tid": 35568, "ts": 4357512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5140", "tid": 35568, "ts": 4357804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5480", "tid": 35568, "ts": 4358096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4358268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5210", "tid": 35568, "ts": 4358389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4358561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5550", "tid": 35568, "ts": 4358683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4358854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5620", "tid": 35568, "ts": 4358976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4359147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6320", "tid": 35568, "ts": 4359268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4359438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a56f0", "tid": 35568, "ts": 4359560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4359731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5960", "tid": 35568, "ts": 4359853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5a30", "tid": 35568, "ts": 4360189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5bd0", "tid": 35568, "ts": 4360482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6800", "tid": 35568, "ts": 4360776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5ca0", "tid": 35568, "ts": 4361069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4361240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5f10", "tid": 35568, "ts": 4361422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4361594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5fe0", "tid": 35568, "ts": 4361715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4361886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6180", "tid": 35568, "ts": 4362008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4362180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6250", "tid": 35568, "ts": 4362301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4362473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a63f0", "tid": 35568, "ts": 4362594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4362766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a68d0", "tid": 35568, "ts": 4362887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6a70", "tid": 35568, "ts": 4363180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6b40", "tid": 35568, "ts": 4363473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6c10", "tid": 35568, "ts": 4363764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6ce0", "tid": 35568, "ts": 4364057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4364288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a70f0", "tid": 35568, "ts": 4364410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4364582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a71c0", "tid": 35568, "ts": 4364703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4364876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a94b0", "tid": 35568, "ts": 4364998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4365170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a98c0", "tid": 35568, "ts": 4365291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4365462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8130", "tid": 35568, "ts": 4365583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4365755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7910", "tid": 35568, "ts": 4365877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9580", "tid": 35568, "ts": 4366169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa4f0", "tid": 35568, "ts": 4366463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a79e0", "tid": 35568, "ts": 4366756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7df0", "tid": 35568, "ts": 4367048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4367220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a83a0", "tid": 35568, "ts": 4367341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4367512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7840", "tid": 35568, "ts": 4367634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4367805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa420", "tid": 35568, "ts": 4367926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7c50", "tid": 35568, "ts": 4368220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9b30", "tid": 35568, "ts": 4368511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a86e0", "tid": 35568, "ts": 4368804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7f90", "tid": 35568, "ts": 4369097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4369269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8060", "tid": 35568, "ts": 4369390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4369561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8bc0", "tid": 35568, "ts": 4369682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4369853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa5c0", "tid": 35568, "ts": 4369974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4370146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9990", "tid": 35568, "ts": 4370267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4370440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7d20", "tid": 35568, "ts": 4370561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4370733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa280", "tid": 35568, "ts": 4370854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa690", "tid": 35568, "ts": 4371149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa0e0", "tid": 35568, "ts": 4371442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9a60", "tid": 35568, "ts": 4371735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9720", "tid": 35568, "ts": 4372029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4372201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa1b0", "tid": 35568, "ts": 4372322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4372494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9c00", "tid": 35568, "ts": 4372615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4372786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8a20", "tid": 35568, "ts": 4372908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8d60", "tid": 35568, "ts": 4373201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a87b0", "tid": 35568, "ts": 4373494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa9d0", "tid": 35568, "ts": 4373787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9310", "tid": 35568, "ts": 4374079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4374251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7ab0", "tid": 35568, "ts": 4374431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4374603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8200", "tid": 35568, "ts": 4374726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4374897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9cd0", "tid": 35568, "ts": 4375019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4375192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8880", "tid": 35568, "ts": 4375313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4375484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9da0", "tid": 35568, "ts": 4375606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4375779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8950", "tid": 35568, "ts": 4375900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9240", "tid": 35568, "ts": 4376193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa350", "tid": 35568, "ts": 4376485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8470", "tid": 35568, "ts": 4376803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7ec0", "tid": 35568, "ts": 4377097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4377269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9e70", "tid": 35568, "ts": 4377391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4377563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8c90", "tid": 35568, "ts": 4377685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4377856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9f40", "tid": 35568, "ts": 4377977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4378149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8af0", "tid": 35568, "ts": 4378271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4378442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a93e0", "tid": 35568, "ts": 4378564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4378735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aaaa0", "tid": 35568, "ts": 4378857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a97f0", "tid": 35568, "ts": 4379150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a82d0", "tid": 35568, "ts": 4379443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa900", "tid": 35568, "ts": 4379736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8e30", "tid": 35568, "ts": 4380131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4380304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8540", "tid": 35568, "ts": 4380426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4380598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9650", "tid": 35568, "ts": 4380719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4380891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8610", "tid": 35568, "ts": 4381012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4381183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa010", "tid": 35568, "ts": 4381305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4381477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8f00", "tid": 35568, "ts": 4381599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4381771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa760", "tid": 35568, "ts": 4381891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa830", "tid": 35568, "ts": 4382185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7b80", "tid": 35568, "ts": 4382478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aab70", "tid": 35568, "ts": 4382771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8fd0", "tid": 35568, "ts": 4383064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4383237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a90a0", "tid": 35568, "ts": 4383358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4383531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9170", "tid": 35568, "ts": 4383652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4383825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab6d0", "tid": 35568, "ts": 4383947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4384120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad410", "tid": 35568, "ts": 4384242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4384413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ace60", "tid": 35568, "ts": 4384535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4384707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab050", "tid": 35568, "ts": 4384829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab120", "tid": 35568, "ts": 4385122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac090", "tid": 35568, "ts": 4385416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab7a0", "tid": 35568, "ts": 4385707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac160", "tid": 35568, "ts": 4386000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4386172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acb20", "tid": 35568, "ts": 4386293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4386466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adc30", "tid": 35568, "ts": 4386587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4386758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abc80", "tid": 35568, "ts": 4386880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acd90", "tid": 35568, "ts": 4387172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab1f0", "tid": 35568, "ts": 4387465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab2c0", "tid": 35568, "ts": 4387758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac230", "tid": 35568, "ts": 4388050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4388222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aba10", "tid": 35568, "ts": 4388345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4388516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab460", "tid": 35568, "ts": 4388637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4388809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aad10", "tid": 35568, "ts": 4388964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4389135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abef0", "tid": 35568, "ts": 4389257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4389429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aade0", "tid": 35568, "ts": 4389550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4389721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abfc0", "tid": 35568, "ts": 4389843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abe20", "tid": 35568, "ts": 4390136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac300", "tid": 35568, "ts": 4390430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac7e0", "tid": 35568, "ts": 4390722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aac40", "tid": 35568, "ts": 4391015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4391187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acf30", "tid": 35568, "ts": 4391308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4391479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ada90", "tid": 35568, "ts": 4391600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4391772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab390", "tid": 35568, "ts": 4391893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac4a0", "tid": 35568, "ts": 4392185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad680", "tid": 35568, "ts": 4392525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aaeb0", "tid": 35568, "ts": 4392818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac3d0", "tid": 35568, "ts": 4393112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4393284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab530", "tid": 35568, "ts": 4393405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4393578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad4e0", "tid": 35568, "ts": 4393700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4393872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acbf0", "tid": 35568, "ts": 4393993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4394165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab600", "tid": 35568, "ts": 4394287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4394483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac570", "tid": 35568, "ts": 4394604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4394775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac8b0", "tid": 35568, "ts": 4395046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4395218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abbb0", "tid": 35568, "ts": 4395341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4395600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab870", "tid": 35568, "ts": 4395726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4395898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab940", "tid": 35568, "ts": 4396021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4396194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac640", "tid": 35568, "ts": 4396318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4396491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aaf80", "tid": 35568, "ts": 4396613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4396786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abae0", "tid": 35568, "ts": 4396908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803add00", "tid": 35568, "ts": 4397202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad5b0", "tid": 35568, "ts": 4397496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abd50", "tid": 35568, "ts": 4397790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac710", "tid": 35568, "ts": 4398085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4398257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac980", "tid": 35568, "ts": 4398379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4398552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aca50", "tid": 35568, "ts": 4398674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4398846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803accc0", "tid": 35568, "ts": 4398968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4399139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad000", "tid": 35568, "ts": 4399262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4399479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad0d0", "tid": 35568, "ts": 4399602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4399774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad1a0", "tid": 35568, "ts": 4399896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4400136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803addd0", "tid": 35568, "ts": 4400259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4400432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad270", "tid": 35568, "ts": 4400554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4400726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad340", "tid": 35568, "ts": 4400848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad750", "tid": 35568, "ts": 4401142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad820", "tid": 35568, "ts": 4401437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad8f0", "tid": 35568, "ts": 4401731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad9c0", "tid": 35568, "ts": 4402024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4402196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adb60", "tid": 35568, "ts": 4402317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4402489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adea0", "tid": 35568, "ts": 4402611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4402782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adf70", "tid": 35568, "ts": 4402903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae790", "tid": 35568, "ts": 4403197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af150", "tid": 35568, "ts": 4403492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0b50", "tid": 35568, "ts": 4403786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae1e0", "tid": 35568, "ts": 4404078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4404249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af7d0", "tid": 35568, "ts": 4404372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4404543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0cf0", "tid": 35568, "ts": 4404665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4404837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0a80", "tid": 35568, "ts": 4404958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4405130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af970", "tid": 35568, "ts": 4405251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4405423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae520", "tid": 35568, "ts": 4405545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4405716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af8a0", "tid": 35568, "ts": 4405838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae040", "tid": 35568, "ts": 4406132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae860", "tid": 35568, "ts": 4406426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0810", "tid": 35568, "ts": 4406719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b00c0", "tid": 35568, "ts": 4407013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4407185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae930", "tid": 35568, "ts": 4407307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4407478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aea00", "tid": 35568, "ts": 4407599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4407771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af560", "tid": 35568, "ts": 4407892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae5f0", "tid": 35568, "ts": 4408186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afbe0", "tid": 35568, "ts": 4408480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afa40", "tid": 35568, "ts": 4408774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae6c0", "tid": 35568, "ts": 4409068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4409273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b04d0", "tid": 35568, "ts": 4409396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4409569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aead0", "tid": 35568, "ts": 4409692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4409867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aeba0", "tid": 35568, "ts": 4409995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4410167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af220", "tid": 35568, "ts": 4410289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4410462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b05a0", "tid": 35568, "ts": 4410583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4410756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afb10", "tid": 35568, "ts": 4410878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4411150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afff0", "tid": 35568, "ts": 4411342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4411626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af2f0", "tid": 35568, "ts": 4411771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aed40", "tid": 35568, "ts": 4412181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0c20", "tid": 35568, "ts": 4412475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aee10", "tid": 35568, "ts": 4412769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af3c0", "tid": 35568, "ts": 4413064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4413235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0670", "tid": 35568, "ts": 4413357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4413529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0190", "tid": 35568, "ts": 4413651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4413823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af490", "tid": 35568, "ts": 4413945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0dc0", "tid": 35568, "ts": 4414240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afcb0", "tid": 35568, "ts": 4414535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afe50", "tid": 35568, "ts": 4414828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aec70", "tid": 35568, "ts": 4415121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4415292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af630", "tid": 35568, "ts": 4415413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4415586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aeee0", "tid": 35568, "ts": 4415707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4415879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afd80", "tid": 35568, "ts": 4416000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4416171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aff20", "tid": 35568, "ts": 4416293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4416465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aefb0", "tid": 35568, "ts": 4416587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4416759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af080", "tid": 35568, "ts": 4416881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0260", "tid": 35568, "ts": 4417174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae110", "tid": 35568, "ts": 4417477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b08e0", "tid": 35568, "ts": 4417771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af700", "tid": 35568, "ts": 4418065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4418236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0330", "tid": 35568, "ts": 4418358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4418529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0400", "tid": 35568, "ts": 4418651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4418823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0e90", "tid": 35568, "ts": 4418980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4419306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae2b0", "tid": 35568, "ts": 4419428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4419600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0740", "tid": 35568, "ts": 4419722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4419893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae380", "tid": 35568, "ts": 4420016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4420187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b09b0", "tid": 35568, "ts": 4420308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4420480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae450", "tid": 35568, "ts": 4420601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4420773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664680", "tid": 35568, "ts": 4420930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661830", "tid": 35568, "ts": 4421226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663f30", "tid": 35568, "ts": 4421521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06615c0", "tid": 35568, "ts": 4421814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06627a0", "tid": 35568, "ts": 4422108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4422279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662e20", "tid": 35568, "ts": 4422400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4422573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662870", "tid": 35568, "ts": 4422695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4422867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661c40", "tid": 35568, "ts": 4422989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4423161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661d10", "tid": 35568, "ts": 4423283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4423455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662ae0", "tid": 35568, "ts": 4423578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4423749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662390", "tid": 35568, "ts": 4423871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662050", "tid": 35568, "ts": 4424165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662460", "tid": 35568, "ts": 4424459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661de0", "tid": 35568, "ts": 4424752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06622c0", "tid": 35568, "ts": 4425071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4425243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664270", "tid": 35568, "ts": 4425364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4425536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06626d0", "tid": 35568, "ts": 4425699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4425872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06619d0", "tid": 35568, "ts": 4425995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4426166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662120", "tid": 35568, "ts": 4426288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4426461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661aa0", "tid": 35568, "ts": 4426583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4426769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661b70", "tid": 35568, "ts": 4426891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663300", "tid": 35568, "ts": 4427183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662fc0", "tid": 35568, "ts": 4427477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662bb0", "tid": 35568, "ts": 4427772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663090", "tid": 35568, "ts": 4428065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4428237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661900", "tid": 35568, "ts": 4428359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4428530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662530", "tid": 35568, "ts": 4428653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4428824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662940", "tid": 35568, "ts": 4428946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06633d0", "tid": 35568, "ts": 4429240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663160", "tid": 35568, "ts": 4429533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662c80", "tid": 35568, "ts": 4429827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664340", "tid": 35568, "ts": 4430121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4430292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663cc0", "tid": 35568, "ts": 4430414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4430585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661eb0", "tid": 35568, "ts": 4430706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4430877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661f80", "tid": 35568, "ts": 4431000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4431171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662a10", "tid": 35568, "ts": 4431294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4431466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662600", "tid": 35568, "ts": 4431588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4431759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06621f0", "tid": 35568, "ts": 4431880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663d90", "tid": 35568, "ts": 4432173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662d50", "tid": 35568, "ts": 4432467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662ef0", "tid": 35568, "ts": 4432759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663230", "tid": 35568, "ts": 4433052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4433224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06634a0", "tid": 35568, "ts": 4433345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4433517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664750", "tid": 35568, "ts": 4433639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4433811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06641a0", "tid": 35568, "ts": 4433933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06645b0", "tid": 35568, "ts": 4434226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663570", "tid": 35568, "ts": 4434520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661760", "tid": 35568, "ts": 4434814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663640", "tid": 35568, "ts": 4435106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4435278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663710", "tid": 35568, "ts": 4435400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4435571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06614f0", "tid": 35568, "ts": 4435692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4435863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661690", "tid": 35568, "ts": 4435985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4436157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06637e0", "tid": 35568, "ts": 4436279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4436450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06638b0", "tid": 35568, "ts": 4436625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4436798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663980", "tid": 35568, "ts": 4436925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663a50", "tid": 35568, "ts": 4437218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663b20", "tid": 35568, "ts": 4437511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663bf0", "tid": 35568, "ts": 4437804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664820", "tid": 35568, "ts": 4438098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4438270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663e60", "tid": 35568, "ts": 4438392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4438564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664000", "tid": 35568, "ts": 4438685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4438855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06640d0", "tid": 35568, "ts": 4438977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4439149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664410", "tid": 35568, "ts": 4439270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4439442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06644e0", "tid": 35568, "ts": 4439564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4439735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665790", "tid": 35568, "ts": 4439857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666630", "tid": 35568, "ts": 4440151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665ba0", "tid": 35568, "ts": 4440444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664ea0", "tid": 35568, "ts": 4440739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667330", "tid": 35568, "ts": 4441033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4441205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06648f0", "tid": 35568, "ts": 4441327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4441499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06678e0", "tid": 35568, "ts": 4441621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4441792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665860", "tid": 35568, "ts": 4441913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4442084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667670", "tid": 35568, "ts": 4442206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4442577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06649c0", "tid": 35568, "ts": 4442761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4442934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664dd0", "tid": 35568, "ts": 4443057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4443230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665450", "tid": 35568, "ts": 4443352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4443524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664a90", "tid": 35568, "ts": 4443646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4443818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665ad0", "tid": 35568, "ts": 4443940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665380", "tid": 35568, "ts": 4444233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665930", "tid": 35568, "ts": 4444526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666a40", "tid": 35568, "ts": 4444820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666cb0", "tid": 35568, "ts": 4445113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4445285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665a00", "tid": 35568, "ts": 4445406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4445577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665520", "tid": 35568, "ts": 4445698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4445871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664f70", "tid": 35568, "ts": 4445994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4446167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667400", "tid": 35568, "ts": 4446288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4446460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06663c0", "tid": 35568, "ts": 4446582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4446755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06670c0", "tid": 35568, "ts": 4446876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665040", "tid": 35568, "ts": 4447232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06652b0", "tid": 35568, "ts": 4447525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06655f0", "tid": 35568, "ts": 4447819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666560", "tid": 35568, "ts": 4448112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4448285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666970", "tid": 35568, "ts": 4448407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4448578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667190", "tid": 35568, "ts": 4448700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4448872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665fb0", "tid": 35568, "ts": 4448994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4449168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06656c0", "tid": 35568, "ts": 4449289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4449461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666e50", "tid": 35568, "ts": 4449583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4449754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665c70", "tid": 35568, "ts": 4449875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665110", "tid": 35568, "ts": 4450169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06675a0", "tid": 35568, "ts": 4450463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06651e0", "tid": 35568, "ts": 4450757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666b10", "tid": 35568, "ts": 4451050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4451222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667260", "tid": 35568, "ts": 4451343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4451515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666220", "tid": 35568, "ts": 4451637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4451808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665d40", "tid": 35568, "ts": 4451929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666be0", "tid": 35568, "ts": 4452222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665e10", "tid": 35568, "ts": 4452516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665ee0", "tid": 35568, "ts": 4452810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667740", "tid": 35568, "ts": 4453127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4453299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664b60", "tid": 35568, "ts": 4453421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4453594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666080", "tid": 35568, "ts": 4453716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4453890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666150", "tid": 35568, "ts": 4454012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4454184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666490", "tid": 35568, "ts": 4454306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4454478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666700", "tid": 35568, "ts": 4454600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4454772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06662f0", "tid": 35568, "ts": 4454894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06674d0", "tid": 35568, "ts": 4455187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06667d0", "tid": 35568, "ts": 4455481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06668a0", "tid": 35568, "ts": 4455774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664d00", "tid": 35568, "ts": 4456067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4456238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666d80", "tid": 35568, "ts": 4456359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4456530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664c30", "tid": 35568, "ts": 4456652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4456824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667b50", "tid": 35568, "ts": 4456945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4457117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666f20", "tid": 35568, "ts": 4457238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4457410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666ff0", "tid": 35568, "ts": 4457532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4457704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667810", "tid": 35568, "ts": 4457825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4458073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06679b0", "tid": 35568, "ts": 4458207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4458379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667a80", "tid": 35568, "ts": 4458542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4458714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667c20", "tid": 35568, "ts": 4458836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668850", "tid": 35568, "ts": 4459129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a660", "tid": 35568, "ts": 4459423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668510", "tid": 35568, "ts": 4459717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668fa0", "tid": 35568, "ts": 4460019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4460190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a730", "tid": 35568, "ts": 4460312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4460484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066af50", "tid": 35568, "ts": 4460605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4460776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668ed0", "tid": 35568, "ts": 4460898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a180", "tid": 35568, "ts": 4461191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669070", "tid": 35568, "ts": 4461483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668370", "tid": 35568, "ts": 4461776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668c60", "tid": 35568, "ts": 4462069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4462241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ac10", "tid": 35568, "ts": 4462362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4462534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667f60", "tid": 35568, "ts": 4462655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4462826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ace0", "tid": 35568, "ts": 4462947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a590", "tid": 35568, "ts": 4463241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669a30", "tid": 35568, "ts": 4463534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669480", "tid": 35568, "ts": 4463827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669140", "tid": 35568, "ts": 4464120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4464292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a320", "tid": 35568, "ts": 4464414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4464586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06692e0", "tid": 35568, "ts": 4464707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4464879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a250", "tid": 35568, "ts": 4464999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4465171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066aa70", "tid": 35568, "ts": 4465293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4465464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669210", "tid": 35568, "ts": 4465585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4465756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ab40", "tid": 35568, "ts": 4465878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668b90", "tid": 35568, "ts": 4466171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667e90", "tid": 35568, "ts": 4466465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668780", "tid": 35568, "ts": 4466759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a0b0", "tid": 35568, "ts": 4467051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4467222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669550", "tid": 35568, "ts": 4467344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4467516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06693b0", "tid": 35568, "ts": 4467637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4467809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a9a0", "tid": 35568, "ts": 4467930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668e00", "tid": 35568, "ts": 4468223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668030", "tid": 35568, "ts": 4468516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668920", "tid": 35568, "ts": 4468811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a3f0", "tid": 35568, "ts": 4469104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4469276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06685e0", "tid": 35568, "ts": 4469397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4469613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06682a0", "tid": 35568, "ts": 4469735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4469907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669e40", "tid": 35568, "ts": 4470028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4470199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06697c0", "tid": 35568, "ts": 4470320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4470491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669620", "tid": 35568, "ts": 4470613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4470785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668d30", "tid": 35568, "ts": 4470907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06696f0", "tid": 35568, "ts": 4471200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669f10", "tid": 35568, "ts": 4471492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669890", "tid": 35568, "ts": 4471786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b020", "tid": 35568, "ts": 4472079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4472249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668100", "tid": 35568, "ts": 4472371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4472542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a8d0", "tid": 35568, "ts": 4472663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4472835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06686b0", "tid": 35568, "ts": 4472956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4473128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a800", "tid": 35568, "ts": 4473249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4473420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06689f0", "tid": 35568, "ts": 4473586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4473787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668ac0", "tid": 35568, "ts": 4473946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4474117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669960", "tid": 35568, "ts": 4474239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4474411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669b00", "tid": 35568, "ts": 4474534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4474706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066adb0", "tid": 35568, "ts": 4474828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669bd0", "tid": 35568, "ts": 4475123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669ca0", "tid": 35568, "ts": 4475418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669fe0", "tid": 35568, "ts": 4475712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669d70", "tid": 35568, "ts": 4476005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4476177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06681d0", "tid": 35568, "ts": 4476298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4476470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a4c0", "tid": 35568, "ts": 4476591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4476762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ae80", "tid": 35568, "ts": 4476884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667cf0", "tid": 35568, "ts": 4477178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667dc0", "tid": 35568, "ts": 4477471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668440", "tid": 35568, "ts": 4477766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c880", "tid": 35568, "ts": 4478061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4478232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cd60", "tid": 35568, "ts": 4478354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4478525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c2d0", "tid": 35568, "ts": 4478646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4478819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b840", "tid": 35568, "ts": 4478941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4479112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bc50", "tid": 35568, "ts": 4479262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4479435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b9e0", "tid": 35568, "ts": 4479558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4479730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d0a0", "tid": 35568, "ts": 4479852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bab0", "tid": 35568, "ts": 4480145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bb80", "tid": 35568, "ts": 4480438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ce30", "tid": 35568, "ts": 4480730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bd20", "tid": 35568, "ts": 4481023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4481195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bdf0", "tid": 35568, "ts": 4481316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4481487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d240", "tid": 35568, "ts": 4481610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4481782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bec0", "tid": 35568, "ts": 4481903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066da60", "tid": 35568, "ts": 4482197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066dcd0", "tid": 35568, "ts": 4482491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b910", "tid": 35568, "ts": 4482786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066dda0", "tid": 35568, "ts": 4483080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4483252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bf90", "tid": 35568, "ts": 4483373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4483545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e010", "tid": 35568, "ts": 4483666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4483838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c060", "tid": 35568, "ts": 4483959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4484130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066de70", "tid": 35568, "ts": 4484252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4484424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cf00", "tid": 35568, "ts": 4484547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4484718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066df40", "tid": 35568, "ts": 4484840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066db30", "tid": 35568, "ts": 4485134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c470", "tid": 35568, "ts": 4485427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e0e0", "tid": 35568, "ts": 4485721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c3a0", "tid": 35568, "ts": 4486014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4486186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d8c0", "tid": 35568, "ts": 4486309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4486481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c130", "tid": 35568, "ts": 4486603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4486775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d650", "tid": 35568, "ts": 4486897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e280", "tid": 35568, "ts": 4487191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c200", "tid": 35568, "ts": 4487484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e1b0", "tid": 35568, "ts": 4487778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c950", "tid": 35568, "ts": 4488071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4488243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b6a0", "tid": 35568, "ts": 4488364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4488537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066dc00", "tid": 35568, "ts": 4488658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4488830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c540", "tid": 35568, "ts": 4488952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4489123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c610", "tid": 35568, "ts": 4489373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4489547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c6e0", "tid": 35568, "ts": 4489671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4489844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c7b0", "tid": 35568, "ts": 4489968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4490140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cc90", "tid": 35568, "ts": 4490263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4490436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e350", "tid": 35568, "ts": 4490558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4490731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b500", "tid": 35568, "ts": 4490899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4491073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ca20", "tid": 35568, "ts": 4491268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4491440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066caf0", "tid": 35568, "ts": 4491563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4491735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cfd0", "tid": 35568, "ts": 4491856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d720", "tid": 35568, "ts": 4492152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e420", "tid": 35568, "ts": 4492445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b0f0", "tid": 35568, "ts": 4492738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b1c0", "tid": 35568, "ts": 4493033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4493205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b290", "tid": 35568, "ts": 4493326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4493498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b5d0", "tid": 35568, "ts": 4493619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4493792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cbc0", "tid": 35568, "ts": 4493913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b360", "tid": 35568, "ts": 4494207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d170", "tid": 35568, "ts": 4494502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d310", "tid": 35568, "ts": 4494817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d3e0", "tid": 35568, "ts": 4495110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4495283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d4b0", "tid": 35568, "ts": 4495404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4495577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d580", "tid": 35568, "ts": 4495698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4495869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d7f0", "tid": 35568, "ts": 4495990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4496162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d990", "tid": 35568, "ts": 4496284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4496456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b430", "tid": 35568, "ts": 4496577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4496749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b770", "tid": 35568, "ts": 4496870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06704a0", "tid": 35568, "ts": 4497162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ede0", "tid": 35568, "ts": 4497455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671000", "tid": 35568, "ts": 4497748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670570", "tid": 35568, "ts": 4498041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4498213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670f30", "tid": 35568, "ts": 4498335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4498507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671750", "tid": 35568, "ts": 4498629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4498801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f6d0", "tid": 35568, "ts": 4498923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f940", "tid": 35568, "ts": 4499215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e5c0", "tid": 35568, "ts": 4499510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f050", "tid": 35568, "ts": 4499805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e690", "tid": 35568, "ts": 4500099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4500271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066eaa0", "tid": 35568, "ts": 4500393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4500566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ec40", "tid": 35568, "ts": 4500688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4500858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06710d0", "tid": 35568, "ts": 4500979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4501152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670cc0", "tid": 35568, "ts": 4501273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4501445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670980", "tid": 35568, "ts": 4501567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4501739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f390", "tid": 35568, "ts": 4501861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066eeb0", "tid": 35568, "ts": 4502154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ffc0", "tid": 35568, "ts": 4502447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671680", "tid": 35568, "ts": 4502740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06708b0", "tid": 35568, "ts": 4503033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4503205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670160", "tid": 35568, "ts": 4503327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4503499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e760", "tid": 35568, "ts": 4503621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4503793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670b20", "tid": 35568, "ts": 4503916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4504087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06711a0", "tid": 35568, "ts": 4504209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4504382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ed10", "tid": 35568, "ts": 4504503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4504675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670640", "tid": 35568, "ts": 4504840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670710", "tid": 35568, "ts": 4505135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06714e0", "tid": 35568, "ts": 4505429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f120", "tid": 35568, "ts": 4505724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ef80", "tid": 35568, "ts": 4506017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4506189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f1f0", "tid": 35568, "ts": 4506312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4506484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671270", "tid": 35568, "ts": 4506606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4506778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06707e0", "tid": 35568, "ts": 4506900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f2c0", "tid": 35568, "ts": 4507194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f600", "tid": 35568, "ts": 4507489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e4f0", "tid": 35568, "ts": 4507783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f7a0", "tid": 35568, "ts": 4508077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4508249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f460", "tid": 35568, "ts": 4508371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4508544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f530", "tid": 35568, "ts": 4508667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4508839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671410", "tid": 35568, "ts": 4508961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4509133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f870", "tid": 35568, "ts": 4509254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4509426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670d90", "tid": 35568, "ts": 4509548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4509720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670e60", "tid": 35568, "ts": 4509842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fa10", "tid": 35568, "ts": 4510194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06703d0", "tid": 35568, "ts": 4510488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fae0", "tid": 35568, "ts": 4510782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fbb0", "tid": 35568, "ts": 4511077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4511249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670a50", "tid": 35568, "ts": 4511371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4511543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fc80", "tid": 35568, "ts": 4511664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4511835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670bf0", "tid": 35568, "ts": 4511957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4512129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e830", "tid": 35568, "ts": 4512251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4512423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671340", "tid": 35568, "ts": 4512544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4512716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670090", "tid": 35568, "ts": 4512838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06715b0", "tid": 35568, "ts": 4513132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670230", "tid": 35568, "ts": 4513427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fd50", "tid": 35568, "ts": 4513721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fe20", "tid": 35568, "ts": 4514014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4514186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fef0", "tid": 35568, "ts": 4514308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4514480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671820", "tid": 35568, "ts": 4514602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4514774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670300", "tid": 35568, "ts": 4514896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e900", "tid": 35568, "ts": 4515191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e9d0", "tid": 35568, "ts": 4515484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066eb70", "tid": 35568, "ts": 4515779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673080", "tid": 35568, "ts": 4516072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4516244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673970", "tid": 35568, "ts": 4516365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4516537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06740c0", "tid": 35568, "ts": 4516659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4516832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673700", "tid": 35568, "ts": 4516953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4517125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674670", "tid": 35568, "ts": 4517247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4517420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674400", "tid": 35568, "ts": 4517542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4517713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673be0", "tid": 35568, "ts": 4517834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06733c0", "tid": 35568, "ts": 4518130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673560", "tid": 35568, "ts": 4518439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674260", "tid": 35568, "ts": 4518734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06748e0", "tid": 35568, "ts": 4519028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4519200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672ba0", "tid": 35568, "ts": 4519322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4519495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672d40", "tid": 35568, "ts": 4519617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4519790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673490", "tid": 35568, "ts": 4519912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4520084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06749b0", "tid": 35568, "ts": 4520207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4520466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672a00", "tid": 35568, "ts": 4520662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4520942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673b10", "tid": 35568, "ts": 4521103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4521346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671dd0", "tid": 35568, "ts": 4521471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4521646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674b50", "tid": 35568, "ts": 4521770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4521943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673220", "tid": 35568, "ts": 4522067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4522241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672ad0", "tid": 35568, "ts": 4522364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4522537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672e10", "tid": 35568, "ts": 4522661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4522834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673150", "tid": 35568, "ts": 4522957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4523130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672450", "tid": 35568, "ts": 4523253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4523426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674810", "tid": 35568, "ts": 4523549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4523767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06744d0", "tid": 35568, "ts": 4523896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06737d0", "tid": 35568, "ts": 4524195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674a80", "tid": 35568, "ts": 4524491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672040", "tid": 35568, "ts": 4524787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672c70", "tid": 35568, "ts": 4525084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4525256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672ee0", "tid": 35568, "ts": 4525379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4525553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674740", "tid": 35568, "ts": 4525675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4525847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672790", "tid": 35568, "ts": 4525971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4526142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673e50", "tid": 35568, "ts": 4526265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4526438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674c20", "tid": 35568, "ts": 4526560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4526733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06718f0", "tid": 35568, "ts": 4526855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673cb0", "tid": 35568, "ts": 4527150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06745a0", "tid": 35568, "ts": 4527445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672fb0", "tid": 35568, "ts": 4527740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673f20", "tid": 35568, "ts": 4528036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4528208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672380", "tid": 35568, "ts": 4528331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4528503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673d80", "tid": 35568, "ts": 4528625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4528798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673a40", "tid": 35568, "ts": 4528920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06719c0", "tid": 35568, "ts": 4529214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671a90", "tid": 35568, "ts": 4529509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06732f0", "tid": 35568, "ts": 4529804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673ff0", "tid": 35568, "ts": 4530099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4530271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674190", "tid": 35568, "ts": 4530393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4530565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674330", "tid": 35568, "ts": 4530687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4530859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671ea0", "tid": 35568, "ts": 4530981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4531152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673630", "tid": 35568, "ts": 4531274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4531447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06738a0", "tid": 35568, "ts": 4531569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4531742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671b60", "tid": 35568, "ts": 4531864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4532036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671c30", "tid": 35568, "ts": 4532158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4532329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671d00", "tid": 35568, "ts": 4532532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4532706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671f70", "tid": 35568, "ts": 4532829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672110", "tid": 35568, "ts": 4533123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06721e0", "tid": 35568, "ts": 4533418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06722b0", "tid": 35568, "ts": 4533713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672520", "tid": 35568, "ts": 4534009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4534181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06725f0", "tid": 35568, "ts": 4534304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4534476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06726c0", "tid": 35568, "ts": 4534599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4534771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672860", "tid": 35568, "ts": 4534893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672930", "tid": 35568, "ts": 4535188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675e00", "tid": 35568, "ts": 4535483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676140", "tid": 35568, "ts": 4535777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676e40", "tid": 35568, "ts": 4536125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4536298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675440", "tid": 35568, "ts": 4536420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4536593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06755e0", "tid": 35568, "ts": 4536716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4536889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677590", "tid": 35568, "ts": 4537011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4537185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676f10", "tid": 35568, "ts": 4537307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4537480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06756b0", "tid": 35568, "ts": 4537602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4537776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06779a0", "tid": 35568, "ts": 4537898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06752a0", "tid": 35568, "ts": 4538193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677250", "tid": 35568, "ts": 4538487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677320", "tid": 35568, "ts": 4538781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06774c0", "tid": 35568, "ts": 4539075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4539247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677180", "tid": 35568, "ts": 4539369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4539588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06759f0", "tid": 35568, "ts": 4539712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4539885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677a70", "tid": 35568, "ts": 4540007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4540180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06763b0", "tid": 35568, "ts": 4540302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4540476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675780", "tid": 35568, "ts": 4540599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4540772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675fa0", "tid": 35568, "ts": 4540896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676070", "tid": 35568, "ts": 4541192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675ed0", "tid": 35568, "ts": 4541487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675850", "tid": 35568, "ts": 4541783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677660", "tid": 35568, "ts": 4542078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4542252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677b40", "tid": 35568, "ts": 4542374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4542547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677800", "tid": 35568, "ts": 4542669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4542842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676210", "tid": 35568, "ts": 4542965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4543136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675ac0", "tid": 35568, "ts": 4543260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4543432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675510", "tid": 35568, "ts": 4543555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4543727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677730", "tid": 35568, "ts": 4543850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674f60", "tid": 35568, "ts": 4544146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676bd0", "tid": 35568, "ts": 4544440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06778d0", "tid": 35568, "ts": 4544735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675370", "tid": 35568, "ts": 4545030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4545202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676fe0", "tid": 35568, "ts": 4545325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4545496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675920", "tid": 35568, "ts": 4545618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4545790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676ca0", "tid": 35568, "ts": 4545913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675100", "tid": 35568, "ts": 4546207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677db0", "tid": 35568, "ts": 4546501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06762e0", "tid": 35568, "ts": 4546797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676480", "tid": 35568, "ts": 4547091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4547263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675b90", "tid": 35568, "ts": 4547386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4547558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676550", "tid": 35568, "ts": 4547680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4547852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675c60", "tid": 35568, "ts": 4547974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4548147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675d30", "tid": 35568, "ts": 4548270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4548442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677e80", "tid": 35568, "ts": 4548566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4548738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676b00", "tid": 35568, "ts": 4548860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677c10", "tid": 35568, "ts": 4549158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676620", "tid": 35568, "ts": 4549453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677ce0", "tid": 35568, "ts": 4549748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677f50", "tid": 35568, "ts": 4550042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4550215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06773f0", "tid": 35568, "ts": 4550337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4550510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678020", "tid": 35568, "ts": 4550633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4550807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06766f0", "tid": 35568, "ts": 4550929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4551101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674cf0", "tid": 35568, "ts": 4551224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4551396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674dc0", "tid": 35568, "ts": 4551520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4551755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06767c0", "tid": 35568, "ts": 4551878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676890", "tid": 35568, "ts": 4552173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676960", "tid": 35568, "ts": 4552468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674e90", "tid": 35568, "ts": 4552762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675030", "tid": 35568, "ts": 4553057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4553230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676a30", "tid": 35568, "ts": 4553353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4553525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676d70", "tid": 35568, "ts": 4553648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4553820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06770b0", "tid": 35568, "ts": 4553943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06751d0", "tid": 35568, "ts": 4554237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678df0", "tid": 35568, "ts": 4554532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06780f0", "tid": 35568, "ts": 4554827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a240", "tid": 35568, "ts": 4555122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4555294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067af40", "tid": 35568, "ts": 4555417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4555590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678ec0", "tid": 35568, "ts": 4555712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4555884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ada0", "tid": 35568, "ts": 4556007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4556179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06792d0", "tid": 35568, "ts": 4556350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4556523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679e30", "tid": 35568, "ts": 4556645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4556818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b350", "tid": 35568, "ts": 4556941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06793a0", "tid": 35568, "ts": 4557235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679470", "tid": 35568, "ts": 4557530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a310", "tid": 35568, "ts": 4557825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679d60", "tid": 35568, "ts": 4558120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4558291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ae70", "tid": 35568, "ts": 4558414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4558587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06789e0", "tid": 35568, "ts": 4558710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4558883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678290", "tid": 35568, "ts": 4559006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4559178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678f90", "tid": 35568, "ts": 4559300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4559473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679fd0", "tid": 35568, "ts": 4559595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4559767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067aa60", "tid": 35568, "ts": 4559888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679130", "tid": 35568, "ts": 4560184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a170", "tid": 35568, "ts": 4560478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678b80", "tid": 35568, "ts": 4560773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a580", "tid": 35568, "ts": 4561068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4561240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679540", "tid": 35568, "ts": 4561363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4561535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679c90", "tid": 35568, "ts": 4561657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4561830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b280", "tid": 35568, "ts": 4561952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4562173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679060", "tid": 35568, "ts": 4562298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4562472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679200", "tid": 35568, "ts": 4562595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4562771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678840", "tid": 35568, "ts": 4562899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4563070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a720", "tid": 35568, "ts": 4563193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4563365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06785d0", "tid": 35568, "ts": 4563555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4563728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4564091, "pid": 35104, "args": { "Heap": { "SizeInBytes": 67108864, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a0679610", "tid": 35568, "ts": 4564105, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a0679610", "tid": 35568, "ts": 4564136, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 67108864, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06797b0", "tid": 35568, "ts": 4564251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4564428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679f00", "tid": 35568, "ts": 4564553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4564728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06796e0", "tid": 35568, "ts": 4564852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679af0", "tid": 35568, "ts": 4565157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a3e0", "tid": 35568, "ts": 4565453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b1b0", "tid": 35568, "ts": 4565747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a990", "tid": 35568, "ts": 4566042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4566215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a0a0", "tid": 35568, "ts": 4566337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4566510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678770", "tid": 35568, "ts": 4566632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4566804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a4b0", "tid": 35568, "ts": 4566925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4567098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ab30", "tid": 35568, "ts": 4567220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4567433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b420", "tid": 35568, "ts": 4567556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4567729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ac00", "tid": 35568, "ts": 4567851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679880", "tid": 35568, "ts": 4568144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b010", "tid": 35568, "ts": 4568439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a650", "tid": 35568, "ts": 4568732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678500", "tid": 35568, "ts": 4569025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4569196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678430", "tid": 35568, "ts": 4569318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4569490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a7f0", "tid": 35568, "ts": 4569612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4569783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678910", "tid": 35568, "ts": 4569905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679bc0", "tid": 35568, "ts": 4570199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a8c0", "tid": 35568, "ts": 4570493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678ab0", "tid": 35568, "ts": 4570787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679950", "tid": 35568, "ts": 4571081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4571253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06781c0", "tid": 35568, "ts": 4571375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4571547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678360", "tid": 35568, "ts": 4571669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4571840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679a20", "tid": 35568, "ts": 4571962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4572134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678c50", "tid": 35568, "ts": 4572256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4572428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067acd0", "tid": 35568, "ts": 4572550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4572721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678d20", "tid": 35568, "ts": 4572842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b0e0", "tid": 35568, "ts": 4573136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cfc0", "tid": 35568, "ts": 4573430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067dcc0", "tid": 35568, "ts": 4573724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d710", "tid": 35568, "ts": 4574017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4574189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067db20", "tid": 35568, "ts": 4574311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4574483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c1f0", "tid": 35568, "ts": 4574604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4574775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067baa0", "tid": 35568, "ts": 4574898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c600", "tid": 35568, "ts": 4575192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d300", "tid": 35568, "ts": 4575485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c050", "tid": 35568, "ts": 4575780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c460", "tid": 35568, "ts": 4576074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4576245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c390", "tid": 35568, "ts": 4576367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4576539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d640", "tid": 35568, "ts": 4576661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4576833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cc80", "tid": 35568, "ts": 4576955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4577126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d7e0", "tid": 35568, "ts": 4577248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4577421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bd10", "tid": 35568, "ts": 4577543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4577715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d230", "tid": 35568, "ts": 4577913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cd50", "tid": 35568, "ts": 4578208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bb70", "tid": 35568, "ts": 4578502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ce20", "tid": 35568, "ts": 4578796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b900", "tid": 35568, "ts": 4579090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4579262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d8b0", "tid": 35568, "ts": 4579384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4579555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c2c0", "tid": 35568, "ts": 4579677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4579849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067dd90", "tid": 35568, "ts": 4579971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4580142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067beb0", "tid": 35568, "ts": 4580264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4580437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d980", "tid": 35568, "ts": 4580592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4580763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067de60", "tid": 35568, "ts": 4580885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c6d0", "tid": 35568, "ts": 4581179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c940", "tid": 35568, "ts": 4581473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067da50", "tid": 35568, "ts": 4581766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c530", "tid": 35568, "ts": 4582060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4582232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c7a0", "tid": 35568, "ts": 4582354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4582526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067dbf0", "tid": 35568, "ts": 4582647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4582820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c870", "tid": 35568, "ts": 4583006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4583179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ca10", "tid": 35568, "ts": 4583300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4583473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d160", "tid": 35568, "ts": 4583595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4583767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067df30", "tid": 35568, "ts": 4583888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cae0", "tid": 35568, "ts": 4584181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b4f0", "tid": 35568, "ts": 4584475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d090", "tid": 35568, "ts": 4584769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c120", "tid": 35568, "ts": 4585062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4585234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d3d0", "tid": 35568, "ts": 4585356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4585528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d4a0", "tid": 35568, "ts": 4585650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4585829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b5c0", "tid": 35568, "ts": 4585953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4586125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b830", "tid": 35568, "ts": 4586247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4586418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cbb0", "tid": 35568, "ts": 4586540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4586713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cef0", "tid": 35568, "ts": 4586835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d570", "tid": 35568, "ts": 4587128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b690", "tid": 35568, "ts": 4587422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b760", "tid": 35568, "ts": 4587714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b9d0", "tid": 35568, "ts": 4588008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4588180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bc40", "tid": 35568, "ts": 4588301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4588473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bde0", "tid": 35568, "ts": 4588594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4588766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bf80", "tid": 35568, "ts": 4588887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660650", "tid": 35568, "ts": 4589237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f3a0", "tid": 35568, "ts": 4589531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065faf0", "tid": 35568, "ts": 4589824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e910", "tid": 35568, "ts": 4590118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4590289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660990", "tid": 35568, "ts": 4590411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4590582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660310", "tid": 35568, "ts": 4590703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4590876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f540", "tid": 35568, "ts": 4590997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4591169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06610e0", "tid": 35568, "ts": 4591291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4591462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660a60", "tid": 35568, "ts": 4591583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4591754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fe30", "tid": 35568, "ts": 4591874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660da0", "tid": 35568, "ts": 4592170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f7b0", "tid": 35568, "ts": 4592463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ed20", "tid": 35568, "ts": 4592756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660b30", "tid": 35568, "ts": 4593049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4593222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660f40", "tid": 35568, "ts": 4593409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4593581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e9e0", "tid": 35568, "ts": 4593709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4593881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660240", "tid": 35568, "ts": 4594002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4594175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e430", "tid": 35568, "ts": 4594297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4594583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660170", "tid": 35568, "ts": 4594720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4594893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06607f0", "tid": 35568, "ts": 4595014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4595215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660c00", "tid": 35568, "ts": 4595339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4595512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06608c0", "tid": 35568, "ts": 4595633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4595805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661280", "tid": 35568, "ts": 4595927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661010", "tid": 35568, "ts": 4596220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660cd0", "tid": 35568, "ts": 4596514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e6a0", "tid": 35568, "ts": 4596807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065eb80", "tid": 35568, "ts": 4597100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4597272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065eec0", "tid": 35568, "ts": 4597393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4597566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f470", "tid": 35568, "ts": 4597688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4597860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06604b0", "tid": 35568, "ts": 4597982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4598154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065eab0", "tid": 35568, "ts": 4598275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4598447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f610", "tid": 35568, "ts": 4598616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4598800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fbc0", "tid": 35568, "ts": 4598921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fd60", "tid": 35568, "ts": 4599215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ffd0", "tid": 35568, "ts": 4599508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660e70", "tid": 35568, "ts": 4599801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06611b0", "tid": 35568, "ts": 4600093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4600265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f6e0", "tid": 35568, "ts": 4600387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4600558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06603e0", "tid": 35568, "ts": 4600680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4600852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661350", "tid": 35568, "ts": 4600974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4601144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661420", "tid": 35568, "ts": 4601266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4601438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e0f0", "tid": 35568, "ts": 4601560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4601731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660580", "tid": 35568, "ts": 4601853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660720", "tid": 35568, "ts": 4602147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065edf0", "tid": 35568, "ts": 4602440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e1c0", "tid": 35568, "ts": 4602733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e290", "tid": 35568, "ts": 4603026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4603197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e840", "tid": 35568, "ts": 4603318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4603491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e360", "tid": 35568, "ts": 4603613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4603785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ff00", "tid": 35568, "ts": 4603907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fc90", "tid": 35568, "ts": 4604200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e500", "tid": 35568, "ts": 4604494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ef90", "tid": 35568, "ts": 4604787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e5d0", "tid": 35568, "ts": 4605079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4605251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06600a0", "tid": 35568, "ts": 4605373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4605545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e770", "tid": 35568, "ts": 4605666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4605836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ec50", "tid": 35568, "ts": 4605958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4606128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f060", "tid": 35568, "ts": 4606250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4606422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f130", "tid": 35568, "ts": 4606544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4606716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f880", "tid": 35568, "ts": 4606838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f200", "tid": 35568, "ts": 4607133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f2d0", "tid": 35568, "ts": 4607425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f950", "tid": 35568, "ts": 4607718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fa20", "tid": 35568, "ts": 4608012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4608184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2770", "tid": 35568, "ts": 4608342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4608516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4240", "tid": 35568, "ts": 4608638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4608810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c51b0", "tid": 35568, "ts": 4608931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4609103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c26a0", "tid": 35568, "ts": 4609224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4609395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4b30", "tid": 35568, "ts": 4609516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4609746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3af0", "tid": 35568, "ts": 4609868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5280", "tid": 35568, "ts": 4610162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3d60", "tid": 35568, "ts": 4610456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5350", "tid": 35568, "ts": 4610750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5010", "tid": 35568, "ts": 4611044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4611215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4a60", "tid": 35568, "ts": 4611337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4611509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c47f0", "tid": 35568, "ts": 4611631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4611803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4310", "tid": 35568, "ts": 4611925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5420", "tid": 35568, "ts": 4612218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4170", "tid": 35568, "ts": 4612512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c50e0", "tid": 35568, "ts": 4612804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3880", "tid": 35568, "ts": 4613098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4613269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2d20", "tid": 35568, "ts": 4613390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4613562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4580", "tid": 35568, "ts": 4613684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4613856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c20f0", "tid": 35568, "ts": 4613978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4614216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3f00", "tid": 35568, "ts": 4614399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4614571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3e30", "tid": 35568, "ts": 4614731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4614904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3200", "tid": 35568, "ts": 4615027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4615198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4da0", "tid": 35568, "ts": 4615320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4615493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2ec0", "tid": 35568, "ts": 4615615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4615787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3c90", "tid": 35568, "ts": 4615910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3fd0", "tid": 35568, "ts": 4616203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3bc0", "tid": 35568, "ts": 4616498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c21c0", "tid": 35568, "ts": 4616792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3950", "tid": 35568, "ts": 4617085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4617257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2290", "tid": 35568, "ts": 4617379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4617551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4f40", "tid": 35568, "ts": 4617672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4617845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2360", "tid": 35568, "ts": 4618049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4618221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c43e0", "tid": 35568, "ts": 4618356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4618600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4990", "tid": 35568, "ts": 4618750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4619010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c40a0", "tid": 35568, "ts": 4619189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4619432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c32d0", "tid": 35568, "ts": 4619596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4619855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4e70", "tid": 35568, "ts": 4620035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4620294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2df0", "tid": 35568, "ts": 4620457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4620705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c44b0", "tid": 35568, "ts": 4620885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4621144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c33a0", "tid": 35568, "ts": 4621326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4621586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3a20", "tid": 35568, "ts": 4621764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4621964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4650", "tid": 35568, "ts": 4622086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4622258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3130", "tid": 35568, "ts": 4622380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4622552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c48c0", "tid": 35568, "ts": 4622674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4622846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2c50", "tid": 35568, "ts": 4622967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4623183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3470", "tid": 35568, "ts": 4623312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4623484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2f90", "tid": 35568, "ts": 4623606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4623779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2430", "tid": 35568, "ts": 4623901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3060", "tid": 35568, "ts": 4624195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4720", "tid": 35568, "ts": 4624490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3540", "tid": 35568, "ts": 4624783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2500", "tid": 35568, "ts": 4625102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4625274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4cd0", "tid": 35568, "ts": 4625396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4625569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4c00", "tid": 35568, "ts": 4625691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4625863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c25d0", "tid": 35568, "ts": 4625985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4626158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2840", "tid": 35568, "ts": 4626279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4626450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3610", "tid": 35568, "ts": 4626572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4626744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2910", "tid": 35568, "ts": 4626867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c29e0", "tid": 35568, "ts": 4627161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2ab0", "tid": 35568, "ts": 4627454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c36e0", "tid": 35568, "ts": 4627748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2b80", "tid": 35568, "ts": 4628042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4628214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c37b0", "tid": 35568, "ts": 4628336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4628508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c73d0", "tid": 35568, "ts": 4628631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4628802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6940", "tid": 35568, "ts": 4628925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4629096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c74a0", "tid": 35568, "ts": 4629218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4629390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5690", "tid": 35568, "ts": 4629513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4629684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5830", "tid": 35568, "ts": 4629926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4630221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5b70", "tid": 35568, "ts": 4630394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4630679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c67a0", "tid": 35568, "ts": 4630806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4630982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6600", "tid": 35568, "ts": 4631108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4631281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7cc0", "tid": 35568, "ts": 4631405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4631580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7570", "tid": 35568, "ts": 4631704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4631877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6bb0", "tid": 35568, "ts": 4632000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4632175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5760", "tid": 35568, "ts": 4632298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4632472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c84e0", "tid": 35568, "ts": 4632595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4632852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c61f0", "tid": 35568, "ts": 4633042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4633342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8750", "tid": 35568, "ts": 4633576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4633876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7980", "tid": 35568, "ts": 4634120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4634433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7a50", "tid": 35568, "ts": 4634635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4634945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8270", "tid": 35568, "ts": 4635170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4635482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c62c0", "tid": 35568, "ts": 4635712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4636025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6fc0", "tid": 35568, "ts": 4636229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4636542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7090", "tid": 35568, "ts": 4636760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4637061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8820", "tid": 35568, "ts": 4637247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4637529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8340", "tid": 35568, "ts": 4637723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4638035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c66d0", "tid": 35568, "ts": 4638238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4638550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c78b0", "tid": 35568, "ts": 4638741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4639037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5de0", "tid": 35568, "ts": 4639241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4639731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8410", "tid": 35568, "ts": 4639858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7b20", "tid": 35568, "ts": 4640154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c85b0", "tid": 35568, "ts": 4640449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7300", "tid": 35568, "ts": 4640744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5900", "tid": 35568, "ts": 4641039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4641211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7710", "tid": 35568, "ts": 4641334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4641505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5f80", "tid": 35568, "ts": 4641628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4641800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8680", "tid": 35568, "ts": 4641923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8000", "tid": 35568, "ts": 4642217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c77e0", "tid": 35568, "ts": 4642513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7640", "tid": 35568, "ts": 4642807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6d50", "tid": 35568, "ts": 4643102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4643274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5aa0", "tid": 35568, "ts": 4643397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4643569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7bf0", "tid": 35568, "ts": 4643691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4643863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7e60", "tid": 35568, "ts": 4643986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4644160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c59d0", "tid": 35568, "ts": 4644282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4644454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c54f0", "tid": 35568, "ts": 4644577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4644750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5c40", "tid": 35568, "ts": 4644872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4645045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c55c0", "tid": 35568, "ts": 4645167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4645338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6e20", "tid": 35568, "ts": 4645532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4645706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7d90", "tid": 35568, "ts": 4645831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6ef0", "tid": 35568, "ts": 4646127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5d10", "tid": 35568, "ts": 4646424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6390", "tid": 35568, "ts": 4646720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5eb0", "tid": 35568, "ts": 4647016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4647189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7f30", "tid": 35568, "ts": 4647312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4647485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c80d0", "tid": 35568, "ts": 4647608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4647780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7160", "tid": 35568, "ts": 4647903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c81a0", "tid": 35568, "ts": 4648199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6870", "tid": 35568, "ts": 4648494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6a10", "tid": 35568, "ts": 4648789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6050", "tid": 35568, "ts": 4649084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4649257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6120", "tid": 35568, "ts": 4649380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4649553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6c80", "tid": 35568, "ts": 4649676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4649849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7230", "tid": 35568, "ts": 4649971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4650144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6460", "tid": 35568, "ts": 4650335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4650508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6530", "tid": 35568, "ts": 4650631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4650803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6ae0", "tid": 35568, "ts": 4650927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca8a0", "tid": 35568, "ts": 4651222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9380", "tid": 35568, "ts": 4651518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb8e0", "tid": 35568, "ts": 4651813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb5a0", "tid": 35568, "ts": 4652108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4652281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9a00", "tid": 35568, "ts": 4652403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4652576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb9b0", "tid": 35568, "ts": 4652699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4652872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9d40", "tid": 35568, "ts": 4652996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4653169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9ad0", "tid": 35568, "ts": 4653292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4653464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca220", "tid": 35568, "ts": 4653588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4653760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca080", "tid": 35568, "ts": 4653882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9520", "tid": 35568, "ts": 4654177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8b60", "tid": 35568, "ts": 4654473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cba80", "tid": 35568, "ts": 4654768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb670", "tid": 35568, "ts": 4655063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4655236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8c30", "tid": 35568, "ts": 4655358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4655530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09caf20", "tid": 35568, "ts": 4655652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4655825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cabe0", "tid": 35568, "ts": 4655948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4656120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb190", "tid": 35568, "ts": 4656243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4656416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9ee0", "tid": 35568, "ts": 4656539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4656712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9fb0", "tid": 35568, "ts": 4656835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca2f0", "tid": 35568, "ts": 4657131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbb50", "tid": 35568, "ts": 4657426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09caff0", "tid": 35568, "ts": 4657721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9e10", "tid": 35568, "ts": 4658016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4658187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbc20", "tid": 35568, "ts": 4658310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4658482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca7d0", "tid": 35568, "ts": 4658605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4658777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9040", "tid": 35568, "ts": 4658900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4659072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c88f0", "tid": 35568, "ts": 4659245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4659418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8d00", "tid": 35568, "ts": 4659541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4659713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb810", "tid": 35568, "ts": 4659835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c89c0", "tid": 35568, "ts": 4660130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9790", "tid": 35568, "ts": 4660425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb740", "tid": 35568, "ts": 4660718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca150", "tid": 35568, "ts": 4661057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4661275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8dd0", "tid": 35568, "ts": 4661401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4661575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb330", "tid": 35568, "ts": 4661699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4661872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca3c0", "tid": 35568, "ts": 4661996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4662169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca630", "tid": 35568, "ts": 4662292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4662465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cacb0", "tid": 35568, "ts": 4662589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4662762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb260", "tid": 35568, "ts": 4662886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca700", "tid": 35568, "ts": 4663182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8a90", "tid": 35568, "ts": 4663477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca490", "tid": 35568, "ts": 4663774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9ba0", "tid": 35568, "ts": 4664069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4664242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8ea0", "tid": 35568, "ts": 4664364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4664537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cad80", "tid": 35568, "ts": 4664659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4664832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca560", "tid": 35568, "ts": 4664955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4665128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca970", "tid": 35568, "ts": 4665251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4665424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09caa40", "tid": 35568, "ts": 4665546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4665719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cab10", "tid": 35568, "ts": 4665842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8f70", "tid": 35568, "ts": 4666138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cae50", "tid": 35568, "ts": 4666432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb400", "tid": 35568, "ts": 4666728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb0c0", "tid": 35568, "ts": 4667023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4667195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb4d0", "tid": 35568, "ts": 4667318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4667491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9110", "tid": 35568, "ts": 4667613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4667785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c95f0", "tid": 35568, "ts": 4667908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c91e0", "tid": 35568, "ts": 4668202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c92b0", "tid": 35568, "ts": 4668497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9450", "tid": 35568, "ts": 4668793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c96c0", "tid": 35568, "ts": 4669087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4669260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9860", "tid": 35568, "ts": 4669382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4669554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9930", "tid": 35568, "ts": 4669676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4669849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9c70", "tid": 35568, "ts": 4669972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4670145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cce00", "tid": 35568, "ts": 4670268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4670440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc780", "tid": 35568, "ts": 4670563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4670735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd480", "tid": 35568, "ts": 4670859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd550", "tid": 35568, "ts": 4671154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cee80", "tid": 35568, "ts": 4671448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cced0", "tid": 35568, "ts": 4671744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce660", "tid": 35568, "ts": 4672042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4672214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce8d0", "tid": 35568, "ts": 4672337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4672508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd960", "tid": 35568, "ts": 4672631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4672804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd2e0", "tid": 35568, "ts": 4672927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc2a0", "tid": 35568, "ts": 4673221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd6f0", "tid": 35568, "ts": 4673516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce800", "tid": 35568, "ts": 4673811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd620", "tid": 35568, "ts": 4674107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4674279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cef50", "tid": 35568, "ts": 4674402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4674574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc9f0", "tid": 35568, "ts": 4674697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4674869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce9a0", "tid": 35568, "ts": 4674992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4675164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cea70", "tid": 35568, "ts": 4675287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4675459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc850", "tid": 35568, "ts": 4675582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4675754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc920", "tid": 35568, "ts": 4675876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd7c0", "tid": 35568, "ts": 4676171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccac0", "tid": 35568, "ts": 4676465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf020", "tid": 35568, "ts": 4676823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccfa0", "tid": 35568, "ts": 4677118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4677290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce180", "tid": 35568, "ts": 4677413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4677585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc440", "tid": 35568, "ts": 4677708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4677880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc030", "tid": 35568, "ts": 4678002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4678175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce590", "tid": 35568, "ts": 4678298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4678470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbe90", "tid": 35568, "ts": 4678593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4678766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc370", "tid": 35568, "ts": 4678888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce4c0", "tid": 35568, "ts": 4679182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cda30", "tid": 35568, "ts": 4679478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd070", "tid": 35568, "ts": 4679773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd890", "tid": 35568, "ts": 4680068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4680240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc5e0", "tid": 35568, "ts": 4680363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4680535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cec10", "tid": 35568, "ts": 4680658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4680830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce730", "tid": 35568, "ts": 4680953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4681126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ceb40", "tid": 35568, "ts": 4681248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4681421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbcf0", "tid": 35568, "ts": 4681544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4681717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd140", "tid": 35568, "ts": 4681839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd210", "tid": 35568, "ts": 4682136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdb00", "tid": 35568, "ts": 4682431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc1d0", "tid": 35568, "ts": 4682726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdca0", "tid": 35568, "ts": 4683021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4683194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbdc0", "tid": 35568, "ts": 4683316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4683488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbf60", "tid": 35568, "ts": 4683610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4683782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccb90", "tid": 35568, "ts": 4683904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4684124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cece0", "tid": 35568, "ts": 4684248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4684421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc100", "tid": 35568, "ts": 4684544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4684716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdd70", "tid": 35568, "ts": 4684839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc510", "tid": 35568, "ts": 4685134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdbd0", "tid": 35568, "ts": 4685429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd3b0", "tid": 35568, "ts": 4685724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cde40", "tid": 35568, "ts": 4686019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4686192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdf10", "tid": 35568, "ts": 4686315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4686486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdfe0", "tid": 35568, "ts": 4686609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4686781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce0b0", "tid": 35568, "ts": 4686904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc6b0", "tid": 35568, "ts": 4687198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce250", "tid": 35568, "ts": 4687493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce320", "tid": 35568, "ts": 4687789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccc60", "tid": 35568, "ts": 4688082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4688254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccd30", "tid": 35568, "ts": 4688376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4688548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cedb0", "tid": 35568, "ts": 4688670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4688842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce3f0", "tid": 35568, "ts": 4688965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4689138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1f40", "tid": 35568, "ts": 4689261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4689434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1da0", "tid": 35568, "ts": 4689557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4689729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d21b0", "tid": 35568, "ts": 4689852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0a20", "tid": 35568, "ts": 4690147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1e70", "tid": 35568, "ts": 4690443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0d60", "tid": 35568, "ts": 4690738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d06e0", "tid": 35568, "ts": 4691032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4691203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0e30", "tid": 35568, "ts": 4691326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4691498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0af0", "tid": 35568, "ts": 4691621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4691841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0fd0", "tid": 35568, "ts": 4691971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4692144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0950", "tid": 35568, "ts": 4692305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4692571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2420", "tid": 35568, "ts": 4692694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4692867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2280", "tid": 35568, "ts": 4693020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4693193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d20e0", "tid": 35568, "ts": 4693317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4693490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1cd0", "tid": 35568, "ts": 4693614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4693786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1a60", "tid": 35568, "ts": 4693910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1b30", "tid": 35568, "ts": 4694206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf840", "tid": 35568, "ts": 4694524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2350", "tid": 35568, "ts": 4694821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0540", "tid": 35568, "ts": 4695116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4695288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d10a0", "tid": 35568, "ts": 4695410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4695583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf0f0", "tid": 35568, "ts": 4695707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4695879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0bc0", "tid": 35568, "ts": 4696002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4696175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1170", "tid": 35568, "ts": 4696298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4696470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf9e0", "tid": 35568, "ts": 4696592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4696764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cff90", "tid": 35568, "ts": 4696887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1990", "tid": 35568, "ts": 4697182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2010", "tid": 35568, "ts": 4697477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf1c0", "tid": 35568, "ts": 4697773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d07b0", "tid": 35568, "ts": 4698068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4698239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0470", "tid": 35568, "ts": 4698362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4698535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf290", "tid": 35568, "ts": 4698658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4698830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf360", "tid": 35568, "ts": 4698955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4699127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d18c0", "tid": 35568, "ts": 4699251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4699423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1240", "tid": 35568, "ts": 4699545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4699718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1c00", "tid": 35568, "ts": 4699841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf500", "tid": 35568, "ts": 4700135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf430", "tid": 35568, "ts": 4700430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0610", "tid": 35568, "ts": 4700724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf5d0", "tid": 35568, "ts": 4701021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4701194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf6a0", "tid": 35568, "ts": 4701317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4701489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf770", "tid": 35568, "ts": 4701612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4701785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d17f0", "tid": 35568, "ts": 4701908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4702081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf910", "tid": 35568, "ts": 4702205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4702377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0200", "tid": 35568, "ts": 4702501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4702672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfab0", "tid": 35568, "ts": 4702876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfb80", "tid": 35568, "ts": 4703172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfc50", "tid": 35568, "ts": 4703469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0060", "tid": 35568, "ts": 4703765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0c90", "tid": 35568, "ts": 4704062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4704235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfd20", "tid": 35568, "ts": 4704357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4704530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d14b0", "tid": 35568, "ts": 4704652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4704824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfdf0", "tid": 35568, "ts": 4704947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4705120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1310", "tid": 35568, "ts": 4705243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4705415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0f00", "tid": 35568, "ts": 4705538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4705710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0880", "tid": 35568, "ts": 4705832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfec0", "tid": 35568, "ts": 4706128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0130", "tid": 35568, "ts": 4706424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d13e0", "tid": 35568, "ts": 4706719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d02d0", "tid": 35568, "ts": 4707014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4707186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1580", "tid": 35568, "ts": 4707309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4707481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1650", "tid": 35568, "ts": 4707603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4707775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1720", "tid": 35568, "ts": 4708055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4708229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d03a0", "tid": 35568, "ts": 4708354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4708527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5000", "tid": 35568, "ts": 4708651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4708825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3050", "tid": 35568, "ts": 4708949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4709121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3120", "tid": 35568, "ts": 4709244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4709417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3530", "tid": 35568, "ts": 4709541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4709714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3870", "tid": 35568, "ts": 4709837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d37a0", "tid": 35568, "ts": 4710131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4230", "tid": 35568, "ts": 4710427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d43d0", "tid": 35568, "ts": 4710722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2d10", "tid": 35568, "ts": 4711018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4711191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d32c0", "tid": 35568, "ts": 4711314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4711485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3e20", "tid": 35568, "ts": 4711608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4711780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d31f0", "tid": 35568, "ts": 4711903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5750", "tid": 35568, "ts": 4712199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4160", "tid": 35568, "ts": 4712494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d55b0", "tid": 35568, "ts": 4712789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4300", "tid": 35568, "ts": 4713084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4713257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2900", "tid": 35568, "ts": 4713380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4713552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4bf0", "tid": 35568, "ts": 4713675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4713848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5680", "tid": 35568, "ts": 4713971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4714143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d51a0", "tid": 35568, "ts": 4714267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4714439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3390", "tid": 35568, "ts": 4714563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4714735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5820", "tid": 35568, "ts": 4714858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4cc0", "tid": 35568, "ts": 4715153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d24f0", "tid": 35568, "ts": 4715449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3fc0", "tid": 35568, "ts": 4715743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3940", "tid": 35568, "ts": 4716038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4716210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d44a0", "tid": 35568, "ts": 4716333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4716506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3460", "tid": 35568, "ts": 4716629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4716802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d25c0", "tid": 35568, "ts": 4716925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3d50", "tid": 35568, "ts": 4717220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2690", "tid": 35568, "ts": 4717515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3600", "tid": 35568, "ts": 4717810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3a10", "tid": 35568, "ts": 4718172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4718345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4e60", "tid": 35568, "ts": 4718469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4718641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2eb0", "tid": 35568, "ts": 4718764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4718936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4980", "tid": 35568, "ts": 4719059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4719231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2760", "tid": 35568, "ts": 4719354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4719567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d36d0", "tid": 35568, "ts": 4719692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4719867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4090", "tid": 35568, "ts": 4719991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4720167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5270", "tid": 35568, "ts": 4720297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4720470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3ae0", "tid": 35568, "ts": 4720593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4720766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4570", "tid": 35568, "ts": 4720888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3bb0", "tid": 35568, "ts": 4721183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4d90", "tid": 35568, "ts": 4721479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d48b0", "tid": 35568, "ts": 4721775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2830", "tid": 35568, "ts": 4722069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4722242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3c80", "tid": 35568, "ts": 4722365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4722538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4640", "tid": 35568, "ts": 4722661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4722833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5340", "tid": 35568, "ts": 4722956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4723129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4710", "tid": 35568, "ts": 4723251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4723424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d29d0", "tid": 35568, "ts": 4723580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4723895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4f30", "tid": 35568, "ts": 4724026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4724233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d47e0", "tid": 35568, "ts": 4724381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4724576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3ef0", "tid": 35568, "ts": 4724722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4724984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2aa0", "tid": 35568, "ts": 4725163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4725360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4a50", "tid": 35568, "ts": 4725536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4725774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4b20", "tid": 35568, "ts": 4725923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4726095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d50d0", "tid": 35568, "ts": 4726218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4726391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5410", "tid": 35568, "ts": 4726531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4726704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d54e0", "tid": 35568, "ts": 4726851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2b70", "tid": 35568, "ts": 4727149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2c40", "tid": 35568, "ts": 4727448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2de0", "tid": 35568, "ts": 4727745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2f80", "tid": 35568, "ts": 4728043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4728219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8810", "tid": 35568, "ts": 4728343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4728517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6860", "tid": 35568, "ts": 4728641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4728816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7150", "tid": 35568, "ts": 4728942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4729116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d84d0", "tid": 35568, "ts": 4729241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4729416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7cb0", "tid": 35568, "ts": 4729541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4729715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d77d0", "tid": 35568, "ts": 4729840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7220", "tid": 35568, "ts": 4730139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8260", "tid": 35568, "ts": 4730438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5dd0", "tid": 35568, "ts": 4730738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6040", "tid": 35568, "ts": 4731037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4731212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6520", "tid": 35568, "ts": 4731337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4731511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7560", "tid": 35568, "ts": 4731635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4731810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6930", "tid": 35568, "ts": 4731934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4732131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6e10", "tid": 35568, "ts": 4732254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4732428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8190", "tid": 35568, "ts": 4732552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4732726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d58f0", "tid": 35568, "ts": 4732850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4733046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5a90", "tid": 35568, "ts": 4733193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4733413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7be0", "tid": 35568, "ts": 4733536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4733710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d78a0", "tid": 35568, "ts": 4733834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d89b0", "tid": 35568, "ts": 4734130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d65f0", "tid": 35568, "ts": 4734427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6ee0", "tid": 35568, "ts": 4734723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d85a0", "tid": 35568, "ts": 4735018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4735191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7d80", "tid": 35568, "ts": 4735314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4735485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6110", "tid": 35568, "ts": 4735608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4735781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d88e0", "tid": 35568, "ts": 4735904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4736126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7970", "tid": 35568, "ts": 4736254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4736427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8670", "tid": 35568, "ts": 4736550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4736724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7080", "tid": 35568, "ts": 4736847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7ff0", "tid": 35568, "ts": 4737142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6fb0", "tid": 35568, "ts": 4737439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7e50", "tid": 35568, "ts": 4737737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6a00", "tid": 35568, "ts": 4738035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4738208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d72f0", "tid": 35568, "ts": 4738332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4738505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7a40", "tid": 35568, "ts": 4738627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4738800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d80c0", "tid": 35568, "ts": 4738922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4739095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6ad0", "tid": 35568, "ts": 4739301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4739590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7f20", "tid": 35568, "ts": 4739770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4739988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d66c0", "tid": 35568, "ts": 4740204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4740377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6790", "tid": 35568, "ts": 4740501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4740674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8330", "tid": 35568, "ts": 4740797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4740969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5b60", "tid": 35568, "ts": 4741092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4741265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8400", "tid": 35568, "ts": 4741388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4741561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8740", "tid": 35568, "ts": 4741684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4741856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5ea0", "tid": 35568, "ts": 4741980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4742152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8a80", "tid": 35568, "ts": 4742275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4742447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d73c0", "tid": 35568, "ts": 4742571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4742744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d61e0", "tid": 35568, "ts": 4742867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5f70", "tid": 35568, "ts": 4743163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7b10", "tid": 35568, "ts": 4743460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7490", "tid": 35568, "ts": 4743757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6ba0", "tid": 35568, "ts": 4744053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4744226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6380", "tid": 35568, "ts": 4744349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4744522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7630", "tid": 35568, "ts": 4744644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4744816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8b50", "tid": 35568, "ts": 4744940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4745113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7700", "tid": 35568, "ts": 4745237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4745409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d59c0", "tid": 35568, "ts": 4745533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4745705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5c30", "tid": 35568, "ts": 4745827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8c20", "tid": 35568, "ts": 4746122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5d00", "tid": 35568, "ts": 4746418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6c70", "tid": 35568, "ts": 4746713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d62b0", "tid": 35568, "ts": 4747008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4747181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6450", "tid": 35568, "ts": 4747304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4747476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6d40", "tid": 35568, "ts": 4747599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4747771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db8d0", "tid": 35568, "ts": 4747894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db3f0", "tid": 35568, "ts": 4748189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d99f0", "tid": 35568, "ts": 4748485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da960", "tid": 35568, "ts": 4748781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db180", "tid": 35568, "ts": 4749076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4749248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db9a0", "tid": 35568, "ts": 4749371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4749544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09daca0", "tid": 35568, "ts": 4749667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4749839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9d30", "tid": 35568, "ts": 4749963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4750137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9e00", "tid": 35568, "ts": 4750261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4750434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dae40", "tid": 35568, "ts": 4750557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4750730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9ed0", "tid": 35568, "ts": 4750853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da070", "tid": 35568, "ts": 4751148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da140", "tid": 35568, "ts": 4751444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9fa0", "tid": 35568, "ts": 4751739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9ac0", "tid": 35568, "ts": 4752037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4752209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db250", "tid": 35568, "ts": 4752333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4752506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db320", "tid": 35568, "ts": 4752629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4752800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dabd0", "tid": 35568, "ts": 4752923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da620", "tid": 35568, "ts": 4753220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da890", "tid": 35568, "ts": 4753516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dba70", "tid": 35568, "ts": 4753810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da210", "tid": 35568, "ts": 4754105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4754278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da2e0", "tid": 35568, "ts": 4754401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4754573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da3b0", "tid": 35568, "ts": 4754696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4754955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dad70", "tid": 35568, "ts": 4755082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4755305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9b90", "tid": 35568, "ts": 4755432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4755605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9780", "tid": 35568, "ts": 4755730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4755902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da7c0", "tid": 35568, "ts": 4756026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4756198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da480", "tid": 35568, "ts": 4756321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4756493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db590", "tid": 35568, "ts": 4756661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4756833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09daf10", "tid": 35568, "ts": 4756956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4757129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9850", "tid": 35568, "ts": 4757253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4757425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da550", "tid": 35568, "ts": 4757548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4757720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da6f0", "tid": 35568, "ts": 4757843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dafe0", "tid": 35568, "ts": 4758141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db0b0", "tid": 35568, "ts": 4758436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8f60", "tid": 35568, "ts": 4758784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9030", "tid": 35568, "ts": 4759081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4759252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db4c0", "tid": 35568, "ts": 4759376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4759548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9c60", "tid": 35568, "ts": 4759670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4759842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbce0", "tid": 35568, "ts": 4759965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4760137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db660", "tid": 35568, "ts": 4760260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4760433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db730", "tid": 35568, "ts": 4760556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4760729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbb40", "tid": 35568, "ts": 4760852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbc10", "tid": 35568, "ts": 4761146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbdb0", "tid": 35568, "ts": 4761442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db800", "tid": 35568, "ts": 4761736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbe80", "tid": 35568, "ts": 4762031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4762203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9440", "tid": 35568, "ts": 4762326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4762499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9920", "tid": 35568, "ts": 4762623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4762795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbf50", "tid": 35568, "ts": 4762917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc020", "tid": 35568, "ts": 4763212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09daa30", "tid": 35568, "ts": 4763507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dab00", "tid": 35568, "ts": 4763802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8cf0", "tid": 35568, "ts": 4764096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4764268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d96b0", "tid": 35568, "ts": 4764391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4764563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8dc0", "tid": 35568, "ts": 4764686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4764858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8e90", "tid": 35568, "ts": 4764981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4765153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9100", "tid": 35568, "ts": 4765276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4765450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d91d0", "tid": 35568, "ts": 4765572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4765745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d92a0", "tid": 35568, "ts": 4765868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9370", "tid": 35568, "ts": 4766162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9510", "tid": 35568, "ts": 4766458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d95e0", "tid": 35568, "ts": 4766754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd6e0", "tid": 35568, "ts": 4767049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4767222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcdf0", "tid": 35568, "ts": 4767345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4767516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddfd0", "tid": 35568, "ts": 4767639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4767811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd950", "tid": 35568, "ts": 4767934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc910", "tid": 35568, "ts": 4768230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de720", "tid": 35568, "ts": 4768525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd200", "tid": 35568, "ts": 4768821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de3e0", "tid": 35568, "ts": 4769116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4769288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de0a0", "tid": 35568, "ts": 4769411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4769583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd540", "tid": 35568, "ts": 4769706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4769878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddaf0", "tid": 35568, "ts": 4770000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4770173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de7f0", "tid": 35568, "ts": 4770296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4770539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd060", "tid": 35568, "ts": 4770663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4770835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dea60", "tid": 35568, "ts": 4770957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4771129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc9e0", "tid": 35568, "ts": 4771252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4771424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc5d0", "tid": 35568, "ts": 4771547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4771719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc1c0", "tid": 35568, "ts": 4771843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd610", "tid": 35568, "ts": 4772137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de170", "tid": 35568, "ts": 4772432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddc90", "tid": 35568, "ts": 4772727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dee70", "tid": 35568, "ts": 4773021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4773194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc500", "tid": 35568, "ts": 4773342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4773514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd3a0", "tid": 35568, "ts": 4773638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4773810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df280", "tid": 35568, "ts": 4773933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df1b0", "tid": 35568, "ts": 4774226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09deb30", "tid": 35568, "ts": 4774520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc6a0", "tid": 35568, "ts": 4774815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de240", "tid": 35568, "ts": 4775110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4775282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddbc0", "tid": 35568, "ts": 4775405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4775577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd7b0", "tid": 35568, "ts": 4775699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4775872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc290", "tid": 35568, "ts": 4775995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4776166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd2d0", "tid": 35568, "ts": 4776289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4776461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de8c0", "tid": 35568, "ts": 4776584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4776755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dec00", "tid": 35568, "ts": 4866824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4867133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df420", "tid": 35568, "ts": 4867286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4867468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc430", "tid": 35568, "ts": 4867606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4867781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddd60", "tid": 35568, "ts": 4867907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09def40", "tid": 35568, "ts": 4868205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc770", "tid": 35568, "ts": 4868503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df010", "tid": 35568, "ts": 4868801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd880", "tid": 35568, "ts": 4869098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4869271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dde30", "tid": 35568, "ts": 4869395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4869568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de310", "tid": 35568, "ts": 4869691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4869865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de4b0", "tid": 35568, "ts": 4869989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4870161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df0e0", "tid": 35568, "ts": 4870284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4870457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc0f0", "tid": 35568, "ts": 4870582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4870754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de580", "tid": 35568, "ts": 4870878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddf00", "tid": 35568, "ts": 4871176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de650", "tid": 35568, "ts": 4871474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc840", "tid": 35568, "ts": 4871771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcb80", "tid": 35568, "ts": 4872066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4872240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcc50", "tid": 35568, "ts": 4872363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4872535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcd20", "tid": 35568, "ts": 4872658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4872831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcec0", "tid": 35568, "ts": 4872955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4873127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcf90", "tid": 35568, "ts": 4873249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4873423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd130", "tid": 35568, "ts": 4873547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4873720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfb70", "tid": 35568, "ts": 4873843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df830", "tid": 35568, "ts": 4874139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df900", "tid": 35568, "ts": 4874434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df9d0", "tid": 35568, "ts": 4874732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1bf0", "tid": 35568, "ts": 4875027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4875201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1090", "tid": 35568, "ts": 4875324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4875496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0870", "tid": 35568, "ts": 4875619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4875793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e06d0", "tid": 35568, "ts": 4875916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e17e0", "tid": 35568, "ts": 4876211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0120", "tid": 35568, "ts": 4876508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df4f0", "tid": 35568, "ts": 4876805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfd10", "tid": 35568, "ts": 4877103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4877277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfaa0", "tid": 35568, "ts": 4877400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4877571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0d50", "tid": 35568, "ts": 4877694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4877866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfde0", "tid": 35568, "ts": 4877989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4878162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e07a0", "tid": 35568, "ts": 4878285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4878458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0940", "tid": 35568, "ts": 4878581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4878753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1f30", "tid": 35568, "ts": 4878876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4879048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e18b0", "tid": 35568, "ts": 4879171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4879344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df690", "tid": 35568, "ts": 4879466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4879637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfc40", "tid": 35568, "ts": 4879816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0ef0", "tid": 35568, "ts": 4880183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfeb0", "tid": 35568, "ts": 4880478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0390", "tid": 35568, "ts": 4880773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0e20", "tid": 35568, "ts": 4881067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4881241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0bb0", "tid": 35568, "ts": 4881376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4881548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df5c0", "tid": 35568, "ts": 4881671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4881843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dff80", "tid": 35568, "ts": 4881966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4882139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e01f0", "tid": 35568, "ts": 4882261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4882433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e02c0", "tid": 35568, "ts": 4882557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4882730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df760", "tid": 35568, "ts": 4882852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0a10", "tid": 35568, "ts": 4883147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0050", "tid": 35568, "ts": 4883440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0460", "tid": 35568, "ts": 4883735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0530", "tid": 35568, "ts": 4884030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4884204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0ae0", "tid": 35568, "ts": 4884326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4884499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0c80", "tid": 35568, "ts": 4884626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4884799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0600", "tid": 35568, "ts": 4884923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0fc0", "tid": 35568, "ts": 4885219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1160", "tid": 35568, "ts": 4885514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1980", "tid": 35568, "ts": 4885809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e14a0", "tid": 35568, "ts": 4886104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4886277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1640", "tid": 35568, "ts": 4886399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4886573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1a50", "tid": 35568, "ts": 4886696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4886869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1230", "tid": 35568, "ts": 4886992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4887164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1300", "tid": 35568, "ts": 4887287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4887460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e13d0", "tid": 35568, "ts": 4887583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4887755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1570", "tid": 35568, "ts": 4887878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1b20", "tid": 35568, "ts": 4888173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1710", "tid": 35568, "ts": 4888467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1cc0", "tid": 35568, "ts": 4888762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1d90", "tid": 35568, "ts": 4889058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4889231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1e60", "tid": 35568, "ts": 4889354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4889526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792120", "tid": 35568, "ts": 4889650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4889823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793300", "tid": 35568, "ts": 4889946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4890119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792bb0", "tid": 35568, "ts": 4890243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4890414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792c80", "tid": 35568, "ts": 4890538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4890711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792d50", "tid": 35568, "ts": 4890834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792e20", "tid": 35568, "ts": 4891129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06786a0", "tid": 35568, "ts": 4891425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a390", "tid": 35568, "ts": 4891721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122930", "tid": 35568, "ts": 4892029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4892203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01222b0", "tid": 35568, "ts": 4892326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4892498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122d40", "tid": 35568, "ts": 4892621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4892793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124330", "tid": 35568, "ts": 4892916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121750", "tid": 35568, "ts": 4893211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121f70", "tid": 35568, "ts": 4893506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01218f0", "tid": 35568, "ts": 4893801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122a00", "tid": 35568, "ts": 4894097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4894269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124400", "tid": 35568, "ts": 4894391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4894586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122040", "tid": 35568, "ts": 4894708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4894881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122ad0", "tid": 35568, "ts": 4895004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4895176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122450", "tid": 35568, "ts": 4895298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4895558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01219c0", "tid": 35568, "ts": 4895685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4895859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122790", "tid": 35568, "ts": 4895983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4896156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122ba0", "tid": 35568, "ts": 4896279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4896453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122c70", "tid": 35568, "ts": 4896577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4896749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01221e0", "tid": 35568, "ts": 4896872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122380", "tid": 35568, "ts": 4897170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124740", "tid": 35568, "ts": 4897466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123b10", "tid": 35568, "ts": 4897763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123f20", "tid": 35568, "ts": 4898059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4898232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122520", "tid": 35568, "ts": 4898355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4898529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122e10", "tid": 35568, "ts": 4898652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4898823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124810", "tid": 35568, "ts": 4898946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4899118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123d80", "tid": 35568, "ts": 4899241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4899413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122110", "tid": 35568, "ts": 4899536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4899708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123be0", "tid": 35568, "ts": 4899831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123700", "tid": 35568, "ts": 4900127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01225f0", "tid": 35568, "ts": 4900422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122fb0", "tid": 35568, "ts": 4900717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122ee0", "tid": 35568, "ts": 4901013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4901185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01240c0", "tid": 35568, "ts": 4901307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4901480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124260", "tid": 35568, "ts": 4901603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4901775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123560", "tid": 35568, "ts": 4901897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123080", "tid": 35568, "ts": 4902194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123ff0", "tid": 35568, "ts": 4902488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01245a0", "tid": 35568, "ts": 4902783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01226c0", "tid": 35568, "ts": 4903080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4903253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121a90", "tid": 35568, "ts": 4903375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4903549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01233c0", "tid": 35568, "ts": 4903671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4903846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121ea0", "tid": 35568, "ts": 4903968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4904141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01244d0", "tid": 35568, "ts": 4904264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4904435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01238a0", "tid": 35568, "ts": 4904559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4904732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01232f0", "tid": 35568, "ts": 4904855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122860", "tid": 35568, "ts": 4905150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124670", "tid": 35568, "ts": 4905446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123150", "tid": 35568, "ts": 4905741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123220", "tid": 35568, "ts": 4906038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4906211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123490", "tid": 35568, "ts": 4906335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4906508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01214e0", "tid": 35568, "ts": 4906631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4906804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123630", "tid": 35568, "ts": 4906927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01215b0", "tid": 35568, "ts": 4907221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01237d0", "tid": 35568, "ts": 4907516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123970", "tid": 35568, "ts": 4907812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123a40", "tid": 35568, "ts": 4908108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4908280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123cb0", "tid": 35568, "ts": 4908402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4908575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123e50", "tid": 35568, "ts": 4908698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4908870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124190", "tid": 35568, "ts": 4908993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4909166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121b60", "tid": 35568, "ts": 4909290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4909462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121680", "tid": 35568, "ts": 4909585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4909757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121c30", "tid": 35568, "ts": 4909880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121820", "tid": 35568, "ts": 4910175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121d00", "tid": 35568, "ts": 4910470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121dd0", "tid": 35568, "ts": 4910766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125100", "tid": 35568, "ts": 4911114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4911288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126fe0", "tid": 35568, "ts": 4911411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4911583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125d30", "tid": 35568, "ts": 4911705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4911877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125ed0", "tid": 35568, "ts": 4912000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4912172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01249b0", "tid": 35568, "ts": 4912295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4912467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01248e0", "tid": 35568, "ts": 4912590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4912762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124c20", "tid": 35568, "ts": 4912897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124dc0", "tid": 35568, "ts": 4913192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124b50", "tid": 35568, "ts": 4913488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125780", "tid": 35568, "ts": 4913783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01251d0", "tid": 35568, "ts": 4914079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4914252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124cf0", "tid": 35568, "ts": 4914375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4914547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125b90", "tid": 35568, "ts": 4914669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4914841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126d70", "tid": 35568, "ts": 4914965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4915140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127b40", "tid": 35568, "ts": 4915262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4915445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127730", "tid": 35568, "ts": 4915569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4915740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127250", "tid": 35568, "ts": 4915864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126550", "tid": 35568, "ts": 4916159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126210", "tid": 35568, "ts": 4916454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01255e0", "tid": 35568, "ts": 4916749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127c10", "tid": 35568, "ts": 4917044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4917217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125ac0", "tid": 35568, "ts": 4917339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4917512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125e00", "tid": 35568, "ts": 4917635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4917808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01267c0", "tid": 35568, "ts": 4917930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127800", "tid": 35568, "ts": 4918224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124e90", "tid": 35568, "ts": 4918520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125c60", "tid": 35568, "ts": 4918815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01262e0", "tid": 35568, "ts": 4919110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4919282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01256b0", "tid": 35568, "ts": 4919406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4919577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126960", "tid": 35568, "ts": 4919699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4919872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125850", "tid": 35568, "ts": 4919995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4920167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125fa0", "tid": 35568, "ts": 4920290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4920463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126f10", "tid": 35568, "ts": 4920586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4920759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124f60", "tid": 35568, "ts": 4920882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126070", "tid": 35568, "ts": 4921178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125920", "tid": 35568, "ts": 4921474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01278d0", "tid": 35568, "ts": 4921770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01279a0", "tid": 35568, "ts": 4922066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4922239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126140", "tid": 35568, "ts": 4922362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4922535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01259f0", "tid": 35568, "ts": 4922658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4922830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125030", "tid": 35568, "ts": 4922953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4923125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126bd0", "tid": 35568, "ts": 4923248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4923421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127a70", "tid": 35568, "ts": 4923544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4923716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125370", "tid": 35568, "ts": 4923840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124a80", "tid": 35568, "ts": 4924135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01252a0", "tid": 35568, "ts": 4924429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127590", "tid": 35568, "ts": 4924725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126890", "tid": 35568, "ts": 4925019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4925192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01263b0", "tid": 35568, "ts": 4925316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4925488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126480", "tid": 35568, "ts": 4925611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4925782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126e40", "tid": 35568, "ts": 4925906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4926078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126620", "tid": 35568, "ts": 4926201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4926372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125440", "tid": 35568, "ts": 4926500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4926713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125510", "tid": 35568, "ts": 4926837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127660", "tid": 35568, "ts": 4927132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01266f0", "tid": 35568, "ts": 4927427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126a30", "tid": 35568, "ts": 4927722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126b00", "tid": 35568, "ts": 4928018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4928191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126ca0", "tid": 35568, "ts": 4928314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4928485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01270b0", "tid": 35568, "ts": 4928609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4928781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127180", "tid": 35568, "ts": 4928904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127320", "tid": 35568, "ts": 4929198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01273f0", "tid": 35568, "ts": 4929493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01274c0", "tid": 35568, "ts": 4929788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012aa60", "tid": 35568, "ts": 4930082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4930255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127db0", "tid": 35568, "ts": 4930378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4930550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127ce0", "tid": 35568, "ts": 4930673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4930845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129e30", "tid": 35568, "ts": 4930967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4931140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ac00", "tid": 35568, "ts": 4931263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4931435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128430", "tid": 35568, "ts": 4931558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4931731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128020", "tid": 35568, "ts": 4931854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01286a0", "tid": 35568, "ts": 4932149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ab30", "tid": 35568, "ts": 4932444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01280f0", "tid": 35568, "ts": 4932739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01292d0", "tid": 35568, "ts": 4933034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4933205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012acd0", "tid": 35568, "ts": 4933328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4933500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128840", "tid": 35568, "ts": 4933623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4933794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129130", "tid": 35568, "ts": 4933917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01281c0", "tid": 35568, "ts": 4934212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a990", "tid": 35568, "ts": 4934507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128b80", "tid": 35568, "ts": 4934802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ada0", "tid": 35568, "ts": 4935096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4935267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129470", "tid": 35568, "ts": 4935391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4935563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ae70", "tid": 35568, "ts": 4935685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4935858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012af40", "tid": 35568, "ts": 4935981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4936152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128d20", "tid": 35568, "ts": 4936275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4936448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a580", "tid": 35568, "ts": 4936571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4936742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128910", "tid": 35568, "ts": 4936865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129a20", "tid": 35568, "ts": 4937160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01285d0", "tid": 35568, "ts": 4937454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129950", "tid": 35568, "ts": 4937749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129f00", "tid": 35568, "ts": 4938045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4938216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129af0", "tid": 35568, "ts": 4938339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4938511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a170", "tid": 35568, "ts": 4938634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4938806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01289e0", "tid": 35568, "ts": 4938929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127f50", "tid": 35568, "ts": 4939223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01296e0", "tid": 35568, "ts": 4939518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129c90", "tid": 35568, "ts": 4939813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a310", "tid": 35568, "ts": 4940107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4940279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129fd0", "tid": 35568, "ts": 4940402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4940574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01293a0", "tid": 35568, "ts": 4940697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4940870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b010", "tid": 35568, "ts": 4940993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4941165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129200", "tid": 35568, "ts": 4941288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4941460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127e80", "tid": 35568, "ts": 4941583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4941756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128290", "tid": 35568, "ts": 4941879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128360", "tid": 35568, "ts": 4942174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128df0", "tid": 35568, "ts": 4942507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a650", "tid": 35568, "ts": 4942803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128ab0", "tid": 35568, "ts": 4943099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4943271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129bc0", "tid": 35568, "ts": 4943394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4943565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a240", "tid": 35568, "ts": 4943688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4943861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129d60", "tid": 35568, "ts": 4943984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4944156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a0a0", "tid": 35568, "ts": 4944326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4944500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a3e0", "tid": 35568, "ts": 4944680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4944854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129540", "tid": 35568, "ts": 4944979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4945151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128c50", "tid": 35568, "ts": 4945274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4945447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129610", "tid": 35568, "ts": 4945571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4945743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a720", "tid": 35568, "ts": 4945866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a4b0", "tid": 35568, "ts": 4946162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128ec0", "tid": 35568, "ts": 4946457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128500", "tid": 35568, "ts": 4946751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01297b0", "tid": 35568, "ts": 4947046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4947218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128f90", "tid": 35568, "ts": 4947342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4947514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128770", "tid": 35568, "ts": 4947638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4947809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129060", "tid": 35568, "ts": 4947933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129880", "tid": 35568, "ts": 4948228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a7f0", "tid": 35568, "ts": 4948522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a8c0", "tid": 35568, "ts": 4948818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b900", "tid": 35568, "ts": 4949113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4949284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e0d0", "tid": 35568, "ts": 4949408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4949579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d300", "tid": 35568, "ts": 4949702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4949874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ce20", "tid": 35568, "ts": 4949996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4950168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b4f0", "tid": 35568, "ts": 4950291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4950463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b830", "tid": 35568, "ts": 4950586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4950758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d230", "tid": 35568, "ts": 4950881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b350", "tid": 35568, "ts": 4951176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cfc0", "tid": 35568, "ts": 4951471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c600", "tid": 35568, "ts": 4951766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e270", "tid": 35568, "ts": 4952062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4952234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012baa0", "tid": 35568, "ts": 4952358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4952531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e1a0", "tid": 35568, "ts": 4952654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4952826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d8b0", "tid": 35568, "ts": 4952950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4953122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012da50", "tid": 35568, "ts": 4953245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4953417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d090", "tid": 35568, "ts": 4953540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4953712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d710", "tid": 35568, "ts": 4953835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012db20", "tid": 35568, "ts": 4954129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e340", "tid": 35568, "ts": 4954426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c6d0", "tid": 35568, "ts": 4954721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c1f0", "tid": 35568, "ts": 4955017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4955189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e410", "tid": 35568, "ts": 4955311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4955483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bc40", "tid": 35568, "ts": 4955605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4955777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b280", "tid": 35568, "ts": 4955900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b0e0", "tid": 35568, "ts": 4956194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b5c0", "tid": 35568, "ts": 4956489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012de60", "tid": 35568, "ts": 4956785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012df30", "tid": 35568, "ts": 4957079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4957251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012dbf0", "tid": 35568, "ts": 4957373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4957546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d160", "tid": 35568, "ts": 4957669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4957841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c7a0", "tid": 35568, "ts": 4958119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4958389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e000", "tid": 35568, "ts": 4958588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4958811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d980", "tid": 35568, "ts": 4959011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4959220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bd10", "tid": 35568, "ts": 4959344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4959517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c870", "tid": 35568, "ts": 4959640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4959813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012dcc0", "tid": 35568, "ts": 4959935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b690", "tid": 35568, "ts": 4960230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cd50", "tid": 35568, "ts": 4960525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cbb0", "tid": 35568, "ts": 4960820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d4a0", "tid": 35568, "ts": 4961116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4961289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cef0", "tid": 35568, "ts": 4961413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4961586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d3d0", "tid": 35568, "ts": 4961709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4961882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d7e0", "tid": 35568, "ts": 4962005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4962177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c940", "tid": 35568, "ts": 4962301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4962473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b1b0", "tid": 35568, "ts": 4962596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4962768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b420", "tid": 35568, "ts": 4962891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4963063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d570", "tid": 35568, "ts": 4963185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4963427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b760", "tid": 35568, "ts": 4963553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4963732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012dd90", "tid": 35568, "ts": 4963856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b9d0", "tid": 35568, "ts": 4964173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bb70", "tid": 35568, "ts": 4964470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d640", "tid": 35568, "ts": 4964766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bde0", "tid": 35568, "ts": 4965061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4965233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ca10", "tid": 35568, "ts": 4965356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4965529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012beb0", "tid": 35568, "ts": 4965665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4965837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234a0c292f0", "tid": 35568, "ts": 4965904, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4966278, "pid": 35104, "args": { "Heap": { "SizeInBytes": 134217728, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a012bf80", "tid": 35568, "ts": 4966294, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a012bf80", "tid": 35568, "ts": 4966326, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 134217728, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c120", "tid": 35568, "ts": 4966452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4966641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c2c0", "tid": 35568, "ts": 4966770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4966945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c390", "tid": 35568, "ts": 4967069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4967257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c460", "tid": 35568, "ts": 4967381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4967555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c530", "tid": 35568, "ts": 4967677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4967850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cae0", "tid": 35568, "ts": 4967973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4968146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cc80", "tid": 35568, "ts": 4968268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4968440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f380", "tid": 35568, "ts": 4968562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4968734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130150", "tid": 35568, "ts": 4968857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e820", "tid": 35568, "ts": 4969219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131810", "tid": 35568, "ts": 4969515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130630", "tid": 35568, "ts": 4969811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e8f0", "tid": 35568, "ts": 4970106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4970277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01302f0", "tid": 35568, "ts": 4970399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4970572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ef70", "tid": 35568, "ts": 4970694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4970867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131670", "tid": 35568, "ts": 4970989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4971161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ea90", "tid": 35568, "ts": 4971283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4971454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130490", "tid": 35568, "ts": 4971577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4971749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01310c0", "tid": 35568, "ts": 4971872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131260", "tid": 35568, "ts": 4972167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f040", "tid": 35568, "ts": 4972463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f930", "tid": 35568, "ts": 4972756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131740", "tid": 35568, "ts": 4973052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4973224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012eb60", "tid": 35568, "ts": 4973346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4973559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130080", "tid": 35568, "ts": 4973695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4973867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01314d0", "tid": 35568, "ts": 4973989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4974161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131190", "tid": 35568, "ts": 4974283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4974455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f2b0", "tid": 35568, "ts": 4974577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4974749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e9c0", "tid": 35568, "ts": 4974871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131400", "tid": 35568, "ts": 4975166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131330", "tid": 35568, "ts": 4975460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fc70", "tid": 35568, "ts": 4975754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f1e0", "tid": 35568, "ts": 4976047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4976219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f110", "tid": 35568, "ts": 4976342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4976513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01315a0", "tid": 35568, "ts": 4976635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4976808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e4e0", "tid": 35568, "ts": 4976931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4977103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01307d0", "tid": 35568, "ts": 4977225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4977396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130b10", "tid": 35568, "ts": 4977519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4977691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e5b0", "tid": 35568, "ts": 4977814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ec30", "tid": 35568, "ts": 4978152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f450", "tid": 35568, "ts": 4978446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e680", "tid": 35568, "ts": 4978740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fa00", "tid": 35568, "ts": 4979034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4979205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fe10", "tid": 35568, "ts": 4979328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4979500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130be0", "tid": 35568, "ts": 4979623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4979794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01308a0", "tid": 35568, "ts": 4979916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fee0", "tid": 35568, "ts": 4980211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130cb0", "tid": 35568, "ts": 4980504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e750", "tid": 35568, "ts": 4980798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ed00", "tid": 35568, "ts": 4981092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4981264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012edd0", "tid": 35568, "ts": 4981387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4981558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130e50", "tid": 35568, "ts": 4981680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4981852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012eea0", "tid": 35568, "ts": 4981974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4982146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130700", "tid": 35568, "ts": 4982268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4982440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f520", "tid": 35568, "ts": 4982562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4982733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130220", "tid": 35568, "ts": 4982855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f5f0", "tid": 35568, "ts": 4983149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f6c0", "tid": 35568, "ts": 4983444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130970", "tid": 35568, "ts": 4983779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130d80", "tid": 35568, "ts": 4984074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4984246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f790", "tid": 35568, "ts": 4984369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4984539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f860", "tid": 35568, "ts": 4984660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4984833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fad0", "tid": 35568, "ts": 4984955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4985126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fba0", "tid": 35568, "ts": 4985248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4985420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fd40", "tid": 35568, "ts": 4985542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4985714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ffb0", "tid": 35568, "ts": 4985836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01303c0", "tid": 35568, "ts": 4986130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130560", "tid": 35568, "ts": 4986424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130a40", "tid": 35568, "ts": 4986717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130f20", "tid": 35568, "ts": 4987011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4987183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130ff0", "tid": 35568, "ts": 4987305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4987476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133480", "tid": 35568, "ts": 4987598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4987769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133a30", "tid": 35568, "ts": 4987892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133e40", "tid": 35568, "ts": 4988186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01336f0", "tid": 35568, "ts": 4988480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133140", "tid": 35568, "ts": 4988773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01348d0", "tid": 35568, "ts": 4989067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4989274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01349a0", "tid": 35568, "ts": 4989396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4989568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132850", "tid": 35568, "ts": 4989691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4989863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01326b0", "tid": 35568, "ts": 4989985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4990157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134590", "tid": 35568, "ts": 4990279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4990450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133620", "tid": 35568, "ts": 4990573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4990744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134a70", "tid": 35568, "ts": 4990866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01344c0", "tid": 35568, "ts": 4991160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134180", "tid": 35568, "ts": 4991453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132fa0", "tid": 35568, "ts": 4991746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134b40", "tid": 35568, "ts": 4992041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4992211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134660", "tid": 35568, "ts": 4992333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4992505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134730", "tid": 35568, "ts": 4992627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4992798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134250", "tid": 35568, "ts": 4992920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4993093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134320", "tid": 35568, "ts": 4993214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4993386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133b00", "tid": 35568, "ts": 4993535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4993708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01319b0", "tid": 35568, "ts": 4993831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131e90", "tid": 35568, "ts": 4994125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01322a0", "tid": 35568, "ts": 4994432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134800", "tid": 35568, "ts": 4994762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134c10", "tid": 35568, "ts": 4995055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4995226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133d70", "tid": 35568, "ts": 4995349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4995520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01318e0", "tid": 35568, "ts": 4995642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4995814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132ed0", "tid": 35568, "ts": 4995937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133890", "tid": 35568, "ts": 4996230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131dc0", "tid": 35568, "ts": 4996524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131b50", "tid": 35568, "ts": 4996818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01343f0", "tid": 35568, "ts": 4997112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4997283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01325e0", "tid": 35568, "ts": 4997406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4997578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132370", "tid": 35568, "ts": 4997700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4997871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131c20", "tid": 35568, "ts": 4997993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4998164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131a80", "tid": 35568, "ts": 4998287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4998457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132030", "tid": 35568, "ts": 4998579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4998751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131cf0", "tid": 35568, "ts": 4998873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133f10", "tid": 35568, "ts": 4999166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132100", "tid": 35568, "ts": 4999460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131f60", "tid": 35568, "ts": 4999753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01321d0", "tid": 35568, "ts": 5000046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5000218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132440", "tid": 35568, "ts": 5000340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5000512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132510", "tid": 35568, "ts": 5000634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5000805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133070", "tid": 35568, "ts": 5000927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133fe0", "tid": 35568, "ts": 5001220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132780", "tid": 35568, "ts": 5001515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132920", "tid": 35568, "ts": 5001809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01329f0", "tid": 35568, "ts": 5002102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5002274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133210", "tid": 35568, "ts": 5002397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5002568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01332e0", "tid": 35568, "ts": 5002689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5002860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132ac0", "tid": 35568, "ts": 5002982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5003155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132b90", "tid": 35568, "ts": 5003277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5003450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132c60", "tid": 35568, "ts": 5003615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5003786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132d30", "tid": 35568, "ts": 5003909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5004081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132e00", "tid": 35568, "ts": 5004203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5004374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01333b0", "tid": 35568, "ts": 5004497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5004669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133550", "tid": 35568, "ts": 5004953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5005126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01340b0", "tid": 35568, "ts": 5005250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5005422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01337c0", "tid": 35568, "ts": 5005546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5005718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133960", "tid": 35568, "ts": 5005841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133bd0", "tid": 35568, "ts": 5006136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133ca0", "tid": 35568, "ts": 5006430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136f00", "tid": 35568, "ts": 5006725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135360", "tid": 35568, "ts": 5007020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5007192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135290", "tid": 35568, "ts": 5007314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5007487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136540", "tid": 35568, "ts": 5007610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5007781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136610", "tid": 35568, "ts": 5007903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134db0", "tid": 35568, "ts": 5008197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135d20", "tid": 35568, "ts": 5008490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136060", "tid": 35568, "ts": 5008784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01367b0", "tid": 35568, "ts": 5009078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5009251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137170", "tid": 35568, "ts": 5009373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5009544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01362d0", "tid": 35568, "ts": 5009667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5009839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135f90", "tid": 35568, "ts": 5009961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5010132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01366e0", "tid": 35568, "ts": 5010253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5010426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134e80", "tid": 35568, "ts": 5010591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5010764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136130", "tid": 35568, "ts": 5010886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137cd0", "tid": 35568, "ts": 5011180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137580", "tid": 35568, "ts": 5011473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136af0", "tid": 35568, "ts": 5011768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01374b0", "tid": 35568, "ts": 5012061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5012232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01377f0", "tid": 35568, "ts": 5012355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5012527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136950", "tid": 35568, "ts": 5012707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5012878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01356a0", "tid": 35568, "ts": 5013001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5013173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136200", "tid": 35568, "ts": 5013296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5013467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137e70", "tid": 35568, "ts": 5013589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5013761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135770", "tid": 35568, "ts": 5013883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137b30", "tid": 35568, "ts": 5014177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137650", "tid": 35568, "ts": 5014469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135020", "tid": 35568, "ts": 5014763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136470", "tid": 35568, "ts": 5015055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5015227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135840", "tid": 35568, "ts": 5015349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5015521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136880", "tid": 35568, "ts": 5015643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5015815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136fd0", "tid": 35568, "ts": 5015937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135910", "tid": 35568, "ts": 5016232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137c00", "tid": 35568, "ts": 5016525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137f40", "tid": 35568, "ts": 5016819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137da0", "tid": 35568, "ts": 5017112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5017284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01350f0", "tid": 35568, "ts": 5017407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5017579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136a20", "tid": 35568, "ts": 5017702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5017873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137a60", "tid": 35568, "ts": 5017996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5018168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01370a0", "tid": 35568, "ts": 5018290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5018462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01363a0", "tid": 35568, "ts": 5018584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5018756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137720", "tid": 35568, "ts": 5018878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01359e0", "tid": 35568, "ts": 5019171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01378c0", "tid": 35568, "ts": 5019465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01351c0", "tid": 35568, "ts": 5019774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135430", "tid": 35568, "ts": 5020069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5020241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135b80", "tid": 35568, "ts": 5020412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5020622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136c90", "tid": 35568, "ts": 5020748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5020920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137990", "tid": 35568, "ts": 5021043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5021215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138010", "tid": 35568, "ts": 5021337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5021510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135ab0", "tid": 35568, "ts": 5021633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5021806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134ce0", "tid": 35568, "ts": 5021929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135df0", "tid": 35568, "ts": 5022223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137240", "tid": 35568, "ts": 5022517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136bc0", "tid": 35568, "ts": 5022812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135c50", "tid": 35568, "ts": 5023107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5023279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137310", "tid": 35568, "ts": 5023401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5023573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134f50", "tid": 35568, "ts": 5023695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5023867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135ec0", "tid": 35568, "ts": 5023990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5024163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135500", "tid": 35568, "ts": 5024285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5024457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01373e0", "tid": 35568, "ts": 5024578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5024750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01355d0", "tid": 35568, "ts": 5024872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136d60", "tid": 35568, "ts": 5025220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136e30", "tid": 35568, "ts": 5025515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ad90", "tid": 35568, "ts": 5025809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139e20", "tid": 35568, "ts": 5026102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5026273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138350", "tid": 35568, "ts": 5026395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5026566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b000", "tid": 35568, "ts": 5026688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5026859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013af30", "tid": 35568, "ts": 5026981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5027153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139bb0", "tid": 35568, "ts": 5027275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5027446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01389d0", "tid": 35568, "ts": 5027569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5027741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01384f0", "tid": 35568, "ts": 5027864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b0d0", "tid": 35568, "ts": 5028158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01385c0", "tid": 35568, "ts": 5028453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b1a0", "tid": 35568, "ts": 5028747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138aa0", "tid": 35568, "ts": 5029041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5029213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139a10", "tid": 35568, "ts": 5029336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5029507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138f80", "tid": 35568, "ts": 5029629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5029800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138760", "tid": 35568, "ts": 5029923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138690", "tid": 35568, "ts": 5030217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ae60", "tid": 35568, "ts": 5030512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138b70", "tid": 35568, "ts": 5030806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01380e0", "tid": 35568, "ts": 5031099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5031271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a570", "tid": 35568, "ts": 5031394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5031567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b270", "tid": 35568, "ts": 5031689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5031861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a230", "tid": 35568, "ts": 5031983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5032155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b340", "tid": 35568, "ts": 5032277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5032449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a3d0", "tid": 35568, "ts": 5032571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5032742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139ae0", "tid": 35568, "ts": 5032865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139870", "tid": 35568, "ts": 5033159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139530", "tid": 35568, "ts": 5033454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138c40", "tid": 35568, "ts": 5033748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a710", "tid": 35568, "ts": 5034041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5034212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a4a0", "tid": 35568, "ts": 5034335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5034507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a300", "tid": 35568, "ts": 5034629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5034802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01397a0", "tid": 35568, "ts": 5034924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5035095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b410", "tid": 35568, "ts": 5035217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5035389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01381b0", "tid": 35568, "ts": 5035511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5035683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138de0", "tid": 35568, "ts": 5035805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138280", "tid": 35568, "ts": 5036223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a640", "tid": 35568, "ts": 5036517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139940", "tid": 35568, "ts": 5036811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138420", "tid": 35568, "ts": 5037105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5037276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a7e0", "tid": 35568, "ts": 5037399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5037570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138830", "tid": 35568, "ts": 5037693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5037866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138900", "tid": 35568, "ts": 5037988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5038159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139050", "tid": 35568, "ts": 5038281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5038453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01391f0", "tid": 35568, "ts": 5038575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5038747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138d10", "tid": 35568, "ts": 5038869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a980", "tid": 35568, "ts": 5039163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a8b0", "tid": 35568, "ts": 5039458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139600", "tid": 35568, "ts": 5039752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138eb0", "tid": 35568, "ts": 5040046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5040218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139120", "tid": 35568, "ts": 5040340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5040512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013aa50", "tid": 35568, "ts": 5040634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5040805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01392c0", "tid": 35568, "ts": 5040927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139390", "tid": 35568, "ts": 5041222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139c80", "tid": 35568, "ts": 5041517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139460", "tid": 35568, "ts": 5041812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01396d0", "tid": 35568, "ts": 5042107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5042279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ab20", "tid": 35568, "ts": 5042401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5042572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139d50", "tid": 35568, "ts": 5042695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5042866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139ef0", "tid": 35568, "ts": 5043032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5043205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139fc0", "tid": 35568, "ts": 5043328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5043500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a090", "tid": 35568, "ts": 5043623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5043794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a160", "tid": 35568, "ts": 5043916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013abf0", "tid": 35568, "ts": 5044211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013acc0", "tid": 35568, "ts": 5044506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bb60", "tid": 35568, "ts": 5044801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cfb0", "tid": 35568, "ts": 5045095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5045266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d220", "tid": 35568, "ts": 5045388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5045559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d7d0", "tid": 35568, "ts": 5045682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5045853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b680", "tid": 35568, "ts": 5045975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5046147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d2f0", "tid": 35568, "ts": 5046268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5046440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c930", "tid": 35568, "ts": 5046562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5046734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c110", "tid": 35568, "ts": 5046856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013dd80", "tid": 35568, "ts": 5047151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013dcb0", "tid": 35568, "ts": 5047446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d8a0", "tid": 35568, "ts": 5047741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ba90", "tid": 35568, "ts": 5048035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5048207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c5f0", "tid": 35568, "ts": 5048329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5048501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c1e0", "tid": 35568, "ts": 5048623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5048794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d3c0", "tid": 35568, "ts": 5048917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013dbe0", "tid": 35568, "ts": 5049210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bdd0", "tid": 35568, "ts": 5049504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b8f0", "tid": 35568, "ts": 5049799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013de50", "tid": 35568, "ts": 5050093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5050264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d630", "tid": 35568, "ts": 5050386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5050558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d970", "tid": 35568, "ts": 5050681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5050854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013da40", "tid": 35568, "ts": 5050976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5051148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bc30", "tid": 35568, "ts": 5051271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5051443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d490", "tid": 35568, "ts": 5051565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5051801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b9c0", "tid": 35568, "ts": 5051925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b750", "tid": 35568, "ts": 5052219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cee0", "tid": 35568, "ts": 5052513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b820", "tid": 35568, "ts": 5052809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c040", "tid": 35568, "ts": 5053104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5053277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c6c0", "tid": 35568, "ts": 5053401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5053617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c860", "tid": 35568, "ts": 5053740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5053912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013df20", "tid": 35568, "ts": 5054035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5054206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d560", "tid": 35568, "ts": 5054390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5054563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c790", "tid": 35568, "ts": 5054685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5054857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b4e0", "tid": 35568, "ts": 5054979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5055152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b5b0", "tid": 35568, "ts": 5055274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5055444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bd00", "tid": 35568, "ts": 5055567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5055739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d080", "tid": 35568, "ts": 5055863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bea0", "tid": 35568, "ts": 5056157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cc70", "tid": 35568, "ts": 5056452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bf70", "tid": 35568, "ts": 5056746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d150", "tid": 35568, "ts": 5057040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5057213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c2b0", "tid": 35568, "ts": 5057336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5057508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c380", "tid": 35568, "ts": 5057630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5057802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c450", "tid": 35568, "ts": 5057925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cd40", "tid": 35568, "ts": 5058219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c520", "tid": 35568, "ts": 5058513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ca00", "tid": 35568, "ts": 5058807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cad0", "tid": 35568, "ts": 5059101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5059273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cba0", "tid": 35568, "ts": 5059396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5059568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ce10", "tid": 35568, "ts": 5059691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5059863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d700", "tid": 35568, "ts": 5059985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5060156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013db10", "tid": 35568, "ts": 5060279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5060450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f870", "tid": 35568, "ts": 5060572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5060743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e5c0", "tid": 35568, "ts": 5060866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f940", "tid": 35568, "ts": 5061161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120230", "tid": 35568, "ts": 5061455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121270", "tid": 35568, "ts": 5061750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120980", "tid": 35568, "ts": 5062046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5062218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011eaa0", "tid": 35568, "ts": 5062340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5062512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01207e0", "tid": 35568, "ts": 5062634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5062806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121410", "tid": 35568, "ts": 5062928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120b20", "tid": 35568, "ts": 5063223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f390", "tid": 35568, "ts": 5063517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ede0", "tid": 35568, "ts": 5063811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011eb70", "tid": 35568, "ts": 5064103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5064274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e830", "tid": 35568, "ts": 5064396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5064568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120cc0", "tid": 35568, "ts": 5064690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5064861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ec40", "tid": 35568, "ts": 5064983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5065155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01203d0", "tid": 35568, "ts": 5065277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5065449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ed10", "tid": 35568, "ts": 5065572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5065743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fbb0", "tid": 35568, "ts": 5065866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fef0", "tid": 35568, "ts": 5066159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ffc0", "tid": 35568, "ts": 5066453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f600", "tid": 35568, "ts": 5066746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121340", "tid": 35568, "ts": 5067040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5067212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120a50", "tid": 35568, "ts": 5067454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5067745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f120", "tid": 35568, "ts": 5067928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5068170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e760", "tid": 35568, "ts": 5068331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5068604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e0e0", "tid": 35568, "ts": 5068748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5068919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fa10", "tid": 35568, "ts": 5069042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5069214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01204a0", "tid": 35568, "ts": 5069336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5069507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f6d0", "tid": 35568, "ts": 5069630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5069803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fae0", "tid": 35568, "ts": 5069925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e690", "tid": 35568, "ts": 5070219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120090", "tid": 35568, "ts": 5070512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01208b0", "tid": 35568, "ts": 5070805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01211a0", "tid": 35568, "ts": 5071101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5071273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f7a0", "tid": 35568, "ts": 5071396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5071567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121000", "tid": 35568, "ts": 5071690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5071862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fc80", "tid": 35568, "ts": 5071984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5072157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120300", "tid": 35568, "ts": 5072279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5072451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120f30", "tid": 35568, "ts": 5072574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5072746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120570", "tid": 35568, "ts": 5072869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e900", "tid": 35568, "ts": 5073163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e4f0", "tid": 35568, "ts": 5073459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120640", "tid": 35568, "ts": 5073752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e9d0", "tid": 35568, "ts": 5074046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5074217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011eeb0", "tid": 35568, "ts": 5074339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5074511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e1b0", "tid": 35568, "ts": 5074633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5074804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fd50", "tid": 35568, "ts": 5074927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f460", "tid": 35568, "ts": 5075222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fe20", "tid": 35568, "ts": 5075516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e420", "tid": 35568, "ts": 5075812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120bf0", "tid": 35568, "ts": 5076149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5076321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120160", "tid": 35568, "ts": 5076444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5076616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120d90", "tid": 35568, "ts": 5076739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5076911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ef80", "tid": 35568, "ts": 5077034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5077206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120710", "tid": 35568, "ts": 5077328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5077500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120e60", "tid": 35568, "ts": 5077623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5077794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f050", "tid": 35568, "ts": 5077916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01210d0", "tid": 35568, "ts": 5078211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f2c0", "tid": 35568, "ts": 5078505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f530", "tid": 35568, "ts": 5078800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e280", "tid": 35568, "ts": 5079094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5079266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f1f0", "tid": 35568, "ts": 5079389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5079561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e350", "tid": 35568, "ts": 5079684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5079855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069a90", "tid": 35568, "ts": 5080013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5080186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bf20", "tid": 35568, "ts": 5080310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5080482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b8a0", "tid": 35568, "ts": 5080662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5080834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aa00", "tid": 35568, "ts": 5080957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5081128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c5a0", "tid": 35568, "ts": 5081252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5081425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ae10", "tid": 35568, "ts": 5081548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5081721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ac70", "tid": 35568, "ts": 5081843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069750", "tid": 35568, "ts": 5082138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b560", "tid": 35568, "ts": 5082432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c330", "tid": 35568, "ts": 5082727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bd80", "tid": 35568, "ts": 5083085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5083258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069c30", "tid": 35568, "ts": 5083381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5083552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306be50", "tid": 35568, "ts": 5083675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5083847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b080", "tid": 35568, "ts": 5083969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5084140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c810", "tid": 35568, "ts": 5084263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5084435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b150", "tid": 35568, "ts": 5084558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5084730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306afb0", "tid": 35568, "ts": 5084853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ad40", "tid": 35568, "ts": 5085148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069820", "tid": 35568, "ts": 5085442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30698f0", "tid": 35568, "ts": 5085736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a2b0", "tid": 35568, "ts": 5086031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5086202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c400", "tid": 35568, "ts": 5086325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5086496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069b60", "tid": 35568, "ts": 5086618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5086791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b220", "tid": 35568, "ts": 5086913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bbe0", "tid": 35568, "ts": 5087208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30694e0", "tid": 35568, "ts": 5087502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30695b0", "tid": 35568, "ts": 5087795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069d00", "tid": 35568, "ts": 5088088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5088259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b490", "tid": 35568, "ts": 5088382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5088554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bcb0", "tid": 35568, "ts": 5088676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5088849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a6c0", "tid": 35568, "ts": 5088970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5089142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bff0", "tid": 35568, "ts": 5089264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5089435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a790", "tid": 35568, "ts": 5089557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5089728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c670", "tid": 35568, "ts": 5089851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c0c0", "tid": 35568, "ts": 5090145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a040", "tid": 35568, "ts": 5090438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c190", "tid": 35568, "ts": 5090732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a450", "tid": 35568, "ts": 5091026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5091198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a520", "tid": 35568, "ts": 5091321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5091492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c260", "tid": 35568, "ts": 5091614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5091785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069680", "tid": 35568, "ts": 5091908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a5f0", "tid": 35568, "ts": 5092202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c740", "tid": 35568, "ts": 5092496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30699c0", "tid": 35568, "ts": 5092790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b2f0", "tid": 35568, "ts": 5093084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5093255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b3c0", "tid": 35568, "ts": 5093378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5093550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a1e0", "tid": 35568, "ts": 5093672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5093844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a110", "tid": 35568, "ts": 5093966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5094138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b630", "tid": 35568, "ts": 5094260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5094431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069dd0", "tid": 35568, "ts": 5094577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5094748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069ea0", "tid": 35568, "ts": 5094871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069f70", "tid": 35568, "ts": 5095164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a380", "tid": 35568, "ts": 5095488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a860", "tid": 35568, "ts": 5095783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a930", "tid": 35568, "ts": 5096078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5096251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c4d0", "tid": 35568, "ts": 5096373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5096544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aad0", "tid": 35568, "ts": 5096667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5096839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aba0", "tid": 35568, "ts": 5096961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5097132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aee0", "tid": 35568, "ts": 5097255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5097466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b700", "tid": 35568, "ts": 5097592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5097764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b7d0", "tid": 35568, "ts": 5097886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b970", "tid": 35568, "ts": 5098181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ba40", "tid": 35568, "ts": 5098503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bb10", "tid": 35568, "ts": 5098824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f8d0", "tid": 35568, "ts": 5099117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5099289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e070", "tid": 35568, "ts": 5099411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5099584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c9b0", "tid": 35568, "ts": 5099706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5099878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dc60", "tid": 35568, "ts": 5100000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5100172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e620", "tid": 35568, "ts": 5100294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5100464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fa70", "tid": 35568, "ts": 5100587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5100758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306de00", "tid": 35568, "ts": 5100880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fb40", "tid": 35568, "ts": 5101174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cdc0", "tid": 35568, "ts": 5101467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cb50", "tid": 35568, "ts": 5101762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e960", "tid": 35568, "ts": 5102056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5102227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d850", "tid": 35568, "ts": 5102349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5102521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f9a0", "tid": 35568, "ts": 5102643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5102814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d780", "tid": 35568, "ts": 5102937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f730", "tid": 35568, "ts": 5103230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ca80", "tid": 35568, "ts": 5103523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d440", "tid": 35568, "ts": 5103817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d510", "tid": 35568, "ts": 5104110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5104282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e550", "tid": 35568, "ts": 5104403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5104574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d5e0", "tid": 35568, "ts": 5104697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5104869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e210", "tid": 35568, "ts": 5104991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5105163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e140", "tid": 35568, "ts": 5105286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5105458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e480", "tid": 35568, "ts": 5105580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5105752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ce90", "tid": 35568, "ts": 5105874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ee40", "tid": 35568, "ts": 5106168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ea30", "tid": 35568, "ts": 5106463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fc10", "tid": 35568, "ts": 5106756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cc20", "tid": 35568, "ts": 5107050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5107221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f0b0", "tid": 35568, "ts": 5107343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5107514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f800", "tid": 35568, "ts": 5107637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5107808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d6b0", "tid": 35568, "ts": 5107931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5108102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c8e0", "tid": 35568, "ts": 5108224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5108396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d9f0", "tid": 35568, "ts": 5108559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5108731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306eb00", "tid": 35568, "ts": 5108854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e6f0", "tid": 35568, "ts": 5109148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ccf0", "tid": 35568, "ts": 5109442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ded0", "tid": 35568, "ts": 5109736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e7c0", "tid": 35568, "ts": 5110029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5110200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cf60", "tid": 35568, "ts": 5110323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5110495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f180", "tid": 35568, "ts": 5110616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5110788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d030", "tid": 35568, "ts": 5110911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d100", "tid": 35568, "ts": 5111206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d920", "tid": 35568, "ts": 5111499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dac0", "tid": 35568, "ts": 5111792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f320", "tid": 35568, "ts": 5112085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5112256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306db90", "tid": 35568, "ts": 5112378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5112549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dfa0", "tid": 35568, "ts": 5112671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5112842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d1d0", "tid": 35568, "ts": 5112964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5113135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e890", "tid": 35568, "ts": 5113257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5113428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dd30", "tid": 35568, "ts": 5113550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5113723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d2a0", "tid": 35568, "ts": 5113846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d370", "tid": 35568, "ts": 5114201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e2e0", "tid": 35568, "ts": 5114498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e3b0", "tid": 35568, "ts": 5114792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306eca0", "tid": 35568, "ts": 5115086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5115257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ebd0", "tid": 35568, "ts": 5115379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5115551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ed70", "tid": 35568, "ts": 5115673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5115844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f3f0", "tid": 35568, "ts": 5115966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5116137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ef10", "tid": 35568, "ts": 5116260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5116431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306efe0", "tid": 35568, "ts": 5116553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5116724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f250", "tid": 35568, "ts": 5116846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f4c0", "tid": 35568, "ts": 5117140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f590", "tid": 35568, "ts": 5117434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f660", "tid": 35568, "ts": 5117729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070020", "tid": 35568, "ts": 5118022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5118193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071470", "tid": 35568, "ts": 5118315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5118487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fce0", "tid": 35568, "ts": 5118609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5118781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070500", "tid": 35568, "ts": 5118904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071fd0", "tid": 35568, "ts": 5119197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071f00", "tid": 35568, "ts": 5119491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071880", "tid": 35568, "ts": 5119785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30728c0", "tid": 35568, "ts": 5120079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5120250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070430", "tid": 35568, "ts": 5120373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5120544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071130", "tid": 35568, "ts": 5120666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5120839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071a20", "tid": 35568, "ts": 5120962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5121135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072e70", "tid": 35568, "ts": 5121257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5121429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30706a0", "tid": 35568, "ts": 5121553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5121724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30723e0", "tid": 35568, "ts": 5121846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071d60", "tid": 35568, "ts": 5122140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072f40", "tid": 35568, "ts": 5122434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070770", "tid": 35568, "ts": 5122728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072b30", "tid": 35568, "ts": 5123022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5123194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072650", "tid": 35568, "ts": 5123317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5123529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072720", "tid": 35568, "ts": 5123653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5123824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070df0", "tid": 35568, "ts": 5123946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30713a0", "tid": 35568, "ts": 5124240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072c00", "tid": 35568, "ts": 5124534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070ab0", "tid": 35568, "ts": 5124827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30705d0", "tid": 35568, "ts": 5125121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5125294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070840", "tid": 35568, "ts": 5125415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5125587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071af0", "tid": 35568, "ts": 5125710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5125881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072cd0", "tid": 35568, "ts": 5126003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5126173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070360", "tid": 35568, "ts": 5126296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5126468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071e30", "tid": 35568, "ts": 5126589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5126761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070910", "tid": 35568, "ts": 5126883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071540", "tid": 35568, "ts": 5127176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072da0", "tid": 35568, "ts": 5127469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072580", "tid": 35568, "ts": 5127763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30709e0", "tid": 35568, "ts": 5128056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5128228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071c90", "tid": 35568, "ts": 5128351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5128522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30712d0", "tid": 35568, "ts": 5128644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5128816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073010", "tid": 35568, "ts": 5128938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5129110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30720a0", "tid": 35568, "ts": 5129232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5129402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30701c0", "tid": 35568, "ts": 5129525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5129696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070b80", "tid": 35568, "ts": 5129909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070290", "tid": 35568, "ts": 5130211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072170", "tid": 35568, "ts": 5130508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070c50", "tid": 35568, "ts": 5130803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072990", "tid": 35568, "ts": 5131100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5131272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072240", "tid": 35568, "ts": 5131395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5131568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fdb0", "tid": 35568, "ts": 5131690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5131862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30727f0", "tid": 35568, "ts": 5131985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5132156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070d20", "tid": 35568, "ts": 5132279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5132451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072a60", "tid": 35568, "ts": 5132574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5132746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fe80", "tid": 35568, "ts": 5132870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070ec0", "tid": 35568, "ts": 5133163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ff50", "tid": 35568, "ts": 5133457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070f90", "tid": 35568, "ts": 5133751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071060", "tid": 35568, "ts": 5134044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5134216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071200", "tid": 35568, "ts": 5134338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5134510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30700f0", "tid": 35568, "ts": 5134633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5134805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071610", "tid": 35568, "ts": 5134928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30716e0", "tid": 35568, "ts": 5135222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30717b0", "tid": 35568, "ts": 5135517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071950", "tid": 35568, "ts": 5135811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071bc0", "tid": 35568, "ts": 5136106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5136277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072310", "tid": 35568, "ts": 5136399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5136571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30724b0", "tid": 35568, "ts": 5136694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5136866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076000", "tid": 35568, "ts": 5136988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5137161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073760", "tid": 35568, "ts": 5137283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5137456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073b70", "tid": 35568, "ts": 5137580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5137752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30754a0", "tid": 35568, "ts": 5137875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074050", "tid": 35568, "ts": 5138170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075570", "tid": 35568, "ts": 5138464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30760d0", "tid": 35568, "ts": 5138759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075bf0", "tid": 35568, "ts": 5139054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5139225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076340", "tid": 35568, "ts": 5139348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5139520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073900", "tid": 35568, "ts": 5139708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5139880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30734f0", "tid": 35568, "ts": 5140003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5140175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073aa0", "tid": 35568, "ts": 5140297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5140469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075a50", "tid": 35568, "ts": 5140591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5140762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075b20", "tid": 35568, "ts": 5140884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30761a0", "tid": 35568, "ts": 5141226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073f80", "tid": 35568, "ts": 5141521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075f30", "tid": 35568, "ts": 5141814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30731b0", "tid": 35568, "ts": 5142108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5142280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075640", "tid": 35568, "ts": 5142403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5142575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073c40", "tid": 35568, "ts": 5142698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5142870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076410", "tid": 35568, "ts": 5142993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5143165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30746d0", "tid": 35568, "ts": 5143289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5143460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075710", "tid": 35568, "ts": 5143584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5143755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074120", "tid": 35568, "ts": 5143878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073420", "tid": 35568, "ts": 5144172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073280", "tid": 35568, "ts": 5144466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30757e0", "tid": 35568, "ts": 5144761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074bb0", "tid": 35568, "ts": 5145055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5145227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30758b0", "tid": 35568, "ts": 5145391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5145596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075e60", "tid": 35568, "ts": 5145724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5145897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075980", "tid": 35568, "ts": 5146021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5146193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075cc0", "tid": 35568, "ts": 5146317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5146489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075090", "tid": 35568, "ts": 5146612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5146784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30747a0", "tid": 35568, "ts": 5146906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30741f0", "tid": 35568, "ts": 5147201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30739d0", "tid": 35568, "ts": 5147495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074460", "tid": 35568, "ts": 5147789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073d10", "tid": 35568, "ts": 5148139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5148311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30735c0", "tid": 35568, "ts": 5148434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5148606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073690", "tid": 35568, "ts": 5148728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5148900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075160", "tid": 35568, "ts": 5149023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5149194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074fc0", "tid": 35568, "ts": 5149316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5149489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074870", "tid": 35568, "ts": 5149611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5149782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073350", "tid": 35568, "ts": 5149904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074530", "tid": 35568, "ts": 5150199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30753d0", "tid": 35568, "ts": 5150494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074940", "tid": 35568, "ts": 5150788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075d90", "tid": 35568, "ts": 5151081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5151252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075230", "tid": 35568, "ts": 5151374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5151544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30730e0", "tid": 35568, "ts": 5151667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5151840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076270", "tid": 35568, "ts": 5151962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5152134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074a10", "tid": 35568, "ts": 5152256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5152428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073830", "tid": 35568, "ts": 5152550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5152722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074ae0", "tid": 35568, "ts": 5152845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073de0", "tid": 35568, "ts": 5153138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30742c0", "tid": 35568, "ts": 5153431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074600", "tid": 35568, "ts": 5153724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073eb0", "tid": 35568, "ts": 5154017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5154189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074390", "tid": 35568, "ts": 5154311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5154482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074c80", "tid": 35568, "ts": 5154604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5154778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074d50", "tid": 35568, "ts": 5154900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074e20", "tid": 35568, "ts": 5155195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074ef0", "tid": 35568, "ts": 5155488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075300", "tid": 35568, "ts": 5155782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30764e0", "tid": 35568, "ts": 5156075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5156247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077450", "tid": 35568, "ts": 5156370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5156543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30772b0", "tid": 35568, "ts": 5156666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5156838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076dd0", "tid": 35568, "ts": 5156961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5157132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30769c0", "tid": 35568, "ts": 5157256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5157427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079670", "tid": 35568, "ts": 5157549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5157720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30787d0", "tid": 35568, "ts": 5157843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078630", "tid": 35568, "ts": 5158136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30765b0", "tid": 35568, "ts": 5158430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077040", "tid": 35568, "ts": 5158724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079810", "tid": 35568, "ts": 5159019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5159190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078150", "tid": 35568, "ts": 5159313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5159485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30782f0", "tid": 35568, "ts": 5159608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5159779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076680", "tid": 35568, "ts": 5159901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5160073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076ea0", "tid": 35568, "ts": 5160195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5160366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076a90", "tid": 35568, "ts": 5160543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5160716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077e10", "tid": 35568, "ts": 5160846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5161063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30794d0", "tid": 35568, "ts": 5161236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5161547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30775f0", "tid": 35568, "ts": 5161722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5161949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077fb0", "tid": 35568, "ts": 5162071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5162243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30788a0", "tid": 35568, "ts": 5162366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5162537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078ff0", "tid": 35568, "ts": 5162660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5162831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30795a0", "tid": 35568, "ts": 5162953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5163124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30776c0", "tid": 35568, "ts": 5163246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5163419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077a00", "tid": 35568, "ts": 5163542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5163713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078220", "tid": 35568, "ts": 5163836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076f70", "tid": 35568, "ts": 5164131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076750", "tid": 35568, "ts": 5164425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077790", "tid": 35568, "ts": 5164718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076d00", "tid": 35568, "ts": 5165013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5165185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30768f0", "tid": 35568, "ts": 5165308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5165480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078be0", "tid": 35568, "ts": 5165604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5165776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077860", "tid": 35568, "ts": 5165899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5166072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077ba0", "tid": 35568, "ts": 5166258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5166431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077520", "tid": 35568, "ts": 5166553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5166724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078080", "tid": 35568, "ts": 5166847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076b60", "tid": 35568, "ts": 5167142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079740", "tid": 35568, "ts": 5167435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077110", "tid": 35568, "ts": 5167728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078cb0", "tid": 35568, "ts": 5168024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5168195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30783c0", "tid": 35568, "ts": 5168318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5168489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078490", "tid": 35568, "ts": 5168612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5168784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078d80", "tid": 35568, "ts": 5168907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078700", "tid": 35568, "ts": 5169201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30771e0", "tid": 35568, "ts": 5169494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077ad0", "tid": 35568, "ts": 5169788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077c70", "tid": 35568, "ts": 5170082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5170254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077380", "tid": 35568, "ts": 5170376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5170548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077930", "tid": 35568, "ts": 5170670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5170840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078e50", "tid": 35568, "ts": 5170963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5171136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078f20", "tid": 35568, "ts": 5171258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5171430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30790c0", "tid": 35568, "ts": 5171553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5171725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077d40", "tid": 35568, "ts": 5171847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076c30", "tid": 35568, "ts": 5172141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078970", "tid": 35568, "ts": 5172435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079190", "tid": 35568, "ts": 5172729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076820", "tid": 35568, "ts": 5173023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5173196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078560", "tid": 35568, "ts": 5173319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5173491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077ee0", "tid": 35568, "ts": 5173613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5173784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078a40", "tid": 35568, "ts": 5173950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5174123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078b10", "tid": 35568, "ts": 5174245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5174417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079260", "tid": 35568, "ts": 5174540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5174712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079330", "tid": 35568, "ts": 5174835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079400", "tid": 35568, "ts": 5175130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bbd0", "tid": 35568, "ts": 5175424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bf10", "tid": 35568, "ts": 5175717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a9f0", "tid": 35568, "ts": 5176011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5176181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c590", "tid": 35568, "ts": 5176303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5176476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bca0", "tid": 35568, "ts": 5176629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5176860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ad30", "tid": 35568, "ts": 5177050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5177272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bd70", "tid": 35568, "ts": 5177486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5177680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a2a0", "tid": 35568, "ts": 5177803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5177976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c660", "tid": 35568, "ts": 5178099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5178271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307be40", "tid": 35568, "ts": 5178418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5178591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a510", "tid": 35568, "ts": 5178713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5178885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079cf0", "tid": 35568, "ts": 5179008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5179180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079b50", "tid": 35568, "ts": 5179303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5179473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bfe0", "tid": 35568, "ts": 5179597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5179769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b890", "tid": 35568, "ts": 5179891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079f60", "tid": 35568, "ts": 5180185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ba30", "tid": 35568, "ts": 5180480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a100", "tid": 35568, "ts": 5180773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30798e0", "tid": 35568, "ts": 5181067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5181240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c730", "tid": 35568, "ts": 5181362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5181535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307aed0", "tid": 35568, "ts": 5181658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5181829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c0b0", "tid": 35568, "ts": 5181951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5182123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c8d0", "tid": 35568, "ts": 5182246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5182417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a030", "tid": 35568, "ts": 5182539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5182711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079e90", "tid": 35568, "ts": 5182833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a1d0", "tid": 35568, "ts": 5183127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307afa0", "tid": 35568, "ts": 5183421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b140", "tid": 35568, "ts": 5183715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c180", "tid": 35568, "ts": 5184008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5184180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b7c0", "tid": 35568, "ts": 5184302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5184474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c9a0", "tid": 35568, "ts": 5184596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5184767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a370", "tid": 35568, "ts": 5184890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307aac0", "tid": 35568, "ts": 5185184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a440", "tid": 35568, "ts": 5185479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c800", "tid": 35568, "ts": 5185774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b070", "tid": 35568, "ts": 5186067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5186239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ae00", "tid": 35568, "ts": 5186362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5186533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ca70", "tid": 35568, "ts": 5186655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5186827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a5e0", "tid": 35568, "ts": 5186949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5187121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a6b0", "tid": 35568, "ts": 5187243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5187415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cb40", "tid": 35568, "ts": 5187538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5187709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b960", "tid": 35568, "ts": 5187831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a780", "tid": 35568, "ts": 5188125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c250", "tid": 35568, "ts": 5188419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a850", "tid": 35568, "ts": 5188713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b210", "tid": 35568, "ts": 5189008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5189179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c320", "tid": 35568, "ts": 5189302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5189473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a920", "tid": 35568, "ts": 5189596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5189767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c4c0", "tid": 35568, "ts": 5189890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c3f0", "tid": 35568, "ts": 5190184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ac60", "tid": 35568, "ts": 5190479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cc10", "tid": 35568, "ts": 5190773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bb00", "tid": 35568, "ts": 5191069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5191240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30799b0", "tid": 35568, "ts": 5191362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5191534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ab90", "tid": 35568, "ts": 5191656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5191827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079c20", "tid": 35568, "ts": 5191950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5192121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079a80", "tid": 35568, "ts": 5192288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5192471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079dc0", "tid": 35568, "ts": 5192595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5192766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b3b0", "tid": 35568, "ts": 5192889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b2e0", "tid": 35568, "ts": 5193182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b480", "tid": 35568, "ts": 5193476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b550", "tid": 35568, "ts": 5193813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b620", "tid": 35568, "ts": 5194108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5194279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b6f0", "tid": 35568, "ts": 5194402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5194597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dab0", "tid": 35568, "ts": 5194719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5194891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307db80", "tid": 35568, "ts": 5195013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5195186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fc00", "tid": 35568, "ts": 5195309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5195480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d430", "tid": 35568, "ts": 5195602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5195774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ebc0", "tid": 35568, "ts": 5195896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fb30", "tid": 35568, "ts": 5196190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e2d0", "tid": 35568, "ts": 5196485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307eaf0", "tid": 35568, "ts": 5196779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d770", "tid": 35568, "ts": 5197073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5197245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e3a0", "tid": 35568, "ts": 5197367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5197539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cce0", "tid": 35568, "ts": 5197695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5197867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dc50", "tid": 35568, "ts": 5197990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5198162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d290", "tid": 35568, "ts": 5198284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5198456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f240", "tid": 35568, "ts": 5198579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5198751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ea20", "tid": 35568, "ts": 5198875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f3e0", "tid": 35568, "ts": 5199169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e950", "tid": 35568, "ts": 5199463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ec90", "tid": 35568, "ts": 5199757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e470", "tid": 35568, "ts": 5200051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5200223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e540", "tid": 35568, "ts": 5200345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5200516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e610", "tid": 35568, "ts": 5200639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5200811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d6a0", "tid": 35568, "ts": 5200934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fcd0", "tid": 35568, "ts": 5201229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d360", "tid": 35568, "ts": 5201522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e7b0", "tid": 35568, "ts": 5201815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d1c0", "tid": 35568, "ts": 5202111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5202283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fda0", "tid": 35568, "ts": 5202406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5202578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d500", "tid": 35568, "ts": 5202700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5202871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ce80", "tid": 35568, "ts": 5202994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5203166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fe70", "tid": 35568, "ts": 5203289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5203461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d5d0", "tid": 35568, "ts": 5203584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5203755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ff40", "tid": 35568, "ts": 5203878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d840", "tid": 35568, "ts": 5204172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e060", "tid": 35568, "ts": 5204467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d910", "tid": 35568, "ts": 5204760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080010", "tid": 35568, "ts": 5205054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5205225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f650", "tid": 35568, "ts": 5205348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5205519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d9e0", "tid": 35568, "ts": 5205641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5205814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e6e0", "tid": 35568, "ts": 5205936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5206107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e200", "tid": 35568, "ts": 5206229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5206401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e880", "tid": 35568, "ts": 5206524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5206738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dd20", "tid": 35568, "ts": 5206866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5207039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ed60", "tid": 35568, "ts": 5207162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5207334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cdb0", "tid": 35568, "ts": 5207457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5207629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ee30", "tid": 35568, "ts": 5207751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ef00", "tid": 35568, "ts": 5208153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307df90", "tid": 35568, "ts": 5208449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ddf0", "tid": 35568, "ts": 5208743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f720", "tid": 35568, "ts": 5209038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5209209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cf50", "tid": 35568, "ts": 5209332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5209505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d020", "tid": 35568, "ts": 5209628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5209800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dec0", "tid": 35568, "ts": 5209923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e130", "tid": 35568, "ts": 5210218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307efd0", "tid": 35568, "ts": 5210513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f0a0", "tid": 35568, "ts": 5210808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d0f0", "tid": 35568, "ts": 5211103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5211274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f170", "tid": 35568, "ts": 5211397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5211568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f310", "tid": 35568, "ts": 5211690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5211862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f4b0", "tid": 35568, "ts": 5211985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5212157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f580", "tid": 35568, "ts": 5212280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5212452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f7f0", "tid": 35568, "ts": 5212575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5212748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f8c0", "tid": 35568, "ts": 5212871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f990", "tid": 35568, "ts": 5213165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fa60", "tid": 35568, "ts": 5213461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081460", "tid": 35568, "ts": 5213755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082cc0", "tid": 35568, "ts": 5214050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5214223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081120", "tid": 35568, "ts": 5214345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5214517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083270", "tid": 35568, "ts": 5214640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5214814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081530", "tid": 35568, "ts": 5214936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080760", "tid": 35568, "ts": 5215230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30824a0", "tid": 35568, "ts": 5215526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082a50", "tid": 35568, "ts": 5215819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083000", "tid": 35568, "ts": 5216171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5216343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082230", "tid": 35568, "ts": 5216466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5216638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30811f0", "tid": 35568, "ts": 5216760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5216931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080830", "tid": 35568, "ts": 5217054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5217225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081bb0", "tid": 35568, "ts": 5217348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5217519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082710", "tid": 35568, "ts": 5217642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5217813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082b20", "tid": 35568, "ts": 5217936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082090", "tid": 35568, "ts": 5218230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30830d0", "tid": 35568, "ts": 5218525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082e60", "tid": 35568, "ts": 5218819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082bf0", "tid": 35568, "ts": 5219114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5219286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30805c0", "tid": 35568, "ts": 5219409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5219580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082d90", "tid": 35568, "ts": 5219703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5219875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080280", "tid": 35568, "ts": 5219998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5220169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080350", "tid": 35568, "ts": 5220291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5220462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30831a0", "tid": 35568, "ts": 5220586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5220756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081600", "tid": 35568, "ts": 5220878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082f30", "tid": 35568, "ts": 5221172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083340", "tid": 35568, "ts": 5221466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083410", "tid": 35568, "ts": 5221759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080aa0", "tid": 35568, "ts": 5222054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5222225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082980", "tid": 35568, "ts": 5222348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5222520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30800e0", "tid": 35568, "ts": 5222657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5222829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30801b0", "tid": 35568, "ts": 5222952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5223124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080420", "tid": 35568, "ts": 5223247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5223419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30804f0", "tid": 35568, "ts": 5223592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5223764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30812c0", "tid": 35568, "ts": 5223887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080690", "tid": 35568, "ts": 5224181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081ef0", "tid": 35568, "ts": 5224476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081050", "tid": 35568, "ts": 5224770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30816d0", "tid": 35568, "ts": 5225404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5225576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080900", "tid": 35568, "ts": 5225760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5225933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30809d0", "tid": 35568, "ts": 5226056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5226228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080b70", "tid": 35568, "ts": 5226351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5226523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080c40", "tid": 35568, "ts": 5226647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5226819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080d10", "tid": 35568, "ts": 5226941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080de0", "tid": 35568, "ts": 5227236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081c80", "tid": 35568, "ts": 5227530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080eb0", "tid": 35568, "ts": 5227824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080f80", "tid": 35568, "ts": 5228119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5228290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081390", "tid": 35568, "ts": 5228413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5228584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30817a0", "tid": 35568, "ts": 5228706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5228878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081870", "tid": 35568, "ts": 5229000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5229171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081940", "tid": 35568, "ts": 5229293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5229465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082570", "tid": 35568, "ts": 5229588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5229760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081a10", "tid": 35568, "ts": 5229883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081ae0", "tid": 35568, "ts": 5230177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081d50", "tid": 35568, "ts": 5230471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081e20", "tid": 35568, "ts": 5230765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081fc0", "tid": 35568, "ts": 5231058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5231230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082160", "tid": 35568, "ts": 5231352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5231524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082300", "tid": 35568, "ts": 5231647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5231818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30823d0", "tid": 35568, "ts": 5231941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082640", "tid": 35568, "ts": 5232237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30827e0", "tid": 35568, "ts": 5232532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30828b0", "tid": 35568, "ts": 5232825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085b10", "tid": 35568, "ts": 5233121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5233292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085560", "tid": 35568, "ts": 5233414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5233588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084fb0", "tid": 35568, "ts": 5233711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5233884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30842b0", "tid": 35568, "ts": 5234006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5234178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083b60", "tid": 35568, "ts": 5234301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5234472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085150", "tid": 35568, "ts": 5234595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5234766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30845f0", "tid": 35568, "ts": 5234889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085f20", "tid": 35568, "ts": 5235183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085080", "tid": 35568, "ts": 5235480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084110", "tid": 35568, "ts": 5235774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083c30", "tid": 35568, "ts": 5236068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5236240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083750", "tid": 35568, "ts": 5236363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5236535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30834e0", "tid": 35568, "ts": 5236658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5236831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083a90", "tid": 35568, "ts": 5236953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5237126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30841e0", "tid": 35568, "ts": 5237249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5237422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084ba0", "tid": 35568, "ts": 5237545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5237718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083d00", "tid": 35568, "ts": 5237840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30839c0", "tid": 35568, "ts": 5238134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085d80", "tid": 35568, "ts": 5238430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085490", "tid": 35568, "ts": 5238725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083dd0", "tid": 35568, "ts": 5239020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5239251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085be0", "tid": 35568, "ts": 5239375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5239547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083820", "tid": 35568, "ts": 5239713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5239887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084d40", "tid": 35568, "ts": 5240011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5240183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30838f0", "tid": 35568, "ts": 5240306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5240476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084450", "tid": 35568, "ts": 5240600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5240771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085220", "tid": 35568, "ts": 5240894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083ea0", "tid": 35568, "ts": 5241189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084380", "tid": 35568, "ts": 5241484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084790", "tid": 35568, "ts": 5241778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30857d0", "tid": 35568, "ts": 5242075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5242247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084ee0", "tid": 35568, "ts": 5242370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5242542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084520", "tid": 35568, "ts": 5242665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5242837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084930", "tid": 35568, "ts": 5242959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5243131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084a00", "tid": 35568, "ts": 5243255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5243427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083f70", "tid": 35568, "ts": 5243550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5243722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30846c0", "tid": 35568, "ts": 5243844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085cb0", "tid": 35568, "ts": 5244139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085630", "tid": 35568, "ts": 5244434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084e10", "tid": 35568, "ts": 5244728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084040", "tid": 35568, "ts": 5245024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5245196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083680", "tid": 35568, "ts": 5245318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5245491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30852f0", "tid": 35568, "ts": 5245614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5245786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084860", "tid": 35568, "ts": 5245909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084ad0", "tid": 35568, "ts": 5246204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30853c0", "tid": 35568, "ts": 5246498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084c70", "tid": 35568, "ts": 5246792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085700", "tid": 35568, "ts": 5247085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5247257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085a40", "tid": 35568, "ts": 5247380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5247551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085e50", "tid": 35568, "ts": 5247674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5247846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30858a0", "tid": 35568, "ts": 5247968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5248140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085970", "tid": 35568, "ts": 5248263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5248434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30835b0", "tid": 35568, "ts": 5248557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5248729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066690", "tid": 35568, "ts": 5248853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068300", "tid": 35568, "ts": 5249147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30691a0", "tid": 35568, "ts": 5249441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069270", "tid": 35568, "ts": 5249736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30684a0", "tid": 35568, "ts": 5250030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5250203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068570", "tid": 35568, "ts": 5250326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5250499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068d90", "tid": 35568, "ts": 5250622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5250794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068f30", "tid": 35568, "ts": 5250918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067050", "tid": 35568, "ts": 5251213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30676d0", "tid": 35568, "ts": 5251507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068640", "tid": 35568, "ts": 5251802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068e60", "tid": 35568, "ts": 5252097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5252269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068230", "tid": 35568, "ts": 5252392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5252565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30671f0", "tid": 35568, "ts": 5252688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5252860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066900", "tid": 35568, "ts": 5252983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5253155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067fc0", "tid": 35568, "ts": 5253278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5253448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067940", "tid": 35568, "ts": 5253571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5253743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066eb0", "tid": 35568, "ts": 5253867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067870", "tid": 35568, "ts": 5254161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069000", "tid": 35568, "ts": 5254456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066760", "tid": 35568, "ts": 5254796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067bb0", "tid": 35568, "ts": 5255092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5255264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067120", "tid": 35568, "ts": 5255387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5255559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30672c0", "tid": 35568, "ts": 5255682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5255853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067460", "tid": 35568, "ts": 5255976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5256148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30669d0", "tid": 35568, "ts": 5256271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5256443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066b70", "tid": 35568, "ts": 5256566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5256737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066350", "tid": 35568, "ts": 5256859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066aa0", "tid": 35568, "ts": 5257153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30660e0", "tid": 35568, "ts": 5257449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067390", "tid": 35568, "ts": 5257744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067e20", "tid": 35568, "ts": 5258038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5258209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066420", "tid": 35568, "ts": 5258332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5258504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066c40", "tid": 35568, "ts": 5258628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5258799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30664f0", "tid": 35568, "ts": 5258922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067530", "tid": 35568, "ts": 5259215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30661b0", "tid": 35568, "ts": 5259509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066f80", "tid": 35568, "ts": 5259803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066830", "tid": 35568, "ts": 5260097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5260268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30683d0", "tid": 35568, "ts": 5260390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5260562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067ef0", "tid": 35568, "ts": 5260684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5260856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067600", "tid": 35568, "ts": 5260978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5261149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30677a0", "tid": 35568, "ts": 5261271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5261443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067a10", "tid": 35568, "ts": 5261565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5261736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067ae0", "tid": 35568, "ts": 5261859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068090", "tid": 35568, "ts": 5262154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067c80", "tid": 35568, "ts": 5262449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30688b0", "tid": 35568, "ts": 5262744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068710", "tid": 35568, "ts": 5263038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5263210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069340", "tid": 35568, "ts": 5263333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5263548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067d50", "tid": 35568, "ts": 5263672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5263845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066d10", "tid": 35568, "ts": 5263968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5264141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068160", "tid": 35568, "ts": 5264264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5264436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069410", "tid": 35568, "ts": 5264559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5264731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066280", "tid": 35568, "ts": 5264854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30665c0", "tid": 35568, "ts": 5265149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30687e0", "tid": 35568, "ts": 5265444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068980", "tid": 35568, "ts": 5265740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068a50", "tid": 35568, "ts": 5266034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5266206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068b20", "tid": 35568, "ts": 5266329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5266501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068bf0", "tid": 35568, "ts": 5266624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5266795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068cc0", "tid": 35568, "ts": 5266918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5267090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30690d0", "tid": 35568, "ts": 5267213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5267384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066de0", "tid": 35568, "ts": 5267508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5267679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b84f0", "tid": 35568, "ts": 5267870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7e70", "tid": 35568, "ts": 5268168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9050", "tid": 35568, "ts": 5268462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7720", "tid": 35568, "ts": 5268756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b85c0", "tid": 35568, "ts": 5269050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5269221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8de0", "tid": 35568, "ts": 5269345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5269516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b81b0", "tid": 35568, "ts": 5269640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5269811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8aa0", "tid": 35568, "ts": 5269934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5270105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7f40", "tid": 35568, "ts": 5270228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5270457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8b70", "tid": 35568, "ts": 5270582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5270753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7650", "tid": 35568, "ts": 5270876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8010", "tid": 35568, "ts": 5271171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7240", "tid": 35568, "ts": 5271465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6c90", "tid": 35568, "ts": 5271760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6af0", "tid": 35568, "ts": 5272054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5272269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8eb0", "tid": 35568, "ts": 5272393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5272565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8760", "tid": 35568, "ts": 5272687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5272859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b89d0", "tid": 35568, "ts": 5272981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5273152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b73e0", "tid": 35568, "ts": 5273275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5273446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8c40", "tid": 35568, "ts": 5273569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5273804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b74b0", "tid": 35568, "ts": 5273929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5274105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b77f0", "tid": 35568, "ts": 5274229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5274408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7310", "tid": 35568, "ts": 5274543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5274715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b78c0", "tid": 35568, "ts": 5274839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6d60", "tid": 35568, "ts": 5275135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b63a0", "tid": 35568, "ts": 5275428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6bc0", "tid": 35568, "ts": 5275723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6fd0", "tid": 35568, "ts": 5276018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5276190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8420", "tid": 35568, "ts": 5276313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5276485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b80e0", "tid": 35568, "ts": 5276608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5276780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8280", "tid": 35568, "ts": 5276903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b62d0", "tid": 35568, "ts": 5277197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7170", "tid": 35568, "ts": 5277492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b67b0", "tid": 35568, "ts": 5277786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6880", "tid": 35568, "ts": 5278081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5278252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7580", "tid": 35568, "ts": 5278375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5278547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6950", "tid": 35568, "ts": 5278670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5278841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6a20", "tid": 35568, "ts": 5278964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5279136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8350", "tid": 35568, "ts": 5279258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5279429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7990", "tid": 35568, "ts": 5279552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5279724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7a60", "tid": 35568, "ts": 5279847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7b30", "tid": 35568, "ts": 5280143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6130", "tid": 35568, "ts": 5280437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8d10", "tid": 35568, "ts": 5280731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8f80", "tid": 35568, "ts": 5281026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5281198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9120", "tid": 35568, "ts": 5281320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5281490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6540", "tid": 35568, "ts": 5281613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5281784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8830", "tid": 35568, "ts": 5281907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9460", "tid": 35568, "ts": 5282201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6610", "tid": 35568, "ts": 5282495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8900", "tid": 35568, "ts": 5282789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6f00", "tid": 35568, "ts": 5283084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5283255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7c00", "tid": 35568, "ts": 5283378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5283550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6200", "tid": 35568, "ts": 5283674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5283846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7cd0", "tid": 35568, "ts": 5284025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5284197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7da0", "tid": 35568, "ts": 5284320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5284493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b92c0", "tid": 35568, "ts": 5284616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5284787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8690", "tid": 35568, "ts": 5284909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b91f0", "tid": 35568, "ts": 5285204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b66e0", "tid": 35568, "ts": 5285497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9390", "tid": 35568, "ts": 5285791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6470", "tid": 35568, "ts": 5286169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5286530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6e30", "tid": 35568, "ts": 5286783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5287113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b70a0", "tid": 35568, "ts": 5287241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5287414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba3d0", "tid": 35568, "ts": 5287540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5287712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbb60", "tid": 35568, "ts": 5287836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba980", "tid": 35568, "ts": 5288132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc110", "tid": 35568, "ts": 5288429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9a10", "tid": 35568, "ts": 5288724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba7e0", "tid": 35568, "ts": 5289019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5289192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba4a0", "tid": 35568, "ts": 5289315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5289487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba570", "tid": 35568, "ts": 5289610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5289782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb270", "tid": 35568, "ts": 5289905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc450", "tid": 35568, "ts": 5290200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba640", "tid": 35568, "ts": 5290495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9d50", "tid": 35568, "ts": 5290790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9870", "tid": 35568, "ts": 5291085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5291258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc380", "tid": 35568, "ts": 5291382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5291554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bad90", "tid": 35568, "ts": 5291677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5291850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc860", "tid": 35568, "ts": 5291974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5292145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba230", "tid": 35568, "ts": 5292268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5292440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33baa50", "tid": 35568, "ts": 5292563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5292735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba300", "tid": 35568, "ts": 5292858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b96d0", "tid": 35568, "ts": 5293153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb8f0", "tid": 35568, "ts": 5293448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc1e0", "tid": 35568, "ts": 5293742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b97a0", "tid": 35568, "ts": 5294038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5294209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbdd0", "tid": 35568, "ts": 5294331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5294526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb4e0", "tid": 35568, "ts": 5294649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5294820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9530", "tid": 35568, "ts": 5294943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc6c0", "tid": 35568, "ts": 5295238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb1a0", "tid": 35568, "ts": 5295533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb0d0", "tid": 35568, "ts": 5295826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbea0", "tid": 35568, "ts": 5296120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5296292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbf70", "tid": 35568, "ts": 5296415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5296586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc040", "tid": 35568, "ts": 5296708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5296881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9600", "tid": 35568, "ts": 5297003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5297174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc5f0", "tid": 35568, "ts": 5297296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5297467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bab20", "tid": 35568, "ts": 5297590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5297762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33babf0", "tid": 35568, "ts": 5297885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba090", "tid": 35568, "ts": 5298180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc2b0", "tid": 35568, "ts": 5298475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb9c0", "tid": 35568, "ts": 5298770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc790", "tid": 35568, "ts": 5299064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5299235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba710", "tid": 35568, "ts": 5299358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5299530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9940", "tid": 35568, "ts": 5299653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5299824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba160", "tid": 35568, "ts": 5299947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5300118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9bb0", "tid": 35568, "ts": 5300241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5300412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba8b0", "tid": 35568, "ts": 5300535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5300707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9ae0", "tid": 35568, "ts": 5300830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bba90", "tid": 35568, "ts": 5301124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc520", "tid": 35568, "ts": 5301418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9c80", "tid": 35568, "ts": 5301791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9e20", "tid": 35568, "ts": 5302086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5302257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9ef0", "tid": 35568, "ts": 5302381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5302553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bacc0", "tid": 35568, "ts": 5302676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5302848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9fc0", "tid": 35568, "ts": 5302971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5303144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb680", "tid": 35568, "ts": 5303266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5303438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bae60", "tid": 35568, "ts": 5303561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5303733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33baf30", "tid": 35568, "ts": 5303856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb000", "tid": 35568, "ts": 5304150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb340", "tid": 35568, "ts": 5304444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb410", "tid": 35568, "ts": 5304737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb5b0", "tid": 35568, "ts": 5305032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5305203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbc30", "tid": 35568, "ts": 5305372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5305544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb750", "tid": 35568, "ts": 5305668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5305841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb820", "tid": 35568, "ts": 5305985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5306157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbd00", "tid": 35568, "ts": 5306280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5306453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcfb0", "tid": 35568, "ts": 5306577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5306748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd970", "tid": 35568, "ts": 5306871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd220", "tid": 35568, "ts": 5307165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bda40", "tid": 35568, "ts": 5307459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be670", "tid": 35568, "ts": 5307753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcee0", "tid": 35568, "ts": 5308049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5308221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd7d0", "tid": 35568, "ts": 5308343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5308515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bec20", "tid": 35568, "ts": 5308637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5308808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be740", "tid": 35568, "ts": 5308931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd8a0", "tid": 35568, "ts": 5309226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33becf0", "tid": 35568, "ts": 5309520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bef60", "tid": 35568, "ts": 5309815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf030", "tid": 35568, "ts": 5310109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5310281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcba0", "tid": 35568, "ts": 5310404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5310576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf9f0", "tid": 35568, "ts": 5310699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5310871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf370", "tid": 35568, "ts": 5310994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5311166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf1d0", "tid": 35568, "ts": 5311349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5311521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdf20", "tid": 35568, "ts": 5311645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5311817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd700", "tid": 35568, "ts": 5311941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd630", "tid": 35568, "ts": 5312235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf440", "tid": 35568, "ts": 5312530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be810", "tid": 35568, "ts": 5312824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf100", "tid": 35568, "ts": 5313118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5313290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bea80", "tid": 35568, "ts": 5313413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5313585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcc70", "tid": 35568, "ts": 5313707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5313878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcd40", "tid": 35568, "ts": 5314000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5314170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bde50", "tid": 35568, "ts": 5314293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5314465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd080", "tid": 35568, "ts": 5314588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5314759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be8e0", "tid": 35568, "ts": 5314881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfc60", "tid": 35568, "ts": 5315178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf2a0", "tid": 35568, "ts": 5315473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bce10", "tid": 35568, "ts": 5315767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf510", "tid": 35568, "ts": 5316062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5316235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc930", "tid": 35568, "ts": 5316357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5316529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd150", "tid": 35568, "ts": 5316652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5316824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf5e0", "tid": 35568, "ts": 5316946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5317118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd2f0", "tid": 35568, "ts": 5317287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5317460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdff0", "tid": 35568, "ts": 5317583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5317754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bee90", "tid": 35568, "ts": 5317877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd560", "tid": 35568, "ts": 5318172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd490", "tid": 35568, "ts": 5318467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bca00", "tid": 35568, "ts": 5318804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33beb50", "tid": 35568, "ts": 5319099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5319271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bedc0", "tid": 35568, "ts": 5319394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5319566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf6b0", "tid": 35568, "ts": 5319688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5319860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdb10", "tid": 35568, "ts": 5319982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5320154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be4d0", "tid": 35568, "ts": 5320277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5320449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be0c0", "tid": 35568, "ts": 5320571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5320742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf850", "tid": 35568, "ts": 5320865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf780", "tid": 35568, "ts": 5321161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf920", "tid": 35568, "ts": 5321456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcad0", "tid": 35568, "ts": 5321753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd3c0", "tid": 35568, "ts": 5322048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5322220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdbe0", "tid": 35568, "ts": 5322342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5322514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdcb0", "tid": 35568, "ts": 5322637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5322809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdd80", "tid": 35568, "ts": 5322932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be190", "tid": 35568, "ts": 5323226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be260", "tid": 35568, "ts": 5323520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be330", "tid": 35568, "ts": 5323814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfac0", "tid": 35568, "ts": 5324107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5324280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfb90", "tid": 35568, "ts": 5324403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5324574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be400", "tid": 35568, "ts": 5324696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5324867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be5a0", "tid": 35568, "ts": 5324990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5325162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be9b0", "tid": 35568, "ts": 5325284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5325456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2df0", "tid": 35568, "ts": 5325579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5325751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0890", "tid": 35568, "ts": 5325874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c03b0", "tid": 35568, "ts": 5326168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bffa0", "tid": 35568, "ts": 5326462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1e80", "tid": 35568, "ts": 5326757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0620", "tid": 35568, "ts": 5327051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5327222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c13f0", "tid": 35568, "ts": 5327344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5327515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0960", "tid": 35568, "ts": 5327638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5327810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c02e0", "tid": 35568, "ts": 5327934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2d20", "tid": 35568, "ts": 5328229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0070", "tid": 35568, "ts": 5328524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2430", "tid": 35568, "ts": 5328818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1ce0", "tid": 35568, "ts": 5329112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5329284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c20f0", "tid": 35568, "ts": 5329407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5329579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfed0", "tid": 35568, "ts": 5329701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5329873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0140", "tid": 35568, "ts": 5329996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5330166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c06f0", "tid": 35568, "ts": 5330289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5330461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1c10", "tid": 35568, "ts": 5330583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5330756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2360", "tid": 35568, "ts": 5330878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0210", "tid": 35568, "ts": 5331172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2500", "tid": 35568, "ts": 5331466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c25d0", "tid": 35568, "ts": 5331760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c19a0", "tid": 35568, "ts": 5332056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5332227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0fe0", "tid": 35568, "ts": 5332351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5332522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0480", "tid": 35568, "ts": 5332645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5332817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c26a0", "tid": 35568, "ts": 5333102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5333276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c07c0", "tid": 35568, "ts": 5333401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5333573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c14c0", "tid": 35568, "ts": 5333697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5333913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1f50", "tid": 35568, "ts": 5334037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5334210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2020", "tid": 35568, "ts": 5334333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5334505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1250", "tid": 35568, "ts": 5334628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5334801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c21c0", "tid": 35568, "ts": 5334924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1590", "tid": 35568, "ts": 5335220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2770", "tid": 35568, "ts": 5335515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c18d0", "tid": 35568, "ts": 5335809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2290", "tid": 35568, "ts": 5336103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5336275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2c50", "tid": 35568, "ts": 5336398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5336570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0550", "tid": 35568, "ts": 5336693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5336865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0e40", "tid": 35568, "ts": 5336988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5337160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2840", "tid": 35568, "ts": 5337283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5337454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0a30", "tid": 35568, "ts": 5337578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5337749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2910", "tid": 35568, "ts": 5337872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0b00", "tid": 35568, "ts": 5338211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1660", "tid": 35568, "ts": 5338505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c10b0", "tid": 35568, "ts": 5338799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1db0", "tid": 35568, "ts": 5339094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5339265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3060", "tid": 35568, "ts": 5339388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5339560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1730", "tid": 35568, "ts": 5339683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5339854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0bd0", "tid": 35568, "ts": 5339977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5340148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c29e0", "tid": 35568, "ts": 5340296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5340468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2b80", "tid": 35568, "ts": 5340591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5340764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1800", "tid": 35568, "ts": 5340888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1a70", "tid": 35568, "ts": 5341181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0ca0", "tid": 35568, "ts": 5341475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfe00", "tid": 35568, "ts": 5341770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2ab0", "tid": 35568, "ts": 5342064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5342236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2ec0", "tid": 35568, "ts": 5342359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5342530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2f90", "tid": 35568, "ts": 5342653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5342824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfd30", "tid": 35568, "ts": 5342947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5343117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0d70", "tid": 35568, "ts": 5343241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5343412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0f10", "tid": 35568, "ts": 5343535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5343707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1180", "tid": 35568, "ts": 5343830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1320", "tid": 35568, "ts": 5344124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1b40", "tid": 35568, "ts": 5344420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4720", "tid": 35568, "ts": 5344714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5010", "tid": 35568, "ts": 5345007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5345179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4240", "tid": 35568, "ts": 5345301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5345473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c59d0", "tid": 35568, "ts": 5345596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5345766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3af0", "tid": 35568, "ts": 5345888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c50e0", "tid": 35568, "ts": 5346184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6120", "tid": 35568, "ts": 5346479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c40a0", "tid": 35568, "ts": 5346774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c51b0", "tid": 35568, "ts": 5347069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5347241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4170", "tid": 35568, "ts": 5347364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5347537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5760", "tid": 35568, "ts": 5347660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5347831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5aa0", "tid": 35568, "ts": 5347954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5348125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c55c0", "tid": 35568, "ts": 5348248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5348421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c43e0", "tid": 35568, "ts": 5348557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5348729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3fd0", "tid": 35568, "ts": 5348852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5420", "tid": 35568, "ts": 5349146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3e30", "tid": 35568, "ts": 5349441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4650", "tid": 35568, "ts": 5349735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3a20", "tid": 35568, "ts": 5350030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5350202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5d10", "tid": 35568, "ts": 5350325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5350496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4a60", "tid": 35568, "ts": 5350619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5350791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4310", "tid": 35568, "ts": 5350913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c62c0", "tid": 35568, "ts": 5351208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c44b0", "tid": 35568, "ts": 5351501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4e70", "tid": 35568, "ts": 5351795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5280", "tid": 35568, "ts": 5352145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5352318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c33a0", "tid": 35568, "ts": 5352441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5352611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4f40", "tid": 35568, "ts": 5352734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5352906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6050", "tid": 35568, "ts": 5353028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5353200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5b70", "tid": 35568, "ts": 5353322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5353494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c47f0", "tid": 35568, "ts": 5353616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5353787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4580", "tid": 35568, "ts": 5353910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c54f0", "tid": 35568, "ts": 5354205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c61f0", "tid": 35568, "ts": 5354498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c48c0", "tid": 35568, "ts": 5354793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5c40", "tid": 35568, "ts": 5355086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5355257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5350", "tid": 35568, "ts": 5355380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5355552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4990", "tid": 35568, "ts": 5355675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5355845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6390", "tid": 35568, "ts": 5355968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5356140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4b30", "tid": 35568, "ts": 5356263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5356435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5de0", "tid": 35568, "ts": 5356557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5356729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5690", "tid": 35568, "ts": 5356851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4c00", "tid": 35568, "ts": 5357146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5830", "tid": 35568, "ts": 5357440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5900", "tid": 35568, "ts": 5357733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5eb0", "tid": 35568, "ts": 5358029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5358201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5f80", "tid": 35568, "ts": 5358323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5358495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4cd0", "tid": 35568, "ts": 5358617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5358789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6460", "tid": 35568, "ts": 5358911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3130", "tid": 35568, "ts": 5359205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3f00", "tid": 35568, "ts": 5359499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3200", "tid": 35568, "ts": 5359792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c32d0", "tid": 35568, "ts": 5360085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5360257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3470", "tid": 35568, "ts": 5360380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5360550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3bc0", "tid": 35568, "ts": 5360673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5360844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4da0", "tid": 35568, "ts": 5360966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5361138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3540", "tid": 35568, "ts": 5361261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5361431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3610", "tid": 35568, "ts": 5361554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5361725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c36e0", "tid": 35568, "ts": 5361848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c37b0", "tid": 35568, "ts": 5362141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3880", "tid": 35568, "ts": 5362435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3c90", "tid": 35568, "ts": 5362729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3950", "tid": 35568, "ts": 5363024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5363196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3d60", "tid": 35568, "ts": 5363318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5363490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c66d0", "tid": 35568, "ts": 5363613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5363784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c88f0", "tid": 35568, "ts": 5363908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5364128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8b60", "tid": 35568, "ts": 5364253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5364425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6530", "tid": 35568, "ts": 5364548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5364719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7a50", "tid": 35568, "ts": 5364842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8c30", "tid": 35568, "ts": 5365139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6600", "tid": 35568, "ts": 5365434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c74a0", "tid": 35568, "ts": 5365729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8410", "tid": 35568, "ts": 5366023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5366195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7640", "tid": 35568, "ts": 5366318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5366490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9450", "tid": 35568, "ts": 5366612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5366784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8ea0", "tid": 35568, "ts": 5366906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8f70", "tid": 35568, "ts": 5367200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c89c0", "tid": 35568, "ts": 5367495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9040", "tid": 35568, "ts": 5367788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c67a0", "tid": 35568, "ts": 5368082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5368254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6ef0", "tid": 35568, "ts": 5368377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5368549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8d00", "tid": 35568, "ts": 5368671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5368880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9860", "tid": 35568, "ts": 5369007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5369179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7cc0", "tid": 35568, "ts": 5369303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5369475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7230", "tid": 35568, "ts": 5369598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5369769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8a90", "tid": 35568, "ts": 5369892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7160", "tid": 35568, "ts": 5370187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7300", "tid": 35568, "ts": 5370528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8270", "tid": 35568, "ts": 5370822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6ae0", "tid": 35568, "ts": 5371118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5371289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9110", "tid": 35568, "ts": 5371412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5371583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c80d0", "tid": 35568, "ts": 5371706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5371877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9790", "tid": 35568, "ts": 5372000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5372172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6870", "tid": 35568, "ts": 5372295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5372467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9520", "tid": 35568, "ts": 5372590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5372762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8dd0", "tid": 35568, "ts": 5372885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5373056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8680", "tid": 35568, "ts": 5373240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5373412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6940", "tid": 35568, "ts": 5373535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5373706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c73d0", "tid": 35568, "ts": 5373828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7b20", "tid": 35568, "ts": 5374123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7d90", "tid": 35568, "ts": 5374417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c95f0", "tid": 35568, "ts": 5374711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6a10", "tid": 35568, "ts": 5375005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5375176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8000", "tid": 35568, "ts": 5375298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5375469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7e60", "tid": 35568, "ts": 5375590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5375762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9380", "tid": 35568, "ts": 5375885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6c80", "tid": 35568, "ts": 5376179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c96c0", "tid": 35568, "ts": 5376474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c91e0", "tid": 35568, "ts": 5376768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6bb0", "tid": 35568, "ts": 5377064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5377236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7090", "tid": 35568, "ts": 5377358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5377530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7570", "tid": 35568, "ts": 5377653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5377824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8340", "tid": 35568, "ts": 5377946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5378118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7710", "tid": 35568, "ts": 5378241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5378412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c92b0", "tid": 35568, "ts": 5378535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5378706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6d50", "tid": 35568, "ts": 5378829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6e20", "tid": 35568, "ts": 5379123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c77e0", "tid": 35568, "ts": 5379419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6fc0", "tid": 35568, "ts": 5379747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c78b0", "tid": 35568, "ts": 5380072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5380243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c84e0", "tid": 35568, "ts": 5380367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5380538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7980", "tid": 35568, "ts": 5380661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5380832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7bf0", "tid": 35568, "ts": 5380954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5381126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7f30", "tid": 35568, "ts": 5381249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5381420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c81a0", "tid": 35568, "ts": 5381543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5381715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c85b0", "tid": 35568, "ts": 5381838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8750", "tid": 35568, "ts": 5382131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8820", "tid": 35568, "ts": 5382425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc1d0", "tid": 35568, "ts": 5382720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbdc0", "tid": 35568, "ts": 5383015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5383186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cba80", "tid": 35568, "ts": 5383308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5383479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbcf0", "tid": 35568, "ts": 5383603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5383774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb8e0", "tid": 35568, "ts": 5383896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb5a0", "tid": 35568, "ts": 5384190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb400", "tid": 35568, "ts": 5384483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccc60", "tid": 35568, "ts": 5384777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9930", "tid": 35568, "ts": 5385070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5385242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbe90", "tid": 35568, "ts": 5385365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5385536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbf60", "tid": 35568, "ts": 5385658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5385830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca560", "tid": 35568, "ts": 5385953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5386124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbb50", "tid": 35568, "ts": 5386247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5386420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc030", "tid": 35568, "ts": 5386543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5386714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbc20", "tid": 35568, "ts": 5386837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc100", "tid": 35568, "ts": 5387132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc920", "tid": 35568, "ts": 5387427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca630", "tid": 35568, "ts": 5387722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9fb0", "tid": 35568, "ts": 5388016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5388188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca3c0", "tid": 35568, "ts": 5388311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5388482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cad80", "tid": 35568, "ts": 5388605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5388776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33caff0", "tid": 35568, "ts": 5388899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca7d0", "tid": 35568, "ts": 5389193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb190", "tid": 35568, "ts": 5389488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc9f0", "tid": 35568, "ts": 5389781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca080", "tid": 35568, "ts": 5390076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5390248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc2a0", "tid": 35568, "ts": 5390371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5390543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33caf20", "tid": 35568, "ts": 5390665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5390836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc370", "tid": 35568, "ts": 5390959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5391131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca700", "tid": 35568, "ts": 5391254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5391425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc440", "tid": 35568, "ts": 5391549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5391720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cabe0", "tid": 35568, "ts": 5391842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb740", "tid": 35568, "ts": 5392136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb810", "tid": 35568, "ts": 5392430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc510", "tid": 35568, "ts": 5392725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc5e0", "tid": 35568, "ts": 5393018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5393188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9ba0", "tid": 35568, "ts": 5393312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5393483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc6b0", "tid": 35568, "ts": 5393606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5393778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9d40", "tid": 35568, "ts": 5393901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccac0", "tid": 35568, "ts": 5394195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca8a0", "tid": 35568, "ts": 5394488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9a00", "tid": 35568, "ts": 5394805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb9b0", "tid": 35568, "ts": 5395100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5395272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cacb0", "tid": 35568, "ts": 5395545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5395860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca970", "tid": 35568, "ts": 5396052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5396290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc780", "tid": 35568, "ts": 5396443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5396616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca220", "tid": 35568, "ts": 5396810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5396983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc850", "tid": 35568, "ts": 5397109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5397281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca150", "tid": 35568, "ts": 5397406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5397578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cae50", "tid": 35568, "ts": 5397702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5397874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca2f0", "tid": 35568, "ts": 5397999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5398172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9e10", "tid": 35568, "ts": 5398295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5398467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccb90", "tid": 35568, "ts": 5398591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5398762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33caa40", "tid": 35568, "ts": 5398886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9ad0", "tid": 35568, "ts": 5399182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9c70", "tid": 35568, "ts": 5399478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9ee0", "tid": 35568, "ts": 5399773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cab10", "tid": 35568, "ts": 5400068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5400242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca490", "tid": 35568, "ts": 5400366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5400538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb0c0", "tid": 35568, "ts": 5400661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5400833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb260", "tid": 35568, "ts": 5400957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5401129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb330", "tid": 35568, "ts": 5401252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5401424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb4d0", "tid": 35568, "ts": 5401547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5401719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb670", "tid": 35568, "ts": 5401843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfec0", "tid": 35568, "ts": 5402138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd3b0", "tid": 35568, "ts": 5402433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdbd0", "tid": 35568, "ts": 5402726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf1c0", "tid": 35568, "ts": 5403022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5403192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cde40", "tid": 35568, "ts": 5403357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5403530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cff90", "tid": 35568, "ts": 5403655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5403869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfab0", "tid": 35568, "ts": 5403994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5404167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce9a0", "tid": 35568, "ts": 5404290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5404462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ceb40", "tid": 35568, "ts": 5404585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5404757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce250", "tid": 35568, "ts": 5404880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccd30", "tid": 35568, "ts": 5405175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf5d0", "tid": 35568, "ts": 5405469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd480", "tid": 35568, "ts": 5405763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd550", "tid": 35568, "ts": 5406058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5406229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce320", "tid": 35568, "ts": 5406352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5406524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfb80", "tid": 35568, "ts": 5406647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5406819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfdf0", "tid": 35568, "ts": 5406943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cea70", "tid": 35568, "ts": 5407238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cee80", "tid": 35568, "ts": 5407533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cce00", "tid": 35568, "ts": 5407828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce3f0", "tid": 35568, "ts": 5408122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5408294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce4c0", "tid": 35568, "ts": 5408417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5408590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdb00", "tid": 35568, "ts": 5408713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5408884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfc50", "tid": 35568, "ts": 5409007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5409180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0060", "tid": 35568, "ts": 5409303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5409475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cced0", "tid": 35568, "ts": 5409598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5409769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfd20", "tid": 35568, "ts": 5409893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd620", "tid": 35568, "ts": 5410188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf6a0", "tid": 35568, "ts": 5410484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccfa0", "tid": 35568, "ts": 5410779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd6f0", "tid": 35568, "ts": 5411141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5411313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cec10", "tid": 35568, "ts": 5411448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5411701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf770", "tid": 35568, "ts": 5411848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd210", "tid": 35568, "ts": 5412143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce0b0", "tid": 35568, "ts": 5412438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf840", "tid": 35568, "ts": 5412733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf0f0", "tid": 35568, "ts": 5413027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5413200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cef50", "tid": 35568, "ts": 5413322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5413494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf290", "tid": 35568, "ts": 5413617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5413788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd960", "tid": 35568, "ts": 5413936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf020", "tid": 35568, "ts": 5414232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cece0", "tid": 35568, "ts": 5414527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce590", "tid": 35568, "ts": 5414821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce660", "tid": 35568, "ts": 5415115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5415286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd070", "tid": 35568, "ts": 5415470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5415654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd140", "tid": 35568, "ts": 5415778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5415950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf360", "tid": 35568, "ts": 5416073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5416244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd2e0", "tid": 35568, "ts": 5416367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5416538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce730", "tid": 35568, "ts": 5416662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5416833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cedb0", "tid": 35568, "ts": 5416956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5417127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf430", "tid": 35568, "ts": 5417250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5417421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf500", "tid": 35568, "ts": 5417544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5417715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdf10", "tid": 35568, "ts": 5417838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd7c0", "tid": 35568, "ts": 5418133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd890", "tid": 35568, "ts": 5418426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf910", "tid": 35568, "ts": 5418731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdca0", "tid": 35568, "ts": 5419064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5419421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf9e0", "tid": 35568, "ts": 5419544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5419715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cda30", "tid": 35568, "ts": 5419838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdd70", "tid": 35568, "ts": 5420134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdfe0", "tid": 35568, "ts": 5420484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce180", "tid": 35568, "ts": 5420781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce800", "tid": 35568, "ts": 5421076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5421247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce8d0", "tid": 35568, "ts": 5421370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5421542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0bc0", "tid": 35568, "ts": 5421664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5421836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1cd0", "tid": 35568, "ts": 5421960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5422131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d14b0", "tid": 35568, "ts": 5422255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5422426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3390", "tid": 35568, "ts": 5422549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5422720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2760", "tid": 35568, "ts": 5422844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1580", "tid": 35568, "ts": 5423139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d02d0", "tid": 35568, "ts": 5423433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d24f0", "tid": 35568, "ts": 5423727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0af0", "tid": 35568, "ts": 5424023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5424195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d29d0", "tid": 35568, "ts": 5424318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5424490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0470", "tid": 35568, "ts": 5424613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5424785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0fd0", "tid": 35568, "ts": 5424908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5425080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2420", "tid": 35568, "ts": 5425215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5425425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2830", "tid": 35568, "ts": 5425548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5425720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1650", "tid": 35568, "ts": 5425843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0540", "tid": 35568, "ts": 5426138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d25c0", "tid": 35568, "ts": 5426455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2900", "tid": 35568, "ts": 5426815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2c40", "tid": 35568, "ts": 5427111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5427283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2690", "tid": 35568, "ts": 5427406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5427578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0f00", "tid": 35568, "ts": 5427702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5427874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0e30", "tid": 35568, "ts": 5427997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5428168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2aa0", "tid": 35568, "ts": 5428291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5428463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2280", "tid": 35568, "ts": 5428586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5428757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2b70", "tid": 35568, "ts": 5428880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1f40", "tid": 35568, "ts": 5429176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0610", "tid": 35568, "ts": 5429471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2d10", "tid": 35568, "ts": 5429766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1720", "tid": 35568, "ts": 5430061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5430234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d18c0", "tid": 35568, "ts": 5430357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5430528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2010", "tid": 35568, "ts": 5430652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5430823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0950", "tid": 35568, "ts": 5430947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5431117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1240", "tid": 35568, "ts": 5431241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5431412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3460", "tid": 35568, "ts": 5431535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5431706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2de0", "tid": 35568, "ts": 5431829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d20e0", "tid": 35568, "ts": 5432124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2eb0", "tid": 35568, "ts": 5432419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1e70", "tid": 35568, "ts": 5432714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2350", "tid": 35568, "ts": 5433009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5433180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2f80", "tid": 35568, "ts": 5433303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5433475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1c00", "tid": 35568, "ts": 5433599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5433770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d10a0", "tid": 35568, "ts": 5433894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d21b0", "tid": 35568, "ts": 5434189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3050", "tid": 35568, "ts": 5434485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1a60", "tid": 35568, "ts": 5434780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3120", "tid": 35568, "ts": 5435076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5435248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d31f0", "tid": 35568, "ts": 5435371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5435543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1990", "tid": 35568, "ts": 5435666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5435837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d32c0", "tid": 35568, "ts": 5435960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5436132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d06e0", "tid": 35568, "ts": 5436255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5436427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0130", "tid": 35568, "ts": 5436593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5436766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0200", "tid": 35568, "ts": 5436889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d07b0", "tid": 35568, "ts": 5437183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d03a0", "tid": 35568, "ts": 5437477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0880", "tid": 35568, "ts": 5437773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0a20", "tid": 35568, "ts": 5438068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5438240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0d60", "tid": 35568, "ts": 5438363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5438534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0c90", "tid": 35568, "ts": 5438658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5438829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d17f0", "tid": 35568, "ts": 5438952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5439124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1170", "tid": 35568, "ts": 5439247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5439419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1310", "tid": 35568, "ts": 5439543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5439715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d13e0", "tid": 35568, "ts": 5439839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1b30", "tid": 35568, "ts": 5440133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1da0", "tid": 35568, "ts": 5440427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3fc0", "tid": 35568, "ts": 5440722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5c30", "tid": 35568, "ts": 5441019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5441190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5dd0", "tid": 35568, "ts": 5441314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5441486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4090", "tid": 35568, "ts": 5441609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5441781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4300", "tid": 35568, "ts": 5441904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5442075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5270", "tid": 35568, "ts": 5442233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5442434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d43d0", "tid": 35568, "ts": 5442558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5442730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5000", "tid": 35568, "ts": 5442854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5410", "tid": 35568, "ts": 5443150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3e20", "tid": 35568, "ts": 5443446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4160", "tid": 35568, "ts": 5443740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3bb0", "tid": 35568, "ts": 5444034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5444206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4a50", "tid": 35568, "ts": 5444329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5444501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d66c0", "tid": 35568, "ts": 5444625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5444797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4230", "tid": 35568, "ts": 5444919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d44a0", "tid": 35568, "ts": 5445215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d59c0", "tid": 35568, "ts": 5445508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d58f0", "tid": 35568, "ts": 5445804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5b60", "tid": 35568, "ts": 5446101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5446271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5a90", "tid": 35568, "ts": 5446395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5446566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d62b0", "tid": 35568, "ts": 5446690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5446861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3940", "tid": 35568, "ts": 5446985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5447157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5d00", "tid": 35568, "ts": 5447280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5447452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d47e0", "tid": 35568, "ts": 5447576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5447747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3870", "tid": 35568, "ts": 5447871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5ea0", "tid": 35568, "ts": 5448166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6790", "tid": 35568, "ts": 5448461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5f70", "tid": 35568, "ts": 5448756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6040", "tid": 35568, "ts": 5449051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5449224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6380", "tid": 35568, "ts": 5449347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5449519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6110", "tid": 35568, "ts": 5449642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5449814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3d50", "tid": 35568, "ts": 5449937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d48b0", "tid": 35568, "ts": 5450233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5340", "tid": 35568, "ts": 5450528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3ef0", "tid": 35568, "ts": 5450823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3c80", "tid": 35568, "ts": 5451118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5451291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d61e0", "tid": 35568, "ts": 5451414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5451586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6450", "tid": 35568, "ts": 5451710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5451882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4570", "tid": 35568, "ts": 5452006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5452179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6520", "tid": 35568, "ts": 5452302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5452474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d54e0", "tid": 35568, "ts": 5452597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5452769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4640", "tid": 35568, "ts": 5452892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d65f0", "tid": 35568, "ts": 5453187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6860", "tid": 35568, "ts": 5453483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4980", "tid": 35568, "ts": 5453779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3a10", "tid": 35568, "ts": 5454074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5454246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3530", "tid": 35568, "ts": 5454369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5454541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4d90", "tid": 35568, "ts": 5454664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5454834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3600", "tid": 35568, "ts": 5454958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5455130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4b20", "tid": 35568, "ts": 5455254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5455426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4710", "tid": 35568, "ts": 5455549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5455721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4bf0", "tid": 35568, "ts": 5455844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d36d0", "tid": 35568, "ts": 5456139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d50d0", "tid": 35568, "ts": 5456434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d37a0", "tid": 35568, "ts": 5456728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4cc0", "tid": 35568, "ts": 5457023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5457194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4e60", "tid": 35568, "ts": 5457319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5457490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4f30", "tid": 35568, "ts": 5457614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5457786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d51a0", "tid": 35568, "ts": 5457993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5458165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3ae0", "tid": 35568, "ts": 5458289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5458461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d55b0", "tid": 35568, "ts": 5458585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5458759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5680", "tid": 35568, "ts": 5458882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5750", "tid": 35568, "ts": 5459178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5820", "tid": 35568, "ts": 5459473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6d40", "tid": 35568, "ts": 5459767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8c20", "tid": 35568, "ts": 5460062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5460233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9850", "tid": 35568, "ts": 5460357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5460529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6fb0", "tid": 35568, "ts": 5460653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5460825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8810", "tid": 35568, "ts": 5460949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5461120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9370", "tid": 35568, "ts": 5461243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5461416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d91d0", "tid": 35568, "ts": 5461540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5461712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8cf0", "tid": 35568, "ts": 5461835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d92a0", "tid": 35568, "ts": 5462130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9c60", "tid": 35568, "ts": 5462426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d73c0", "tid": 35568, "ts": 5462721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7080", "tid": 35568, "ts": 5463016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5463187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7cb0", "tid": 35568, "ts": 5463311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5463484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7490", "tid": 35568, "ts": 5463607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5463778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d88e0", "tid": 35568, "ts": 5463902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7560", "tid": 35568, "ts": 5464197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d84d0", "tid": 35568, "ts": 5464492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8dc0", "tid": 35568, "ts": 5464787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7d80", "tid": 35568, "ts": 5465083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5465255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9780", "tid": 35568, "ts": 5465378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5465550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8670", "tid": 35568, "ts": 5465673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5465845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d77d0", "tid": 35568, "ts": 5465969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5466141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9440", "tid": 35568, "ts": 5466264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5466436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6930", "tid": 35568, "ts": 5466560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5466731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7630", "tid": 35568, "ts": 5466855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6ba0", "tid": 35568, "ts": 5467150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8e90", "tid": 35568, "ts": 5467445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7700", "tid": 35568, "ts": 5467741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d89b0", "tid": 35568, "ts": 5468036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5468208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8400", "tid": 35568, "ts": 5468332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5468503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6c70", "tid": 35568, "ts": 5468627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5468798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8f60", "tid": 35568, "ts": 5468965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5469138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6a00", "tid": 35568, "ts": 5469262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5469434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d78a0", "tid": 35568, "ts": 5469558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5469730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7220", "tid": 35568, "ts": 5469855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9030", "tid": 35568, "ts": 5470150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9b90", "tid": 35568, "ts": 5470445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7970", "tid": 35568, "ts": 5470740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d96b0", "tid": 35568, "ts": 5471035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5471207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9100", "tid": 35568, "ts": 5471331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5471503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9510", "tid": 35568, "ts": 5471627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5471799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d85a0", "tid": 35568, "ts": 5471922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6ad0", "tid": 35568, "ts": 5472218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7a40", "tid": 35568, "ts": 5472512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9920", "tid": 35568, "ts": 5472807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7b10", "tid": 35568, "ts": 5473101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5473272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7be0", "tid": 35568, "ts": 5473396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5473655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d95e0", "tid": 35568, "ts": 5473780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5473953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6e10", "tid": 35568, "ts": 5474077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5474288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6ee0", "tid": 35568, "ts": 5474413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5474586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7f20", "tid": 35568, "ts": 5474710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5474882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7e50", "tid": 35568, "ts": 5475006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5475177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8a80", "tid": 35568, "ts": 5475302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5475474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8b50", "tid": 35568, "ts": 5475597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5475769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d99f0", "tid": 35568, "ts": 5475892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5476064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8260", "tid": 35568, "ts": 5476239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5476411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7ff0", "tid": 35568, "ts": 5476541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5476713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8740", "tid": 35568, "ts": 5476838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7150", "tid": 35568, "ts": 5477134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d80c0", "tid": 35568, "ts": 5477429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9ac0", "tid": 35568, "ts": 5477725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d72f0", "tid": 35568, "ts": 5478021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5478192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8190", "tid": 35568, "ts": 5478316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5478488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8330", "tid": 35568, "ts": 5478611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5478783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da140", "tid": 35568, "ts": 5478907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da480", "tid": 35568, "ts": 5479203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc5d0", "tid": 35568, "ts": 5479498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dab00", "tid": 35568, "ts": 5479794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db320", "tid": 35568, "ts": 5480088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5480260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc1c0", "tid": 35568, "ts": 5480384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5480555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc9e0", "tid": 35568, "ts": 5480678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5480850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcd20", "tid": 35568, "ts": 5480973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5481145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd060", "tid": 35568, "ts": 5481268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5481440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da210", "tid": 35568, "ts": 5481564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5481736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da960", "tid": 35568, "ts": 5481859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dabd0", "tid": 35568, "ts": 5482154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da890", "tid": 35568, "ts": 5482510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db3f0", "tid": 35568, "ts": 5482805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9ed0", "tid": 35568, "ts": 5483102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5483273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da070", "tid": 35568, "ts": 5483396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5483567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da620", "tid": 35568, "ts": 5483691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5483863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33daa30", "tid": 35568, "ts": 5483986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5484157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33daca0", "tid": 35568, "ts": 5484280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5484453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dad70", "tid": 35568, "ts": 5484576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5484748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc020", "tid": 35568, "ts": 5484871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc6a0", "tid": 35568, "ts": 5485167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dae40", "tid": 35568, "ts": 5485461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbe80", "tid": 35568, "ts": 5485756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da550", "tid": 35568, "ts": 5486052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5486224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc770", "tid": 35568, "ts": 5486347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5486518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da2e0", "tid": 35568, "ts": 5486642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5486897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db250", "tid": 35568, "ts": 5487070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5487242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9fa0", "tid": 35568, "ts": 5487366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5487538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33daf10", "tid": 35568, "ts": 5487661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5487833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db4c0", "tid": 35568, "ts": 5487957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5488129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dba70", "tid": 35568, "ts": 5488313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5488485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc500", "tid": 35568, "ts": 5488611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5488785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbf50", "tid": 35568, "ts": 5488908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5489120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbb40", "tid": 35568, "ts": 5489290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5489463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dafe0", "tid": 35568, "ts": 5489587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5489759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc290", "tid": 35568, "ts": 5489882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcdf0", "tid": 35568, "ts": 5490178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db0b0", "tid": 35568, "ts": 5490475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbc10", "tid": 35568, "ts": 5490769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db590", "tid": 35568, "ts": 5491065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5491238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db180", "tid": 35568, "ts": 5491361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5491533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db660", "tid": 35568, "ts": 5491657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5491828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da3b0", "tid": 35568, "ts": 5491952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5492123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da6f0", "tid": 35568, "ts": 5492248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5492420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db800", "tid": 35568, "ts": 5492544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5492717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db730", "tid": 35568, "ts": 5492840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db8d0", "tid": 35568, "ts": 5493134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db9a0", "tid": 35568, "ts": 5493430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc0f0", "tid": 35568, "ts": 5493726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc360", "tid": 35568, "ts": 5494021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5494192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da7c0", "tid": 35568, "ts": 5494316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5494511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbdb0", "tid": 35568, "ts": 5494634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5494806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbce0", "tid": 35568, "ts": 5494929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc430", "tid": 35568, "ts": 5495224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcb80", "tid": 35568, "ts": 5495520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc840", "tid": 35568, "ts": 5495814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc910", "tid": 35568, "ts": 5496110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5496281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcab0", "tid": 35568, "ts": 5496405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5496576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcc50", "tid": 35568, "ts": 5496699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5496871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcec0", "tid": 35568, "ts": 5496995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5497167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcf90", "tid": 35568, "ts": 5497291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5497463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9d30", "tid": 35568, "ts": 5497586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5497758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9e00", "tid": 35568, "ts": 5497881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df900", "tid": 35568, "ts": 5498176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dda20", "tid": 35568, "ts": 5498471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0050", "tid": 35568, "ts": 5498767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df760", "tid": 35568, "ts": 5499062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5499233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de580", "tid": 35568, "ts": 5499357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5499529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddf00", "tid": 35568, "ts": 5499652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5499825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df350", "tid": 35568, "ts": 5499948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5500119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de720", "tid": 35568, "ts": 5500243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5500415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd2d0", "tid": 35568, "ts": 5500539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5500711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd470", "tid": 35568, "ts": 5500834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddaf0", "tid": 35568, "ts": 5501129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df010", "tid": 35568, "ts": 5501424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfb70", "tid": 35568, "ts": 5501718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e01f0", "tid": 35568, "ts": 5502063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5502236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de7f0", "tid": 35568, "ts": 5502384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5502556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df5c0", "tid": 35568, "ts": 5502679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5502850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddd60", "tid": 35568, "ts": 5502973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5503145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddc90", "tid": 35568, "ts": 5503269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5503440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df830", "tid": 35568, "ts": 5503563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5503735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de650", "tid": 35568, "ts": 5503859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5504031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd3a0", "tid": 35568, "ts": 5504155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5504328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33deda0", "tid": 35568, "ts": 5504451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5504625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd7b0", "tid": 35568, "ts": 5504834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5505087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd610", "tid": 35568, "ts": 5505279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5505506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de8c0", "tid": 35568, "ts": 5505735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5505907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfc40", "tid": 35568, "ts": 5506031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5506204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df690", "tid": 35568, "ts": 5506328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5506500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd540", "tid": 35568, "ts": 5506623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5506794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dee70", "tid": 35568, "ts": 5506917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddbc0", "tid": 35568, "ts": 5507212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0120", "tid": 35568, "ts": 5507507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df9d0", "tid": 35568, "ts": 5507801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dde30", "tid": 35568, "ts": 5508097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5508270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e02c0", "tid": 35568, "ts": 5508393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5508565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de4b0", "tid": 35568, "ts": 5508688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5508858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33deb30", "tid": 35568, "ts": 5508981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5509153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de990", "tid": 35568, "ts": 5509277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5509450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dec00", "tid": 35568, "ts": 5509573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5509745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfaa0", "tid": 35568, "ts": 5509868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33def40", "tid": 35568, "ts": 5510164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd950", "tid": 35568, "ts": 5510457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfd10", "tid": 35568, "ts": 5510754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de170", "tid": 35568, "ts": 5511050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5511222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfde0", "tid": 35568, "ts": 5511345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5511518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dea60", "tid": 35568, "ts": 5511641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5511813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0390", "tid": 35568, "ts": 5511936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33decd0", "tid": 35568, "ts": 5512231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0460", "tid": 35568, "ts": 5512528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df280", "tid": 35568, "ts": 5512822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd130", "tid": 35568, "ts": 5513118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5513289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfeb0", "tid": 35568, "ts": 5513413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5513586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd200", "tid": 35568, "ts": 5513710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5513881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd6e0", "tid": 35568, "ts": 5514004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5514176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df0e0", "tid": 35568, "ts": 5514300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5514471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df1b0", "tid": 35568, "ts": 5514594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5514766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df420", "tid": 35568, "ts": 5514889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddfd0", "tid": 35568, "ts": 5515183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df4f0", "tid": 35568, "ts": 5515479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd880", "tid": 35568, "ts": 5515775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dff80", "tid": 35568, "ts": 5516070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5516243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de0a0", "tid": 35568, "ts": 5516366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5516539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de240", "tid": 35568, "ts": 5516661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5516834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de310", "tid": 35568, "ts": 5516957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5517129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de3e0", "tid": 35568, "ts": 5517252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5517424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0530", "tid": 35568, "ts": 5517548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5517719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1a50", "tid": 35568, "ts": 5517843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2680", "tid": 35568, "ts": 5518138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2410", "tid": 35568, "ts": 5518432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0e20", "tid": 35568, "ts": 5518727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1300", "tid": 35568, "ts": 5519023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5519194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0bb0", "tid": 35568, "ts": 5519317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5519489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0870", "tid": 35568, "ts": 5519612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5519783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e29c0", "tid": 35568, "ts": 5519907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5520079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2dd0", "tid": 35568, "ts": 5520202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5520463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e35f0", "tid": 35568, "ts": 5520636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5520810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0c80", "tid": 35568, "ts": 5520934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1d90", "tid": 35568, "ts": 5521230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3520", "tid": 35568, "ts": 5521525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e13d0", "tid": 35568, "ts": 5521821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0d50", "tid": 35568, "ts": 5522117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5522289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0a10", "tid": 35568, "ts": 5522413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5522585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2270", "tid": 35568, "ts": 5522737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5522909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0fc0", "tid": 35568, "ts": 5523034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5523205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2ea0", "tid": 35568, "ts": 5523329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5523502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e36c0", "tid": 35568, "ts": 5523625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5523797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2a90", "tid": 35568, "ts": 5523920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0ef0", "tid": 35568, "ts": 5524216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1b20", "tid": 35568, "ts": 5524511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2750", "tid": 35568, "ts": 5524806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3450", "tid": 35568, "ts": 5525102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5525275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2340", "tid": 35568, "ts": 5525398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5525570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e20d0", "tid": 35568, "ts": 5525693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5525865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2820", "tid": 35568, "ts": 5525989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5526160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e28f0", "tid": 35568, "ts": 5526283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5526454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2b60", "tid": 35568, "ts": 5526578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5526749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3380", "tid": 35568, "ts": 5526873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1160", "tid": 35568, "ts": 5527168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0940", "tid": 35568, "ts": 5527463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1230", "tid": 35568, "ts": 5527758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e25b0", "tid": 35568, "ts": 5528083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5528345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3790", "tid": 35568, "ts": 5528506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5528677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e21a0", "tid": 35568, "ts": 5528801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5528973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e24e0", "tid": 35568, "ts": 5529096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5529269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1bf0", "tid": 35568, "ts": 5529392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5529564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2c30", "tid": 35568, "ts": 5529688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5529859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2d00", "tid": 35568, "ts": 5529983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5530154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3860", "tid": 35568, "ts": 5530279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5530450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1090", "tid": 35568, "ts": 5530573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5530744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3040", "tid": 35568, "ts": 5530867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0600", "tid": 35568, "ts": 5531162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2f70", "tid": 35568, "ts": 5531458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3110", "tid": 35568, "ts": 5531752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e06d0", "tid": 35568, "ts": 5532049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5532221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e14a0", "tid": 35568, "ts": 5532344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5532516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e31e0", "tid": 35568, "ts": 5532639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5532811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e18b0", "tid": 35568, "ts": 5532935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1570", "tid": 35568, "ts": 5533230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e32b0", "tid": 35568, "ts": 5533525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e07a0", "tid": 35568, "ts": 5533819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1640", "tid": 35568, "ts": 5534115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5534287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1cc0", "tid": 35568, "ts": 5534410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5534582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0ae0", "tid": 35568, "ts": 5534705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5534876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1710", "tid": 35568, "ts": 5535044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5535216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2000", "tid": 35568, "ts": 5535341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5535512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1e60", "tid": 35568, "ts": 5535636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5535809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e17e0", "tid": 35568, "ts": 5535932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5536203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1980", "tid": 35568, "ts": 5536329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5536502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1f30", "tid": 35568, "ts": 5536626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5536798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e65e0", "tid": 35568, "ts": 5536922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5dc0", "tid": 35568, "ts": 5537217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6780", "tid": 35568, "ts": 5537511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4560", "tid": 35568, "ts": 5537806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4e50", "tid": 35568, "ts": 5538101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5538272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4630", "tid": 35568, "ts": 5538395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5538568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e55a0", "tid": 35568, "ts": 5538691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5538864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6510", "tid": 35568, "ts": 5538987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5539159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e58e0", "tid": 35568, "ts": 5539283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5539455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5a80", "tid": 35568, "ts": 5539578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5539751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5260", "tid": 35568, "ts": 5539874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e47d0", "tid": 35568, "ts": 5540168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5c20", "tid": 35568, "ts": 5540463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5cf0", "tid": 35568, "ts": 5540758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5e90", "tid": 35568, "ts": 5541052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5541223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e48a0", "tid": 35568, "ts": 5541347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5541519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5810", "tid": 35568, "ts": 5541642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5541814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6370", "tid": 35568, "ts": 5541937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e59b0", "tid": 35568, "ts": 5542232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5f60", "tid": 35568, "ts": 5542527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4f20", "tid": 35568, "ts": 5542823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5b50", "tid": 35568, "ts": 5543119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5543291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4700", "tid": 35568, "ts": 5543415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5543588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e69f0", "tid": 35568, "ts": 5543712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5543883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4be0", "tid": 35568, "ts": 5544006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5544178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4220", "tid": 35568, "ts": 5544301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5544473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6850", "tid": 35568, "ts": 5544597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5544812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5330", "tid": 35568, "ts": 5544936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4d80", "tid": 35568, "ts": 5545229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4cb0", "tid": 35568, "ts": 5545526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6920", "tid": 35568, "ts": 5545820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6440", "tid": 35568, "ts": 5546116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5546287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4ff0", "tid": 35568, "ts": 5546411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5546582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e50c0", "tid": 35568, "ts": 5546705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5546875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4490", "tid": 35568, "ts": 5546998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5547170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6030", "tid": 35568, "ts": 5547294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5547465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4970", "tid": 35568, "ts": 5547588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5547759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6100", "tid": 35568, "ts": 5547883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e61d0", "tid": 35568, "ts": 5548177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5190", "tid": 35568, "ts": 5548472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e62a0", "tid": 35568, "ts": 5548767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3ad0", "tid": 35568, "ts": 5549062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5549232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3e10", "tid": 35568, "ts": 5549355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5549526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5400", "tid": 35568, "ts": 5549650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5549821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e66b0", "tid": 35568, "ts": 5549945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5550116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6ac0", "tid": 35568, "ts": 5550240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5550412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4a40", "tid": 35568, "ts": 5550536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5550707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4b10", "tid": 35568, "ts": 5550831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e54d0", "tid": 35568, "ts": 5551126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6b90", "tid": 35568, "ts": 5551420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6c60", "tid": 35568, "ts": 5551797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3930", "tid": 35568, "ts": 5552093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5552265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5670", "tid": 35568, "ts": 5552389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5552561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e42f0", "tid": 35568, "ts": 5552685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5552856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3a00", "tid": 35568, "ts": 5552979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5553151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3ba0", "tid": 35568, "ts": 5553274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5553445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3c70", "tid": 35568, "ts": 5553569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5553741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3d40", "tid": 35568, "ts": 5553865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5740", "tid": 35568, "ts": 5554159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3ee0", "tid": 35568, "ts": 5554453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3fb0", "tid": 35568, "ts": 5554748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4080", "tid": 35568, "ts": 5555043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5555215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4150", "tid": 35568, "ts": 5555340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5555511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e43c0", "tid": 35568, "ts": 5555633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5555806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8180", "tid": 35568, "ts": 5555930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5556102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9020", "tid": 35568, "ts": 5556225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5556396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e77c0", "tid": 35568, "ts": 5556578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5556750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e90f0", "tid": 35568, "ts": 5556874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7fe0", "tid": 35568, "ts": 5557169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8b40", "tid": 35568, "ts": 5557463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e95d0", "tid": 35568, "ts": 5557758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9910", "tid": 35568, "ts": 5558054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5558227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e91c0", "tid": 35568, "ts": 5558350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5558522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e88d0", "tid": 35568, "ts": 5558645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5558816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea060", "tid": 35568, "ts": 5558939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7890", "tid": 35568, "ts": 5559236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9840", "tid": 35568, "ts": 5559530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9500", "tid": 35568, "ts": 5559826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9ec0", "tid": 35568, "ts": 5560121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5560292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8e80", "tid": 35568, "ts": 5560415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5560587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9f90", "tid": 35568, "ts": 5560710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5560882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e96a0", "tid": 35568, "ts": 5561006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5561177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8c10", "tid": 35568, "ts": 5561301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5561473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9360", "tid": 35568, "ts": 5561596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5561767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9770", "tid": 35568, "ts": 5561890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8a70", "tid": 35568, "ts": 5562187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e99e0", "tid": 35568, "ts": 5562482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9ab0", "tid": 35568, "ts": 5562777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8ce0", "tid": 35568, "ts": 5563074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5563246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e89a0", "tid": 35568, "ts": 5563370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5563541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6e00", "tid": 35568, "ts": 5563664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5563835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7550", "tid": 35568, "ts": 5563958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5564130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8db0", "tid": 35568, "ts": 5564253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5564425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7960", "tid": 35568, "ts": 5564549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5564720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7a30", "tid": 35568, "ts": 5564845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8f50", "tid": 35568, "ts": 5565141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6ed0", "tid": 35568, "ts": 5565436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7e40", "tid": 35568, "ts": 5565731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7480", "tid": 35568, "ts": 5566026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5566198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6fa0", "tid": 35568, "ts": 5566322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5566494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9b80", "tid": 35568, "ts": 5566617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5566788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6d30", "tid": 35568, "ts": 5566912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5567083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9430", "tid": 35568, "ts": 5567249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5567539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7d70", "tid": 35568, "ts": 5567666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5567881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9290", "tid": 35568, "ts": 5568012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5568183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9c50", "tid": 35568, "ts": 5568308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5568481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9d20", "tid": 35568, "ts": 5568667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5568839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7620", "tid": 35568, "ts": 5568963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5569136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7210", "tid": 35568, "ts": 5569260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5569432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8800", "tid": 35568, "ts": 5569556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5569727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8250", "tid": 35568, "ts": 5569851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8320", "tid": 35568, "ts": 5570145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9df0", "tid": 35568, "ts": 5570441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7070", "tid": 35568, "ts": 5570737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e72e0", "tid": 35568, "ts": 5571032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5571204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7140", "tid": 35568, "ts": 5571328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5571501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e73b0", "tid": 35568, "ts": 5571624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5571795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e83f0", "tid": 35568, "ts": 5571918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e76f0", "tid": 35568, "ts": 5572212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7b00", "tid": 35568, "ts": 5572508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7bd0", "tid": 35568, "ts": 5572802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7ca0", "tid": 35568, "ts": 5573097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5573268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7f10", "tid": 35568, "ts": 5573392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5573562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e80b0", "tid": 35568, "ts": 5573686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5573858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e84c0", "tid": 35568, "ts": 5573981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5574154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8590", "tid": 35568, "ts": 5574277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5574449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8660", "tid": 35568, "ts": 5574572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5574743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8730", "tid": 35568, "ts": 5574866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea7b0", "tid": 35568, "ts": 5575161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea540", "tid": 35568, "ts": 5575508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea3a0", "tid": 35568, "ts": 5575803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea610", "tid": 35568, "ts": 5576097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5576269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed460", "tid": 35568, "ts": 5576393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5576564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb3e0", "tid": 35568, "ts": 5576688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5576860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebcd0", "tid": 35568, "ts": 5576984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5577155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec4f0", "tid": 35568, "ts": 5577279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5577450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea880", "tid": 35568, "ts": 5577574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5577745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed2c0", "tid": 35568, "ts": 5577869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec760", "tid": 35568, "ts": 5578164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eceb0", "tid": 35568, "ts": 5578460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb4b0", "tid": 35568, "ts": 5578753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea950", "tid": 35568, "ts": 5579048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5579218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec900", "tid": 35568, "ts": 5579396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5579569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 5579994, "pid": 35104, "args": { "Heap": { "SizeInBytes": 134217728, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a33ec280", "tid": 35568, "ts": 5580010, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a33ec280", "tid": 35568, "ts": 5580041, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 134217728, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea6e0", "tid": 35568, "ts": 5580168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5580413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec830", "tid": 35568, "ts": 5580645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5580875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb8c0", "tid": 35568, "ts": 5581002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5581185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebf40", "tid": 35568, "ts": 5581311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5581484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb650", "tid": 35568, "ts": 5581609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5581782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eaa20", "tid": 35568, "ts": 5581973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5582145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea470", "tid": 35568, "ts": 5582270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5582443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eaaf0", "tid": 35568, "ts": 5582568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5582740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eabc0", "tid": 35568, "ts": 5582958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5583189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb240", "tid": 35568, "ts": 5583313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5583486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed390", "tid": 35568, "ts": 5583610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5583782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eac90", "tid": 35568, "ts": 5583906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec1b0", "tid": 35568, "ts": 5584201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea130", "tid": 35568, "ts": 5584496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea2d0", "tid": 35568, "ts": 5584821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecc40", "tid": 35568, "ts": 5585116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5585288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebda0", "tid": 35568, "ts": 5585411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5585583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ead60", "tid": 35568, "ts": 5585707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5585879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec9d0", "tid": 35568, "ts": 5586003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5586240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecaa0", "tid": 35568, "ts": 5586366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5586543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eae30", "tid": 35568, "ts": 5586668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5586848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eafd0", "tid": 35568, "ts": 5586982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5587155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec010", "tid": 35568, "ts": 5587279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5587453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eaf00", "tid": 35568, "ts": 5587577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5587749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec5c0", "tid": 35568, "ts": 5587873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecb70", "tid": 35568, "ts": 5588169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecd10", "tid": 35568, "ts": 5588465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebe70", "tid": 35568, "ts": 5588760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb0a0", "tid": 35568, "ts": 5589055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5589226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb170", "tid": 35568, "ts": 5589349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5589521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb720", "tid": 35568, "ts": 5589644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5589815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec0e0", "tid": 35568, "ts": 5589939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec690", "tid": 35568, "ts": 5590235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecde0", "tid": 35568, "ts": 5590531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb7f0", "tid": 35568, "ts": 5590826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb310", "tid": 35568, "ts": 5591121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5591292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecf80", "tid": 35568, "ts": 5591416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5591633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec350", "tid": 35568, "ts": 5591787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5591959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb580", "tid": 35568, "ts": 5592082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5592255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb990", "tid": 35568, "ts": 5592379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5592550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed050", "tid": 35568, "ts": 5592674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5592845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec420", "tid": 35568, "ts": 5592969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5593140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eba60", "tid": 35568, "ts": 5593264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5593435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebb30", "tid": 35568, "ts": 5593559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5593730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebc00", "tid": 35568, "ts": 5593854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed120", "tid": 35568, "ts": 5594148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed1f0", "tid": 35568, "ts": 5594443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee570", "tid": 35568, "ts": 5594761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ede20", "tid": 35568, "ts": 5595057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5595229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed600", "tid": 35568, "ts": 5595353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5595525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef9c0", "tid": 35568, "ts": 5595648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5595820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eef30", "tid": 35568, "ts": 5595944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5596115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee980", "tid": 35568, "ts": 5596238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5596410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eda10", "tid": 35568, "ts": 5596533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5596705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef000", "tid": 35568, "ts": 5596829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed6d0", "tid": 35568, "ts": 5597124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edd50", "tid": 35568, "ts": 5597420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee640", "tid": 35568, "ts": 5597715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef1a0", "tid": 35568, "ts": 5598009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5598180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef0d0", "tid": 35568, "ts": 5598303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5598537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eee60", "tid": 35568, "ts": 5598686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5598859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efea0", "tid": 35568, "ts": 5598985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5599155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f06c0", "tid": 35568, "ts": 5599279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5599452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eff70", "tid": 35568, "ts": 5599576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5599748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eeb20", "tid": 35568, "ts": 5599872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efb60", "tid": 35568, "ts": 5600168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef270", "tid": 35568, "ts": 5600463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efa90", "tid": 35568, "ts": 5600759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed530", "tid": 35568, "ts": 5601054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5601225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0040", "tid": 35568, "ts": 5601348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5601563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0110", "tid": 35568, "ts": 5601693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5601866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef340", "tid": 35568, "ts": 5601990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5602163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f02b0", "tid": 35568, "ts": 5602286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5602459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee8b0", "tid": 35568, "ts": 5602583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5602755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee230", "tid": 35568, "ts": 5602878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed940", "tid": 35568, "ts": 5603173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eea50", "tid": 35568, "ts": 5603468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0380", "tid": 35568, "ts": 5603763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efc30", "tid": 35568, "ts": 5604081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5604252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed870", "tid": 35568, "ts": 5604377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5604548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efd00", "tid": 35568, "ts": 5604672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5604844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee090", "tid": 35568, "ts": 5604967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5605138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef410", "tid": 35568, "ts": 5605261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5605711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0450", "tid": 35568, "ts": 5605838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edae0", "tid": 35568, "ts": 5606135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edbb0", "tid": 35568, "ts": 5606433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eebf0", "tid": 35568, "ts": 5606730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef4e0", "tid": 35568, "ts": 5607026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5607199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef820", "tid": 35568, "ts": 5607323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5607495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edc80", "tid": 35568, "ts": 5607619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5607792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eecc0", "tid": 35568, "ts": 5607915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef5b0", "tid": 35568, "ts": 5608211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee300", "tid": 35568, "ts": 5608507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f05f0", "tid": 35568, "ts": 5608803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edef0", "tid": 35568, "ts": 5609097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5609269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edfc0", "tid": 35568, "ts": 5609392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5609564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0520", "tid": 35568, "ts": 5609688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5609860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee160", "tid": 35568, "ts": 5609984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5610156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef680", "tid": 35568, "ts": 5610280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5610453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efdd0", "tid": 35568, "ts": 5610576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5610748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eed90", "tid": 35568, "ts": 5610872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee3d0", "tid": 35568, "ts": 5611167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0790", "tid": 35568, "ts": 5611463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef750", "tid": 35568, "ts": 5611760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef8f0", "tid": 35568, "ts": 5612055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5612227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f01e0", "tid": 35568, "ts": 5612350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5612521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed7a0", "tid": 35568, "ts": 5612644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5612816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0860", "tid": 35568, "ts": 5612938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee4a0", "tid": 35568, "ts": 5613235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee710", "tid": 35568, "ts": 5613531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee7e0", "tid": 35568, "ts": 5613827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1490", "tid": 35568, "ts": 5614225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5614552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2740", "tid": 35568, "ts": 5614736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5614958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0e10", "tid": 35568, "ts": 5615153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5615379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1080", "tid": 35568, "ts": 5615502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5615675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f20c0", "tid": 35568, "ts": 5615797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5615969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2330", "tid": 35568, "ts": 5616091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5616263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1150", "tid": 35568, "ts": 5616387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5616602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f31d0", "tid": 35568, "ts": 5616727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5616899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0fb0", "tid": 35568, "ts": 5617022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5617194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f13c0", "tid": 35568, "ts": 5617317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5617489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3030", "tid": 35568, "ts": 5617613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5617785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f28e0", "tid": 35568, "ts": 5617908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1ff0", "tid": 35568, "ts": 5618204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0ba0", "tid": 35568, "ts": 5618498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3b90", "tid": 35568, "ts": 5618794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0930", "tid": 35568, "ts": 5619090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5619262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2190", "tid": 35568, "ts": 5619385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5619556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f29b0", "tid": 35568, "ts": 5619680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5619852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2f60", "tid": 35568, "ts": 5619976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5620148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2810", "tid": 35568, "ts": 5620271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5620443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2a80", "tid": 35568, "ts": 5620566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5620737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1be0", "tid": 35568, "ts": 5620860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f17d0", "tid": 35568, "ts": 5621155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f12f0", "tid": 35568, "ts": 5621452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3850", "tid": 35568, "ts": 5621748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0ad0", "tid": 35568, "ts": 5622043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5622214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2260", "tid": 35568, "ts": 5622338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5622510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f32a0", "tid": 35568, "ts": 5622633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5622804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3920", "tid": 35568, "ts": 5622928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1220", "tid": 35568, "ts": 5623221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2b50", "tid": 35568, "ts": 5623517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0ee0", "tid": 35568, "ts": 5623812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2400", "tid": 35568, "ts": 5624107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5624279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2c20", "tid": 35568, "ts": 5624402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5624575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1b10", "tid": 35568, "ts": 5624698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5624869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2cf0", "tid": 35568, "ts": 5624992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5625165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1560", "tid": 35568, "ts": 5625288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5625487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1cb0", "tid": 35568, "ts": 5625668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5625840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f25a0", "tid": 35568, "ts": 5625965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5626136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2dc0", "tid": 35568, "ts": 5626260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5626432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1f20", "tid": 35568, "ts": 5626556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5626728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f24d0", "tid": 35568, "ts": 5626851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3c60", "tid": 35568, "ts": 5627147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3100", "tid": 35568, "ts": 5627442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2e90", "tid": 35568, "ts": 5627739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2670", "tid": 35568, "ts": 5628034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5628206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3370", "tid": 35568, "ts": 5628330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5628503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0d40", "tid": 35568, "ts": 5628626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5628799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1e50", "tid": 35568, "ts": 5628922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5629095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1a40", "tid": 35568, "ts": 5629219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5629392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3440", "tid": 35568, "ts": 5629516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5629748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1630", "tid": 35568, "ts": 5629935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5630127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3510", "tid": 35568, "ts": 5630258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5630435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f35e0", "tid": 35568, "ts": 5630562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5630737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f36b0", "tid": 35568, "ts": 5630863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3780", "tid": 35568, "ts": 5631162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f39f0", "tid": 35568, "ts": 5631460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3ac0", "tid": 35568, "ts": 5631757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0a00", "tid": 35568, "ts": 5632069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5632242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0c70", "tid": 35568, "ts": 5632367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5632540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1700", "tid": 35568, "ts": 5632664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5632837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f18a0", "tid": 35568, "ts": 5632961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5633133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1970", "tid": 35568, "ts": 5633257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5633430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1d80", "tid": 35568, "ts": 5633554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5633727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f42e0", "tid": 35568, "ts": 5633851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5a70", "tid": 35568, "ts": 5634148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5590", "tid": 35568, "ts": 5634445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5660", "tid": 35568, "ts": 5634741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6d20", "tid": 35568, "ts": 5635084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5635257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f61c0", "tid": 35568, "ts": 5635434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5635608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5b40", "tid": 35568, "ts": 5635738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5635910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5ce0", "tid": 35568, "ts": 5636033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5636206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6430", "tid": 35568, "ts": 5636329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5636502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f43b0", "tid": 35568, "ts": 5636626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5636798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f58d0", "tid": 35568, "ts": 5636923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5e80", "tid": 35568, "ts": 5637218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5c10", "tid": 35568, "ts": 5637514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6ec0", "tid": 35568, "ts": 5637810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f60f0", "tid": 35568, "ts": 5638106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5638277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4480", "tid": 35568, "ts": 5638401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5638574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4e40", "tid": 35568, "ts": 5638698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5638870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6ab0", "tid": 35568, "ts": 5638994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5639167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5db0", "tid": 35568, "ts": 5639291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5639463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5730", "tid": 35568, "ts": 5639586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5639760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5800", "tid": 35568, "ts": 5639884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f59a0", "tid": 35568, "ts": 5640181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6500", "tid": 35568, "ts": 5640477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3fa0", "tid": 35568, "ts": 5640773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4960", "tid": 35568, "ts": 5641069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5641242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5f50", "tid": 35568, "ts": 5641365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5641537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4070", "tid": 35568, "ts": 5641661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5641833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6360", "tid": 35568, "ts": 5641957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5642129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6020", "tid": 35568, "ts": 5642253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5642425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f54c0", "tid": 35568, "ts": 5642549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5642761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3d30", "tid": 35568, "ts": 5642889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6290", "tid": 35568, "ts": 5643185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4550", "tid": 35568, "ts": 5643482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6df0", "tid": 35568, "ts": 5643778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f65d0", "tid": 35568, "ts": 5644075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5644247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f66a0", "tid": 35568, "ts": 5644371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5644544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5320", "tid": 35568, "ts": 5644667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5644840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3e00", "tid": 35568, "ts": 5644964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5645136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3ed0", "tid": 35568, "ts": 5645260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5645589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4140", "tid": 35568, "ts": 5645723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5645896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4620", "tid": 35568, "ts": 5646021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5646194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4210", "tid": 35568, "ts": 5646318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5646490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f47c0", "tid": 35568, "ts": 5646614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5646785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6770", "tid": 35568, "ts": 5646909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4ca0", "tid": 35568, "ts": 5647205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4d70", "tid": 35568, "ts": 5647501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f46f0", "tid": 35568, "ts": 5647797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6840", "tid": 35568, "ts": 5648092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5648266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f50b0", "tid": 35568, "ts": 5648389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5648562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4890", "tid": 35568, "ts": 5648685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5648856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4f10", "tid": 35568, "ts": 5648980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5649152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4fe0", "tid": 35568, "ts": 5649275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5649447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6910", "tid": 35568, "ts": 5649570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5649742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4a30", "tid": 35568, "ts": 5649866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4b00", "tid": 35568, "ts": 5650161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4bd0", "tid": 35568, "ts": 5650456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6c50", "tid": 35568, "ts": 5650751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5180", "tid": 35568, "ts": 5651045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5651216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5250", "tid": 35568, "ts": 5651339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5651511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f53f0", "tid": 35568, "ts": 5651634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5651805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f69e0", "tid": 35568, "ts": 5651928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5652100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6b80", "tid": 35568, "ts": 5652224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5652395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7260", "tid": 35568, "ts": 5652585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5652758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af81d0", "tid": 35568, "ts": 5652882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7670", "tid": 35568, "ts": 5653178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8fa0", "tid": 35568, "ts": 5653472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8920", "tid": 35568, "ts": 5653766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af67d0", "tid": 35568, "ts": 5654059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5654229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8d30", "tid": 35568, "ts": 5654353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5654525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6e50", "tid": 35568, "ts": 5654648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5654820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af86b0", "tid": 35568, "ts": 5654943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5655114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af82a0", "tid": 35568, "ts": 5655237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5655409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7330", "tid": 35568, "ts": 5655531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5655703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8100", "tid": 35568, "ts": 5655891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9480", "tid": 35568, "ts": 5656185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9070", "tid": 35568, "ts": 5656480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8e00", "tid": 35568, "ts": 5656775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af79b0", "tid": 35568, "ts": 5657069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5657243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af68a0", "tid": 35568, "ts": 5657366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5657539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af89f0", "tid": 35568, "ts": 5657661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5657833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7a80", "tid": 35568, "ts": 5657957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5658128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8370", "tid": 35568, "ts": 5658251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5658424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8030", "tid": 35568, "ts": 5658548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5658719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8b90", "tid": 35568, "ts": 5658841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af85e0", "tid": 35568, "ts": 5659134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8ac0", "tid": 35568, "ts": 5659429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7f60", "tid": 35568, "ts": 5659724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6f20", "tid": 35568, "ts": 5660019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5660190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8780", "tid": 35568, "ts": 5660313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5660485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af75a0", "tid": 35568, "ts": 5660608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5660780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8440", "tid": 35568, "ts": 5660903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5661131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6700", "tid": 35568, "ts": 5661256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5661428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8850", "tid": 35568, "ts": 5661552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5661723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8510", "tid": 35568, "ts": 5661846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7b50", "tid": 35568, "ts": 5662142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6d80", "tid": 35568, "ts": 5662437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7400", "tid": 35568, "ts": 5662732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af93b0", "tid": 35568, "ts": 5663026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5663197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8c60", "tid": 35568, "ts": 5663321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5663493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af74d0", "tid": 35568, "ts": 5663617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5663788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6a40", "tid": 35568, "ts": 5663911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8ed0", "tid": 35568, "ts": 5664205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9140", "tid": 35568, "ts": 5664499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9210", "tid": 35568, "ts": 5664795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af92e0", "tid": 35568, "ts": 5665091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5665264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6150", "tid": 35568, "ts": 5665387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5665559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6220", "tid": 35568, "ts": 5665683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5665855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af62f0", "tid": 35568, "ts": 5666001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5666173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af63c0", "tid": 35568, "ts": 5666297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5666468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7740", "tid": 35568, "ts": 5666591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5666762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7810", "tid": 35568, "ts": 5666886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6b10", "tid": 35568, "ts": 5667182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6490", "tid": 35568, "ts": 5667475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6560", "tid": 35568, "ts": 5667770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6630", "tid": 35568, "ts": 5668113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5668284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6970", "tid": 35568, "ts": 5668408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5668580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6be0", "tid": 35568, "ts": 5668704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5668875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7dc0", "tid": 35568, "ts": 5668999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5669171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af70c0", "tid": 35568, "ts": 5669294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5669465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7cf0", "tid": 35568, "ts": 5669588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5669760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6cb0", "tid": 35568, "ts": 5669883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af78e0", "tid": 35568, "ts": 5670178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6ff0", "tid": 35568, "ts": 5670472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7190", "tid": 35568, "ts": 5670767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7c20", "tid": 35568, "ts": 5671061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5671232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7e90", "tid": 35568, "ts": 5671355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5671527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc060", "tid": 35568, "ts": 5671650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5671821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc200", "tid": 35568, "ts": 5671944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5672116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa660", "tid": 35568, "ts": 5672239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5672410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb5d0", "tid": 35568, "ts": 5672533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5672705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb290", "tid": 35568, "ts": 5672828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbc50", "tid": 35568, "ts": 5673122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa0b0", "tid": 35568, "ts": 5673418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb1c0", "tid": 35568, "ts": 5673713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa180", "tid": 35568, "ts": 5674007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5674179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb9e0", "tid": 35568, "ts": 5674302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5674473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9620", "tid": 35568, "ts": 5674596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5674767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb020", "tid": 35568, "ts": 5674890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9890", "tid": 35568, "ts": 5675186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa250", "tid": 35568, "ts": 5675481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc2d0", "tid": 35568, "ts": 5675775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc130", "tid": 35568, "ts": 5676070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5676243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc540", "tid": 35568, "ts": 5676366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5676538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb770", "tid": 35568, "ts": 5676771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5676943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afab40", "tid": 35568, "ts": 5677068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5677240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afaa70", "tid": 35568, "ts": 5677363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5677537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbd20", "tid": 35568, "ts": 5677661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5677832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc3a0", "tid": 35568, "ts": 5677956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5678128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbf90", "tid": 35568, "ts": 5678251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5678422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa4c0", "tid": 35568, "ts": 5678546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5678718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb0f0", "tid": 35568, "ts": 5678842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9960", "tid": 35568, "ts": 5679136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb360", "tid": 35568, "ts": 5679430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9f10", "tid": 35568, "ts": 5679725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa320", "tid": 35568, "ts": 5680020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5680191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbab0", "tid": 35568, "ts": 5680315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5680487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af97c0", "tid": 35568, "ts": 5680610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5680781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbb80", "tid": 35568, "ts": 5680905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc880", "tid": 35568, "ts": 5681200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb430", "tid": 35568, "ts": 5681494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb840", "tid": 35568, "ts": 5681790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb500", "tid": 35568, "ts": 5682084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5682256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa8d0", "tid": 35568, "ts": 5682379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5682551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af96f0", "tid": 35568, "ts": 5682675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5682847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc7b0", "tid": 35568, "ts": 5682970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5683142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afac10", "tid": 35568, "ts": 5683264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5683435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9a30", "tid": 35568, "ts": 5683559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5683731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa730", "tid": 35568, "ts": 5683854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc470", "tid": 35568, "ts": 5684150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aface0", "tid": 35568, "ts": 5684445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9e40", "tid": 35568, "ts": 5684740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9b00", "tid": 35568, "ts": 5685035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5685206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9fe0", "tid": 35568, "ts": 5685329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5685501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc6e0", "tid": 35568, "ts": 5685624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5685797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc610", "tid": 35568, "ts": 5685920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5686092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9550", "tid": 35568, "ts": 5686216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5686387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbdf0", "tid": 35568, "ts": 5686510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5686725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9ca0", "tid": 35568, "ts": 5686849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa3f0", "tid": 35568, "ts": 5687144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb6a0", "tid": 35568, "ts": 5687438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9bd0", "tid": 35568, "ts": 5687733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbec0", "tid": 35568, "ts": 5688027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5688198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa590", "tid": 35568, "ts": 5688321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5688493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa9a0", "tid": 35568, "ts": 5688615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5688787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9d70", "tid": 35568, "ts": 5688910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa800", "tid": 35568, "ts": 5689205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb910", "tid": 35568, "ts": 5689500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afadb0", "tid": 35568, "ts": 5689794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afaf50", "tid": 35568, "ts": 5690087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5690258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afae80", "tid": 35568, "ts": 5690381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5690552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe690", "tid": 35568, "ts": 5690676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5690847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff120", "tid": 35568, "ts": 5690970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5691142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd580", "tid": 35568, "ts": 5691265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5691436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd240", "tid": 35568, "ts": 5691558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5691731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe9d0", "tid": 35568, "ts": 5691854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5692025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affbb0", "tid": 35568, "ts": 5692148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5692426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afeaa0", "tid": 35568, "ts": 5692563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5692735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afeb70", "tid": 35568, "ts": 5692858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdda0", "tid": 35568, "ts": 5693154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe830", "tid": 35568, "ts": 5693449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdcd0", "tid": 35568, "ts": 5693809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd990", "tid": 35568, "ts": 5694105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5694277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affc80", "tid": 35568, "ts": 5694400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5694596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe5c0", "tid": 35568, "ts": 5694720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5694892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe900", "tid": 35568, "ts": 5695015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5695186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe4f0", "tid": 35568, "ts": 5695309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5695481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcd60", "tid": 35568, "ts": 5695605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5695777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affa10", "tid": 35568, "ts": 5695900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5696118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd0a0", "tid": 35568, "ts": 5696339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5697189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcfd0", "tid": 35568, "ts": 5697317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5697490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff530", "tid": 35568, "ts": 5697615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5697787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff940", "tid": 35568, "ts": 5697911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afde70", "tid": 35568, "ts": 5698206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdf40", "tid": 35568, "ts": 5698502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff7a0", "tid": 35568, "ts": 5698797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff870", "tid": 35568, "ts": 5699092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5699263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe350", "tid": 35568, "ts": 5699386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5699558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affae0", "tid": 35568, "ts": 5699681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5699853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd7f0", "tid": 35568, "ts": 5699976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5700147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe760", "tid": 35568, "ts": 5700270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5700442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afce30", "tid": 35568, "ts": 5700565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5700737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe010", "tid": 35568, "ts": 5700860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe420", "tid": 35568, "ts": 5701155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcf00", "tid": 35568, "ts": 5701494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afec40", "tid": 35568, "ts": 5701791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd8c0", "tid": 35568, "ts": 5702086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5702257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afed10", "tid": 35568, "ts": 5702381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5702553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd650", "tid": 35568, "ts": 5702677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5702848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd310", "tid": 35568, "ts": 5702972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5703144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc950", "tid": 35568, "ts": 5703268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5703440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe0e0", "tid": 35568, "ts": 5703563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5703735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afef80", "tid": 35568, "ts": 5703858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afda60", "tid": 35568, "ts": 5704153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afca20", "tid": 35568, "ts": 5704446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd170", "tid": 35568, "ts": 5704741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afede0", "tid": 35568, "ts": 5705036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5705207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd3e0", "tid": 35568, "ts": 5705331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5705502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd4b0", "tid": 35568, "ts": 5705625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5705797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff1f0", "tid": 35568, "ts": 5705921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe1b0", "tid": 35568, "ts": 5706216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcaf0", "tid": 35568, "ts": 5706510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afeeb0", "tid": 35568, "ts": 5706805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe280", "tid": 35568, "ts": 5707098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5707270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd720", "tid": 35568, "ts": 5707392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5707563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdb30", "tid": 35568, "ts": 5707686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5707944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff2c0", "tid": 35568, "ts": 5708068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5708241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdc00", "tid": 35568, "ts": 5708364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5708535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff050", "tid": 35568, "ts": 5708659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5708831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff390", "tid": 35568, "ts": 5708953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5709125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff460", "tid": 35568, "ts": 5709248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5709420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff600", "tid": 35568, "ts": 5709544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5709716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff6d0", "tid": 35568, "ts": 5709840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcbc0", "tid": 35568, "ts": 5710137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcc90", "tid": 35568, "ts": 5710433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01dd0", "tid": 35568, "ts": 5710728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00e60", "tid": 35568, "ts": 5711023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5711195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00640", "tid": 35568, "ts": 5711318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5711489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b021e0", "tid": 35568, "ts": 5711612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5711783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01c30", "tid": 35568, "ts": 5711906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affe20", "tid": 35568, "ts": 5712202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00f30", "tid": 35568, "ts": 5712497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00710", "tid": 35568, "ts": 5712791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01ea0", "tid": 35568, "ts": 5713085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5713257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b011a0", "tid": 35568, "ts": 5713380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5713552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00cc0", "tid": 35568, "ts": 5713675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5713845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b025f0", "tid": 35568, "ts": 5713969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5714140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02930", "tid": 35568, "ts": 5714264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5714435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02e10", "tid": 35568, "ts": 5714559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5714731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b003d0", "tid": 35568, "ts": 5714854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01340", "tid": 35568, "ts": 5715150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02ad0", "tid": 35568, "ts": 5715446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b010d0", "tid": 35568, "ts": 5715740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02040", "tid": 35568, "ts": 5716035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5716206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02fb0", "tid": 35568, "ts": 5716329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5716500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02520", "tid": 35568, "ts": 5716624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5716795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00230", "tid": 35568, "ts": 5716918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00a50", "tid": 35568, "ts": 5717213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b022b0", "tid": 35568, "ts": 5717508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01d00", "tid": 35568, "ts": 5717803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b018f0", "tid": 35568, "ts": 5718096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5718267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01680", "tid": 35568, "ts": 5718390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5718561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01f70", "tid": 35568, "ts": 5718684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5718855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02790", "tid": 35568, "ts": 5718979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5719152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02450", "tid": 35568, "ts": 5719275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5719446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b008b0", "tid": 35568, "ts": 5719570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5719741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02110", "tid": 35568, "ts": 5719864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02860", "tid": 35568, "ts": 5720160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b007e0", "tid": 35568, "ts": 5720456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01b60", "tid": 35568, "ts": 5720749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b004a0", "tid": 35568, "ts": 5721044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5721216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b019c0", "tid": 35568, "ts": 5721339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5721510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00d90", "tid": 35568, "ts": 5721633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5721804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01000", "tid": 35568, "ts": 5721926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01270", "tid": 35568, "ts": 5722220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00980", "tid": 35568, "ts": 5722517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00b20", "tid": 35568, "ts": 5722812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b026c0", "tid": 35568, "ts": 5723108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5723280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00bf0", "tid": 35568, "ts": 5723403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5723691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01410", "tid": 35568, "ts": 5723868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5724105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01a90", "tid": 35568, "ts": 5724300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5724526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02a00", "tid": 35568, "ts": 5724650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5724821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02ba0", "tid": 35568, "ts": 5724945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5725117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02380", "tid": 35568, "ts": 5725240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5725411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02c70", "tid": 35568, "ts": 5725535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5725706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02d40", "tid": 35568, "ts": 5725829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b014e0", "tid": 35568, "ts": 5726126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02ee0", "tid": 35568, "ts": 5726423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b015b0", "tid": 35568, "ts": 5726718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01750", "tid": 35568, "ts": 5727014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5727186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affef0", "tid": 35568, "ts": 5727309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5727480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00090", "tid": 35568, "ts": 5727604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5727776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01820", "tid": 35568, "ts": 5727899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03080", "tid": 35568, "ts": 5728193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affd50", "tid": 35568, "ts": 5728487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afffc0", "tid": 35568, "ts": 5728782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00160", "tid": 35568, "ts": 5729077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5729249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00300", "tid": 35568, "ts": 5729373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5729544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00570", "tid": 35568, "ts": 5729668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5729839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05030", "tid": 35568, "ts": 5729962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5730133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03560", "tid": 35568, "ts": 5730256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5730427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05100", "tid": 35568, "ts": 5730550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5730722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06480", "tid": 35568, "ts": 5730845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b059f0", "tid": 35568, "ts": 5731140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03d80", "tid": 35568, "ts": 5731436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05370", "tid": 35568, "ts": 5731730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04740", "tid": 35568, "ts": 5732024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5732196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05ed0", "tid": 35568, "ts": 5732319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5732491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b044d0", "tid": 35568, "ts": 5732615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5732786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05440", "tid": 35568, "ts": 5732910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b038a0", "tid": 35568, "ts": 5733204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03be0", "tid": 35568, "ts": 5733499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05510", "tid": 35568, "ts": 5733793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04670", "tid": 35568, "ts": 5734134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5734305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05920", "tid": 35568, "ts": 5734429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5734602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03cb0", "tid": 35568, "ts": 5734726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5734896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b040c0", "tid": 35568, "ts": 5735019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5735191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b051d0", "tid": 35568, "ts": 5735314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5735486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03e50", "tid": 35568, "ts": 5735609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5735781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b063b0", "tid": 35568, "ts": 5735904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05fa0", "tid": 35568, "ts": 5736199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03f20", "tid": 35568, "ts": 5736493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06210", "tid": 35568, "ts": 5736789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b037d0", "tid": 35568, "ts": 5737086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5737258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06070", "tid": 35568, "ts": 5737381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5737553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04b50", "tid": 35568, "ts": 5737676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5737848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b052a0", "tid": 35568, "ts": 5737971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5738143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03490", "tid": 35568, "ts": 5738267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5738439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03ff0", "tid": 35568, "ts": 5738562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5738734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03630", "tid": 35568, "ts": 5738858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5739029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03700", "tid": 35568, "ts": 5739211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5739446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04190", "tid": 35568, "ts": 5739605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5739811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04dc0", "tid": 35568, "ts": 5739957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5740153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05ac0", "tid": 35568, "ts": 5740300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5740547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03a40", "tid": 35568, "ts": 5740686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5740858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b045a0", "tid": 35568, "ts": 5741005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5741276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03970", "tid": 35568, "ts": 5741460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5741633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05c60", "tid": 35568, "ts": 5741757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5741931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04810", "tid": 35568, "ts": 5742054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5742226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05d30", "tid": 35568, "ts": 5742350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5742548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b048e0", "tid": 35568, "ts": 5742737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5742911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04e90", "tid": 35568, "ts": 5743036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5743210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04330", "tid": 35568, "ts": 5743335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5743511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b055e0", "tid": 35568, "ts": 5743636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5743809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b049b0", "tid": 35568, "ts": 5743934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5744108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b062e0", "tid": 35568, "ts": 5744233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5744406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05b90", "tid": 35568, "ts": 5744531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5744706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03b10", "tid": 35568, "ts": 5744831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03220", "tid": 35568, "ts": 5745129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04c20", "tid": 35568, "ts": 5745427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04260", "tid": 35568, "ts": 5745728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05e00", "tid": 35568, "ts": 5746028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5746203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04400", "tid": 35568, "ts": 5746328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5746503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06140", "tid": 35568, "ts": 5746627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5746801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04a80", "tid": 35568, "ts": 5746926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5747100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04cf0", "tid": 35568, "ts": 5747225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5747399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03150", "tid": 35568, "ts": 5747523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5747721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b032f0", "tid": 35568, "ts": 5747846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5748018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b056b0", "tid": 35568, "ts": 5748142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5748313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05780", "tid": 35568, "ts": 5748437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5748632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04f60", "tid": 35568, "ts": 5748780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05850", "tid": 35568, "ts": 5749125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b033c0", "tid": 35568, "ts": 5749421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06e40", "tid": 35568, "ts": 5749716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08430", "tid": 35568, "ts": 5750012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5750183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08500", "tid": 35568, "ts": 5750306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5750478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09200", "tid": 35568, "ts": 5750602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5750774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07800", "tid": 35568, "ts": 5750898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b081c0", "tid": 35568, "ts": 5751193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07f50", "tid": 35568, "ts": 5751489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b074c0", "tid": 35568, "ts": 5751784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b086a0", "tid": 35568, "ts": 5752081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5752252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07a70", "tid": 35568, "ts": 5752377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5752549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b093a0", "tid": 35568, "ts": 5752673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5752844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b085d0", "tid": 35568, "ts": 5752968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5753140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08d20", "tid": 35568, "ts": 5753265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5753435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06bd0", "tid": 35568, "ts": 5753558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5753730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06ca0", "tid": 35568, "ts": 5753854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08df0", "tid": 35568, "ts": 5754150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06d70", "tid": 35568, "ts": 5754446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b096e0", "tid": 35568, "ts": 5754762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08020", "tid": 35568, "ts": 5755058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5755230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b097b0", "tid": 35568, "ts": 5755354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5755526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08ec0", "tid": 35568, "ts": 5755649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5755820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09880", "tid": 35568, "ts": 5755944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5756116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08f90", "tid": 35568, "ts": 5756240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5756412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08360", "tid": 35568, "ts": 5756536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5756707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09470", "tid": 35568, "ts": 5756832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08770", "tid": 35568, "ts": 5757127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07730", "tid": 35568, "ts": 5757422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b080f0", "tid": 35568, "ts": 5757719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06550", "tid": 35568, "ts": 5758014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5758247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b070b0", "tid": 35568, "ts": 5758372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5758544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08290", "tid": 35568, "ts": 5758669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5758840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06960", "tid": 35568, "ts": 5758963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5759135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b067c0", "tid": 35568, "ts": 5759259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5759432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08840", "tid": 35568, "ts": 5759556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5759726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06620", "tid": 35568, "ts": 5759850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06890", "tid": 35568, "ts": 5760144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b066f0", "tid": 35568, "ts": 5760439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b089e0", "tid": 35568, "ts": 5760733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06a30", "tid": 35568, "ts": 5761029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5761200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08910", "tid": 35568, "ts": 5761323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5761495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08ab0", "tid": 35568, "ts": 5761619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5761790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07b40", "tid": 35568, "ts": 5761913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08b80", "tid": 35568, "ts": 5762208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06b00", "tid": 35568, "ts": 5762503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06f10", "tid": 35568, "ts": 5762798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07250", "tid": 35568, "ts": 5763159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5763332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06fe0", "tid": 35568, "ts": 5763456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5763628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07180", "tid": 35568, "ts": 5763752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5763924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08c50", "tid": 35568, "ts": 5764047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5764218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07320", "tid": 35568, "ts": 5764342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5764515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09060", "tid": 35568, "ts": 5764639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5764811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09130", "tid": 35568, "ts": 5764934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07660", "tid": 35568, "ts": 5765229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b073f0", "tid": 35568, "ts": 5765525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b092d0", "tid": 35568, "ts": 5765819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09540", "tid": 35568, "ts": 5766114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5766285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09610", "tid": 35568, "ts": 5766410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5766581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07590", "tid": 35568, "ts": 5766705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5766876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07c10", "tid": 35568, "ts": 5766999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5767170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b078d0", "tid": 35568, "ts": 5767293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5767506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b079a0", "tid": 35568, "ts": 5767635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5767806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07ce0", "tid": 35568, "ts": 5767929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07db0", "tid": 35568, "ts": 5768224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07e80", "tid": 35568, "ts": 5768519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b9d0", "tid": 35568, "ts": 5768814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c1f0", "tid": 35568, "ts": 5769109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5769280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c120", "tid": 35568, "ts": 5769404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5769575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ae70", "tid": 35568, "ts": 5769699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5769870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b1b0", "tid": 35568, "ts": 5769994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5770165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0baa0", "tid": 35568, "ts": 5770289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5770521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a990", "tid": 35568, "ts": 5770646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5770817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bde0", "tid": 35568, "ts": 5770940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09e30", "tid": 35568, "ts": 5771235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cc80", "tid": 35568, "ts": 5771531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b5c0", "tid": 35568, "ts": 5771828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a650", "tid": 35568, "ts": 5772123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5772294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a4b0", "tid": 35568, "ts": 5772418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5772590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bb70", "tid": 35568, "ts": 5772713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5772884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a580", "tid": 35568, "ts": 5773008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5773180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cae0", "tid": 35568, "ts": 5773303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5773474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0af40", "tid": 35568, "ts": 5773598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5773770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ca10", "tid": 35568, "ts": 5773894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b690", "tid": 35568, "ts": 5774188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09fd0", "tid": 35568, "ts": 5774483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09a20", "tid": 35568, "ts": 5774780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ab30", "tid": 35568, "ts": 5775074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5775246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c870", "tid": 35568, "ts": 5775369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5775541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c530", "tid": 35568, "ts": 5775665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5775836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09c90", "tid": 35568, "ts": 5775959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5776131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c2c0", "tid": 35568, "ts": 5776255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5776427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a720", "tid": 35568, "ts": 5776551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5776721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a7f0", "tid": 35568, "ts": 5776845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bc40", "tid": 35568, "ts": 5777139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b010", "tid": 35568, "ts": 5777435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c600", "tid": 35568, "ts": 5777728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09f00", "tid": 35568, "ts": 5778024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5778196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b420", "tid": 35568, "ts": 5778320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5778490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09af0", "tid": 35568, "ts": 5778614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5778785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cbb0", "tid": 35568, "ts": 5778909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b4f0", "tid": 35568, "ts": 5779204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09bc0", "tid": 35568, "ts": 5779499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09950", "tid": 35568, "ts": 5779794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c390", "tid": 35568, "ts": 5780089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5780261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a8c0", "tid": 35568, "ts": 5780384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5780556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09d60", "tid": 35568, "ts": 5780679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5780851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c460", "tid": 35568, "ts": 5780975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5781147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0aa60", "tid": 35568, "ts": 5781271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5781442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bd10", "tid": 35568, "ts": 5781566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5781737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a0a0", "tid": 35568, "ts": 5781862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a170", "tid": 35568, "ts": 5782157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b0e0", "tid": 35568, "ts": 5782454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b280", "tid": 35568, "ts": 5782748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b760", "tid": 35568, "ts": 5783044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5783215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a240", "tid": 35568, "ts": 5783338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5783510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a3e0", "tid": 35568, "ts": 5783633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5783805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c050", "tid": 35568, "ts": 5783929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b900", "tid": 35568, "ts": 5784224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b350", "tid": 35568, "ts": 5784520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a310", "tid": 35568, "ts": 5784816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ac00", "tid": 35568, "ts": 5785111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5785283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b830", "tid": 35568, "ts": 5785407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5785578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0beb0", "tid": 35568, "ts": 5785702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5785874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c6d0", "tid": 35568, "ts": 5786058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5786229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c7a0", "tid": 35568, "ts": 5786354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5786525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0acd0", "tid": 35568, "ts": 5786649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5786819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bf80", "tid": 35568, "ts": 5786943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5787115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c940", "tid": 35568, "ts": 5787239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5787411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ada0", "tid": 35568, "ts": 5787535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5787706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fc70", "tid": 35568, "ts": 5787829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fee0", "tid": 35568, "ts": 5788124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e820", "tid": 35568, "ts": 5788419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d160", "tid": 35568, "ts": 5788714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0eb60", "tid": 35568, "ts": 5789010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5789181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e270", "tid": 35568, "ts": 5789305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5789477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d640", "tid": 35568, "ts": 5789601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5789771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d090", "tid": 35568, "ts": 5789896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0da50", "tid": 35568, "ts": 5790192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fad0", "tid": 35568, "ts": 5790487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10080", "tid": 35568, "ts": 5790782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f520", "tid": 35568, "ts": 5791078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5791250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d710", "tid": 35568, "ts": 5791476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5791648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f790", "tid": 35568, "ts": 5791772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5791944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d230", "tid": 35568, "ts": 5792068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5792239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d8b0", "tid": 35568, "ts": 5792363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5792535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e750", "tid": 35568, "ts": 5792659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5792830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ffb0", "tid": 35568, "ts": 5792954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5793125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e8f0", "tid": 35568, "ts": 5793248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5793420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f2b0", "tid": 35568, "ts": 5793544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5793716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cd50", "tid": 35568, "ts": 5793839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ce20", "tid": 35568, "ts": 5794134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ec30", "tid": 35568, "ts": 5794521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cef0", "tid": 35568, "ts": 5794817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fd40", "tid": 35568, "ts": 5795112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5795283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e0d0", "tid": 35568, "ts": 5795406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5795577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f860", "tid": 35568, "ts": 5795701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5795873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e5b0", "tid": 35568, "ts": 5795996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5796168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f5f0", "tid": 35568, "ts": 5796291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5796463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f6c0", "tid": 35568, "ts": 5796586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5796759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0db20", "tid": 35568, "ts": 5796882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fe10", "tid": 35568, "ts": 5797178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e680", "tid": 35568, "ts": 5797474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e1a0", "tid": 35568, "ts": 5797770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0dd90", "tid": 35568, "ts": 5798066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5798237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d980", "tid": 35568, "ts": 5798360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5798531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f110", "tid": 35568, "ts": 5798654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5798825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fba0", "tid": 35568, "ts": 5798949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5799121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f930", "tid": 35568, "ts": 5799244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5799416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0dbf0", "tid": 35568, "ts": 5799539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5799712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0edd0", "tid": 35568, "ts": 5799836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f380", "tid": 35568, "ts": 5800190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cfc0", "tid": 35568, "ts": 5800486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fa00", "tid": 35568, "ts": 5800782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0dcc0", "tid": 35568, "ts": 5801076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5801247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0de60", "tid": 35568, "ts": 5801371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5801548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d4a0", "tid": 35568, "ts": 5801763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5801936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d300", "tid": 35568, "ts": 5802061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5802235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d570", "tid": 35568, "ts": 5802359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5802530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ea90", "tid": 35568, "ts": 5802654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5802826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0df30", "tid": 35568, "ts": 5802950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5803122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f1e0", "tid": 35568, "ts": 5803246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5803419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d3d0", "tid": 35568, "ts": 5803542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5803713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e000", "tid": 35568, "ts": 5803838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d7e0", "tid": 35568, "ts": 5804134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e340", "tid": 35568, "ts": 5804430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e9c0", "tid": 35568, "ts": 5804725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ed00", "tid": 35568, "ts": 5805021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5805192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e410", "tid": 35568, "ts": 5805316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5805488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0eea0", "tid": 35568, "ts": 5805612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5805784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e4e0", "tid": 35568, "ts": 5805907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ef70", "tid": 35568, "ts": 5806202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f450", "tid": 35568, "ts": 5806497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f040", "tid": 35568, "ts": 5806792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11260", "tid": 35568, "ts": 5807086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5807257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b133b0", "tid": 35568, "ts": 5807380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5807552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b102f0", "tid": 35568, "ts": 5807676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5807848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b125e0", "tid": 35568, "ts": 5807971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5808143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12fa0", "tid": 35568, "ts": 5808267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5808438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10220", "tid": 35568, "ts": 5808561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5808733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11b50", "tid": 35568, "ts": 5808857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10560", "tid": 35568, "ts": 5809151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b114d0", "tid": 35568, "ts": 5809446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10cb0", "tid": 35568, "ts": 5809743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11c20", "tid": 35568, "ts": 5810039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5810210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b107d0", "tid": 35568, "ts": 5810333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5810504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12030", "tid": 35568, "ts": 5810627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5810797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11cf0", "tid": 35568, "ts": 5810921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b121d0", "tid": 35568, "ts": 5811216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12920", "tid": 35568, "ts": 5811511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12c60", "tid": 35568, "ts": 5811806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10be0", "tid": 35568, "ts": 5812102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5812274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b103c0", "tid": 35568, "ts": 5812397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5812569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12100", "tid": 35568, "ts": 5812693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5812864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11dc0", "tid": 35568, "ts": 5812988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5813160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12440", "tid": 35568, "ts": 5813282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5813453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10d80", "tid": 35568, "ts": 5813576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5813747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b126b0", "tid": 35568, "ts": 5813870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13480", "tid": 35568, "ts": 5814164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10a40", "tid": 35568, "ts": 5814460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10e50", "tid": 35568, "ts": 5814756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12d30", "tid": 35568, "ts": 5815050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5815221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10f20", "tid": 35568, "ts": 5815344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5815515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12370", "tid": 35568, "ts": 5815638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5815809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10490", "tid": 35568, "ts": 5815933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b115a0", "tid": 35568, "ts": 5816227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b122a0", "tid": 35568, "ts": 5816522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11e90", "tid": 35568, "ts": 5816816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b108a0", "tid": 35568, "ts": 5817110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5817331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11330", "tid": 35568, "ts": 5817455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5817629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11670", "tid": 35568, "ts": 5817752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5817923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11f60", "tid": 35568, "ts": 5818047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5818220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10630", "tid": 35568, "ts": 5818343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5818514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11740", "tid": 35568, "ts": 5818637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5818810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12510", "tid": 35568, "ts": 5818934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b110c0", "tid": 35568, "ts": 5819229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12780", "tid": 35568, "ts": 5819525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10970", "tid": 35568, "ts": 5819821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b129f0", "tid": 35568, "ts": 5820117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5820288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10b10", "tid": 35568, "ts": 5820411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5820583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10150", "tid": 35568, "ts": 5820706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5820877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13070", "tid": 35568, "ts": 5821001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5821173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10700", "tid": 35568, "ts": 5821297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5821468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12850", "tid": 35568, "ts": 5821591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5821762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10ff0", "tid": 35568, "ts": 5821885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12ac0", "tid": 35568, "ts": 5822182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11190", "tid": 35568, "ts": 5822477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12b90", "tid": 35568, "ts": 5822773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13140", "tid": 35568, "ts": 5823069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5823242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12e00", "tid": 35568, "ts": 5823366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5823537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11810", "tid": 35568, "ts": 5823660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5823832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12ed0", "tid": 35568, "ts": 5823956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5824127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11400", "tid": 35568, "ts": 5824250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5824422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b118e0", "tid": 35568, "ts": 5824546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5824719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b119b0", "tid": 35568, "ts": 5824843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11a80", "tid": 35568, "ts": 5825138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13210", "tid": 35568, "ts": 5825457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b132e0", "tid": 35568, "ts": 5825753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15b80", "tid": 35568, "ts": 5826049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5826220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14660", "tid": 35568, "ts": 5826344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5826516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b167b0", "tid": 35568, "ts": 5826640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5826812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14730", "tid": 35568, "ts": 5826935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5827210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b166e0", "tid": 35568, "ts": 5827423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5827596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13e40", "tid": 35568, "ts": 5827721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5827892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14250", "tid": 35568, "ts": 5828017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5828274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14b40", "tid": 35568, "ts": 5828550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5828723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14a70", "tid": 35568, "ts": 5828848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15290", "tid": 35568, "ts": 5829145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b137c0", "tid": 35568, "ts": 5829491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14ce0", "tid": 35568, "ts": 5829788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13b00", "tid": 35568, "ts": 5830085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5830258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13890", "tid": 35568, "ts": 5830382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5830553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14c10", "tid": 35568, "ts": 5830678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5830850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13a30", "tid": 35568, "ts": 5830974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5831146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15500", "tid": 35568, "ts": 5831381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5831553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15d20", "tid": 35568, "ts": 5831678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5831852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13bd0", "tid": 35568, "ts": 5831976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5832147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14db0", "tid": 35568, "ts": 5832271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5832441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b155d0", "tid": 35568, "ts": 5832565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5832736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15910", "tid": 35568, "ts": 5832957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5833258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13ca0", "tid": 35568, "ts": 5833437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5833762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15020", "tid": 35568, "ts": 5833891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13d70", "tid": 35568, "ts": 5834192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14e80", "tid": 35568, "ts": 5834490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14f50", "tid": 35568, "ts": 5834787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15df0", "tid": 35568, "ts": 5835083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5835256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b150f0", "tid": 35568, "ts": 5835380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5835553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13f10", "tid": 35568, "ts": 5835677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5835849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14320", "tid": 35568, "ts": 5835973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5836146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b151c0", "tid": 35568, "ts": 5836269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5836441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14800", "tid": 35568, "ts": 5836565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5836738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b156a0", "tid": 35568, "ts": 5836861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b143f0", "tid": 35568, "ts": 5837197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15770", "tid": 35568, "ts": 5837494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15840", "tid": 35568, "ts": 5837791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16610", "tid": 35568, "ts": 5838087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5838260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b149a0", "tid": 35568, "ts": 5838385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5838557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13fe0", "tid": 35568, "ts": 5838681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5838853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13960", "tid": 35568, "ts": 5838978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5839149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b140b0", "tid": 35568, "ts": 5839273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5839445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b163a0", "tid": 35568, "ts": 5839570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5839741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15360", "tid": 35568, "ts": 5839865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16200", "tid": 35568, "ts": 5840161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b144c0", "tid": 35568, "ts": 5840458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b159e0", "tid": 35568, "ts": 5840754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14590", "tid": 35568, "ts": 5841051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5841224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14180", "tid": 35568, "ts": 5841348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5841520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15ab0", "tid": 35568, "ts": 5841644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5841816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15ec0", "tid": 35568, "ts": 5841940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5842112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15c50", "tid": 35568, "ts": 5842236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5842409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15f90", "tid": 35568, "ts": 5842534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5842705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16060", "tid": 35568, "ts": 5842830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b148d0", "tid": 35568, "ts": 5843126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15430", "tid": 35568, "ts": 5843423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16130", "tid": 35568, "ts": 5843719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b162d0", "tid": 35568, "ts": 5844016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5844189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16470", "tid": 35568, "ts": 5844314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5844487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16540", "tid": 35568, "ts": 5844611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5844783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16880", "tid": 35568, "ts": 5844906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13550", "tid": 35568, "ts": 5845202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13620", "tid": 35568, "ts": 5845498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b136f0", "tid": 35568, "ts": 5845793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19940", "tid": 35568, "ts": 5846090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5846261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18de0", "tid": 35568, "ts": 5846385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5846556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b180e0", "tid": 35568, "ts": 5846681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5846854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19600", "tid": 35568, "ts": 5846977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5847150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18eb0", "tid": 35568, "ts": 5847274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5847445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16e30", "tid": 35568, "ts": 5847569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5847741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16fd0", "tid": 35568, "ts": 5847866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18900", "tid": 35568, "ts": 5848162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18350", "tid": 35568, "ts": 5848523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19120", "tid": 35568, "ts": 5848820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18760", "tid": 35568, "ts": 5849117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5849289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b178c0", "tid": 35568, "ts": 5849414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5849586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b184f0", "tid": 35568, "ts": 5849711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5849882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18830", "tid": 35568, "ts": 5850006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5850177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17240", "tid": 35568, "ts": 5850349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5850521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b181b0", "tid": 35568, "ts": 5850645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5850818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17310", "tid": 35568, "ts": 5850942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5851114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16bc0", "tid": 35568, "ts": 5851238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5851411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16a20", "tid": 35568, "ts": 5851535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5851707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16c90", "tid": 35568, "ts": 5851831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19c80", "tid": 35568, "ts": 5852127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16d60", "tid": 35568, "ts": 5852423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17da0", "tid": 35568, "ts": 5852718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b173e0", "tid": 35568, "ts": 5853014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5853186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18c40", "tid": 35568, "ts": 5853310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5853482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16f00", "tid": 35568, "ts": 5853606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5853777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16af0", "tid": 35568, "ts": 5853900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b174b0", "tid": 35568, "ts": 5854197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17580", "tid": 35568, "ts": 5854494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17650", "tid": 35568, "ts": 5854790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b170a0", "tid": 35568, "ts": 5855087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5855257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17990", "tid": 35568, "ts": 5855381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5855554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18280", "tid": 35568, "ts": 5855678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5855849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b196d0", "tid": 35568, "ts": 5855973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5856145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17170", "tid": 35568, "ts": 5856270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5856443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b189d0", "tid": 35568, "ts": 5856568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5856740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18aa0", "tid": 35568, "ts": 5856864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17e70", "tid": 35568, "ts": 5857160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18d10", "tid": 35568, "ts": 5857457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17cd0", "tid": 35568, "ts": 5857753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b177f0", "tid": 35568, "ts": 5858051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5858223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18420", "tid": 35568, "ts": 5858347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5858519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17720", "tid": 35568, "ts": 5858643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5858816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17a60", "tid": 35568, "ts": 5858940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17b30", "tid": 35568, "ts": 5859236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17c00", "tid": 35568, "ts": 5859531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b192c0", "tid": 35568, "ts": 5859827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18b70", "tid": 35568, "ts": 5860123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5860295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19870", "tid": 35568, "ts": 5860420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5860592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b185c0", "tid": 35568, "ts": 5860716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5860888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18690", "tid": 35568, "ts": 5861012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5861183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17f40", "tid": 35568, "ts": 5861307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5861479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18010", "tid": 35568, "ts": 5861604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5861776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18f80", "tid": 35568, "ts": 5861900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19050", "tid": 35568, "ts": 5862197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b191f0", "tid": 35568, "ts": 5862492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19390", "tid": 35568, "ts": 5862788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19460", "tid": 35568, "ts": 5863086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5863258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19530", "tid": 35568, "ts": 5863382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5863554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b197a0", "tid": 35568, "ts": 5863679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5863850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19a10", "tid": 35568, "ts": 5863974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5864224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19ae0", "tid": 35568, "ts": 5864352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5864529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19bb0", "tid": 35568, "ts": 5864691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5864893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16950", "tid": 35568, "ts": 5865042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5865216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a7e0", "tid": 35568, "ts": 5865343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5865539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bdd0", "tid": 35568, "ts": 5865665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5865837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bd00", "tid": 35568, "ts": 5865961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5866147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c860", "tid": 35568, "ts": 5866275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5866452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c520", "tid": 35568, "ts": 5866634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5866806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b9c0", "tid": 35568, "ts": 5866931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c930", "tid": 35568, "ts": 5867226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19fc0", "tid": 35568, "ts": 5867523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ce10", "tid": 35568, "ts": 5867820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ae60", "tid": 35568, "ts": 5868117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5868289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c5f0", "tid": 35568, "ts": 5868413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5868585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a3d0", "tid": 35568, "ts": 5868709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5868882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d080", "tid": 35568, "ts": 5869007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5869179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bf70", "tid": 35568, "ts": 5869303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5869475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a230", "tid": 35568, "ts": 5869598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5869770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1af30", "tid": 35568, "ts": 5869894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ba90", "tid": 35568, "ts": 5870190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a090", "tid": 35568, "ts": 5870486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b4e0", "tid": 35568, "ts": 5870783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a160", "tid": 35568, "ts": 5871080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5871253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a710", "tid": 35568, "ts": 5871377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5871549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b270", "tid": 35568, "ts": 5871674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5871846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b0d0", "tid": 35568, "ts": 5871970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5872141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cd40", "tid": 35568, "ts": 5872265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5872437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a980", "tid": 35568, "ts": 5872562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5872734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b1a0", "tid": 35568, "ts": 5872858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bea0", "tid": 35568, "ts": 5873154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c6c0", "tid": 35568, "ts": 5873449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b750", "tid": 35568, "ts": 5873746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c790", "tid": 35568, "ts": 5874043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5874215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b340", "tid": 35568, "ts": 5874340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5874512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b000", "tid": 35568, "ts": 5874637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5874809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bb60", "tid": 35568, "ts": 5874933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a640", "tid": 35568, "ts": 5875228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c040", "tid": 35568, "ts": 5875524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ca00", "tid": 35568, "ts": 5875820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c110", "tid": 35568, "ts": 5876115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5876287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cad0", "tid": 35568, "ts": 5876410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5876583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b410", "tid": 35568, "ts": 5876707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5876879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c1e0", "tid": 35568, "ts": 5877004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5877176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cba0", "tid": 35568, "ts": 5877301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5877473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b820", "tid": 35568, "ts": 5877598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5877771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b5b0", "tid": 35568, "ts": 5877895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cee0", "tid": 35568, "ts": 5878191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a8b0", "tid": 35568, "ts": 5878486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b680", "tid": 35568, "ts": 5878783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19d50", "tid": 35568, "ts": 5879080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5879251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bc30", "tid": 35568, "ts": 5879376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5879547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a300", "tid": 35568, "ts": 5879705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5879912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b8f0", "tid": 35568, "ts": 5880036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5880210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cc70", "tid": 35568, "ts": 5880334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5880507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c2b0", "tid": 35568, "ts": 5880631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5880804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c380", "tid": 35568, "ts": 5880928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c450", "tid": 35568, "ts": 5881225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cfb0", "tid": 35568, "ts": 5881522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19e20", "tid": 35568, "ts": 5881818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19ef0", "tid": 35568, "ts": 5882114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5882287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a4a0", "tid": 35568, "ts": 5882411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5882583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a570", "tid": 35568, "ts": 5882707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5882880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1aa50", "tid": 35568, "ts": 5883004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5883176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ab20", "tid": 35568, "ts": 5883301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5883474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1abf0", "tid": 35568, "ts": 5883599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5883772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1acc0", "tid": 35568, "ts": 5883896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ad90", "tid": 35568, "ts": 5884193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ef60", "tid": 35568, "ts": 5884490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fe00", "tid": 35568, "ts": 5884787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f030", "tid": 35568, "ts": 5885083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5885256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ea80", "tid": 35568, "ts": 5885380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5885552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1de50", "tid": 35568, "ts": 5885677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5885849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dcb0", "tid": 35568, "ts": 5885973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5886144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f440", "tid": 35568, "ts": 5886270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5886442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dbe0", "tid": 35568, "ts": 5886567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5886738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e330", "tid": 35568, "ts": 5886862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e260", "tid": 35568, "ts": 5887158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20210", "tid": 35568, "ts": 5887455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f9f0", "tid": 35568, "ts": 5887752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1eb50", "tid": 35568, "ts": 5888049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5888221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fc60", "tid": 35568, "ts": 5888346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5888518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e810", "tid": 35568, "ts": 5888642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5888814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1da40", "tid": 35568, "ts": 5888939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5889112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1db10", "tid": 35568, "ts": 5889236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5889407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fac0", "tid": 35568, "ts": 5889531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5889704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dd80", "tid": 35568, "ts": 5889829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d3c0", "tid": 35568, "ts": 5890124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e400", "tid": 35568, "ts": 5890420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d8a0", "tid": 35568, "ts": 5890716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20140", "tid": 35568, "ts": 5891013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5891186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d700", "tid": 35568, "ts": 5891311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5891482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f920", "tid": 35568, "ts": 5891607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5891779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d490", "tid": 35568, "ts": 5891903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b202e0", "tid": 35568, "ts": 5892198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e8e0", "tid": 35568, "ts": 5892495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f5e0", "tid": 35568, "ts": 5892792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ffa0", "tid": 35568, "ts": 5893088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5893260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d970", "tid": 35568, "ts": 5893385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5893556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fb90", "tid": 35568, "ts": 5893681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5893854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1df20", "tid": 35568, "ts": 5893978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5894150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f100", "tid": 35568, "ts": 5894275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5894459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f510", "tid": 35568, "ts": 5894620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5894792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fd30", "tid": 35568, "ts": 5894916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5895089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e9b0", "tid": 35568, "ts": 5895214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5895450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d630", "tid": 35568, "ts": 5895575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5895748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dff0", "tid": 35568, "ts": 5895872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20070", "tid": 35568, "ts": 5896169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e0c0", "tid": 35568, "ts": 5896467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d150", "tid": 35568, "ts": 5896765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d7d0", "tid": 35568, "ts": 5897061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5897233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b203b0", "tid": 35568, "ts": 5897358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5897529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d560", "tid": 35568, "ts": 5897653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5897825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f1d0", "tid": 35568, "ts": 5897950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5898123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e190", "tid": 35568, "ts": 5898248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5898419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fed0", "tid": 35568, "ts": 5898543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5898715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ec20", "tid": 35568, "ts": 5898840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5899057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ecf0", "tid": 35568, "ts": 5899185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5899397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e4d0", "tid": 35568, "ts": 5899522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5899694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e5a0", "tid": 35568, "ts": 5899876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5900048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e670", "tid": 35568, "ts": 5900172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5900410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20480", "tid": 35568, "ts": 5900538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5900716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d220", "tid": 35568, "ts": 5900843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d2f0", "tid": 35568, "ts": 5901170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e740", "tid": 35568, "ts": 5901468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1edc0", "tid": 35568, "ts": 5901765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f2a0", "tid": 35568, "ts": 5902061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5902233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f370", "tid": 35568, "ts": 5902358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5902530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ee90", "tid": 35568, "ts": 5902654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5902824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f6b0", "tid": 35568, "ts": 5902949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5903121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f780", "tid": 35568, "ts": 5903247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5903419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f850", "tid": 35568, "ts": 5903544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5903716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b226a0", "tid": 35568, "ts": 5903841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20d70", "tid": 35568, "ts": 5904136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20620", "tid": 35568, "ts": 5904432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b236e0", "tid": 35568, "ts": 5904727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21660", "tid": 35568, "ts": 5905025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5905197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20890", "tid": 35568, "ts": 5905321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5905493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20960", "tid": 35568, "ts": 5905618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5905789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21a70", "tid": 35568, "ts": 5905914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21e80", "tid": 35568, "ts": 5906210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23540", "tid": 35568, "ts": 5906505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b225d0", "tid": 35568, "ts": 5906803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22500", "tid": 35568, "ts": 5907100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5907272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23200", "tid": 35568, "ts": 5907396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5907569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20a30", "tid": 35568, "ts": 5907694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5907864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22770", "tid": 35568, "ts": 5907989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5908160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b210b0", "tid": 35568, "ts": 5908285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5908458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b237b0", "tid": 35568, "ts": 5908583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5908755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23060", "tid": 35568, "ts": 5908880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21b40", "tid": 35568, "ts": 5909177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b221c0", "tid": 35568, "ts": 5909473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23130", "tid": 35568, "ts": 5909769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22840", "tid": 35568, "ts": 5910066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5910238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22b80", "tid": 35568, "ts": 5910363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5910534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b207c0", "tid": 35568, "ts": 5910659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5910831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21180", "tid": 35568, "ts": 5911024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5911197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22c50", "tid": 35568, "ts": 5911322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5911495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22d20", "tid": 35568, "ts": 5911621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5911792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b232d0", "tid": 35568, "ts": 5911917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22df0", "tid": 35568, "ts": 5912213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21f50", "tid": 35568, "ts": 5912509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22910", "tid": 35568, "ts": 5912806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20f10", "tid": 35568, "ts": 5913102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5913275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21db0", "tid": 35568, "ts": 5913400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5913571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22290", "tid": 35568, "ts": 5913696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5913869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23610", "tid": 35568, "ts": 5913993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5914164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b233a0", "tid": 35568, "ts": 5914288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5914460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23470", "tid": 35568, "ts": 5914584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5914755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22020", "tid": 35568, "ts": 5914943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5915115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22f90", "tid": 35568, "ts": 5915241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5915413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b229e0", "tid": 35568, "ts": 5915538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5915710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22430", "tid": 35568, "ts": 5915835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22360", "tid": 35568, "ts": 5916131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20b00", "tid": 35568, "ts": 5916428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b214c0", "tid": 35568, "ts": 5916725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23880", "tid": 35568, "ts": 5917106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5917279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20bd0", "tid": 35568, "ts": 5917403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5917576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22ab0", "tid": 35568, "ts": 5917701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5917872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20550", "tid": 35568, "ts": 5917997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5918169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20ca0", "tid": 35568, "ts": 5918292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5918464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21320", "tid": 35568, "ts": 5918589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5918761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22ec0", "tid": 35568, "ts": 5918886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20e40", "tid": 35568, "ts": 5919184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21ce0", "tid": 35568, "ts": 5919479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b220f0", "tid": 35568, "ts": 5919775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b206f0", "tid": 35568, "ts": 5920072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5920244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20fe0", "tid": 35568, "ts": 5920369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5920541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21590", "tid": 35568, "ts": 5920666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5920838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21250", "tid": 35568, "ts": 5920963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5921136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b213f0", "tid": 35568, "ts": 5921260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5921433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21730", "tid": 35568, "ts": 5921557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5921729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21800", "tid": 35568, "ts": 5921854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b218d0", "tid": 35568, "ts": 5922151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b219a0", "tid": 35568, "ts": 5922448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21c10", "tid": 35568, "ts": 5922743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25760", "tid": 35568, "ts": 5923041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5923213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23e30", "tid": 35568, "ts": 5923337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5923509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24310", "tid": 35568, "ts": 5923634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5923805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23bc0", "tid": 35568, "ts": 5923930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b243e0", "tid": 35568, "ts": 5924227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b262c0", "tid": 35568, "ts": 5924522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26870", "tid": 35568, "ts": 5924818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25350", "tid": 35568, "ts": 5925113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5925285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25900", "tid": 35568, "ts": 5925409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5925580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b255c0", "tid": 35568, "ts": 5925705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5925878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24240", "tid": 35568, "ts": 5926003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5926176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b261f0", "tid": 35568, "ts": 5926301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5926472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b259d0", "tid": 35568, "ts": 5926668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5926841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26940", "tid": 35568, "ts": 5926967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5927139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25420", "tid": 35568, "ts": 5927264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5927435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26530", "tid": 35568, "ts": 5927559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5927732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25830", "tid": 35568, "ts": 5927857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24e70", "tid": 35568, "ts": 5928153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26390", "tid": 35568, "ts": 5928451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26460", "tid": 35568, "ts": 5928746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24cd0", "tid": 35568, "ts": 5929041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5929213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26a10", "tid": 35568, "ts": 5929338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5929509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26ae0", "tid": 35568, "ts": 5929634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5929805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23d60", "tid": 35568, "ts": 5929929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23a20", "tid": 35568, "ts": 5930226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26bb0", "tid": 35568, "ts": 5930523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26600", "tid": 35568, "ts": 5930818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23f00", "tid": 35568, "ts": 5931115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5931287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26c80", "tid": 35568, "ts": 5931412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5931584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24650", "tid": 35568, "ts": 5931709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5931881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23fd0", "tid": 35568, "ts": 5932005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5932177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b244b0", "tid": 35568, "ts": 5932346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5932520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25010", "tid": 35568, "ts": 5932644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5932816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23af0", "tid": 35568, "ts": 5932940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25aa0", "tid": 35568, "ts": 5933236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25f80", "tid": 35568, "ts": 5933531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25b70", "tid": 35568, "ts": 5933828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b240a0", "tid": 35568, "ts": 5934124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5934296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23950", "tid": 35568, "ts": 5934420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5934592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24580", "tid": 35568, "ts": 5934716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5934889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24720", "tid": 35568, "ts": 5935012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5935185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b247f0", "tid": 35568, "ts": 5935310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5935482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b248c0", "tid": 35568, "ts": 5935606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5935778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24170", "tid": 35568, "ts": 5935903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24990", "tid": 35568, "ts": 5936200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24da0", "tid": 35568, "ts": 5936495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25690", "tid": 35568, "ts": 5936792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24a60", "tid": 35568, "ts": 5937087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5937259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23c90", "tid": 35568, "ts": 5937383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5937556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24b30", "tid": 35568, "ts": 5937682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5937854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24c00", "tid": 35568, "ts": 5937978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5938151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25c40", "tid": 35568, "ts": 5938276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5938447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24f40", "tid": 35568, "ts": 5938571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5938743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25d10", "tid": 35568, "ts": 5938867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25de0", "tid": 35568, "ts": 5939162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b250e0", "tid": 35568, "ts": 5939458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b251b0", "tid": 35568, "ts": 5939754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25eb0", "tid": 35568, "ts": 5940051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5940223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b266d0", "tid": 35568, "ts": 5940347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5940520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b267a0", "tid": 35568, "ts": 5940644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5940817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25280", "tid": 35568, "ts": 5940941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5941114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b254f0", "tid": 35568, "ts": 5941239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5941411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26050", "tid": 35568, "ts": 5941535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5941707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26120", "tid": 35568, "ts": 5941831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5942002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b277e0", "tid": 35568, "ts": 5942127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5942428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b285b0", "tid": 35568, "ts": 5942626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5942881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29860", "tid": 35568, "ts": 5943029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5943316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29c70", "tid": 35568, "ts": 5943441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5943612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29930", "tid": 35568, "ts": 5943737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5943909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b280d0", "tid": 35568, "ts": 5944033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5944206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27f30", "tid": 35568, "ts": 5944331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5944503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28820", "tid": 35568, "ts": 5944628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5944800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27300", "tid": 35568, "ts": 5944925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27090", "tid": 35568, "ts": 5945223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27160", "tid": 35568, "ts": 5945519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29a00", "tid": 35568, "ts": 5945816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28b60", "tid": 35568, "ts": 5946112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5946283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b281a0", "tid": 35568, "ts": 5946408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5946581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28f70", "tid": 35568, "ts": 5946706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5946877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b278b0", "tid": 35568, "ts": 5947002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5947174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29ee0", "tid": 35568, "ts": 5947299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5947472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27230", "tid": 35568, "ts": 5947596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5947767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29d40", "tid": 35568, "ts": 5947892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29110", "tid": 35568, "ts": 5948188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28c30", "tid": 35568, "ts": 5948485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28d00", "tid": 35568, "ts": 5948781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28270", "tid": 35568, "ts": 5949078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5949249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28680", "tid": 35568, "ts": 5949373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5949545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26e20", "tid": 35568, "ts": 5949670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5949841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27e60", "tid": 35568, "ts": 5949967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5950140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27cc0", "tid": 35568, "ts": 5950265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5950438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28750", "tid": 35568, "ts": 5950563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5950737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28340", "tid": 35568, "ts": 5950861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b284e0", "tid": 35568, "ts": 5951159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29520", "tid": 35568, "ts": 5951455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29ad0", "tid": 35568, "ts": 5951752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b273d0", "tid": 35568, "ts": 5952049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5952220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29e10", "tid": 35568, "ts": 5952344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5952516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28000", "tid": 35568, "ts": 5952641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5952812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28dd0", "tid": 35568, "ts": 5952936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5953108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28410", "tid": 35568, "ts": 5953287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5953460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b274a0", "tid": 35568, "ts": 5953592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5953765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27710", "tid": 35568, "ts": 5953890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29ba0", "tid": 35568, "ts": 5954188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29fb0", "tid": 35568, "ts": 5954485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a080", "tid": 35568, "ts": 5954782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28ea0", "tid": 35568, "ts": 5955079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5955251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29040", "tid": 35568, "ts": 5955376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5955547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b291e0", "tid": 35568, "ts": 5955672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5955844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27570", "tid": 35568, "ts": 5955968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5956139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26d50", "tid": 35568, "ts": 5956263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5956435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b292b0", "tid": 35568, "ts": 5956559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5956731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26ef0", "tid": 35568, "ts": 5956855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5957026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27640", "tid": 35568, "ts": 5957151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5957323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29380", "tid": 35568, "ts": 5957448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5957621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b288f0", "tid": 35568, "ts": 5957746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5958035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b289c0", "tid": 35568, "ts": 5958217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5958406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28a90", "tid": 35568, "ts": 5958555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5958780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27980", "tid": 35568, "ts": 5958905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5959102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29450", "tid": 35568, "ts": 5959278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5959596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b295f0", "tid": 35568, "ts": 5959722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5959896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b296c0", "tid": 35568, "ts": 5960021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5960194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29790", "tid": 35568, "ts": 5960344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5960515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26fc0", "tid": 35568, "ts": 5960640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5960814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27a50", "tid": 35568, "ts": 5960939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5961113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27b20", "tid": 35568, "ts": 5961237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5961409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27bf0", "tid": 35568, "ts": 5961534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5961705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27d90", "tid": 35568, "ts": 5961831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ae50", "tid": 35568, "ts": 5962127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2aa40", "tid": 35568, "ts": 5962425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a220", "tid": 35568, "ts": 5962723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d210", "tid": 35568, "ts": 5963021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5963193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cac0", "tid": 35568, "ts": 5963318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5963490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bf60", "tid": 35568, "ts": 5963614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5963785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d070", "tid": 35568, "ts": 5963910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bb50", "tid": 35568, "ts": 5964207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b9b0", "tid": 35568, "ts": 5964505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b330", "tid": 35568, "ts": 5964802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b4d0", "tid": 35568, "ts": 5965100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5965272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cb90", "tid": 35568, "ts": 5965397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5965568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b5a0", "tid": 35568, "ts": 5965735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5965909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2abe0", "tid": 35568, "ts": 5966035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5966207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a560", "tid": 35568, "ts": 5966331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5966503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2acb0", "tid": 35568, "ts": 5966627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5966798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a490", "tid": 35568, "ts": 5966922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5967094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b670", "tid": 35568, "ts": 5967219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5967448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cd30", "tid": 35568, "ts": 5967613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5967796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bc20", "tid": 35568, "ts": 5967921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5968094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c850", "tid": 35568, "ts": 5968258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5968484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b740", "tid": 35568, "ts": 5968609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5968782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b260", "tid": 35568, "ts": 5968965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5969138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a2f0", "tid": 35568, "ts": 5969263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5969436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b8e0", "tid": 35568, "ts": 5969562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5969734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2af20", "tid": 35568, "ts": 5969859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d2e0", "tid": 35568, "ts": 5970156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c920", "tid": 35568, "ts": 5970454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b810", "tid": 35568, "ts": 5970796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c780", "tid": 35568, "ts": 5971093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5971264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ab10", "tid": 35568, "ts": 5971389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5971571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ba80", "tid": 35568, "ts": 5971698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5971870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bcf0", "tid": 35568, "ts": 5971994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5972165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c030", "tid": 35568, "ts": 5972290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5972463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2aff0", "tid": 35568, "ts": 5972618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5972844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ce00", "tid": 35568, "ts": 5972968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5973141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c1d0", "tid": 35568, "ts": 5973266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5973438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c9f0", "tid": 35568, "ts": 5973564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5973735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cc60", "tid": 35568, "ts": 5973860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5974032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c440", "tid": 35568, "ts": 5974156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5974328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bdc0", "tid": 35568, "ts": 5974453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5974654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a3c0", "tid": 35568, "ts": 5974837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5975010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c510", "tid": 35568, "ts": 5975202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5975426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ced0", "tid": 35568, "ts": 5975563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5975749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ad80", "tid": 35568, "ts": 5975874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b0c0", "tid": 35568, "ts": 5976173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a630", "tid": 35568, "ts": 5976495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b190", "tid": 35568, "ts": 5976817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2be90", "tid": 35568, "ts": 5977114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5977287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c100", "tid": 35568, "ts": 5977414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5977610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a700", "tid": 35568, "ts": 5977735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5977907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a150", "tid": 35568, "ts": 5978035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5978208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b400", "tid": 35568, "ts": 5978333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5978507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d140", "tid": 35568, "ts": 5978658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5978831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a7d0", "tid": 35568, "ts": 5978957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5979130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d3b0", "tid": 35568, "ts": 5979256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5979430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cfa0", "tid": 35568, "ts": 5979567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5979751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d480", "tid": 35568, "ts": 5979877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5980050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c2a0", "tid": 35568, "ts": 5980175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5980347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a8a0", "tid": 35568, "ts": 5980473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5980670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c370", "tid": 35568, "ts": 5980795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5981091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c5e0", "tid": 35568, "ts": 5981254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5981456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a970", "tid": 35568, "ts": 5981631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5981954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c6b0", "tid": 35568, "ts": 5982134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5982307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f500", "tid": 35568, "ts": 5982432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5982607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f360", "tid": 35568, "ts": 5982732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5982905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ec10", "tid": 35568, "ts": 5983030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5983202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d6f0", "tid": 35568, "ts": 5983327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5983499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b307b0", "tid": 35568, "ts": 5983626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5983798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f290", "tid": 35568, "ts": 5983924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d960", "tid": 35568, "ts": 5984221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e730", "tid": 35568, "ts": 5984519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e8d0", "tid": 35568, "ts": 5984818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f430", "tid": 35568, "ts": 5985114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5985287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2db00", "tid": 35568, "ts": 5985412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5985585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d550", "tid": 35568, "ts": 5985710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5985881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dbd0", "tid": 35568, "ts": 5986007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5986179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2eb40", "tid": 35568, "ts": 5986305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5986477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f910", "tid": 35568, "ts": 5986616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5986788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e660", "tid": 35568, "ts": 5986913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30470", "tid": 35568, "ts": 5987210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2edb0", "tid": 35568, "ts": 5987507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ece0", "tid": 35568, "ts": 5987806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30060", "tid": 35568, "ts": 5988103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5988275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e320", "tid": 35568, "ts": 5988400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5988604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fec0", "tid": 35568, "ts": 5988791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5988964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f5d0", "tid": 35568, "ts": 5989088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5989261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e800", "tid": 35568, "ts": 5989386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5989560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f6a0", "tid": 35568, "ts": 5989685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5989857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f770", "tid": 35568, "ts": 5989983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5990155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ff90", "tid": 35568, "ts": 5990280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5990452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fab0", "tid": 35568, "ts": 5990622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5990962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2df10", "tid": 35568, "ts": 5991175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5991553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d7c0", "tid": 35568, "ts": 5991772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5991945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f840", "tid": 35568, "ts": 5992071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5992243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ee80", "tid": 35568, "ts": 5992368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5992570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e9a0", "tid": 35568, "ts": 5992725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5992957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e4c0", "tid": 35568, "ts": 5993138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5993411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dca0", "tid": 35568, "ts": 5993630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5993820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ef50", "tid": 35568, "ts": 5993945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5994117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f9e0", "tid": 35568, "ts": 5994242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5994414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fb80", "tid": 35568, "ts": 5994564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5994736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dfe0", "tid": 35568, "ts": 5994861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fc50", "tid": 35568, "ts": 5995189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30880", "tid": 35568, "ts": 5995488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e3f0", "tid": 35568, "ts": 5995788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e590", "tid": 35568, "ts": 5996086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5996259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2da30", "tid": 35568, "ts": 5996384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5996557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fd20", "tid": 35568, "ts": 5996683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5996854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f020", "tid": 35568, "ts": 5996979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5997150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fdf0", "tid": 35568, "ts": 5997274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5997447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b302d0", "tid": 35568, "ts": 5997573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5997746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30200", "tid": 35568, "ts": 5997871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f0f0", "tid": 35568, "ts": 5998169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f1c0", "tid": 35568, "ts": 5998466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30130", "tid": 35568, "ts": 5998764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e0b0", "tid": 35568, "ts": 5999061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5999233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dd70", "tid": 35568, "ts": 5999357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5999531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2de40", "tid": 35568, "ts": 5999658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5999831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b303a0", "tid": 35568, "ts": 5999957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6000129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e180", "tid": 35568, "ts": 6000267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6000550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30540", "tid": 35568, "ts": 6000686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6000917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30610", "tid": 35568, "ts": 6001084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6001257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b306e0", "tid": 35568, "ts": 6001381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6001564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d620", "tid": 35568, "ts": 6001690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6001862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d890", "tid": 35568, "ts": 6001987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6002159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ea70", "tid": 35568, "ts": 6002285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6002456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e250", "tid": 35568, "ts": 6002582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6002755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30c90", "tid": 35568, "ts": 6002942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6003115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32900", "tid": 35568, "ts": 6003240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6003411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33c80", "tid": 35568, "ts": 6003535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6003709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32d10", "tid": 35568, "ts": 6003899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6004073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b313e0", "tid": 35568, "ts": 6004197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6004370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b318c0", "tid": 35568, "ts": 6004494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6004806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b324f0", "tid": 35568, "ts": 6005002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6005175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31240", "tid": 35568, "ts": 6005300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6005472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32de0", "tid": 35568, "ts": 6005598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6005770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31a60", "tid": 35568, "ts": 6005894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30a20", "tid": 35568, "ts": 6006190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33ae0", "tid": 35568, "ts": 6006488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31990", "tid": 35568, "ts": 6006788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31cd0", "tid": 35568, "ts": 6007084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6007258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33bb0", "tid": 35568, "ts": 6007382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6007555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b331f0", "tid": 35568, "ts": 6007680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6007853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b314b0", "tid": 35568, "ts": 6007978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6008150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32f80", "tid": 35568, "ts": 6008274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6008447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32c40", "tid": 35568, "ts": 6008601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6008773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32280", "tid": 35568, "ts": 6008898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31b30", "tid": 35568, "ts": 6009196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32eb0", "tid": 35568, "ts": 6009492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b329d0", "tid": 35568, "ts": 6009789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b325c0", "tid": 35568, "ts": 6010085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6010256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31310", "tid": 35568, "ts": 6010382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6010554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30950", "tid": 35568, "ts": 6010679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6010851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31da0", "tid": 35568, "ts": 6010976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6011148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31720", "tid": 35568, "ts": 6011274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6011446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32690", "tid": 35568, "ts": 6011572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6011743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33050", "tid": 35568, "ts": 6011868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32aa0", "tid": 35568, "ts": 6012165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32760", "tid": 35568, "ts": 6012461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33a10", "tid": 35568, "ts": 6012759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33120", "tid": 35568, "ts": 6013055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6013227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32830", "tid": 35568, "ts": 6013351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6013523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30d60", "tid": 35568, "ts": 6013649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6013822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32b70", "tid": 35568, "ts": 6013947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6014119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b332c0", "tid": 35568, "ts": 6014243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6014415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31580", "tid": 35568, "ts": 6014541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6014714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33390", "tid": 35568, "ts": 6014838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33460", "tid": 35568, "ts": 6015135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31650", "tid": 35568, "ts": 6015432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30e30", "tid": 35568, "ts": 6015732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31c00", "tid": 35568, "ts": 6016029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6016200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33530", "tid": 35568, "ts": 6016324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6016497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32350", "tid": 35568, "ts": 6016631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6016803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31f40", "tid": 35568, "ts": 6016928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30af0", "tid": 35568, "ts": 6017224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33600", "tid": 35568, "ts": 6017521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31e70", "tid": 35568, "ts": 6017819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b336d0", "tid": 35568, "ts": 6018116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6018289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b337a0", "tid": 35568, "ts": 6018413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6018587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33870", "tid": 35568, "ts": 6018712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6018884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33940", "tid": 35568, "ts": 6019010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6019181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b317f0", "tid": 35568, "ts": 6019307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6019478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30bc0", "tid": 35568, "ts": 6019677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6019852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32010", "tid": 35568, "ts": 6019979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6020153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b320e0", "tid": 35568, "ts": 6020278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6020450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30f00", "tid": 35568, "ts": 6020577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6020750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30fd0", "tid": 35568, "ts": 6020875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b310a0", "tid": 35568, "ts": 6021174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b321b0", "tid": 35568, "ts": 6021471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31170", "tid": 35568, "ts": 6021771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32420", "tid": 35568, "ts": 6022068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6022241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34b20", "tid": 35568, "ts": 6022365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6022538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35d00", "tid": 35568, "ts": 6022663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6022836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36380", "tid": 35568, "ts": 6022961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6023133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34570", "tid": 35568, "ts": 6023258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6023431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35410", "tid": 35568, "ts": 6023599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6023788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36e10", "tid": 35568, "ts": 6023912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34cc0", "tid": 35568, "ts": 6024210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b355b0", "tid": 35568, "ts": 6024508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35820", "tid": 35568, "ts": 6024804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34160", "tid": 35568, "ts": 6025102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6025273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b365f0", "tid": 35568, "ts": 6025397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6025595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35000", "tid": 35568, "ts": 6025719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6025891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33fc0", "tid": 35568, "ts": 6026016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6026188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34230", "tid": 35568, "ts": 6026312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6026484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34640", "tid": 35568, "ts": 6026608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6026779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34d90", "tid": 35568, "ts": 6026904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34a50", "tid": 35568, "ts": 6027201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36790", "tid": 35568, "ts": 6027496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34710", "tid": 35568, "ts": 6027793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34300", "tid": 35568, "ts": 6028090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6028263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35270", "tid": 35568, "ts": 6028387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6028559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36ee0", "tid": 35568, "ts": 6028683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6028854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b350d0", "tid": 35568, "ts": 6028979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6029150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34980", "tid": 35568, "ts": 6029275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6029447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b343d0", "tid": 35568, "ts": 6029571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6029743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35dd0", "tid": 35568, "ts": 6029868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35a90", "tid": 35568, "ts": 6030164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35ea0", "tid": 35568, "ts": 6030459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36c70", "tid": 35568, "ts": 6030756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35340", "tid": 35568, "ts": 6031053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6031226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35680", "tid": 35568, "ts": 6031350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6031523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b354e0", "tid": 35568, "ts": 6031647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6031819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33d50", "tid": 35568, "ts": 6031943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6032115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b358f0", "tid": 35568, "ts": 6032239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6032411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b347e0", "tid": 35568, "ts": 6032535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6032706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35f70", "tid": 35568, "ts": 6032832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35b60", "tid": 35568, "ts": 6033128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36d40", "tid": 35568, "ts": 6033425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b361e0", "tid": 35568, "ts": 6033721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b348b0", "tid": 35568, "ts": 6034060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6034234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34bf0", "tid": 35568, "ts": 6034360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6034532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35750", "tid": 35568, "ts": 6034657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6034829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b359c0", "tid": 35568, "ts": 6034953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6035125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b366c0", "tid": 35568, "ts": 6035250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6035423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36520", "tid": 35568, "ts": 6035548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6035719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34e60", "tid": 35568, "ts": 6035843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36450", "tid": 35568, "ts": 6036140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35c30", "tid": 35568, "ts": 6036437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36040", "tid": 35568, "ts": 6036734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33e20", "tid": 35568, "ts": 6037030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6037202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36860", "tid": 35568, "ts": 6037326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6037497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36110", "tid": 35568, "ts": 6037622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6037793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36930", "tid": 35568, "ts": 6037918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34f30", "tid": 35568, "ts": 6038214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b362b0", "tid": 35568, "ts": 6038511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33ef0", "tid": 35568, "ts": 6038808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34090", "tid": 35568, "ts": 6039104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6039332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b351a0", "tid": 35568, "ts": 6039735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6039962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36a00", "tid": 35568, "ts": 6040109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6040404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36ad0", "tid": 35568, "ts": 6040532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6040708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36ba0", "tid": 35568, "ts": 6040836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b344a0", "tid": 35568, "ts": 6041136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4907f0", "tid": 35568, "ts": 6041502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491830", "tid": 35568, "ts": 6041806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f610", "tid": 35568, "ts": 6042105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6042278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fe30", "tid": 35568, "ts": 6042404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6042578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490cd0", "tid": 35568, "ts": 6042704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6042877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491690", "tid": 35568, "ts": 6043003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6043177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ff00", "tid": 35568, "ts": 6043304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6043475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490da0", "tid": 35568, "ts": 6043602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6043817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ffd0", "tid": 35568, "ts": 6043944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6044117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4914f0", "tid": 35568, "ts": 6044243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6044415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492460", "tid": 35568, "ts": 6044541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6044714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4903e0", "tid": 35568, "ts": 6044839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491350", "tid": 35568, "ts": 6045137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fa20", "tid": 35568, "ts": 6045438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491010", "tid": 35568, "ts": 6045737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4908c0", "tid": 35568, "ts": 6046035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6046206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4926d0", "tid": 35568, "ts": 6046331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6046503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490990", "tid": 35568, "ts": 6046628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6046801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4915c0", "tid": 35568, "ts": 6046926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4919d0", "tid": 35568, "ts": 6047224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490720", "tid": 35568, "ts": 6047522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490a60", "tid": 35568, "ts": 6047821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491f80", "tid": 35568, "ts": 6048120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6048293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491aa0", "tid": 35568, "ts": 6048418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6048592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491900", "tid": 35568, "ts": 6048718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6048890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490240", "tid": 35568, "ts": 6049017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6049189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4911b0", "tid": 35568, "ts": 6049314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6049487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492120", "tid": 35568, "ts": 6049613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6049785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492600", "tid": 35568, "ts": 6049910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491760", "tid": 35568, "ts": 6050208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490b30", "tid": 35568, "ts": 6050505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491420", "tid": 35568, "ts": 6050803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48faf0", "tid": 35568, "ts": 6051101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6051274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491b70", "tid": 35568, "ts": 6051399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6051571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4904b0", "tid": 35568, "ts": 6051696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6051868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4900a0", "tid": 35568, "ts": 6051993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6052165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490580", "tid": 35568, "ts": 6052290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6052464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4910e0", "tid": 35568, "ts": 6052588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6052761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490e70", "tid": 35568, "ts": 6052886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f6e0", "tid": 35568, "ts": 6053184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491280", "tid": 35568, "ts": 6053480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490c00", "tid": 35568, "ts": 6053778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4922c0", "tid": 35568, "ts": 6054075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6054249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f950", "tid": 35568, "ts": 6054375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6054547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491c40", "tid": 35568, "ts": 6054671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6054843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490f40", "tid": 35568, "ts": 6055031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6055204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492530", "tid": 35568, "ts": 6055330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6055502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491d10", "tid": 35568, "ts": 6055628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6055800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491de0", "tid": 35568, "ts": 6055926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492870", "tid": 35568, "ts": 6056223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491eb0", "tid": 35568, "ts": 6056520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492050", "tid": 35568, "ts": 6056818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4921f0", "tid": 35568, "ts": 6057116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6057288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492390", "tid": 35568, "ts": 6057413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6057586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4927a0", "tid": 35568, "ts": 6057712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6057884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490650", "tid": 35568, "ts": 6058009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6058182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f7b0", "tid": 35568, "ts": 6058307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6058479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f540", "tid": 35568, "ts": 6058605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6058778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f880", "tid": 35568, "ts": 6058903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fbc0", "tid": 35568, "ts": 6059204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fc90", "tid": 35568, "ts": 6059504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490310", "tid": 35568, "ts": 6059802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fd60", "tid": 35568, "ts": 6060100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6060273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490170", "tid": 35568, "ts": 6060398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6060570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494410", "tid": 35568, "ts": 6060695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6060869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493b20", "tid": 35568, "ts": 6060995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6061168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494d00", "tid": 35568, "ts": 6061294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6061466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492fc0", "tid": 35568, "ts": 6061591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6061763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492940", "tid": 35568, "ts": 6061888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493d90", "tid": 35568, "ts": 6062184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494ea0", "tid": 35568, "ts": 6062482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494c30", "tid": 35568, "ts": 6062782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493cc0", "tid": 35568, "ts": 6063081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6063254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492ae0", "tid": 35568, "ts": 6063380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6063553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493980", "tid": 35568, "ts": 6063679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6063851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493bf0", "tid": 35568, "ts": 6063976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6064149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493e60", "tid": 35568, "ts": 6064274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6064446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494820", "tid": 35568, "ts": 6064571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6064744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493a50", "tid": 35568, "ts": 6064870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492a10", "tid": 35568, "ts": 6065167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493090", "tid": 35568, "ts": 6065465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495520", "tid": 35568, "ts": 6065761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493710", "tid": 35568, "ts": 6066060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6066232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494680", "tid": 35568, "ts": 6066357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6066530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493160", "tid": 35568, "ts": 6066654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6066826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492bb0", "tid": 35568, "ts": 6066950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6067123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493f30", "tid": 35568, "ts": 6067248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6067463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4933d0", "tid": 35568, "ts": 6067595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6067769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493230", "tid": 35568, "ts": 6067894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4948f0", "tid": 35568, "ts": 6068191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492ef0", "tid": 35568, "ts": 6068490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4937e0", "tid": 35568, "ts": 6068787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494a90", "tid": 35568, "ts": 6069085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6069258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494000", "tid": 35568, "ts": 6069384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6069557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493570", "tid": 35568, "ts": 6069683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6069855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4955f0", "tid": 35568, "ts": 6069980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6070154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4956c0", "tid": 35568, "ts": 6070279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6070452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494340", "tid": 35568, "ts": 6070704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6070906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495110", "tid": 35568, "ts": 6071058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6071232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495c70", "tid": 35568, "ts": 6071359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6071531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492c80", "tid": 35568, "ts": 6071658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6071830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4951e0", "tid": 35568, "ts": 6071955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6072127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493640", "tid": 35568, "ts": 6072253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6072427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4938b0", "tid": 35568, "ts": 6072552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6072724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495790", "tid": 35568, "ts": 6072851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493300", "tid": 35568, "ts": 6073148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4944e0", "tid": 35568, "ts": 6073446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494dd0", "tid": 35568, "ts": 6073743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4940d0", "tid": 35568, "ts": 6074041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6074213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495860", "tid": 35568, "ts": 6074339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6074512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494b60", "tid": 35568, "ts": 6074636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6074808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4934a0", "tid": 35568, "ts": 6074933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4941a0", "tid": 35568, "ts": 6075231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494270", "tid": 35568, "ts": 6075529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492d50", "tid": 35568, "ts": 6075826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4945b0", "tid": 35568, "ts": 6076123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6076297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494750", "tid": 35568, "ts": 6076422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6076594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495930", "tid": 35568, "ts": 6076719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6076892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4949c0", "tid": 35568, "ts": 6077017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6077190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4952b0", "tid": 35568, "ts": 6077315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6077488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494f70", "tid": 35568, "ts": 6077613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6077786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495040", "tid": 35568, "ts": 6077911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495380", "tid": 35568, "ts": 6078210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495450", "tid": 35568, "ts": 6078508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495a00", "tid": 35568, "ts": 6078805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495ad0", "tid": 35568, "ts": 6079102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6079275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495ba0", "tid": 35568, "ts": 6079400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6079573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492e20", "tid": 35568, "ts": 6079698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6079871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4963c0", "tid": 35568, "ts": 6079996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6080169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4982a0", "tid": 35568, "ts": 6080295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6080468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496e50", "tid": 35568, "ts": 6080593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6080765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4970c0", "tid": 35568, "ts": 6080890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496d80", "tid": 35568, "ts": 6081187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4978e0", "tid": 35568, "ts": 6081485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495e10", "tid": 35568, "ts": 6081782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496f20", "tid": 35568, "ts": 6082079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6082251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498510", "tid": 35568, "ts": 6082376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6082548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496630", "tid": 35568, "ts": 6082673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6082845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4986b0", "tid": 35568, "ts": 6082971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6083143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498030", "tid": 35568, "ts": 6083269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6083440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496ff0", "tid": 35568, "ts": 6083565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6083737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499070", "tid": 35568, "ts": 6083862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498440", "tid": 35568, "ts": 6084158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497190", "tid": 35568, "ts": 6084456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497260", "tid": 35568, "ts": 6084754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497740", "tid": 35568, "ts": 6085049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6085223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4968a0", "tid": 35568, "ts": 6085347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6085519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4981d0", "tid": 35568, "ts": 6085644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6085817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498850", "tid": 35568, "ts": 6085942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6086127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497330", "tid": 35568, "ts": 6086272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6086444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498100", "tid": 35568, "ts": 6086569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6086741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496490", "tid": 35568, "ts": 6086866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6087038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497810", "tid": 35568, "ts": 6087163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6087378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497400", "tid": 35568, "ts": 6087545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6087774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498c60", "tid": 35568, "ts": 6087951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6088154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4975a0", "tid": 35568, "ts": 6088279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6088452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497670", "tid": 35568, "ts": 6088577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6088749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497e90", "tid": 35568, "ts": 6088875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496a40", "tid": 35568, "ts": 6089198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4979b0", "tid": 35568, "ts": 6089495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498780", "tid": 35568, "ts": 6089793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4974d0", "tid": 35568, "ts": 6090113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6090285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496b10", "tid": 35568, "ts": 6090410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6090582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498370", "tid": 35568, "ts": 6090770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6090942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497a80", "tid": 35568, "ts": 6091090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6091263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496be0", "tid": 35568, "ts": 6091388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6091561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498ac0", "tid": 35568, "ts": 6091686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6091857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496cb0", "tid": 35568, "ts": 6091995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6092179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497b50", "tid": 35568, "ts": 6092304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6092477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497dc0", "tid": 35568, "ts": 6092603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6092776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497c20", "tid": 35568, "ts": 6092901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6093097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496150", "tid": 35568, "ts": 6093222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6093395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498920", "tid": 35568, "ts": 6093521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6093693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497cf0", "tid": 35568, "ts": 6093819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6094021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496220", "tid": 35568, "ts": 6094200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6094436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4962f0", "tid": 35568, "ts": 6094690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6095058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497f60", "tid": 35568, "ts": 6095303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6095739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4985e0", "tid": 35568, "ts": 6095969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6096232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498d30", "tid": 35568, "ts": 6096366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6096683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4989f0", "tid": 35568, "ts": 6096813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6096989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498b90", "tid": 35568, "ts": 6097118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6097292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496700", "tid": 35568, "ts": 6097420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6097593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498e00", "tid": 35568, "ts": 6097721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6097894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498ed0", "tid": 35568, "ts": 6098022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6098195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496970", "tid": 35568, "ts": 6098321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6098494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498fa0", "tid": 35568, "ts": 6098620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6098793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495d40", "tid": 35568, "ts": 6098920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495ee0", "tid": 35568, "ts": 6099221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495fb0", "tid": 35568, "ts": 6099520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496560", "tid": 35568, "ts": 6099819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496080", "tid": 35568, "ts": 6100119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6100291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4967d0", "tid": 35568, "ts": 6100416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6100590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4996f0", "tid": 35568, "ts": 6100716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6100890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499fe0", "tid": 35568, "ts": 6101017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6101189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b840", "tid": 35568, "ts": 6101315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6101488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b1c0", "tid": 35568, "ts": 6101614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6101786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b020", "tid": 35568, "ts": 6101960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6102166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4992e0", "tid": 35568, "ts": 6102292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6102465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b5d0", "tid": 35568, "ts": 6102591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6102764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49af50", "tid": 35568, "ts": 6102890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6103064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bd20", "tid": 35568, "ts": 6103189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6103361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499140", "tid": 35568, "ts": 6103488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6103661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499bd0", "tid": 35568, "ts": 6103800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b910", "tid": 35568, "ts": 6104175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bec0", "tid": 35568, "ts": 6104473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49adb0", "tid": 35568, "ts": 6104770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4997c0", "tid": 35568, "ts": 6105069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6105242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a0b0", "tid": 35568, "ts": 6105367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6105552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bb80", "tid": 35568, "ts": 6105693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6105865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499960", "tid": 35568, "ts": 6105991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6106164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499b00", "tid": 35568, "ts": 6106290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6106463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ae80", "tid": 35568, "ts": 6106588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6106760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4993b0", "tid": 35568, "ts": 6106885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a180", "tid": 35568, "ts": 6107184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a660", "tid": 35568, "ts": 6107482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bdf0", "tid": 35568, "ts": 6107779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b430", "tid": 35568, "ts": 6108079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6108251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b6a0", "tid": 35568, "ts": 6108377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6108549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bc50", "tid": 35568, "ts": 6108675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6108847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a4c0", "tid": 35568, "ts": 6108982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6109156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b9e0", "tid": 35568, "ts": 6109282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6109456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c130", "tid": 35568, "ts": 6109581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6109754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a320", "tid": 35568, "ts": 6109937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6110111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bab0", "tid": 35568, "ts": 6110237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6110410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499210", "tid": 35568, "ts": 6110535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6110707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499ca0", "tid": 35568, "ts": 6110832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499890", "tid": 35568, "ts": 6111132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b0f0", "tid": 35568, "ts": 6111430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499a30", "tid": 35568, "ts": 6111728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499d70", "tid": 35568, "ts": 6112027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6112286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ace0", "tid": 35568, "ts": 6112412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6112585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b770", "tid": 35568, "ts": 6112711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6112883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bf90", "tid": 35568, "ts": 6113066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6113240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a590", "tid": 35568, "ts": 6113366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6113539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499e40", "tid": 35568, "ts": 6113665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6113865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a8d0", "tid": 35568, "ts": 6113990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6114163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49aa70", "tid": 35568, "ts": 6114288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6114460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a250", "tid": 35568, "ts": 6114586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6114758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c060", "tid": 35568, "ts": 6114884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a730", "tid": 35568, "ts": 6115180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b290", "tid": 35568, "ts": 6115478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a9a0", "tid": 35568, "ts": 6115775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c200", "tid": 35568, "ts": 6116116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6116288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a3f0", "tid": 35568, "ts": 6116414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6116587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b360", "tid": 35568, "ts": 6116713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6116886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499f10", "tid": 35568, "ts": 6117056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6117230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499480", "tid": 35568, "ts": 6117356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6117528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a800", "tid": 35568, "ts": 6117653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6117826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ab40", "tid": 35568, "ts": 6117952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6118124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ac10", "tid": 35568, "ts": 6118249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6118422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b500", "tid": 35568, "ts": 6118547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6118720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c2d0", "tid": 35568, "ts": 6118845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c3a0", "tid": 35568, "ts": 6119143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c470", "tid": 35568, "ts": 6119441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499550", "tid": 35568, "ts": 6119739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499620", "tid": 35568, "ts": 6120036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6120208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e0e0", "tid": 35568, "ts": 6120393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6120661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49eeb0", "tid": 35568, "ts": 6120812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49eaa0", "tid": 35568, "ts": 6121163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f6d0", "tid": 35568, "ts": 6121473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49db30", "tid": 35568, "ts": 6121798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49dda0", "tid": 35568, "ts": 6122197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6122390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d240", "tid": 35568, "ts": 6122516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6122688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f1f0", "tid": 35568, "ts": 6122813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6122985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f870", "tid": 35568, "ts": 6123110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6123283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c610", "tid": 35568, "ts": 6123407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6123581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c540", "tid": 35568, "ts": 6123707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6123880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ca20", "tid": 35568, "ts": 6124005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6124178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f2c0", "tid": 35568, "ts": 6124303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6124474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d4b0", "tid": 35568, "ts": 6124600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6124772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f7a0", "tid": 35568, "ts": 6124897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cfd0", "tid": 35568, "ts": 6125194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49da60", "tid": 35568, "ts": 6125492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f390", "tid": 35568, "ts": 6125791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ef80", "tid": 35568, "ts": 6126088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6126260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d3e0", "tid": 35568, "ts": 6126385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6126558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f050", "tid": 35568, "ts": 6126683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6126855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49eb70", "tid": 35568, "ts": 6126979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6127152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e900", "tid": 35568, "ts": 6127277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6127450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e9d0", "tid": 35568, "ts": 6127574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6127747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e010", "tid": 35568, "ts": 6127872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6128044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f120", "tid": 35568, "ts": 6128169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6128342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d310", "tid": 35568, "ts": 6128467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6128705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f460", "tid": 35568, "ts": 6128860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d0a0", "tid": 35568, "ts": 6129161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cbc0", "tid": 35568, "ts": 6129460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c950", "tid": 35568, "ts": 6129758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49dc00", "tid": 35568, "ts": 6130056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6130228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f530", "tid": 35568, "ts": 6130395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6130617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c880", "tid": 35568, "ts": 6130742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6130915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d580", "tid": 35568, "ts": 6131040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6131213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c6e0", "tid": 35568, "ts": 6131338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6131510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d650", "tid": 35568, "ts": 6131635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6131808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49df40", "tid": 35568, "ts": 6131933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6132106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ec40", "tid": 35568, "ts": 6132231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6132403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f600", "tid": 35568, "ts": 6132529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6132702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49caf0", "tid": 35568, "ts": 6132828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49de70", "tid": 35568, "ts": 6133125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e1b0", "tid": 35568, "ts": 6133423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cf00", "tid": 35568, "ts": 6133721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d720", "tid": 35568, "ts": 6134019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6134191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d7f0", "tid": 35568, "ts": 6134317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6134490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c7b0", "tid": 35568, "ts": 6134615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6134787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e280", "tid": 35568, "ts": 6134912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6135085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cc90", "tid": 35568, "ts": 6135210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6135383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ed10", "tid": 35568, "ts": 6135508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6135727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ede0", "tid": 35568, "ts": 6135858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e4f0", "tid": 35568, "ts": 6136156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d8c0", "tid": 35568, "ts": 6136454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e350", "tid": 35568, "ts": 6136751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d990", "tid": 35568, "ts": 6137050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6137222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cd60", "tid": 35568, "ts": 6137347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6137519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e5c0", "tid": 35568, "ts": 6137644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6137818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49dcd0", "tid": 35568, "ts": 6137943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6138116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ce30", "tid": 35568, "ts": 6138300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6138471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d170", "tid": 35568, "ts": 6138596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6138768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e420", "tid": 35568, "ts": 6138893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e690", "tid": 35568, "ts": 6139192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e760", "tid": 35568, "ts": 6139490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e830", "tid": 35568, "ts": 6139786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a15b0", "tid": 35568, "ts": 6140110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6140282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1ea0", "tid": 35568, "ts": 6140407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6140580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fef0", "tid": 35568, "ts": 6140704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6140877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1410", "tid": 35568, "ts": 6141002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6141175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1f70", "tid": 35568, "ts": 6141300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6141472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2930", "tid": 35568, "ts": 6141596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6141769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fae0", "tid": 35568, "ts": 6141894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0cc0", "tid": 35568, "ts": 6142190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1680", "tid": 35568, "ts": 6142489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0300", "tid": 35568, "ts": 6142786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0980", "tid": 35568, "ts": 6143084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6143256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2040", "tid": 35568, "ts": 6143380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6143552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0d90", "tid": 35568, "ts": 6143677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6143850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1750", "tid": 35568, "ts": 6143975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6144147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2110", "tid": 35568, "ts": 6144272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6144516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fbb0", "tid": 35568, "ts": 6144642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6144814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0090", "tid": 35568, "ts": 6144939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6145112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1a90", "tid": 35568, "ts": 6145237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6145411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1820", "tid": 35568, "ts": 6145537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6145708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a08b0", "tid": 35568, "ts": 6145833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1340", "tid": 35568, "ts": 6146132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a21e0", "tid": 35568, "ts": 6146430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0e60", "tid": 35568, "ts": 6146728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2450", "tid": 35568, "ts": 6147025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6147197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0710", "tid": 35568, "ts": 6147321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6147493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a10d0", "tid": 35568, "ts": 6147619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6147790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ffc0", "tid": 35568, "ts": 6147973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6148145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a14e0", "tid": 35568, "ts": 6148270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6148443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a18f0", "tid": 35568, "ts": 6148567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6148741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2a00", "tid": 35568, "ts": 6148865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6149038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1c30", "tid": 35568, "ts": 6149163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6149336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0f30", "tid": 35568, "ts": 6149460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6149708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a11a0", "tid": 35568, "ts": 6149845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6150066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0160", "tid": 35568, "ts": 6150284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6150471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a19c0", "tid": 35568, "ts": 6150597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6150807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2ad0", "tid": 35568, "ts": 6150993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6151228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fc80", "tid": 35568, "ts": 6151494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6151841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0230", "tid": 35568, "ts": 6151966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6152139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1270", "tid": 35568, "ts": 6152264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6152436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1000", "tid": 35568, "ts": 6152561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6152734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a26c0", "tid": 35568, "ts": 6152860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0a50", "tid": 35568, "ts": 6153157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f940", "tid": 35568, "ts": 6153455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0b20", "tid": 35568, "ts": 6153753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a07e0", "tid": 35568, "ts": 6154051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6154223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2860", "tid": 35568, "ts": 6154348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6154521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2ba0", "tid": 35568, "ts": 6154647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6154819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1b60", "tid": 35568, "ts": 6154943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6155116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a03d0", "tid": 35568, "ts": 6155240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6155412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0bf0", "tid": 35568, "ts": 6155536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6155709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1dd0", "tid": 35568, "ts": 6155835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a25f0", "tid": 35568, "ts": 6156133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1d00", "tid": 35568, "ts": 6156430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a22b0", "tid": 35568, "ts": 6156729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2380", "tid": 35568, "ts": 6157026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6157200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2520", "tid": 35568, "ts": 6157325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6157559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0640", "tid": 35568, "ts": 6157685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6157856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fa10", "tid": 35568, "ts": 6157981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6158154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a04a0", "tid": 35568, "ts": 6158280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6158452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fd50", "tid": 35568, "ts": 6158577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6158751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2790", "tid": 35568, "ts": 6158876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6159049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2c70", "tid": 35568, "ts": 6159233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6159406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fe20", "tid": 35568, "ts": 6159531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6159703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0570", "tid": 35568, "ts": 6159828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6160070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4dc0", "tid": 35568, "ts": 6160385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6160808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a45a0", "tid": 35568, "ts": 6160998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6161335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4670", "tid": 35568, "ts": 6161466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6161641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5030", "tid": 35568, "ts": 6161769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6161942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3a40", "tid": 35568, "ts": 6162069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6162242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5440", "tid": 35568, "ts": 6162368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6162541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3560", "tid": 35568, "ts": 6162699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6162872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2d40", "tid": 35568, "ts": 6162999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6163172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3700", "tid": 35568, "ts": 6163297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6163470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a56b0", "tid": 35568, "ts": 6163595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6163768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4740", "tid": 35568, "ts": 6163894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4810", "tid": 35568, "ts": 6164191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3b10", "tid": 35568, "ts": 6164487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4330", "tid": 35568, "ts": 6164785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5510", "tid": 35568, "ts": 6165083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6165255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3ff0", "tid": 35568, "ts": 6165380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6165553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2e10", "tid": 35568, "ts": 6165677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6165849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3be0", "tid": 35568, "ts": 6165972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6166145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a38a0", "tid": 35568, "ts": 6166270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6166442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5d30", "tid": 35568, "ts": 6166566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6166739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2ee0", "tid": 35568, "ts": 6166863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a32f0", "tid": 35568, "ts": 6167221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a40c0", "tid": 35568, "ts": 6167519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a49b0", "tid": 35568, "ts": 6167815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4a80", "tid": 35568, "ts": 6168113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6168284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a52a0", "tid": 35568, "ts": 6168408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6168581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3490", "tid": 35568, "ts": 6168706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6168932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a48e0", "tid": 35568, "ts": 6169056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6169228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5b90", "tid": 35568, "ts": 6169352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6169526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4260", "tid": 35568, "ts": 6169650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6169822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3cb0", "tid": 35568, "ts": 6169947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6170118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5e00", "tid": 35568, "ts": 6170288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6170461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2fb0", "tid": 35568, "ts": 6170586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6170758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a55e0", "tid": 35568, "ts": 6170883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a37d0", "tid": 35568, "ts": 6171180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5780", "tid": 35568, "ts": 6171474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6070", "tid": 35568, "ts": 6171770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3150", "tid": 35568, "ts": 6172067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6172239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5920", "tid": 35568, "ts": 6172363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6172535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4190", "tid": 35568, "ts": 6172661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6172834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a44d0", "tid": 35568, "ts": 6172959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6173130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a33c0", "tid": 35568, "ts": 6173255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6173426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4b50", "tid": 35568, "ts": 6173551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6173723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4c20", "tid": 35568, "ts": 6173847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4cf0", "tid": 35568, "ts": 6174143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4400", "tid": 35568, "ts": 6174438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5850", "tid": 35568, "ts": 6174734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3080", "tid": 35568, "ts": 6175030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6175202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4e90", "tid": 35568, "ts": 6175326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6175497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5ed0", "tid": 35568, "ts": 6175676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6175965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5370", "tid": 35568, "ts": 6176142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6176401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4f60", "tid": 35568, "ts": 6176537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6176708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3d80", "tid": 35568, "ts": 6176832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3970", "tid": 35568, "ts": 6177129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3630", "tid": 35568, "ts": 6177426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3e50", "tid": 35568, "ts": 6177723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a51d0", "tid": 35568, "ts": 6178020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6178248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a59f0", "tid": 35568, "ts": 6178372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6178543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3f20", "tid": 35568, "ts": 6178667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6178839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5ac0", "tid": 35568, "ts": 6178963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6179135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5c60", "tid": 35568, "ts": 6179259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6179431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3220", "tid": 35568, "ts": 6179555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6179727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5100", "tid": 35568, "ts": 6179851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6180021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5fa0", "tid": 35568, "ts": 6180146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6180318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6f10", "tid": 35568, "ts": 6180442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6180613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7250", "tid": 35568, "ts": 6180858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7730", "tid": 35568, "ts": 6181155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7b40", "tid": 35568, "ts": 6181453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8840", "tid": 35568, "ts": 6181749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a81c0", "tid": 35568, "ts": 6182045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6182216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7180", "tid": 35568, "ts": 6182340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6182512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8910", "tid": 35568, "ts": 6182636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6182809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a79a0", "tid": 35568, "ts": 6182934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6183106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a89e0", "tid": 35568, "ts": 6183230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6183402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8c50", "tid": 35568, "ts": 6183527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6183699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6fe0", "tid": 35568, "ts": 6183859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6e40", "tid": 35568, "ts": 6184158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8df0", "tid": 35568, "ts": 6184453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8ec0", "tid": 35568, "ts": 6184749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a70b0", "tid": 35568, "ts": 6185045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6185218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7ce0", "tid": 35568, "ts": 6185342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6185514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8f90", "tid": 35568, "ts": 6185638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6185836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6960", "tid": 35568, "ts": 6185960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6186131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9060", "tid": 35568, "ts": 6186255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6186427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8b80", "tid": 35568, "ts": 6186552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6186723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a86a0", "tid": 35568, "ts": 6186847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6187018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8290", "tid": 35568, "ts": 6187142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6187314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7c10", "tid": 35568, "ts": 6187438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6187609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7590", "tid": 35568, "ts": 6187773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6188018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a74c0", "tid": 35568, "ts": 6188142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6188315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a78d0", "tid": 35568, "ts": 6368851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6369129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7db0", "tid": 35568, "ts": 6369264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6369492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8ab0", "tid": 35568, "ts": 6369621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6369795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6b00", "tid": 35568, "ts": 6369922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6210", "tid": 35568, "ts": 6370221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a67c0", "tid": 35568, "ts": 6370521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9200", "tid": 35568, "ts": 6370820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7e80", "tid": 35568, "ts": 6371118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6371290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8d20", "tid": 35568, "ts": 6371415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6371587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8430", "tid": 35568, "ts": 6371714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6371885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7320", "tid": 35568, "ts": 6372011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6372182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6ca0", "tid": 35568, "ts": 6372308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6372481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6d70", "tid": 35568, "ts": 6372606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6372780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6bd0", "tid": 35568, "ts": 6372906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a93a0", "tid": 35568, "ts": 6373203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9470", "tid": 35568, "ts": 6373501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a73f0", "tid": 35568, "ts": 6373798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a80f0", "tid": 35568, "ts": 6374097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6374269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a62e0", "tid": 35568, "ts": 6374393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6374566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a63b0", "tid": 35568, "ts": 6374691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6374863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6480", "tid": 35568, "ts": 6374988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6375160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8500", "tid": 35568, "ts": 6375285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6375458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a85d0", "tid": 35568, "ts": 6375583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6375755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6550", "tid": 35568, "ts": 6375880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6620", "tid": 35568, "ts": 6376177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a66f0", "tid": 35568, "ts": 6376474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6890", "tid": 35568, "ts": 6376770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6a30", "tid": 35568, "ts": 6377067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6377238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a96e0", "tid": 35568, "ts": 6377363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6377535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac600", "tid": 35568, "ts": 6377661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6377834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a97b0", "tid": 35568, "ts": 6377959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6378131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab1b0", "tid": 35568, "ts": 6378256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6378428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aacd0", "tid": 35568, "ts": 6378554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6378832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab0e0", "tid": 35568, "ts": 6379094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6379344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac2c0", "tid": 35568, "ts": 6379520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6379754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9610", "tid": 35568, "ts": 6379945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6380117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab9d0", "tid": 35568, "ts": 6380242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6380414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9540", "tid": 35568, "ts": 6380539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6380711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa7f0", "tid": 35568, "ts": 6380835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac6d0", "tid": 35568, "ts": 6381132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac870", "tid": 35568, "ts": 6381431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab280", "tid": 35568, "ts": 6381728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac7a0", "tid": 35568, "ts": 6382027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6382199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aada0", "tid": 35568, "ts": 6382324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6382496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abd10", "tid": 35568, "ts": 6382622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6382794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9f00", "tid": 35568, "ts": 6382920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9880", "tid": 35568, "ts": 6383217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa4b0", "tid": 35568, "ts": 6383514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9fd0", "tid": 35568, "ts": 6383812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9950", "tid": 35568, "ts": 6384108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6384281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab900", "tid": 35568, "ts": 6384407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6384623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9a20", "tid": 35568, "ts": 6384750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6384922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9e30", "tid": 35568, "ts": 6385047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6385219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa990", "tid": 35568, "ts": 6385343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6385515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab350", "tid": 35568, "ts": 6385640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6385811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abde0", "tid": 35568, "ts": 6385936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6386108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa580", "tid": 35568, "ts": 6386233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6386404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac390", "tid": 35568, "ts": 6386529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6386702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9af0", "tid": 35568, "ts": 6386841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6387014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234bf272930", "tid": 35568, "ts": 6387078, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 6387531, "pid": 35104, "args": { "Heap": { "SizeInBytes": 268435456, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234bf4ab420", "tid": 35568, "ts": 6387545, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234bf4ab420", "tid": 35568, "ts": 6387576, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 268435456, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9bc0", "tid": 35568, "ts": 6387689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6387864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac120", "tid": 35568, "ts": 6387990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6388164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9c90", "tid": 35568, "ts": 6388290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6388476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9d60", "tid": 35568, "ts": 6388601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6388774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa0a0", "tid": 35568, "ts": 6388899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa170", "tid": 35568, "ts": 6389196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa650", "tid": 35568, "ts": 6389493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac460", "tid": 35568, "ts": 6389789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab690", "tid": 35568, "ts": 6390084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6390257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab760", "tid": 35568, "ts": 6390380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6390552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa240", "tid": 35568, "ts": 6390676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6390849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab4f0", "tid": 35568, "ts": 6390973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6391144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa310", "tid": 35568, "ts": 6391269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6391442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab5c0", "tid": 35568, "ts": 6391566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6391738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa3e0", "tid": 35568, "ts": 6391863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa720", "tid": 35568, "ts": 6392159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab830", "tid": 35568, "ts": 6392455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aae70", "tid": 35568, "ts": 6392753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa8c0", "tid": 35568, "ts": 6393049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6393222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aaf40", "tid": 35568, "ts": 6393345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6393517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abc40", "tid": 35568, "ts": 6393642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6393813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aaa60", "tid": 35568, "ts": 6393936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6394108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac530", "tid": 35568, "ts": 6394233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6394484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aab30", "tid": 35568, "ts": 6394650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6394823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aac00", "tid": 35568, "ts": 6394947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6395121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab010", "tid": 35568, "ts": 6395245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6395417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abaa0", "tid": 35568, "ts": 6395541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6395712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abb70", "tid": 35568, "ts": 6395836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abf80", "tid": 35568, "ts": 6396132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac050", "tid": 35568, "ts": 6396429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac1f0", "tid": 35568, "ts": 6396725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae820", "tid": 35568, "ts": 6397022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6397195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae270", "tid": 35568, "ts": 6397320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6397492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad8b0", "tid": 35568, "ts": 6397617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6397788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad3d0", "tid": 35568, "ts": 6397913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adbf0", "tid": 35568, "ts": 6398209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae1a0", "tid": 35568, "ts": 6398505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ada50", "tid": 35568, "ts": 6398802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acbb0", "tid": 35568, "ts": 6399098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6399269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acae0", "tid": 35568, "ts": 6399394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6399565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afba0", "tid": 35568, "ts": 6399689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6399862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af930", "tid": 35568, "ts": 6399987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6400159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aef70", "tid": 35568, "ts": 6400283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6400456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae8f0", "tid": 35568, "ts": 6400580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6400753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae000", "tid": 35568, "ts": 6400878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae9c0", "tid": 35568, "ts": 6401174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad090", "tid": 35568, "ts": 6401470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae340", "tid": 35568, "ts": 6401768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aec30", "tid": 35568, "ts": 6402078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6402254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad710", "tid": 35568, "ts": 6402380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6402561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af040", "tid": 35568, "ts": 6402697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6402870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad160", "tid": 35568, "ts": 6402995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6403167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aea90", "tid": 35568, "ts": 6403292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6403464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acef0", "tid": 35568, "ts": 6403588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6403760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afc70", "tid": 35568, "ts": 6403884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae680", "tid": 35568, "ts": 6404180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aedd0", "tid": 35568, "ts": 6404477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad7e0", "tid": 35568, "ts": 6404774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acfc0", "tid": 35568, "ts": 6405070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6405242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acd50", "tid": 35568, "ts": 6405365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6405537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae410", "tid": 35568, "ts": 6405661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6405833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aeb60", "tid": 35568, "ts": 6405958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6406130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ace20", "tid": 35568, "ts": 6406255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6406427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac940", "tid": 35568, "ts": 6406552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6406723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adcc0", "tid": 35568, "ts": 6407066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6407241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afad0", "tid": 35568, "ts": 6407367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6407539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ade60", "tid": 35568, "ts": 6407664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6407836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aeea0", "tid": 35568, "ts": 6407962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6408133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad980", "tid": 35568, "ts": 6408258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6408430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae4e0", "tid": 35568, "ts": 6408555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6408727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad300", "tid": 35568, "ts": 6408852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aca10", "tid": 35568, "ts": 6409151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acc80", "tid": 35568, "ts": 6409447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad230", "tid": 35568, "ts": 6409745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae5b0", "tid": 35568, "ts": 6410104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6410276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af2b0", "tid": 35568, "ts": 6410401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6410573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aed00", "tid": 35568, "ts": 6410698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6410870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af1e0", "tid": 35568, "ts": 6410996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6411168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adb20", "tid": 35568, "ts": 6411293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6411464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad4a0", "tid": 35568, "ts": 6411589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6411761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af380", "tid": 35568, "ts": 6411885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad570", "tid": 35568, "ts": 6412182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad640", "tid": 35568, "ts": 6412480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4add90", "tid": 35568, "ts": 6412777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae750", "tid": 35568, "ts": 6413074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6413246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adf30", "tid": 35568, "ts": 6413371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6413545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af110", "tid": 35568, "ts": 6413670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6413843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae0d0", "tid": 35568, "ts": 6413968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6414140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af450", "tid": 35568, "ts": 6414263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6414435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af520", "tid": 35568, "ts": 6414559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6414731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af5f0", "tid": 35568, "ts": 6414855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af6c0", "tid": 35568, "ts": 6415153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af790", "tid": 35568, "ts": 6415450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af860", "tid": 35568, "ts": 6415747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afa00", "tid": 35568, "ts": 6416044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6416216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b07d0", "tid": 35568, "ts": 6416341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6416514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2fa0", "tid": 35568, "ts": 6416639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6416811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1c20", "tid": 35568, "ts": 6416936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6417108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3070", "tid": 35568, "ts": 6417233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6417405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1a80", "tid": 35568, "ts": 6417529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6417701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1cf0", "tid": 35568, "ts": 6417826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0560", "tid": 35568, "ts": 6418174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2510", "tid": 35568, "ts": 6418471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1e90", "tid": 35568, "ts": 6418770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4affb0", "tid": 35568, "ts": 6419067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6419533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0b10", "tid": 35568, "ts": 6419658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6419830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b19b0", "tid": 35568, "ts": 6419954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6420128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b25e0", "tid": 35568, "ts": 6420253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6420426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b08a0", "tid": 35568, "ts": 6420550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6420722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0970", "tid": 35568, "ts": 6420847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0a40", "tid": 35568, "ts": 6421145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1dc0", "tid": 35568, "ts": 6421442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2030", "tid": 35568, "ts": 6421738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0220", "tid": 35568, "ts": 6422035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6422208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1810", "tid": 35568, "ts": 6422333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6422505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b22a0", "tid": 35568, "ts": 6422630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6422802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2100", "tid": 35568, "ts": 6422926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b21d0", "tid": 35568, "ts": 6423222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b10c0", "tid": 35568, "ts": 6423518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2850", "tid": 35568, "ts": 6423815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b18e0", "tid": 35568, "ts": 6424112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6424283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2920", "tid": 35568, "ts": 6424407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6424579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0be0", "tid": 35568, "ts": 6424703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6424876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1190", "tid": 35568, "ts": 6425000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6425172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1f60", "tid": 35568, "ts": 6425296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6425469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1740", "tid": 35568, "ts": 6425750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6425923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b02f0", "tid": 35568, "ts": 6426048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6426220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1b50", "tid": 35568, "ts": 6426345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6426517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0150", "tid": 35568, "ts": 6426642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6426814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2370", "tid": 35568, "ts": 6426939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6427110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b26b0", "tid": 35568, "ts": 6427235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6427407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0cb0", "tid": 35568, "ts": 6427532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6427704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0d80", "tid": 35568, "ts": 6427828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1670", "tid": 35568, "ts": 6428125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b03c0", "tid": 35568, "ts": 6428422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0490", "tid": 35568, "ts": 6428718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2780", "tid": 35568, "ts": 6429016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6429188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2440", "tid": 35568, "ts": 6429313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6429484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b29f0", "tid": 35568, "ts": 6429609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6429781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2ac0", "tid": 35568, "ts": 6429905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0e50", "tid": 35568, "ts": 6430202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0630", "tid": 35568, "ts": 6430503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0f20", "tid": 35568, "ts": 6430799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2b90", "tid": 35568, "ts": 6431096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6431267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0ff0", "tid": 35568, "ts": 6431392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6431564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2c60", "tid": 35568, "ts": 6431688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6431861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2d30", "tid": 35568, "ts": 6431986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6432158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2e00", "tid": 35568, "ts": 6432283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6432454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1260", "tid": 35568, "ts": 6432579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6432751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2ed0", "tid": 35568, "ts": 6432875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afd40", "tid": 35568, "ts": 6433172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afe10", "tid": 35568, "ts": 6433468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afee0", "tid": 35568, "ts": 6433764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0700", "tid": 35568, "ts": 6434060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6434232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1330", "tid": 35568, "ts": 6434356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6434528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0080", "tid": 35568, "ts": 6434653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6434825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1400", "tid": 35568, "ts": 6434950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6435124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b14d0", "tid": 35568, "ts": 6435274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6435447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b15a0", "tid": 35568, "ts": 6435572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6435745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b59e0", "tid": 35568, "ts": 6435870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4180", "tid": 35568, "ts": 6436167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b48d0", "tid": 35568, "ts": 6436464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3d70", "tid": 35568, "ts": 6436761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3bd0", "tid": 35568, "ts": 6437057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6437229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3480", "tid": 35568, "ts": 6437354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6437527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3ca0", "tid": 35568, "ts": 6437651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6437823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5290", "tid": 35568, "ts": 6437947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6438119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b33b0", "tid": 35568, "ts": 6438243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6438415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5ec0", "tid": 35568, "ts": 6438539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6438712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3e40", "tid": 35568, "ts": 6438836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6060", "tid": 35568, "ts": 6439131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b40b0", "tid": 35568, "ts": 6439427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3f10", "tid": 35568, "ts": 6439723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4f50", "tid": 35568, "ts": 6440020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6440191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5910", "tid": 35568, "ts": 6440316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6440487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5ab0", "tid": 35568, "ts": 6440612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6440784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4800", "tid": 35568, "ts": 6440908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6441129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5b80", "tid": 35568, "ts": 6441362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6441536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4e80", "tid": 35568, "ts": 6441663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6441835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5360", "tid": 35568, "ts": 6441960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6442132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5c50", "tid": 35568, "ts": 6442258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6442431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4320", "tid": 35568, "ts": 6442555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6442727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6470", "tid": 35568, "ts": 6442852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5020", "tid": 35568, "ts": 6443149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3890", "tid": 35568, "ts": 6443445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3550", "tid": 35568, "ts": 6443741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5d20", "tid": 35568, "ts": 6444036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6444208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b49a0", "tid": 35568, "ts": 6444331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6444503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b44c0", "tid": 35568, "ts": 6444627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6444799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5430", "tid": 35568, "ts": 6444924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4250", "tid": 35568, "ts": 6445219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b32e0", "tid": 35568, "ts": 6445515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3140", "tid": 35568, "ts": 6445811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b43f0", "tid": 35568, "ts": 6446107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6446279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b56a0", "tid": 35568, "ts": 6446403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6446575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5500", "tid": 35568, "ts": 6446699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6446870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5df0", "tid": 35568, "ts": 6446994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6447165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3fe0", "tid": 35568, "ts": 6447289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6447460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4a70", "tid": 35568, "ts": 6447584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6447756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b50f0", "tid": 35568, "ts": 6447880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4b40", "tid": 35568, "ts": 6448176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b62d0", "tid": 35568, "ts": 6448479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4c10", "tid": 35568, "ts": 6448775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4590", "tid": 35568, "ts": 6449070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6449241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3620", "tid": 35568, "ts": 6449365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6449537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5f90", "tid": 35568, "ts": 6449662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6449832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4ce0", "tid": 35568, "ts": 6449957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6450130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4db0", "tid": 35568, "ts": 6450254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6450426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b37c0", "tid": 35568, "ts": 6450550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6450722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b51c0", "tid": 35568, "ts": 6450846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b55d0", "tid": 35568, "ts": 6451183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5770", "tid": 35568, "ts": 6451479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5840", "tid": 35568, "ts": 6451775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3210", "tid": 35568, "ts": 6452071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6452243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b36f0", "tid": 35568, "ts": 6452367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6452539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6130", "tid": 35568, "ts": 6452663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6452835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3960", "tid": 35568, "ts": 6452958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6453129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6200", "tid": 35568, "ts": 6453254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6453425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b63a0", "tid": 35568, "ts": 6453549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6453723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3a30", "tid": 35568, "ts": 6453847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3b00", "tid": 35568, "ts": 6454143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4660", "tid": 35568, "ts": 6454439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4730", "tid": 35568, "ts": 6454735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7310", "tid": 35568, "ts": 6455032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6455203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8280", "tid": 35568, "ts": 6455327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6455499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9460", "tid": 35568, "ts": 6455623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6455794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6d60", "tid": 35568, "ts": 6455918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6456090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9530", "tid": 35568, "ts": 6456215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6456386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6bc0", "tid": 35568, "ts": 6456509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6456680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6e30", "tid": 35568, "ts": 6456856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8b70", "tid": 35568, "ts": 6457152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7e70", "tid": 35568, "ts": 6457448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8f80", "tid": 35568, "ts": 6457743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b67b0", "tid": 35568, "ts": 6458038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6458209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b85c0", "tid": 35568, "ts": 6458332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6458504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7170", "tid": 35568, "ts": 6458628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6458800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6880", "tid": 35568, "ts": 6458968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6459140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b66e0", "tid": 35568, "ts": 6459264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6459437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8c40", "tid": 35568, "ts": 6459561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6459733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8350", "tid": 35568, "ts": 6459857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8690", "tid": 35568, "ts": 6460153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8eb0", "tid": 35568, "ts": 6460449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7990", "tid": 35568, "ts": 6460745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8aa0", "tid": 35568, "ts": 6461040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6461212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8760", "tid": 35568, "ts": 6461337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6461509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7240", "tid": 35568, "ts": 6461634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6461806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6fd0", "tid": 35568, "ts": 6461930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b70a0", "tid": 35568, "ts": 6462226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9120", "tid": 35568, "ts": 6462521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8d10", "tid": 35568, "ts": 6462817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6950", "tid": 35568, "ts": 6463113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6463285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6a20", "tid": 35568, "ts": 6463409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6463581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6af0", "tid": 35568, "ts": 6463705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6463877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8420", "tid": 35568, "ts": 6464002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6464173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7da0", "tid": 35568, "ts": 6464299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6464471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b89d0", "tid": 35568, "ts": 6464595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6464765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b91f0", "tid": 35568, "ts": 6464889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7b30", "tid": 35568, "ts": 6465185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8de0", "tid": 35568, "ts": 6465481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9050", "tid": 35568, "ts": 6465778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7f40", "tid": 35568, "ts": 6466073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6466245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6c90", "tid": 35568, "ts": 6466369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6466541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6f00", "tid": 35568, "ts": 6466665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6466837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b78c0", "tid": 35568, "ts": 6466961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6467133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b81b0", "tid": 35568, "ts": 6467258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6467431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b73e0", "tid": 35568, "ts": 6467556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6467727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9870", "tid": 35568, "ts": 6467852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b74b0", "tid": 35568, "ts": 6468148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8830", "tid": 35568, "ts": 6468445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b84f0", "tid": 35568, "ts": 6468741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8010", "tid": 35568, "ts": 6469036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6469207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7a60", "tid": 35568, "ts": 6469331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6469503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7c00", "tid": 35568, "ts": 6469627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6469798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7580", "tid": 35568, "ts": 6469921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b92c0", "tid": 35568, "ts": 6470217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8900", "tid": 35568, "ts": 6470514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9390", "tid": 35568, "ts": 6470809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7650", "tid": 35568, "ts": 6471104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6471276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7720", "tid": 35568, "ts": 6471401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6471572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9600", "tid": 35568, "ts": 6471696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6471868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b77f0", "tid": 35568, "ts": 6471992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6472163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b96d0", "tid": 35568, "ts": 6472288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6472526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b97a0", "tid": 35568, "ts": 6472651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6472823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6540", "tid": 35568, "ts": 6472947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6473119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6610", "tid": 35568, "ts": 6473243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6473415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7cd0", "tid": 35568, "ts": 6473572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6473745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b80e0", "tid": 35568, "ts": 6473870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc2b0", "tid": 35568, "ts": 6474167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bad90", "tid": 35568, "ts": 6474462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb410", "tid": 35568, "ts": 6474758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9ae0", "tid": 35568, "ts": 6475054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6475226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bacc0", "tid": 35568, "ts": 6475350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6475522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bae60", "tid": 35568, "ts": 6475646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6475817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb680", "tid": 35568, "ts": 6475941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9e20", "tid": 35568, "ts": 6476236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4baf30", "tid": 35568, "ts": 6476532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbea0", "tid": 35568, "ts": 6476827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbc30", "tid": 35568, "ts": 6477123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6477294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bab20", "tid": 35568, "ts": 6477419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6477590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb000", "tid": 35568, "ts": 6477714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6477886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba980", "tid": 35568, "ts": 6478010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6478181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb4e0", "tid": 35568, "ts": 6478305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6478477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb820", "tid": 35568, "ts": 6478601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6478773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc110", "tid": 35568, "ts": 6478898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcad0", "tid": 35568, "ts": 6479195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb340", "tid": 35568, "ts": 6479490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb5b0", "tid": 35568, "ts": 6479786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb750", "tid": 35568, "ts": 6480082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6480254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc790", "tid": 35568, "ts": 6480378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6480549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba710", "tid": 35568, "ts": 6480674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6480844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb270", "tid": 35568, "ts": 6480969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6481142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc520", "tid": 35568, "ts": 6481266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6481437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbf70", "tid": 35568, "ts": 6481562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6481734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbd00", "tid": 35568, "ts": 6481859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcba0", "tid": 35568, "ts": 6482156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc5f0", "tid": 35568, "ts": 6482452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc860", "tid": 35568, "ts": 6482749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb8f0", "tid": 35568, "ts": 6483045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6483216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc1e0", "tid": 35568, "ts": 6483340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6483512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9ef0", "tid": 35568, "ts": 6483636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6483851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb9c0", "tid": 35568, "ts": 6483976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6484148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bba90", "tid": 35568, "ts": 6484273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6484445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb0d0", "tid": 35568, "ts": 6484569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6484740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9fc0", "tid": 35568, "ts": 6484864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba300", "tid": 35568, "ts": 6485161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba3d0", "tid": 35568, "ts": 6485457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4baa50", "tid": 35568, "ts": 6485753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba4a0", "tid": 35568, "ts": 6486050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6486221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbdd0", "tid": 35568, "ts": 6486346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6486517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbb60", "tid": 35568, "ts": 6486641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6486812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc380", "tid": 35568, "ts": 6486936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb1a0", "tid": 35568, "ts": 6487232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba570", "tid": 35568, "ts": 6487528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4babf0", "tid": 35568, "ts": 6487824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc040", "tid": 35568, "ts": 6488182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6488429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc6c0", "tid": 35568, "ts": 6488604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6488863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba090", "tid": 35568, "ts": 6489026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6489197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba160", "tid": 35568, "ts": 6489322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6489494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba230", "tid": 35568, "ts": 6489618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6489789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc450", "tid": 35568, "ts": 6489913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc930", "tid": 35568, "ts": 6490209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba640", "tid": 35568, "ts": 6490505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bca00", "tid": 35568, "ts": 6490801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcc70", "tid": 35568, "ts": 6491098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6491270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9940", "tid": 35568, "ts": 6491395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6491566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9a10", "tid": 35568, "ts": 6491691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6491863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9bb0", "tid": 35568, "ts": 6491987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6492160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9c80", "tid": 35568, "ts": 6492285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6492457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba7e0", "tid": 35568, "ts": 6492582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6492754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba8b0", "tid": 35568, "ts": 6492879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9d50", "tid": 35568, "ts": 6493174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd8a0", "tid": 35568, "ts": 6493471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcd40", "tid": 35568, "ts": 6493767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bda40", "tid": 35568, "ts": 6494063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6494234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf5e0", "tid": 35568, "ts": 6494359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6494652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdcb0", "tid": 35568, "ts": 6494777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6494948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf2a0", "tid": 35568, "ts": 6495073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6495246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdf20", "tid": 35568, "ts": 6495372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6495543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be8e0", "tid": 35568, "ts": 6495668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6495840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfe00", "tid": 35568, "ts": 6495965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6496137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bee90", "tid": 35568, "ts": 6496261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6496432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4becf0", "tid": 35568, "ts": 6496557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6496728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bef60", "tid": 35568, "ts": 6496853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd220", "tid": 35568, "ts": 6497150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd2f0", "tid": 35568, "ts": 6497446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf370", "tid": 35568, "ts": 6497743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd630", "tid": 35568, "ts": 6498039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6498210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd970", "tid": 35568, "ts": 6498335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6498507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfc60", "tid": 35568, "ts": 6498635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6498806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdd80", "tid": 35568, "ts": 6498932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bedc0", "tid": 35568, "ts": 6499229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bea80", "tid": 35568, "ts": 6499526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdff0", "tid": 35568, "ts": 6499823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bce10", "tid": 35568, "ts": 6500121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6500293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf030", "tid": 35568, "ts": 6500417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6500588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf100", "tid": 35568, "ts": 6500713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6500885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be0c0", "tid": 35568, "ts": 6501009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6501181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcee0", "tid": 35568, "ts": 6501305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6501476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfd30", "tid": 35568, "ts": 6501601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6501774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be9b0", "tid": 35568, "ts": 6501899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bde50", "tid": 35568, "ts": 6502196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd7d0", "tid": 35568, "ts": 6502493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfed0", "tid": 35568, "ts": 6502790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be190", "tid": 35568, "ts": 6503085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6503256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be740", "tid": 35568, "ts": 6503382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6503553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4beb50", "tid": 35568, "ts": 6503739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6503912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be810", "tid": 35568, "ts": 6504037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6504210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd080", "tid": 35568, "ts": 6504335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6504506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdb10", "tid": 35568, "ts": 6504630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6504802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be260", "tid": 35568, "ts": 6504927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bffa0", "tid": 35568, "ts": 6505223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf1d0", "tid": 35568, "ts": 6505520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf510", "tid": 35568, "ts": 6505817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be330", "tid": 35568, "ts": 6506113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6506286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd700", "tid": 35568, "ts": 6506411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6506582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be400", "tid": 35568, "ts": 6506706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6506879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf920", "tid": 35568, "ts": 6507005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6507177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bec20", "tid": 35568, "ts": 6507335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6507508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf780", "tid": 35568, "ts": 6507633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6507805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be5a0", "tid": 35568, "ts": 6507930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf440", "tid": 35568, "ts": 6508226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf6b0", "tid": 35568, "ts": 6508524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcfb0", "tid": 35568, "ts": 6508820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be670", "tid": 35568, "ts": 6509118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6509289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be4d0", "tid": 35568, "ts": 6509414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6509585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd150", "tid": 35568, "ts": 6509710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6509882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0070", "tid": 35568, "ts": 6510006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6510177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf850", "tid": 35568, "ts": 6510301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6510474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf9f0", "tid": 35568, "ts": 6510598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6510770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdbe0", "tid": 35568, "ts": 6510895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6511067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfac0", "tid": 35568, "ts": 6511191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6511407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfb90", "tid": 35568, "ts": 6511532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6511703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd3c0", "tid": 35568, "ts": 6511828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd490", "tid": 35568, "ts": 6512126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd560", "tid": 35568, "ts": 6512422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c26a0", "tid": 35568, "ts": 6512719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c21c0", "tid": 35568, "ts": 6513016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6513188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0bd0", "tid": 35568, "ts": 6513312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6513484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c32d0", "tid": 35568, "ts": 6513609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6513781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2290", "tid": 35568, "ts": 6513905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2840", "tid": 35568, "ts": 6514202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c03b0", "tid": 35568, "ts": 6514500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1c10", "tid": 35568, "ts": 6514797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c02e0", "tid": 35568, "ts": 6515093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6515265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2770", "tid": 35568, "ts": 6515390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6515563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2360", "tid": 35568, "ts": 6515689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6515859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1a70", "tid": 35568, "ts": 6515984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6516157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3130", "tid": 35568, "ts": 6516282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6516454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c07c0", "tid": 35568, "ts": 6516578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6516750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0620", "tid": 35568, "ts": 6516918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3470", "tid": 35568, "ts": 6517216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1db0", "tid": 35568, "ts": 6517513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2ec0", "tid": 35568, "ts": 6517809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2910", "tid": 35568, "ts": 6518106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6518278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2430", "tid": 35568, "ts": 6518403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6518575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0e40", "tid": 35568, "ts": 6518700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6518870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1250", "tid": 35568, "ts": 6518995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6519166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1e80", "tid": 35568, "ts": 6519340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6519513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3200", "tid": 35568, "ts": 6519639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6519811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c06f0", "tid": 35568, "ts": 6519936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c25d0", "tid": 35568, "ts": 6520231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c29e0", "tid": 35568, "ts": 6520528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2b80", "tid": 35568, "ts": 6520823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0480", "tid": 35568, "ts": 6521120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6521292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2500", "tid": 35568, "ts": 6521417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6521589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1f50", "tid": 35568, "ts": 6521715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6521886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0a30", "tid": 35568, "ts": 6522011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6522183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0960", "tid": 35568, "ts": 6522308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6522480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c10b0", "tid": 35568, "ts": 6522604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6522775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3060", "tid": 35568, "ts": 6522900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0550", "tid": 35568, "ts": 6523197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0f10", "tid": 35568, "ts": 6523494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1180", "tid": 35568, "ts": 6523791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2ab0", "tid": 35568, "ts": 6524086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6524259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2c50", "tid": 35568, "ts": 6524383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6524556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2d20", "tid": 35568, "ts": 6524681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6524853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c33a0", "tid": 35568, "ts": 6524977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6525149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2df0", "tid": 35568, "ts": 6525275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6525447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2f90", "tid": 35568, "ts": 6525572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6525743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1b40", "tid": 35568, "ts": 6525868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0140", "tid": 35568, "ts": 6526164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c20f0", "tid": 35568, "ts": 6526460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0210", "tid": 35568, "ts": 6526756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0890", "tid": 35568, "ts": 6527052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6527225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c13f0", "tid": 35568, "ts": 6527350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6527521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0b00", "tid": 35568, "ts": 6527647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6527820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0ca0", "tid": 35568, "ts": 6527944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6528116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c19a0", "tid": 35568, "ts": 6528241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6528414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2020", "tid": 35568, "ts": 6528539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6528712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1ce0", "tid": 35568, "ts": 6528836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c14c0", "tid": 35568, "ts": 6529133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1590", "tid": 35568, "ts": 6529430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0d70", "tid": 35568, "ts": 6529727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0fe0", "tid": 35568, "ts": 6530024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6530196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1320", "tid": 35568, "ts": 6530320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6530492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1660", "tid": 35568, "ts": 6530618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6530789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1730", "tid": 35568, "ts": 6530914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1800", "tid": 35568, "ts": 6531212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c18d0", "tid": 35568, "ts": 6531510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c40a0", "tid": 35568, "ts": 6531807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c36e0", "tid": 35568, "ts": 6532103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6532274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4240", "tid": 35568, "ts": 6532398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6532569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3880", "tid": 35568, "ts": 6532695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6532866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c55c0", "tid": 35568, "ts": 6532990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6533161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5c40", "tid": 35568, "ts": 6533286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6533458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c59d0", "tid": 35568, "ts": 6533583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6533754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c62c0", "tid": 35568, "ts": 6533879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5de0", "tid": 35568, "ts": 6534182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c51b0", "tid": 35568, "ts": 6534479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6120", "tid": 35568, "ts": 6534776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5d10", "tid": 35568, "ts": 6535084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6535256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4650", "tid": 35568, "ts": 6535381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6535553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5280", "tid": 35568, "ts": 6535678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6535849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3a20", "tid": 35568, "ts": 6535974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6536147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3af0", "tid": 35568, "ts": 6536272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6536444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c47f0", "tid": 35568, "ts": 6536569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6536741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4170", "tid": 35568, "ts": 6536866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5aa0", "tid": 35568, "ts": 6537162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3e30", "tid": 35568, "ts": 6537459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5b70", "tid": 35568, "ts": 6537756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4b30", "tid": 35568, "ts": 6538054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6538226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c48c0", "tid": 35568, "ts": 6538351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6538524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4990", "tid": 35568, "ts": 6538649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6538821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6600", "tid": 35568, "ts": 6538946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6539117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3c90", "tid": 35568, "ts": 6539241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6539414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5f80", "tid": 35568, "ts": 6539539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6539711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4da0", "tid": 35568, "ts": 6539835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5eb0", "tid": 35568, "ts": 6540134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5420", "tid": 35568, "ts": 6540432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3d60", "tid": 35568, "ts": 6540728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6050", "tid": 35568, "ts": 6541026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6541199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5900", "tid": 35568, "ts": 6541324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6541496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c61f0", "tid": 35568, "ts": 6541621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6541794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5350", "tid": 35568, "ts": 6541919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4e70", "tid": 35568, "ts": 6542216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5760", "tid": 35568, "ts": 6542513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5690", "tid": 35568, "ts": 6542809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4310", "tid": 35568, "ts": 6543106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6543277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c44b0", "tid": 35568, "ts": 6543401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6543573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6390", "tid": 35568, "ts": 6543698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6543868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6530", "tid": 35568, "ts": 6543992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6544164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c43e0", "tid": 35568, "ts": 6544288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6544461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c54f0", "tid": 35568, "ts": 6544586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6544759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c66d0", "tid": 35568, "ts": 6544883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4580", "tid": 35568, "ts": 6545180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3950", "tid": 35568, "ts": 6545479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4a60", "tid": 35568, "ts": 6545775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c50e0", "tid": 35568, "ts": 6546072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6546243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6460", "tid": 35568, "ts": 6546368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6546540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c67a0", "tid": 35568, "ts": 6546665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6546838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6870", "tid": 35568, "ts": 6546963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6547135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3540", "tid": 35568, "ts": 6547260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6547432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3610", "tid": 35568, "ts": 6547557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6547729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4720", "tid": 35568, "ts": 6547854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c37b0", "tid": 35568, "ts": 6548151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5830", "tid": 35568, "ts": 6548448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3bc0", "tid": 35568, "ts": 6548744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3f00", "tid": 35568, "ts": 6549039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6549211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4c00", "tid": 35568, "ts": 6549337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6549552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3fd0", "tid": 35568, "ts": 6549678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6549851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4cd0", "tid": 35568, "ts": 6549975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6550148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4f40", "tid": 35568, "ts": 6550273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6550444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5010", "tid": 35568, "ts": 6550659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6550873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7090", "tid": 35568, "ts": 6551002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6551175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6c80", "tid": 35568, "ts": 6551300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6551473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9450", "tid": 35568, "ts": 6551598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6551770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9790", "tid": 35568, "ts": 6551895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c81a0", "tid": 35568, "ts": 6552191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7cc0", "tid": 35568, "ts": 6552488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7e60", "tid": 35568, "ts": 6552784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8d00", "tid": 35568, "ts": 6553081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6553253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9040", "tid": 35568, "ts": 6553378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6553550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8750", "tid": 35568, "ts": 6553675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6553848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c92b0", "tid": 35568, "ts": 6553973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6554145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8dd0", "tid": 35568, "ts": 6554270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6554442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9ba0", "tid": 35568, "ts": 6554566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6554738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9380", "tid": 35568, "ts": 6554863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9860", "tid": 35568, "ts": 6555160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8a90", "tid": 35568, "ts": 6555455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9930", "tid": 35568, "ts": 6555752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7710", "tid": 35568, "ts": 6556049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6556221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9ad0", "tid": 35568, "ts": 6556346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6556518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6d50", "tid": 35568, "ts": 6556643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6556816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c77e0", "tid": 35568, "ts": 6556940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6557113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c74a0", "tid": 35568, "ts": 6557237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6557409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7160", "tid": 35568, "ts": 6557534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6557706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7300", "tid": 35568, "ts": 6557830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c85b0", "tid": 35568, "ts": 6558127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6ef0", "tid": 35568, "ts": 6558424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8820", "tid": 35568, "ts": 6558721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8ea0", "tid": 35568, "ts": 6559018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6559191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9a00", "tid": 35568, "ts": 6559316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6559487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c84e0", "tid": 35568, "ts": 6559612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6559784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6940", "tid": 35568, "ts": 6559910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9520", "tid": 35568, "ts": 6560206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9c70", "tid": 35568, "ts": 6560503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7230", "tid": 35568, "ts": 6560800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8270", "tid": 35568, "ts": 6561097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6561269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6bb0", "tid": 35568, "ts": 6561393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6561564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8410", "tid": 35568, "ts": 6561689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6561861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6fc0", "tid": 35568, "ts": 6561985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6562158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c88f0", "tid": 35568, "ts": 6562282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6562454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c78b0", "tid": 35568, "ts": 6562578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6562751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6ae0", "tid": 35568, "ts": 6562876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6a10", "tid": 35568, "ts": 6563172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8340", "tid": 35568, "ts": 6563469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7d90", "tid": 35568, "ts": 6563767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7b20", "tid": 35568, "ts": 6564063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6564235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8680", "tid": 35568, "ts": 6564361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6564533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c89c0", "tid": 35568, "ts": 6564658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6564830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9110", "tid": 35568, "ts": 6564955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6565125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6e20", "tid": 35568, "ts": 6565250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6565423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7f30", "tid": 35568, "ts": 6565547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6565720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c73d0", "tid": 35568, "ts": 6565846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6566018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8b60", "tid": 35568, "ts": 6566175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6566396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7570", "tid": 35568, "ts": 6566538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6566710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7640", "tid": 35568, "ts": 6566835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c95f0", "tid": 35568, "ts": 6567133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7980", "tid": 35568, "ts": 6567430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7a50", "tid": 35568, "ts": 6567726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c96c0", "tid": 35568, "ts": 6568022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6568194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8f70", "tid": 35568, "ts": 6568318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6568489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7bf0", "tid": 35568, "ts": 6568613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6568786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8000", "tid": 35568, "ts": 6568910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8c30", "tid": 35568, "ts": 6569207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c80d0", "tid": 35568, "ts": 6569503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c91e0", "tid": 35568, "ts": 6569800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cabe0", "tid": 35568, "ts": 6570097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6570269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb5a0", "tid": 35568, "ts": 6570394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6570565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc780", "tid": 35568, "ts": 6570690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6570862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4caa40", "tid": 35568, "ts": 6570986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6571159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9d40", "tid": 35568, "ts": 6571284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6571456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc5e0", "tid": 35568, "ts": 6571581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6571753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb190", "tid": 35568, "ts": 6571877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb8e0", "tid": 35568, "ts": 6572174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb670", "tid": 35568, "ts": 6572471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca700", "tid": 35568, "ts": 6572769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb740", "tid": 35568, "ts": 6573065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6573238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc1d0", "tid": 35568, "ts": 6573362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6573534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4caff0", "tid": 35568, "ts": 6573659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6573831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbf60", "tid": 35568, "ts": 6573955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6574127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc100", "tid": 35568, "ts": 6574252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6574425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca2f0", "tid": 35568, "ts": 6574551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6574722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb0c0", "tid": 35568, "ts": 6574846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9e10", "tid": 35568, "ts": 6575144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cad80", "tid": 35568, "ts": 6575441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb9b0", "tid": 35568, "ts": 6575738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4caf20", "tid": 35568, "ts": 6576035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6576209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9fb0", "tid": 35568, "ts": 6576333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6576506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cae50", "tid": 35568, "ts": 6576630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6576801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb260", "tid": 35568, "ts": 6576927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9ee0", "tid": 35568, "ts": 6577225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc9f0", "tid": 35568, "ts": 6577521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb330", "tid": 35568, "ts": 6577818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc850", "tid": 35568, "ts": 6578115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6578289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbb50", "tid": 35568, "ts": 6578413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6578586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc030", "tid": 35568, "ts": 6578711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6578884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca080", "tid": 35568, "ts": 6579009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6579182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc2a0", "tid": 35568, "ts": 6579308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6579481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca7d0", "tid": 35568, "ts": 6579606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6579778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cab10", "tid": 35568, "ts": 6579902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb400", "tid": 35568, "ts": 6580198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cacb0", "tid": 35568, "ts": 6580495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca150", "tid": 35568, "ts": 6580794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca220", "tid": 35568, "ts": 6581090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6581306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc920", "tid": 35568, "ts": 6581433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6581606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc370", "tid": 35568, "ts": 6581756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6581992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccb90", "tid": 35568, "ts": 6582118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6582290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb4d0", "tid": 35568, "ts": 6582459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6582632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbc20", "tid": 35568, "ts": 6582757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6582930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccac0", "tid": 35568, "ts": 6583055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6583227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca3c0", "tid": 35568, "ts": 6583351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6583523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc6b0", "tid": 35568, "ts": 6583648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6583820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb810", "tid": 35568, "ts": 6583945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6584116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cba80", "tid": 35568, "ts": 6584241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6584413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbcf0", "tid": 35568, "ts": 6584537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6584709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbdc0", "tid": 35568, "ts": 6584833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbe90", "tid": 35568, "ts": 6585131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca490", "tid": 35568, "ts": 6585427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc440", "tid": 35568, "ts": 6585723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc510", "tid": 35568, "ts": 6586020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6586191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccc60", "tid": 35568, "ts": 6586316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6586488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccd30", "tid": 35568, "ts": 6586613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6586784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cce00", "tid": 35568, "ts": 6586909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cced0", "tid": 35568, "ts": 6587204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca560", "tid": 35568, "ts": 6587499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca630", "tid": 35568, "ts": 6587795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca8a0", "tid": 35568, "ts": 6588091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6588262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca970", "tid": 35568, "ts": 6588386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6588559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d0b0", "tid": 35568, "ts": 6588684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6588855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e770", "tid": 35568, "ts": 6588980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6589152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ed20", "tid": 35568, "ts": 6589277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6589448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48df50", "tid": 35568, "ts": 6589573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6589746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e840", "tid": 35568, "ts": 6589872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48de80", "tid": 35568, "ts": 6590168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e910", "tid": 35568, "ts": 6590466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d320", "tid": 35568, "ts": 6590762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c3b0", "tid": 35568, "ts": 6591058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6591230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d180", "tid": 35568, "ts": 6591355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6591527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d4c0", "tid": 35568, "ts": 6591652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6591823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e0f0", "tid": 35568, "ts": 6591947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6592120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f3a0", "tid": 35568, "ts": 6592244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6592416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f470", "tid": 35568, "ts": 6592540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6592712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c480", "tid": 35568, "ts": 6592837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e360", "tid": 35568, "ts": 6593132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d590", "tid": 35568, "ts": 6593430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cb00", "tid": 35568, "ts": 6593726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d660", "tid": 35568, "ts": 6594021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6594194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d3f0", "tid": 35568, "ts": 6594318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6594515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c6f0", "tid": 35568, "ts": 6594640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6594812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cbd0", "tid": 35568, "ts": 6594937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6595110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ddb0", "tid": 35568, "ts": 6595234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6595407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c550", "tid": 35568, "ts": 6595531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6595704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e1c0", "tid": 35568, "ts": 6595829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d250", "tid": 35568, "ts": 6596125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e9e0", "tid": 35568, "ts": 6596421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d730", "tid": 35568, "ts": 6596716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d800", "tid": 35568, "ts": 6597012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6597184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e020", "tid": 35568, "ts": 6597309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6597624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ec50", "tid": 35568, "ts": 6597817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6598091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d8d0", "tid": 35568, "ts": 6598240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6598525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e290", "tid": 35568, "ts": 6598651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6598823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c140", "tid": 35568, "ts": 6598947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6599120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cf10", "tid": 35568, "ts": 6599245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6599416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c210", "tid": 35568, "ts": 6599541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6599713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48eab0", "tid": 35568, "ts": 6599838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48edf0", "tid": 35568, "ts": 6600134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d9a0", "tid": 35568, "ts": 6600431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e430", "tid": 35568, "ts": 6600729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e500", "tid": 35568, "ts": 6601024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6601196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f130", "tid": 35568, "ts": 6601321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6601493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c620", "tid": 35568, "ts": 6601618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6601790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cfe0", "tid": 35568, "ts": 6601914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48eec0", "tid": 35568, "ts": 6602211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ef90", "tid": 35568, "ts": 6602506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f060", "tid": 35568, "ts": 6602800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f200", "tid": 35568, "ts": 6603096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6603267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48da70", "tid": 35568, "ts": 6603392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6603581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48dce0", "tid": 35568, "ts": 6603917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48db40", "tid": 35568, "ts": 6604218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48eb80", "tid": 35568, "ts": 6604515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c7c0", "tid": 35568, "ts": 6604814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e5d0", "tid": 35568, "ts": 6605111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6605283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f2d0", "tid": 35568, "ts": 6605407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6605580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c2e0", "tid": 35568, "ts": 6605705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6605877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48dc10", "tid": 35568, "ts": 6606002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6606173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c890", "tid": 35568, "ts": 6606298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6606469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e6a0", "tid": 35568, "ts": 6606593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6606905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c960", "tid": 35568, "ts": 6607062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6607234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ca30", "tid": 35568, "ts": 6607360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6607531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cca0", "tid": 35568, "ts": 6607656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6607828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cd70", "tid": 35568, "ts": 6607953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6608126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ce40", "tid": 35568, "ts": 6608250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6608422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df350", "tid": 35568, "ts": 6608548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6608719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd470", "tid": 35568, "ts": 6608844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de990", "tid": 35568, "ts": 6609141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09decd0", "tid": 35568, "ts": 6609438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09deda0", "tid": 35568, "ts": 6609733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcab0", "tid": 35568, "ts": 6610029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6610202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc360", "tid": 35568, "ts": 6610326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6610498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dda20", "tid": 35568, "ts": 6610623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6610795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea200", "tid": 35568, "ts": 6610920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c050", "tid": 35568, "ts": 6611217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11990", "tid": 35568, "ts": 6611528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12d10", "tid": 35568, "ts": 6611826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12900", "tid": 35568, "ts": 6612122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6612294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11f40", "tid": 35568, "ts": 6612418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6612589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12760", "tid": 35568, "ts": 6612714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6612886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11e70", "tid": 35568, "ts": 6613016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6613245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10200", "tid": 35568, "ts": 6613371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6613544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11650", "tid": 35568, "ts": 6613670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6613842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10130", "tid": 35568, "ts": 6613967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6614138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b124f0", "tid": 35568, "ts": 6614265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6614436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12830", "tid": 35568, "ts": 6614561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6614733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12eb0", "tid": 35568, "ts": 6614858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10540", "tid": 35568, "ts": 6615156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10f00", "tid": 35568, "ts": 6615452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11170", "tid": 35568, "ts": 6615796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12f80", "tid": 35568, "ts": 6616094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6616266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12010", "tid": 35568, "ts": 6616392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6616564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12de0", "tid": 35568, "ts": 6616689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6616860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10fd0", "tid": 35568, "ts": 6616985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6617156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10470", "tid": 35568, "ts": 6617334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6617507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12c40", "tid": 35568, "ts": 6617637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6617809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11240", "tid": 35568, "ts": 6617934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b117f0", "tid": 35568, "ts": 6618232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11a60", "tid": 35568, "ts": 6618527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11b30", "tid": 35568, "ts": 6618824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b106e0", "tid": 35568, "ts": 6619121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6619293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b125c0", "tid": 35568, "ts": 6619417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6619589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b131f0", "tid": 35568, "ts": 6619714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6619886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11c00", "tid": 35568, "ts": 6620011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6620182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b103a0", "tid": 35568, "ts": 6620306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6620477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b129d0", "tid": 35568, "ts": 6620608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6620780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b107b0", "tid": 35568, "ts": 6620905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13050", "tid": 35568, "ts": 6621202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b120e0", "tid": 35568, "ts": 6621498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10bc0", "tid": 35568, "ts": 6621793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10880", "tid": 35568, "ts": 6622090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6622261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b121b0", "tid": 35568, "ts": 6622386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6622557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10a20", "tid": 35568, "ts": 6622682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6622853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12aa0", "tid": 35568, "ts": 6622978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6623150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10af0", "tid": 35568, "ts": 6623275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6623447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12b70", "tid": 35568, "ts": 6623572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6623743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13120", "tid": 35568, "ts": 6623867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11580", "tid": 35568, "ts": 6624163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11720", "tid": 35568, "ts": 6624459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10c90", "tid": 35568, "ts": 6624755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10d60", "tid": 35568, "ts": 6625051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6625223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10610", "tid": 35568, "ts": 6625347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6625518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b132c0", "tid": 35568, "ts": 6625668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6625840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11cd0", "tid": 35568, "ts": 6625964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6626136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b118c0", "tid": 35568, "ts": 6626261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6626432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11da0", "tid": 35568, "ts": 6626557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6626728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10e30", "tid": 35568, "ts": 6626853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b110a0", "tid": 35568, "ts": 6627150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b102d0", "tid": 35568, "ts": 6627446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13390", "tid": 35568, "ts": 6627743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10950", "tid": 35568, "ts": 6628040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6628212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11310", "tid": 35568, "ts": 6628336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6628508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b113e0", "tid": 35568, "ts": 6628633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6628956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13460", "tid": 35568, "ts": 6629130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6629303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b114b0", "tid": 35568, "ts": 6629427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6629600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12280", "tid": 35568, "ts": 6629725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6629897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12350", "tid": 35568, "ts": 6630022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6630195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12420", "tid": 35568, "ts": 6630320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6630492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12690", "tid": 35568, "ts": 6630616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6630787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13fc0", "tid": 35568, "ts": 6630912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13940", "tid": 35568, "ts": 6631209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b162b0", "tid": 35568, "ts": 6631504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14090", "tid": 35568, "ts": 6631801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b143d0", "tid": 35568, "ts": 6632097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6632268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13ae0", "tid": 35568, "ts": 6632392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6632564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13a10", "tid": 35568, "ts": 6632689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6632861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16380", "tid": 35568, "ts": 6632986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6633158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13bb0", "tid": 35568, "ts": 6633282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6633454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16860", "tid": 35568, "ts": 6633579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6633752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b161e0", "tid": 35568, "ts": 6633877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15b60", "tid": 35568, "ts": 6634174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16040", "tid": 35568, "ts": 6634471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b147e0", "tid": 35568, "ts": 6634767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15f70", "tid": 35568, "ts": 6635064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6635235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15d00", "tid": 35568, "ts": 6635363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6635535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14980", "tid": 35568, "ts": 6635660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6635830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b144a0", "tid": 35568, "ts": 6635956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6636128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b151a0", "tid": 35568, "ts": 6636253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6636424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13c80", "tid": 35568, "ts": 6636548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6636721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16450", "tid": 35568, "ts": 6636846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16790", "tid": 35568, "ts": 6637142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16520", "tid": 35568, "ts": 6637440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b165f0", "tid": 35568, "ts": 6637737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13870", "tid": 35568, "ts": 6638033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6638204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13d50", "tid": 35568, "ts": 6638329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6638500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14f30", "tid": 35568, "ts": 6638626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6638797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16110", "tid": 35568, "ts": 6638921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13e20", "tid": 35568, "ts": 6639217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13ef0", "tid": 35568, "ts": 6639514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b166c0", "tid": 35568, "ts": 6639809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b154e0", "tid": 35568, "ts": 6640106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6640277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14160", "tid": 35568, "ts": 6640401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6640573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14230", "tid": 35568, "ts": 6640697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6640868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15c30", "tid": 35568, "ts": 6640993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6641165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15ea0", "tid": 35568, "ts": 6641289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6641461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b155b0", "tid": 35568, "ts": 6641586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6641757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14570", "tid": 35568, "ts": 6641881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13530", "tid": 35568, "ts": 6642178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14a50", "tid": 35568, "ts": 6642475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14300", "tid": 35568, "ts": 6642772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15000", "tid": 35568, "ts": 6643068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6643240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15680", "tid": 35568, "ts": 6643364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6643536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13600", "tid": 35568, "ts": 6643660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6643832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b150d0", "tid": 35568, "ts": 6643958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6644130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15dd0", "tid": 35568, "ts": 6644255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6644480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15270", "tid": 35568, "ts": 6644606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6644778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15a90", "tid": 35568, "ts": 6644904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14640", "tid": 35568, "ts": 6645199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b136d0", "tid": 35568, "ts": 6645496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14710", "tid": 35568, "ts": 6645792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15750", "tid": 35568, "ts": 6646088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6646261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15340", "tid": 35568, "ts": 6646386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6646557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b137a0", "tid": 35568, "ts": 6646682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6646854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b148b0", "tid": 35568, "ts": 6646979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6647150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15410", "tid": 35568, "ts": 6647276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6647448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14b20", "tid": 35568, "ts": 6647573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6647746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14bf0", "tid": 35568, "ts": 6647870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14cc0", "tid": 35568, "ts": 6648168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15820", "tid": 35568, "ts": 6648464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14d90", "tid": 35568, "ts": 6648804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b158f0", "tid": 35568, "ts": 6649102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6649274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14e60", "tid": 35568, "ts": 6649399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6649571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b159c0", "tid": 35568, "ts": 6649695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6649867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16d40", "tid": 35568, "ts": 6649992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6650163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b188e0", "tid": 35568, "ts": 6650288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6650459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17150", "tid": 35568, "ts": 6650585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6650756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19780", "tid": 35568, "ts": 6650881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b185a0", "tid": 35568, "ts": 6651177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18670", "tid": 35568, "ts": 6651473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16fb0", "tid": 35568, "ts": 6651769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19c60", "tid": 35568, "ts": 6652066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6652238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19100", "tid": 35568, "ts": 6652363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6652575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18b50", "tid": 35568, "ts": 6652700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6652872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18c20", "tid": 35568, "ts": 6652998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6653169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19ac0", "tid": 35568, "ts": 6653293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6653465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16ad0", "tid": 35568, "ts": 6653589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6653761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17630", "tid": 35568, "ts": 6653885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18cf0", "tid": 35568, "ts": 6654182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b192a0", "tid": 35568, "ts": 6654478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18dc0", "tid": 35568, "ts": 6654774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18e90", "tid": 35568, "ts": 6655069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6655242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19920", "tid": 35568, "ts": 6655367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6655538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b177d0", "tid": 35568, "ts": 6655663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6655835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17560", "tid": 35568, "ts": 6655960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6656132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19850", "tid": 35568, "ts": 6656256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6656428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17080", "tid": 35568, "ts": 6656552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6656724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16ba0", "tid": 35568, "ts": 6656849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17700", "tid": 35568, "ts": 6657145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b199f0", "tid": 35568, "ts": 6657441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16930", "tid": 35568, "ts": 6657738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17b10", "tid": 35568, "ts": 6658034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6658206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17e50", "tid": 35568, "ts": 6658330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6658503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18a80", "tid": 35568, "ts": 6658626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6658798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b178a0", "tid": 35568, "ts": 6658922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6659093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18330", "tid": 35568, "ts": 6659218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6659389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18740", "tid": 35568, "ts": 6659515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6659685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19510", "tid": 35568, "ts": 6659810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19b90", "tid": 35568, "ts": 6660188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17d80", "tid": 35568, "ts": 6660486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16a00", "tid": 35568, "ts": 6660783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17be0", "tid": 35568, "ts": 6661104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6661276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16c70", "tid": 35568, "ts": 6661401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6661571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b191d0", "tid": 35568, "ts": 6661696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6661869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17f20", "tid": 35568, "ts": 6661994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6662164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18810", "tid": 35568, "ts": 6662288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6662461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19370", "tid": 35568, "ts": 6662587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6662759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18f60", "tid": 35568, "ts": 6662884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16e10", "tid": 35568, "ts": 6663180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17ff0", "tid": 35568, "ts": 6663476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19440", "tid": 35568, "ts": 6663773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19030", "tid": 35568, "ts": 6664069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6664241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b195e0", "tid": 35568, "ts": 6664365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6664537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18260", "tid": 35568, "ts": 6664662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6664833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16ee0", "tid": 35568, "ts": 6664958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6665130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17220", "tid": 35568, "ts": 6665255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6665428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b172f0", "tid": 35568, "ts": 6665552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6665723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b189b0", "tid": 35568, "ts": 6665848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b173c0", "tid": 35568, "ts": 6666147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17490", "tid": 35568, "ts": 6666443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17970", "tid": 35568, "ts": 6666742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17a40", "tid": 35568, "ts": 6667038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6667209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18190", "tid": 35568, "ts": 6667333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6667505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17cb0", "tid": 35568, "ts": 6667630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6667802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b180c0", "tid": 35568, "ts": 6667927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18400", "tid": 35568, "ts": 6668223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b184d0", "tid": 35568, "ts": 6668521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b196b0", "tid": 35568, "ts": 6668816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c910", "tid": 35568, "ts": 6669112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6669284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c430", "tid": 35568, "ts": 6669409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6669580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c6a0", "tid": 35568, "ts": 6669704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6669876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c500", "tid": 35568, "ts": 6670031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6670204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b180", "tid": 35568, "ts": 6670329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6670502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a210", "tid": 35568, "ts": 6670627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6670800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d060", "tid": 35568, "ts": 6670924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c5d0", "tid": 35568, "ts": 6671220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cec0", "tid": 35568, "ts": 6671518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c360", "tid": 35568, "ts": 6671816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1aa30", "tid": 35568, "ts": 6672112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6672284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bb40", "tid": 35568, "ts": 6672409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6672581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bdb0", "tid": 35568, "ts": 6672706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6672877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a960", "tid": 35568, "ts": 6673002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6673175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a2e0", "tid": 35568, "ts": 6673300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6673471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c9e0", "tid": 35568, "ts": 6673596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6673769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b250", "tid": 35568, "ts": 6673894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c770", "tid": 35568, "ts": 6674190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19d30", "tid": 35568, "ts": 6674486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ab00", "tid": 35568, "ts": 6674783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cb80", "tid": 35568, "ts": 6675081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6675254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a480", "tid": 35568, "ts": 6675379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6675611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1af10", "tid": 35568, "ts": 6675770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6675942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ae40", "tid": 35568, "ts": 6676067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6676239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b3f0", "tid": 35568, "ts": 6676365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6676537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bc10", "tid": 35568, "ts": 6676662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6676833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ba70", "tid": 35568, "ts": 6676958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6677130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c840", "tid": 35568, "ts": 6677255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6677426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b320", "tid": 35568, "ts": 6677551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6677725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a070", "tid": 35568, "ts": 6677850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a7c0", "tid": 35568, "ts": 6678146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c0f0", "tid": 35568, "ts": 6678443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1abd0", "tid": 35568, "ts": 6678740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a550", "tid": 35568, "ts": 6679038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6679209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cd20", "tid": 35568, "ts": 6679334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6679506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b9a0", "tid": 35568, "ts": 6679631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6679804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b730", "tid": 35568, "ts": 6679929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cdf0", "tid": 35568, "ts": 6680226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19e00", "tid": 35568, "ts": 6680523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cab0", "tid": 35568, "ts": 6680819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a620", "tid": 35568, "ts": 6681117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6681289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cc50", "tid": 35568, "ts": 6681456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6681630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cf90", "tid": 35568, "ts": 6681755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6681927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19ed0", "tid": 35568, "ts": 6682051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6682224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bce0", "tid": 35568, "ts": 6682349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6682520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b590", "tid": 35568, "ts": 6682645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6682817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19fa0", "tid": 35568, "ts": 6682941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6683112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a140", "tid": 35568, "ts": 6683237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6683409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b660", "tid": 35568, "ts": 6683534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6683705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a3b0", "tid": 35568, "ts": 6683830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1be80", "tid": 35568, "ts": 6684126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c020", "tid": 35568, "ts": 6684423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ad70", "tid": 35568, "ts": 6684721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b800", "tid": 35568, "ts": 6685018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6685190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b8d0", "tid": 35568, "ts": 6685315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6685488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a6f0", "tid": 35568, "ts": 6685613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6685785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a890", "tid": 35568, "ts": 6685910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1aca0", "tid": 35568, "ts": 6686207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1afe0", "tid": 35568, "ts": 6686503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c1c0", "tid": 35568, "ts": 6686799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b0b0", "tid": 35568, "ts": 6687095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6687267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bf50", "tid": 35568, "ts": 6687392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6687563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b4c0", "tid": 35568, "ts": 6687687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6687859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c290", "tid": 35568, "ts": 6687984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6688157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1faa0", "tid": 35568, "ts": 6688282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6688453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d880", "tid": 35568, "ts": 6688579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6688750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f760", "tid": 35568, "ts": 6688875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1de30", "tid": 35568, "ts": 6689171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ef40", "tid": 35568, "ts": 6689467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1df00", "tid": 35568, "ts": 6689763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d470", "tid": 35568, "ts": 6690059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6690231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f900", "tid": 35568, "ts": 6690356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6690527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fb70", "tid": 35568, "ts": 6690676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6690849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1daf0", "tid": 35568, "ts": 6690975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6691206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e8c0", "tid": 35568, "ts": 6691388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6691562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20120", "tid": 35568, "ts": 6691688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6691861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1eda0", "tid": 35568, "ts": 6691986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6692158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ee70", "tid": 35568, "ts": 6692282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6692455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20050", "tid": 35568, "ts": 6692580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6692752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e720", "tid": 35568, "ts": 6692877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f0e0", "tid": 35568, "ts": 6693175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dbc0", "tid": 35568, "ts": 6693471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e990", "tid": 35568, "ts": 6693767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fde0", "tid": 35568, "ts": 6694065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6694239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b201f0", "tid": 35568, "ts": 6694364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6694560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e7f0", "tid": 35568, "ts": 6694684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6694857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e4b0", "tid": 35568, "ts": 6694981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6695154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dd60", "tid": 35568, "ts": 6695279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6695451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d6e0", "tid": 35568, "ts": 6695576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6695749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ea60", "tid": 35568, "ts": 6695873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e0a0", "tid": 35568, "ts": 6696171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f010", "tid": 35568, "ts": 6696468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f1b0", "tid": 35568, "ts": 6696765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e580", "tid": 35568, "ts": 6697062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6697234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b202c0", "tid": 35568, "ts": 6697359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6697531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f830", "tid": 35568, "ts": 6697656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6697828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fc40", "tid": 35568, "ts": 6697953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6698124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f690", "tid": 35568, "ts": 6698250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6698421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f9d0", "tid": 35568, "ts": 6698546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6698719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1eb30", "tid": 35568, "ts": 6698843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e170", "tid": 35568, "ts": 6699141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ec00", "tid": 35568, "ts": 6699438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fd10", "tid": 35568, "ts": 6699735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ecd0", "tid": 35568, "ts": 6700031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6700203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f280", "tid": 35568, "ts": 6700327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6700499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d130", "tid": 35568, "ts": 6700624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6700797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e650", "tid": 35568, "ts": 6700921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f350", "tid": 35568, "ts": 6701217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f420", "tid": 35568, "ts": 6701515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1feb0", "tid": 35568, "ts": 6701810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f4f0", "tid": 35568, "ts": 6702107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6702279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f5c0", "tid": 35568, "ts": 6702403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6702575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ff80", "tid": 35568, "ts": 6702700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6702872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dfd0", "tid": 35568, "ts": 6702996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6703169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20390", "tid": 35568, "ts": 6703351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6703524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20460", "tid": 35568, "ts": 6703649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6703823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d200", "tid": 35568, "ts": 6703948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6704119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dc90", "tid": 35568, "ts": 6704244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6704416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e310", "tid": 35568, "ts": 6704541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6704883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d2d0", "tid": 35568, "ts": 6705028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6705201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d7b0", "tid": 35568, "ts": 6705326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6705499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d3a0", "tid": 35568, "ts": 6705625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6705798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d540", "tid": 35568, "ts": 6705923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6706095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d610", "tid": 35568, "ts": 6706221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6706394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d950", "tid": 35568, "ts": 6706582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6706758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1da20", "tid": 35568, "ts": 6707041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6707274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e240", "tid": 35568, "ts": 6707493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6707715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e3e0", "tid": 35568, "ts": 6707933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6708115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21d90", "tid": 35568, "ts": 6708241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6708413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21300", "tid": 35568, "ts": 6708539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6708711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23110", "tid": 35568, "ts": 6708836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23520", "tid": 35568, "ts": 6709134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b221a0", "tid": 35568, "ts": 6709432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21160", "tid": 35568, "ts": 6709729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21710", "tid": 35568, "ts": 6710028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6710201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22270", "tid": 35568, "ts": 6710325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6710498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b232b0", "tid": 35568, "ts": 6710622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6710794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21980", "tid": 35568, "ts": 6710918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b217e0", "tid": 35568, "ts": 6711216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21640", "tid": 35568, "ts": 6711512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21570", "tid": 35568, "ts": 6711810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23040", "tid": 35568, "ts": 6712107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6712279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21a50", "tid": 35568, "ts": 6712404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6712576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20870", "tid": 35568, "ts": 6712701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6712873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21cc0", "tid": 35568, "ts": 6712998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6713169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20530", "tid": 35568, "ts": 6713294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6713467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23380", "tid": 35568, "ts": 6713593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6713764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22340", "tid": 35568, "ts": 6713891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22410", "tid": 35568, "ts": 6714188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20940", "tid": 35568, "ts": 6714485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b236c0", "tid": 35568, "ts": 6714782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20600", "tid": 35568, "ts": 6715126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6715361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b218b0", "tid": 35568, "ts": 6715489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6715665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22d00", "tid": 35568, "ts": 6715791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6715972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21e60", "tid": 35568, "ts": 6716108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6716280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21f30", "tid": 35568, "ts": 6716404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6716576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b224e0", "tid": 35568, "ts": 6716701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6716873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21b20", "tid": 35568, "ts": 6716998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6717170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22c30", "tid": 35568, "ts": 6717295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6717469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b207a0", "tid": 35568, "ts": 6717594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6717766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21bf0", "tid": 35568, "ts": 6717891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20d50", "tid": 35568, "ts": 6718190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22000", "tid": 35568, "ts": 6718487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b225b0", "tid": 35568, "ts": 6718784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21230", "tid": 35568, "ts": 6719081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6719252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b220d0", "tid": 35568, "ts": 6719377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6719550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20c80", "tid": 35568, "ts": 6719709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6719882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b231e0", "tid": 35568, "ts": 6720008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6720179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22680", "tid": 35568, "ts": 6720304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6720476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22750", "tid": 35568, "ts": 6720601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6720775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20a10", "tid": 35568, "ts": 6720900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b228f0", "tid": 35568, "ts": 6721196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b214a0", "tid": 35568, "ts": 6721495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22820", "tid": 35568, "ts": 6721792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b229c0", "tid": 35568, "ts": 6722089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6722260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22a90", "tid": 35568, "ts": 6722397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6722570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23790", "tid": 35568, "ts": 6722695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6722867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22f70", "tid": 35568, "ts": 6722992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6723164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23450", "tid": 35568, "ts": 6723288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6723504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20e20", "tid": 35568, "ts": 6723629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6723802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b235f0", "tid": 35568, "ts": 6723927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22b60", "tid": 35568, "ts": 6724224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22dd0", "tid": 35568, "ts": 6724521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20ef0", "tid": 35568, "ts": 6724818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22ea0", "tid": 35568, "ts": 6725115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6725286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23860", "tid": 35568, "ts": 6725411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6725582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b206d0", "tid": 35568, "ts": 6725707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6725879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20ae0", "tid": 35568, "ts": 6726004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6726176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20bb0", "tid": 35568, "ts": 6726301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6726473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20fc0", "tid": 35568, "ts": 6726598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6726770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21090", "tid": 35568, "ts": 6726894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b213d0", "tid": 35568, "ts": 6727191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26ac0", "tid": 35568, "ts": 6727488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b247d0", "tid": 35568, "ts": 6727786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23d40", "tid": 35568, "ts": 6728083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6728255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b255a0", "tid": 35568, "ts": 6728380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6728552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26b90", "tid": 35568, "ts": 6728677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6728848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b259b0", "tid": 35568, "ts": 6728972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6729144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24ff0", "tid": 35568, "ts": 6729269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6729439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23ee0", "tid": 35568, "ts": 6729564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6729736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25e90", "tid": 35568, "ts": 6729861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25330", "tid": 35568, "ts": 6730158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24220", "tid": 35568, "ts": 6730454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25f60", "tid": 35568, "ts": 6730750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b250c0", "tid": 35568, "ts": 6731048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6731220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23c70", "tid": 35568, "ts": 6731345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6731517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25190", "tid": 35568, "ts": 6731642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6731813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23ba0", "tid": 35568, "ts": 6731937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24be0", "tid": 35568, "ts": 6732234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26030", "tid": 35568, "ts": 6732531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24cb0", "tid": 35568, "ts": 6732828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b265e0", "tid": 35568, "ts": 6733124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6733296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24150", "tid": 35568, "ts": 6733422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6733594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25a80", "tid": 35568, "ts": 6733719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6733890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24560", "tid": 35568, "ts": 6734015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6734187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b262a0", "tid": 35568, "ts": 6734312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6734484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24080", "tid": 35568, "ts": 6734609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6734781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24b10", "tid": 35568, "ts": 6734906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b266b0", "tid": 35568, "ts": 6735204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b242f0", "tid": 35568, "ts": 6735500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25260", "tid": 35568, "ts": 6735796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26510", "tid": 35568, "ts": 6736092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6736264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25400", "tid": 35568, "ts": 6736389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6736562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b254d0", "tid": 35568, "ts": 6736686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6736858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23fb0", "tid": 35568, "ts": 6736983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6737155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26c60", "tid": 35568, "ts": 6737280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6737453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b243c0", "tid": 35568, "ts": 6737577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6737748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b261d0", "tid": 35568, "ts": 6737873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6738090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25c20", "tid": 35568, "ts": 6738284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6738457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25670", "tid": 35568, "ts": 6738583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6738755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25740", "tid": 35568, "ts": 6738881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23930", "tid": 35568, "ts": 6739179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26370", "tid": 35568, "ts": 6739477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25810", "tid": 35568, "ts": 6739775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b258e0", "tid": 35568, "ts": 6740073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6740244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23e10", "tid": 35568, "ts": 6740369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6740542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b248a0", "tid": 35568, "ts": 6740666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6740838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25b50", "tid": 35568, "ts": 6740963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6741135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26780", "tid": 35568, "ts": 6741260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6741432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25cf0", "tid": 35568, "ts": 6741557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6741730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24630", "tid": 35568, "ts": 6741854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24490", "tid": 35568, "ts": 6742150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24700", "tid": 35568, "ts": 6742446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24970", "tid": 35568, "ts": 6742743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24d80", "tid": 35568, "ts": 6743042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6743214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25dc0", "tid": 35568, "ts": 6743340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6743512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24a40", "tid": 35568, "ts": 6743637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6743808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26100", "tid": 35568, "ts": 6743933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26440", "tid": 35568, "ts": 6744231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26850", "tid": 35568, "ts": 6744528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24e50", "tid": 35568, "ts": 6744824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24f20", "tid": 35568, "ts": 6745123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6745295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26920", "tid": 35568, "ts": 6745421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6745593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b269f0", "tid": 35568, "ts": 6745718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6745890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23a00", "tid": 35568, "ts": 6746016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6746187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23ad0", "tid": 35568, "ts": 6746312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6746484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29ec0", "tid": 35568, "ts": 6746610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6746781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28590", "tid": 35568, "ts": 6746906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6747078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27ca0", "tid": 35568, "ts": 6747203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6747376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27550", "tid": 35568, "ts": 6747501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6747674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b290f0", "tid": 35568, "ts": 6747846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28250", "tid": 35568, "ts": 6748145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28e80", "tid": 35568, "ts": 6748442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28730", "tid": 35568, "ts": 6748738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28660", "tid": 35568, "ts": 6749035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6749208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28800", "tid": 35568, "ts": 6749333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6749505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b288d0", "tid": 35568, "ts": 6749631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6749803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27620", "tid": 35568, "ts": 6749928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a060", "tid": 35568, "ts": 6750226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29f90", "tid": 35568, "ts": 6750522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28c10", "tid": 35568, "ts": 6750819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b280b0", "tid": 35568, "ts": 6751116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6751288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29500", "tid": 35568, "ts": 6751414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6751585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28db0", "tid": 35568, "ts": 6751710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6751883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29910", "tid": 35568, "ts": 6752009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6752182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b299e0", "tid": 35568, "ts": 6752307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6752479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29360", "tid": 35568, "ts": 6752604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6752776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26d30", "tid": 35568, "ts": 6752901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6753074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b289a0", "tid": 35568, "ts": 6753199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6753371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b284c0", "tid": 35568, "ts": 6753495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6753728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26e00", "tid": 35568, "ts": 6753935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6754183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27e40", "tid": 35568, "ts": 6754322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6754517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28a70", "tid": 35568, "ts": 6754667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6754872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28b40", "tid": 35568, "ts": 6755011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6755274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27070", "tid": 35568, "ts": 6755403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6755598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27f10", "tid": 35568, "ts": 6755757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6755996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27a30", "tid": 35568, "ts": 6756148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6756321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28f50", "tid": 35568, "ts": 6756445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6756618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28ce0", "tid": 35568, "ts": 6756742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6756915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b273b0", "tid": 35568, "ts": 6757066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6757239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27fe0", "tid": 35568, "ts": 6757365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6757538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27b00", "tid": 35568, "ts": 6757665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6757840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27140", "tid": 35568, "ts": 6757967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6758141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28320", "tid": 35568, "ts": 6758268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6758442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28180", "tid": 35568, "ts": 6758570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6758744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b295d0", "tid": 35568, "ts": 6758871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29020", "tid": 35568, "ts": 6759173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b291c0", "tid": 35568, "ts": 6759476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29290", "tid": 35568, "ts": 6759777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29430", "tid": 35568, "ts": 6760078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6760253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b283f0", "tid": 35568, "ts": 6760381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6760555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b296a0", "tid": 35568, "ts": 6760683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6760858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29770", "tid": 35568, "ts": 6760986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6761161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29840", "tid": 35568, "ts": 6761288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6761462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27bd0", "tid": 35568, "ts": 6761589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6761762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29ab0", "tid": 35568, "ts": 6761888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29b80", "tid": 35568, "ts": 6762188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29c50", "tid": 35568, "ts": 6762513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29d20", "tid": 35568, "ts": 6762813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29df0", "tid": 35568, "ts": 6763110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6763328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26ed0", "tid": 35568, "ts": 6763467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6763676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26fa0", "tid": 35568, "ts": 6763801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6763973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27210", "tid": 35568, "ts": 6764098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6764271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b272e0", "tid": 35568, "ts": 6764397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6764568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27480", "tid": 35568, "ts": 6764694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6764866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b276f0", "tid": 35568, "ts": 6764991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6765163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b277c0", "tid": 35568, "ts": 6765288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6765461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27890", "tid": 35568, "ts": 6765585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6765758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27d70", "tid": 35568, "ts": 6765883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27960", "tid": 35568, "ts": 6766182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c760", "tid": 35568, "ts": 6766479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b0a0", "tid": 35568, "ts": 6766776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cb70", "tid": 35568, "ts": 6767072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6767245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b990", "tid": 35568, "ts": 6767369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6767541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a130", "tid": 35568, "ts": 6767666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6767838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d390", "tid": 35568, "ts": 6767964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6768135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d2c0", "tid": 35568, "ts": 6768261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6768433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2afd0", "tid": 35568, "ts": 6768558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6768729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b240", "tid": 35568, "ts": 6768855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b3e0", "tid": 35568, "ts": 6769152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c830", "tid": 35568, "ts": 6769473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a610", "tid": 35568, "ts": 6769771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d460", "tid": 35568, "ts": 6770070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6770241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bda0", "tid": 35568, "ts": 6770365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6770537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ceb0", "tid": 35568, "ts": 6770662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6770834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b580", "tid": 35568, "ts": 6770958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6771131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2be70", "tid": 35568, "ts": 6771256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6771428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a6e0", "tid": 35568, "ts": 6771552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6771723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b4b0", "tid": 35568, "ts": 6771847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2aaf0", "tid": 35568, "ts": 6772146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bb30", "tid": 35568, "ts": 6772444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c350", "tid": 35568, "ts": 6772804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cde0", "tid": 35568, "ts": 6773103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6773275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bc00", "tid": 35568, "ts": 6773401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6773573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c280", "tid": 35568, "ts": 6773697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6773870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c900", "tid": 35568, "ts": 6773996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6774167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b170", "tid": 35568, "ts": 6774293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6774464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ba60", "tid": 35568, "ts": 6774589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6774762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bf40", "tid": 35568, "ts": 6774888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a200", "tid": 35568, "ts": 6775185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2af00", "tid": 35568, "ts": 6775482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cd10", "tid": 35568, "ts": 6775779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ad60", "tid": 35568, "ts": 6776076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6776248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c010", "tid": 35568, "ts": 6776373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6776545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c4f0", "tid": 35568, "ts": 6776714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6776887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c420", "tid": 35568, "ts": 6777013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6777186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a2d0", "tid": 35568, "ts": 6777311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6777483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a3a0", "tid": 35568, "ts": 6777608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6777779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c1b0", "tid": 35568, "ts": 6777904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b310", "tid": 35568, "ts": 6778200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cc40", "tid": 35568, "ts": 6778498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a880", "tid": 35568, "ts": 6778795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cf80", "tid": 35568, "ts": 6779092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6779264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c5c0", "tid": 35568, "ts": 6779389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6779563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bcd0", "tid": 35568, "ts": 6779688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6779861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b650", "tid": 35568, "ts": 6779986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6780158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b720", "tid": 35568, "ts": 6780283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6780455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a950", "tid": 35568, "ts": 6780580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6780751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c0e0", "tid": 35568, "ts": 6780876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2caa0", "tid": 35568, "ts": 6781173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a470", "tid": 35568, "ts": 6781516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c690", "tid": 35568, "ts": 6781815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c9d0", "tid": 35568, "ts": 6782112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6782284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d050", "tid": 35568, "ts": 6782410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6782583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d120", "tid": 35568, "ts": 6782708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6782880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d1f0", "tid": 35568, "ts": 6783005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6783177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a540", "tid": 35568, "ts": 6783302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6783474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a7b0", "tid": 35568, "ts": 6783598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6783770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2aa20", "tid": 35568, "ts": 6783895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2abc0", "tid": 35568, "ts": 6784193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b7f0", "tid": 35568, "ts": 6784490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ac90", "tid": 35568, "ts": 6784788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ae30", "tid": 35568, "ts": 6785098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6785270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b8c0", "tid": 35568, "ts": 6785394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6785566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ecc0", "tid": 35568, "ts": 6785692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6785863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d870", "tid": 35568, "ts": 6785988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6786161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ea50", "tid": 35568, "ts": 6786286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6786458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e640", "tid": 35568, "ts": 6786583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6786755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e3d0", "tid": 35568, "ts": 6786880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dae0", "tid": 35568, "ts": 6787177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ee60", "tid": 35568, "ts": 6787474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ef30", "tid": 35568, "ts": 6787771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e7e0", "tid": 35568, "ts": 6788069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6788240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30450", "tid": 35568, "ts": 6788366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6788538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e090", "tid": 35568, "ts": 6788663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6788835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e570", "tid": 35568, "ts": 6788960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6789131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f820", "tid": 35568, "ts": 6789256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6789429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e710", "tid": 35568, "ts": 6789554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6789725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dd50", "tid": 35568, "ts": 6789850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f1a0", "tid": 35568, "ts": 6790147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e980", "tid": 35568, "ts": 6790444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f5b0", "tid": 35568, "ts": 6790739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f8f0", "tid": 35568, "ts": 6791038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6791210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d940", "tid": 35568, "ts": 6791335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6791507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30380", "tid": 35568, "ts": 6791632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6791805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e160", "tid": 35568, "ts": 6791930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ed90", "tid": 35568, "ts": 6792228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30790", "tid": 35568, "ts": 6792525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e8b0", "tid": 35568, "ts": 6792822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b301e0", "tid": 35568, "ts": 6793119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6793292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fd00", "tid": 35568, "ts": 6793490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6793662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2eb20", "tid": 35568, "ts": 6793787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6793960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fc30", "tid": 35568, "ts": 6794085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6794301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2de20", "tid": 35568, "ts": 6794426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6794621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f410", "tid": 35568, "ts": 6794746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6794918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ebf0", "tid": 35568, "ts": 6795043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6795215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f270", "tid": 35568, "ts": 6795339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6795511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f340", "tid": 35568, "ts": 6795636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6795808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f000", "tid": 35568, "ts": 6795933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f0d0", "tid": 35568, "ts": 6796231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f750", "tid": 35568, "ts": 6796527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b302b0", "tid": 35568, "ts": 6796824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f4e0", "tid": 35568, "ts": 6797121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6797293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30520", "tid": 35568, "ts": 6797418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6797590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b305f0", "tid": 35568, "ts": 6797715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6797886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dc80", "tid": 35568, "ts": 6798010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6798183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f680", "tid": 35568, "ts": 6798308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6798479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e300", "tid": 35568, "ts": 6798604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6798776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d530", "tid": 35568, "ts": 6798900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dbb0", "tid": 35568, "ts": 6799196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b306c0", "tid": 35568, "ts": 6799492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f9c0", "tid": 35568, "ts": 6799789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e4a0", "tid": 35568, "ts": 6800085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6800257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fa90", "tid": 35568, "ts": 6800397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6800648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30860", "tid": 35568, "ts": 6800775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6800946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fb60", "tid": 35568, "ts": 6801072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6801244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e230", "tid": 35568, "ts": 6801368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6801539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fdd0", "tid": 35568, "ts": 6801664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6801835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2def0", "tid": 35568, "ts": 6801960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6802132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fea0", "tid": 35568, "ts": 6802256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6802429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d600", "tid": 35568, "ts": 6802554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6802726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ff70", "tid": 35568, "ts": 6802850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30040", "tid": 35568, "ts": 6803147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30110", "tid": 35568, "ts": 6803443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d6d0", "tid": 35568, "ts": 6803740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d7a0", "tid": 35568, "ts": 6804036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6804209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2da10", "tid": 35568, "ts": 6804334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6804506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dfc0", "tid": 35568, "ts": 6804631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6804802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31a40", "tid": 35568, "ts": 6804927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30a00", "tid": 35568, "ts": 6805222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32670", "tid": 35568, "ts": 6805519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30c70", "tid": 35568, "ts": 6805815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b332a0", "tid": 35568, "ts": 6806112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6806284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31080", "tid": 35568, "ts": 6806408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6806580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32a80", "tid": 35568, "ts": 6806705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6806876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32330", "tid": 35568, "ts": 6807001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6807172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33370", "tid": 35568, "ts": 6807297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6807468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33440", "tid": 35568, "ts": 6807593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6807764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32cf0", "tid": 35568, "ts": 6807889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31b10", "tid": 35568, "ts": 6808185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32dc0", "tid": 35568, "ts": 6808481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31560", "tid": 35568, "ts": 6808777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32260", "tid": 35568, "ts": 6809074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6809244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31150", "tid": 35568, "ts": 6809369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6809541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30e10", "tid": 35568, "ts": 6809665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6809837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33c60", "tid": 35568, "ts": 6809961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6810133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31220", "tid": 35568, "ts": 6810259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6810430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31490", "tid": 35568, "ts": 6810555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6810728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32b50", "tid": 35568, "ts": 6810853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b335e0", "tid": 35568, "ts": 6811150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32740", "tid": 35568, "ts": 6811446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b329b0", "tid": 35568, "ts": 6811743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32190", "tid": 35568, "ts": 6812040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6812212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31be0", "tid": 35568, "ts": 6812336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6812507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31cb0", "tid": 35568, "ts": 6812632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6812804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30ba0", "tid": 35568, "ts": 6812929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b312f0", "tid": 35568, "ts": 6813227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31700", "tid": 35568, "ts": 6813525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30930", "tid": 35568, "ts": 6813823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30d40", "tid": 35568, "ts": 6814166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6814339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31e50", "tid": 35568, "ts": 6814465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6814637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32c20", "tid": 35568, "ts": 6814763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6814934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30ee0", "tid": 35568, "ts": 6815134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6815307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32400", "tid": 35568, "ts": 6815433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6815606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b317d0", "tid": 35568, "ts": 6815730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6815903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32e90", "tid": 35568, "ts": 6816027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6816335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b336b0", "tid": 35568, "ts": 6816585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6816835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b328e0", "tid": 35568, "ts": 6816974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6817251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33100", "tid": 35568, "ts": 6817457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6817630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33b90", "tid": 35568, "ts": 6817755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6817927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31d80", "tid": 35568, "ts": 6818053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6818225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b318a0", "tid": 35568, "ts": 6818350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6818524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30fb0", "tid": 35568, "ts": 6818649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6818821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b313c0", "tid": 35568, "ts": 6818946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6819119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31f20", "tid": 35568, "ts": 6819244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6819416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31970", "tid": 35568, "ts": 6819542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6819713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32810", "tid": 35568, "ts": 6819839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31630", "tid": 35568, "ts": 6820136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b324d0", "tid": 35568, "ts": 6820434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b339f0", "tid": 35568, "ts": 6820732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31ff0", "tid": 35568, "ts": 6821030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6821202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b320c0", "tid": 35568, "ts": 6821327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6821499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b325a0", "tid": 35568, "ts": 6821625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6821797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32f60", "tid": 35568, "ts": 6821923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33030", "tid": 35568, "ts": 6822220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30ad0", "tid": 35568, "ts": 6822518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b331d0", "tid": 35568, "ts": 6822815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33780", "tid": 35568, "ts": 6823111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6823283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33510", "tid": 35568, "ts": 6823407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6823579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33850", "tid": 35568, "ts": 6823704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6823876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33920", "tid": 35568, "ts": 6824001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6824172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33ac0", "tid": 35568, "ts": 6824297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6824469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34620", "tid": 35568, "ts": 6824594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6824767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34d70", "tid": 35568, "ts": 6824893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36f90", "tid": 35568, "ts": 6825188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33fa0", "tid": 35568, "ts": 6825485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36020", "tid": 35568, "ts": 6825806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35800", "tid": 35568, "ts": 6826102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6826275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36500", "tid": 35568, "ts": 6826401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6826571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34480", "tid": 35568, "ts": 6826697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6826869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36290", "tid": 35568, "ts": 6826993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6827165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34210", "tid": 35568, "ts": 6827290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6827463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36c50", "tid": 35568, "ts": 6827587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6827759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36df0", "tid": 35568, "ts": 6827884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35c10", "tid": 35568, "ts": 6828181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b360f0", "tid": 35568, "ts": 6828477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33d30", "tid": 35568, "ts": 6828774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b359a0", "tid": 35568, "ts": 6829071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6829243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b358d0", "tid": 35568, "ts": 6829368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6829540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b342e0", "tid": 35568, "ts": 6829665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6829837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35ce0", "tid": 35568, "ts": 6829962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6830134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37060", "tid": 35568, "ts": 6830259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6830431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34890", "tid": 35568, "ts": 6830557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6830728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b346f0", "tid": 35568, "ts": 6830853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34070", "tid": 35568, "ts": 6831150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b361c0", "tid": 35568, "ts": 6831446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34f10", "tid": 35568, "ts": 6831742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34550", "tid": 35568, "ts": 6832053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6832225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b347c0", "tid": 35568, "ts": 6832351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6832523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34b00", "tid": 35568, "ts": 6832648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6832819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35730", "tid": 35568, "ts": 6832945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6833117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35660", "tid": 35568, "ts": 6833242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6833413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35db0", "tid": 35568, "ts": 6833538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6833709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35b40", "tid": 35568, "ts": 6833835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36360", "tid": 35568, "ts": 6834161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35e80", "tid": 35568, "ts": 6834458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34fe0", "tid": 35568, "ts": 6834756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33e00", "tid": 35568, "ts": 6835053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6835225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35f50", "tid": 35568, "ts": 6835349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6835521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b350b0", "tid": 35568, "ts": 6835645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6835817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36430", "tid": 35568, "ts": 6835943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6836115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35a70", "tid": 35568, "ts": 6836240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6836413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33ed0", "tid": 35568, "ts": 6836538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6836710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b365d0", "tid": 35568, "ts": 6836834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b366a0", "tid": 35568, "ts": 6837132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36770", "tid": 35568, "ts": 6837428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34140", "tid": 35568, "ts": 6837726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36840", "tid": 35568, "ts": 6838022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6838194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36910", "tid": 35568, "ts": 6838319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6838491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b343b0", "tid": 35568, "ts": 6838615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6838786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36ab0", "tid": 35568, "ts": 6838910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b369e0", "tid": 35568, "ts": 6839207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34960", "tid": 35568, "ts": 6839504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34a30", "tid": 35568, "ts": 6839802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35590", "tid": 35568, "ts": 6840101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6840273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34bd0", "tid": 35568, "ts": 6840398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6840570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34ca0", "tid": 35568, "ts": 6840695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6840867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36b80", "tid": 35568, "ts": 6840992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6841164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35180", "tid": 35568, "ts": 6841352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6841524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34e40", "tid": 35568, "ts": 6841649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6841821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35250", "tid": 35568, "ts": 6841946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6842117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36d20", "tid": 35568, "ts": 6842243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6842414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35320", "tid": 35568, "ts": 6842538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6842710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b353f0", "tid": 35568, "ts": 6842835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36ec0", "tid": 35568, "ts": 6843132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b354c0", "tid": 35568, "ts": 6843429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37880", "tid": 35568, "ts": 6843726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38990", "tid": 35568, "ts": 6844021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6844193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b384b0", "tid": 35568, "ts": 6844318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6844489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37950", "tid": 35568, "ts": 6844615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6844786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37d60", "tid": 35568, "ts": 6844911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38a60", "tid": 35568, "ts": 6845207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38b30", "tid": 35568, "ts": 6845503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37a20", "tid": 35568, "ts": 6845801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38c00", "tid": 35568, "ts": 6846098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6846270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37fd0", "tid": 35568, "ts": 6846395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6846567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38650", "tid": 35568, "ts": 6846693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6846865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a120", "tid": 35568, "ts": 6846990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6847162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a2c0", "tid": 35568, "ts": 6847288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6847573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37470", "tid": 35568, "ts": 6847699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6847871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38cd0", "tid": 35568, "ts": 6847996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6848169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37af0", "tid": 35568, "ts": 6848294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6848466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b394f0", "tid": 35568, "ts": 6848591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6848762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37e30", "tid": 35568, "ts": 6848887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b376e0", "tid": 35568, "ts": 6849185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38da0", "tid": 35568, "ts": 6849482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39de0", "tid": 35568, "ts": 6849779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38f40", "tid": 35568, "ts": 6850075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6850247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38e70", "tid": 35568, "ts": 6850372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6850544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b388c0", "tid": 35568, "ts": 6850669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6850840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38310", "tid": 35568, "ts": 6850966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6851138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37f00", "tid": 35568, "ts": 6851264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6851436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b377b0", "tid": 35568, "ts": 6851560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6851731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38170", "tid": 35568, "ts": 6851856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39c40", "tid": 35568, "ts": 6852154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39280", "tid": 35568, "ts": 6852450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39f80", "tid": 35568, "ts": 6852747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39eb0", "tid": 35568, "ts": 6853075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6853248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39010", "tid": 35568, "ts": 6853374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6853544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b383e0", "tid": 35568, "ts": 6853670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6853841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a390", "tid": 35568, "ts": 6853967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6854138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a1f0", "tid": 35568, "ts": 6854264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6854436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39d10", "tid": 35568, "ts": 6854562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6854734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38580", "tid": 35568, "ts": 6854860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39350", "tid": 35568, "ts": 6855157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b390e0", "tid": 35568, "ts": 6855453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b391b0", "tid": 35568, "ts": 6855750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a460", "tid": 35568, "ts": 6856046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6856219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37130", "tid": 35568, "ts": 6856344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6856515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39420", "tid": 35568, "ts": 6856640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6856812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b380a0", "tid": 35568, "ts": 6856937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38240", "tid": 35568, "ts": 6857233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38720", "tid": 35568, "ts": 6857530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a050", "tid": 35568, "ts": 6857826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b395c0", "tid": 35568, "ts": 6858124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6858295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39aa0", "tid": 35568, "ts": 6858420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6858592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37bc0", "tid": 35568, "ts": 6858717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6858889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39690", "tid": 35568, "ts": 6859015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6859187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37200", "tid": 35568, "ts": 6859312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6859485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b387f0", "tid": 35568, "ts": 6859610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6859781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39760", "tid": 35568, "ts": 6859907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6860079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39b70", "tid": 35568, "ts": 6860207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6860502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39830", "tid": 35568, "ts": 6860740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6860914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39900", "tid": 35568, "ts": 6861041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6861213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37610", "tid": 35568, "ts": 6861338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6861511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b399d0", "tid": 35568, "ts": 6861636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6861809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b372d0", "tid": 35568, "ts": 6861935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6862107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b373a0", "tid": 35568, "ts": 6862232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6862404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37540", "tid": 35568, "ts": 6862530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6862702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37c90", "tid": 35568, "ts": 6862826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6863026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ad50", "tid": 35568, "ts": 6863278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6863539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3aa10", "tid": 35568, "ts": 6863715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6863998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c410", "tid": 35568, "ts": 6864189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6864464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ba50", "tid": 35568, "ts": 6864642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6864962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c680", "tid": 35568, "ts": 6865138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6865401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a940", "tid": 35568, "ts": 6865600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6865862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c340", "tid": 35568, "ts": 6866047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6866378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c270", "tid": 35568, "ts": 6866552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6866809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ae20", "tid": 35568, "ts": 6866981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6867236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b300", "tid": 35568, "ts": 6867407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6867661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b7e0", "tid": 35568, "ts": 6867834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6868088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b230", "tid": 35568, "ts": 6868248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6868422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d040", "tid": 35568, "ts": 6868549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6868722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cea0", "tid": 35568, "ts": 6868848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c4e0", "tid": 35568, "ts": 6869146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b640", "tid": 35568, "ts": 6869443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a6d0", "tid": 35568, "ts": 6869740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a530", "tid": 35568, "ts": 6870036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6870208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cdd0", "tid": 35568, "ts": 6870334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6870507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3aef0", "tid": 35568, "ts": 6870634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6870805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c5b0", "tid": 35568, "ts": 6870931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a600", "tid": 35568, "ts": 6871227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d2b0", "tid": 35568, "ts": 6871524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c1a0", "tid": 35568, "ts": 6871822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a870", "tid": 35568, "ts": 6872120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6872292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bd90", "tid": 35568, "ts": 6872417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6872590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b980", "tid": 35568, "ts": 6872717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6872889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c750", "tid": 35568, "ts": 6873015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6873187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c820", "tid": 35568, "ts": 6873312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6873483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3afc0", "tid": 35568, "ts": 6873608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6873780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b3d0", "tid": 35568, "ts": 6873905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b090", "tid": 35568, "ts": 6874202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c8f0", "tid": 35568, "ts": 6874499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3be60", "tid": 35568, "ts": 6874795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cc30", "tid": 35568, "ts": 6875094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6875265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d380", "tid": 35568, "ts": 6875391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6875562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c9c0", "tid": 35568, "ts": 6875689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6875861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b160", "tid": 35568, "ts": 6875986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6876159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b4a0", "tid": 35568, "ts": 6876285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6876456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bf30", "tid": 35568, "ts": 6876581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6876753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ca90", "tid": 35568, "ts": 6876879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d520", "tid": 35568, "ts": 6877177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a7a0", "tid": 35568, "ts": 6877475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cf70", "tid": 35568, "ts": 6877773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c000", "tid": 35568, "ts": 6878069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6878241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cb60", "tid": 35568, "ts": 6878367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6878538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3aae0", "tid": 35568, "ts": 6878727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6878898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b570", "tid": 35568, "ts": 6879026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6879198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b8b0", "tid": 35568, "ts": 6879324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6879497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d110", "tid": 35568, "ts": 6879622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6879794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b710", "tid": 35568, "ts": 6879920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bb20", "tid": 35568, "ts": 6880218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bbf0", "tid": 35568, "ts": 6880517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bcc0", "tid": 35568, "ts": 6880814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c0d0", "tid": 35568, "ts": 6881111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6881283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3abb0", "tid": 35568, "ts": 6881408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6881580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cd00", "tid": 35568, "ts": 6881768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6881940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ac80", "tid": 35568, "ts": 6882066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6882238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d450", "tid": 35568, "ts": 6882406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6882578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d1e0", "tid": 35568, "ts": 6882703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6882876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d5f0", "tid": 35568, "ts": 6883001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6883172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d6c0", "tid": 35568, "ts": 6883297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6883469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d790", "tid": 35568, "ts": 6883594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6883765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d860", "tid": 35568, "ts": 6883891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40370", "tid": 35568, "ts": 6884188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f9b0", "tid": 35568, "ts": 6884483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fdc0", "tid": 35568, "ts": 6884780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dba0", "tid": 35568, "ts": 6885077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6885248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dc70", "tid": 35568, "ts": 6885373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6885544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dee0", "tid": 35568, "ts": 6885669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6885841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3eff0", "tid": 35568, "ts": 6885966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6886138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e150", "tid": 35568, "ts": 6886262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6886434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b402a0", "tid": 35568, "ts": 6886559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6886731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dfb0", "tid": 35568, "ts": 6886857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dd40", "tid": 35568, "ts": 6887154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e7d0", "tid": 35568, "ts": 6887451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40510", "tid": 35568, "ts": 6887747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e700", "tid": 35568, "ts": 6888044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6888216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ebe0", "tid": 35568, "ts": 6888341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6888513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f0c0", "tid": 35568, "ts": 6888638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6888810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fa80", "tid": 35568, "ts": 6888935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40440", "tid": 35568, "ts": 6889232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d930", "tid": 35568, "ts": 6889530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ecb0", "tid": 35568, "ts": 6889826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ea40", "tid": 35568, "ts": 6890124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6890296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40850", "tid": 35568, "ts": 6890421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6890592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b405e0", "tid": 35568, "ts": 6890718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6890890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e8a0", "tid": 35568, "ts": 6891016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6891187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ee50", "tid": 35568, "ts": 6891312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6891484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f260", "tid": 35568, "ts": 6891608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6891780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ef20", "tid": 35568, "ts": 6891904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fc20", "tid": 35568, "ts": 6892202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3de10", "tid": 35568, "ts": 6892500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e080", "tid": 35568, "ts": 6892796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fb50", "tid": 35568, "ts": 6893093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6893264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e970", "tid": 35568, "ts": 6893389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6893561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ed80", "tid": 35568, "ts": 6893686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6893857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f190", "tid": 35568, "ts": 6893982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6894154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3eb10", "tid": 35568, "ts": 6894344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6894576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dad0", "tid": 35568, "ts": 6894713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6894885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b406b0", "tid": 35568, "ts": 6895012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6895183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3da00", "tid": 35568, "ts": 6895309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6895481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b401d0", "tid": 35568, "ts": 6895606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6895779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e220", "tid": 35568, "ts": 6895904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6896075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40780", "tid": 35568, "ts": 6896201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6896373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fcf0", "tid": 35568, "ts": 6896498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6896669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40920", "tid": 35568, "ts": 6897455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6897628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f330", "tid": 35568, "ts": 6897755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6897928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f400", "tid": 35568, "ts": 6898054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6898225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e2f0", "tid": 35568, "ts": 6898351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6898522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b409f0", "tid": 35568, "ts": 6898648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6898821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f5a0", "tid": 35568, "ts": 6898947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6899119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fe90", "tid": 35568, "ts": 6899244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6899416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ff60", "tid": 35568, "ts": 6899542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6899714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40b90", "tid": 35568, "ts": 6899840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f810", "tid": 35568, "ts": 6900138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40030", "tid": 35568, "ts": 6900435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f4d0", "tid": 35568, "ts": 6900733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e490", "tid": 35568, "ts": 6901031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6901202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40100", "tid": 35568, "ts": 6901327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6901498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40ac0", "tid": 35568, "ts": 6901624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6901796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40c60", "tid": 35568, "ts": 6901922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e3c0", "tid": 35568, "ts": 6902219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e560", "tid": 35568, "ts": 6902516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f670", "tid": 35568, "ts": 6902814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f740", "tid": 35568, "ts": 6903111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6903283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f8e0", "tid": 35568, "ts": 6903409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6903580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e630", "tid": 35568, "ts": 6903705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6903876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40d30", "tid": 35568, "ts": 6904002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6904174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42c10", "tid": 35568, "ts": 6904299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6904471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42800", "tid": 35568, "ts": 6904598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6904769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42660", "tid": 35568, "ts": 6904895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43f90", "tid": 35568, "ts": 6905194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b420b0", "tid": 35568, "ts": 6905491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42180", "tid": 35568, "ts": 6905789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42250", "tid": 35568, "ts": 6906087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6906259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b416f0", "tid": 35568, "ts": 6906384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6906556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41a30", "tid": 35568, "ts": 6906681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6906854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42ce0", "tid": 35568, "ts": 6906979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6907150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b423f0", "tid": 35568, "ts": 6907276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6907448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41f10", "tid": 35568, "ts": 6907574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6907746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41140", "tid": 35568, "ts": 6907871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b428d0", "tid": 35568, "ts": 6908169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41210", "tid": 35568, "ts": 6908466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42b40", "tid": 35568, "ts": 6908762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41fe0", "tid": 35568, "ts": 6909059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6909232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40fa0", "tid": 35568, "ts": 6909358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6909531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b413b0", "tid": 35568, "ts": 6909656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6909829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43ec0", "tid": 35568, "ts": 6910014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6910187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44060", "tid": 35568, "ts": 6910313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6910486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42db0", "tid": 35568, "ts": 6910612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6910784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43020", "tid": 35568, "ts": 6910909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b417c0", "tid": 35568, "ts": 6911208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42e80", "tid": 35568, "ts": 6911505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42f50", "tid": 35568, "ts": 6911804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41550", "tid": 35568, "ts": 6912178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6912351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b430f0", "tid": 35568, "ts": 6912477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6912650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41e40", "tid": 35568, "ts": 6912775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6912949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40e00", "tid": 35568, "ts": 6913075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6913247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b431c0", "tid": 35568, "ts": 6913372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6913545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41960", "tid": 35568, "ts": 6913670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6913842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b429a0", "tid": 35568, "ts": 6913968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6914140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43500", "tid": 35568, "ts": 6914266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6914438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b412e0", "tid": 35568, "ts": 6914565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6914737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42320", "tid": 35568, "ts": 6914863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43430", "tid": 35568, "ts": 6915160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43290", "tid": 35568, "ts": 6915458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43d20", "tid": 35568, "ts": 6915758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41480", "tid": 35568, "ts": 6916073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6916246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40ed0", "tid": 35568, "ts": 6916372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6916543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41070", "tid": 35568, "ts": 6916669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6916842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41620", "tid": 35568, "ts": 6916967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6917139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b424c0", "tid": 35568, "ts": 6917264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6917437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42a70", "tid": 35568, "ts": 6917562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6917733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43360", "tid": 35568, "ts": 6917859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41ca0", "tid": 35568, "ts": 6918156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43df0", "tid": 35568, "ts": 6918454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42590", "tid": 35568, "ts": 6918751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b435d0", "tid": 35568, "ts": 6919050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6919222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41d70", "tid": 35568, "ts": 6919348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6919521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42730", "tid": 35568, "ts": 6919646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6919818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b436a0", "tid": 35568, "ts": 6919943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6920115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43770", "tid": 35568, "ts": 6920240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6920412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43840", "tid": 35568, "ts": 6920538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6920711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43910", "tid": 35568, "ts": 6920836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b439e0", "tid": 35568, "ts": 6921134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43c50", "tid": 35568, "ts": 6921431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41890", "tid": 35568, "ts": 6921728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43ab0", "tid": 35568, "ts": 6922025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6922198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43b80", "tid": 35568, "ts": 6922323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6922495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41b00", "tid": 35568, "ts": 6922621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6922792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41bd0", "tid": 35568, "ts": 6922917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45a60", "tid": 35568, "ts": 6923215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45b30", "tid": 35568, "ts": 6923512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b447b0", "tid": 35568, "ts": 6923809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b472c0", "tid": 35568, "ts": 6924107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6924279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b469d0", "tid": 35568, "ts": 6924405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6924578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45c00", "tid": 35568, "ts": 6924704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6924876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47050", "tid": 35568, "ts": 6925002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6925174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46280", "tid": 35568, "ts": 6925300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6925473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46d10", "tid": 35568, "ts": 6925787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6926026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45da0", "tid": 35568, "ts": 6926214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6926432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45580", "tid": 35568, "ts": 6926619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6926792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44130", "tid": 35568, "ts": 6926918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46eb0", "tid": 35568, "ts": 6927216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b458c0", "tid": 35568, "ts": 6927515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47120", "tid": 35568, "ts": 6927815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b471f0", "tid": 35568, "ts": 6928112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6928283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46420", "tid": 35568, "ts": 6928409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6928581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46aa0", "tid": 35568, "ts": 6928707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6928879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45cd0", "tid": 35568, "ts": 6929005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6929177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44200", "tid": 35568, "ts": 6929303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6929476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b443a0", "tid": 35568, "ts": 6929601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6929773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45990", "tid": 35568, "ts": 6929899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46010", "tid": 35568, "ts": 6930196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47390", "tid": 35568, "ts": 6930492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b457f0", "tid": 35568, "ts": 6930790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44bc0", "tid": 35568, "ts": 6931086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6931258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b446e0", "tid": 35568, "ts": 6931383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6931555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45e70", "tid": 35568, "ts": 6931680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6931852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45f40", "tid": 35568, "ts": 6931977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6932150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b442d0", "tid": 35568, "ts": 6932275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6932447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44470", "tid": 35568, "ts": 6932573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6932744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b454b0", "tid": 35568, "ts": 6932868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47460", "tid": 35568, "ts": 6933166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44540", "tid": 35568, "ts": 6933463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b461b0", "tid": 35568, "ts": 6933761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b464f0", "tid": 35568, "ts": 6934059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6934231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44610", "tid": 35568, "ts": 6934357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6934530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46f80", "tid": 35568, "ts": 6934656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6934828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b460e0", "tid": 35568, "ts": 6934953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6935126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44880", "tid": 35568, "ts": 6935251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6935424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44950", "tid": 35568, "ts": 6935549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6935721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46350", "tid": 35568, "ts": 6935846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b465c0", "tid": 35568, "ts": 6936144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44a20", "tid": 35568, "ts": 6936441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44af0", "tid": 35568, "ts": 6936739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46690", "tid": 35568, "ts": 6937037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6937208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46760", "tid": 35568, "ts": 6937333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6937505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46830", "tid": 35568, "ts": 6937629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6937802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46900", "tid": 35568, "ts": 6937981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6938160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44c90", "tid": 35568, "ts": 6938329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6938501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46b70", "tid": 35568, "ts": 6938627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6938799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46c40", "tid": 35568, "ts": 6938925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44d60", "tid": 35568, "ts": 6939222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44e30", "tid": 35568, "ts": 6939518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45650", "tid": 35568, "ts": 6939815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46de0", "tid": 35568, "ts": 6940112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6940284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45720", "tid": 35568, "ts": 6940410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6940580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44f00", "tid": 35568, "ts": 6940706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6940878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44fd0", "tid": 35568, "ts": 6941003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6941279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b450a0", "tid": 35568, "ts": 6941498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6941718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45170", "tid": 35568, "ts": 6941844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45240", "tid": 35568, "ts": 6942142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45310", "tid": 35568, "ts": 6942439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b453e0", "tid": 35568, "ts": 6942738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a790", "tid": 35568, "ts": 6943037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6943209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49410", "tid": 35568, "ts": 6943334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6943507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49680", "tid": 35568, "ts": 6943632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6943805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48a50", "tid": 35568, "ts": 6943930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48b20", "tid": 35568, "ts": 6944228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b491a0", "tid": 35568, "ts": 6944525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47600", "tid": 35568, "ts": 6944822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48570", "tid": 35568, "ts": 6945119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6945291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49000", "tid": 35568, "ts": 6945416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6945589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49750", "tid": 35568, "ts": 6945715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6945886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49ea0", "tid": 35568, "ts": 6946011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6946183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47c80", "tid": 35568, "ts": 6946309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6946481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47d50", "tid": 35568, "ts": 6946607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6946779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a1e0", "tid": 35568, "ts": 6946904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48640", "tid": 35568, "ts": 6947202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48230", "tid": 35568, "ts": 6947499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47870", "tid": 35568, "ts": 6947795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47ef0", "tid": 35568, "ts": 6948093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6948265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49d00", "tid": 35568, "ts": 6948390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6948563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48bf0", "tid": 35568, "ts": 6948689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6948862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a5f0", "tid": 35568, "ts": 6948987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6949159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b487e0", "tid": 35568, "ts": 6949327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6949500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b483d0", "tid": 35568, "ts": 6949625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6949798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a110", "tid": 35568, "ts": 6949924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47940", "tid": 35568, "ts": 6950222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49f70", "tid": 35568, "ts": 6950519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49270", "tid": 35568, "ts": 6950817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b494e0", "tid": 35568, "ts": 6951114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6951287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48e60", "tid": 35568, "ts": 6951412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6951583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49340", "tid": 35568, "ts": 6951708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6951881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b476d0", "tid": 35568, "ts": 6952006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6952178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47a10", "tid": 35568, "ts": 6952304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6952476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48d90", "tid": 35568, "ts": 6952601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6952773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b490d0", "tid": 35568, "ts": 6952899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48300", "tid": 35568, "ts": 6953196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48710", "tid": 35568, "ts": 6953493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47ae0", "tid": 35568, "ts": 6953791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b495b0", "tid": 35568, "ts": 6954087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6954259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49820", "tid": 35568, "ts": 6954385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6954557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48cc0", "tid": 35568, "ts": 6954682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6954853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b488b0", "tid": 35568, "ts": 6954978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6955150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b477a0", "tid": 35568, "ts": 6955276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6955448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48f30", "tid": 35568, "ts": 6955572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6955745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b498f0", "tid": 35568, "ts": 6955870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b499c0", "tid": 35568, "ts": 6956167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47e20", "tid": 35568, "ts": 6956464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49a90", "tid": 35568, "ts": 6956802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49b60", "tid": 35568, "ts": 6957117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6957289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a040", "tid": 35568, "ts": 6957415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6957587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a2b0", "tid": 35568, "ts": 6957712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6957883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49c30", "tid": 35568, "ts": 6958009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6958180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49dd0", "tid": 35568, "ts": 6958305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6958478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47bb0", "tid": 35568, "ts": 6958603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6958774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48980", "tid": 35568, "ts": 6958899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b484a0", "tid": 35568, "ts": 6959196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a380", "tid": 35568, "ts": 6959492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a450", "tid": 35568, "ts": 6959790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47fc0", "tid": 35568, "ts": 6960089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6960262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a520", "tid": 35568, "ts": 6960387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6960559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47530", "tid": 35568, "ts": 6960684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6960856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a6c0", "tid": 35568, "ts": 6960981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6961152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a860", "tid": 35568, "ts": 6961277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6961449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48090", "tid": 35568, "ts": 6961574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6961745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48160", "tid": 35568, "ts": 6961870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c810", "tid": 35568, "ts": 6962168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b220", "tid": 35568, "ts": 6962465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b630", "tid": 35568, "ts": 6962762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4be50", "tid": 35568, "ts": 6963059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6963232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aad0", "tid": 35568, "ts": 6963357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6963529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b150", "tid": 35568, "ts": 6963654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6963826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c4d0", "tid": 35568, "ts": 6963951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6964124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bd80", "tid": 35568, "ts": 6964249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6964420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aa00", "tid": 35568, "ts": 6964545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6964716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ce90", "tid": 35568, "ts": 6964841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d780", "tid": 35568, "ts": 6965138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bb10", "tid": 35568, "ts": 6965436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ba40", "tid": 35568, "ts": 6965732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b560", "tid": 35568, "ts": 6966029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6966201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b2f0", "tid": 35568, "ts": 6966326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6966498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cf60", "tid": 35568, "ts": 6966623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6966793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cdc0", "tid": 35568, "ts": 6966919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bbe0", "tid": 35568, "ts": 6967215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c190", "tid": 35568, "ts": 6967512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bcb0", "tid": 35568, "ts": 6967810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d5e0", "tid": 35568, "ts": 6968108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6968281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d030", "tid": 35568, "ts": 6968406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6968578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c260", "tid": 35568, "ts": 6968765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6968938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c5a0", "tid": 35568, "ts": 6969063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6969236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aba0", "tid": 35568, "ts": 6969361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6969533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c670", "tid": 35568, "ts": 6969659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6969831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ac70", "tid": 35568, "ts": 6969956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6970128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b700", "tid": 35568, "ts": 6970253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6970425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c0c0", "tid": 35568, "ts": 6970550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6970722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c740", "tid": 35568, "ts": 6970848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cc20", "tid": 35568, "ts": 6971145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b3c0", "tid": 35568, "ts": 6971441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b490", "tid": 35568, "ts": 6971738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bf20", "tid": 35568, "ts": 6972035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6972207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d9f0", "tid": 35568, "ts": 6972332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6972554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bff0", "tid": 35568, "ts": 6972680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6972852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d510", "tid": 35568, "ts": 6972978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6973150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d2a0", "tid": 35568, "ts": 6973275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6973448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d6b0", "tid": 35568, "ts": 6973573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6973746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d370", "tid": 35568, "ts": 6973872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c330", "tid": 35568, "ts": 6974169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d100", "tid": 35568, "ts": 6974467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c400", "tid": 35568, "ts": 6974765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aee0", "tid": 35568, "ts": 6975063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6975235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c8e0", "tid": 35568, "ts": 6975361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6975533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b7d0", "tid": 35568, "ts": 6975659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6975831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b970", "tid": 35568, "ts": 6975956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6976128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d1d0", "tid": 35568, "ts": 6976253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6976426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ad40", "tid": 35568, "ts": 6976551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6976723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c9b0", "tid": 35568, "ts": 6976849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d850", "tid": 35568, "ts": 6977146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ca80", "tid": 35568, "ts": 6977443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d920", "tid": 35568, "ts": 6977742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cb50", "tid": 35568, "ts": 6978040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6978212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d440", "tid": 35568, "ts": 6978337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6978509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ae10", "tid": 35568, "ts": 6978634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6978806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ccf0", "tid": 35568, "ts": 6978931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dac0", "tid": 35568, "ts": 6979228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b8a0", "tid": 35568, "ts": 6979525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4db90", "tid": 35568, "ts": 6979822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dc60", "tid": 35568, "ts": 6980118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6980291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a930", "tid": 35568, "ts": 6980416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6980589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4afb0", "tid": 35568, "ts": 6980774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6980946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b080", "tid": 35568, "ts": 6981072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6981245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f590", "tid": 35568, "ts": 6981371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6981543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f8d0", "tid": 35568, "ts": 6981670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6981842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50770", "tid": 35568, "ts": 6982009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6982182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50840", "tid": 35568, "ts": 6982308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6982481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e890", "tid": 35568, "ts": 6982607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6982780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e960", "tid": 35568, "ts": 6982905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ebd0", "tid": 35568, "ts": 6983202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fdb0", "tid": 35568, "ts": 6983501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f0b0", "tid": 35568, "ts": 6983798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ded0", "tid": 35568, "ts": 6984095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6984267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ff50", "tid": 35568, "ts": 6984392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6984564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ee40", "tid": 35568, "ts": 6984689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6984861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50290", "tid": 35568, "ts": 6984988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6985159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b506a0", "tid": 35568, "ts": 6985284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6985456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50ab0", "tid": 35568, "ts": 6985581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6985754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50430", "tid": 35568, "ts": 6985879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f660", "tid": 35568, "ts": 6986177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50910", "tid": 35568, "ts": 6986475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ea30", "tid": 35568, "ts": 6986772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fa70", "tid": 35568, "ts": 6987069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6987242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50d20", "tid": 35568, "ts": 6987368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6987540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e140", "tid": 35568, "ts": 6987667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6987839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f9a0", "tid": 35568, "ts": 6987964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6988216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4eca0", "tid": 35568, "ts": 6988408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6988580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e3b0", "tid": 35568, "ts": 6988705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6988877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f730", "tid": 35568, "ts": 6989002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6989174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e550", "tid": 35568, "ts": 6989300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6989473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f800", "tid": 35568, "ts": 6989599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6989771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4de00", "tid": 35568, "ts": 6989897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e480", "tid": 35568, "ts": 6990195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fb40", "tid": 35568, "ts": 6990493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b509e0", "tid": 35568, "ts": 6990790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50ec0", "tid": 35568, "ts": 6991088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6991260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f3f0", "tid": 35568, "ts": 6991385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6991557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e620", "tid": 35568, "ts": 6991683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6991855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50df0", "tid": 35568, "ts": 6991981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6992153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4efe0", "tid": 35568, "ts": 6992278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6992451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f180", "tid": 35568, "ts": 6992577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6992750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ed70", "tid": 35568, "ts": 6992876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4eb00", "tid": 35568, "ts": 6993174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50b80", "tid": 35568, "ts": 6993472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dd30", "tid": 35568, "ts": 6993770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e7c0", "tid": 35568, "ts": 6994067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6994239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fc10", "tid": 35568, "ts": 6994365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6994559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fe80", "tid": 35568, "ts": 6994685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6994858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ef10", "tid": 35568, "ts": 6994983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6995155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f250", "tid": 35568, "ts": 6995280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6995454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f320", "tid": 35568, "ts": 6995579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6995751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fce0", "tid": 35568, "ts": 6995877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50c50", "tid": 35568, "ts": 6996176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50360", "tid": 35568, "ts": 6996475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50020", "tid": 35568, "ts": 6996772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f4c0", "tid": 35568, "ts": 6997070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6997242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50500", "tid": 35568, "ts": 6997367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6997540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dfa0", "tid": 35568, "ts": 6997665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6997835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e070", "tid": 35568, "ts": 6997961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6998134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b500f0", "tid": 35568, "ts": 6998260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6998432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e210", "tid": 35568, "ts": 6998557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6998728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e2e0", "tid": 35568, "ts": 6998854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e6f0", "tid": 35568, "ts": 6999151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b501c0", "tid": 35568, "ts": 6999450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b505d0", "tid": 35568, "ts": 6999771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652bf0", "tid": 35568, "ts": 7000134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7000309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6527e0", "tid": 35568, "ts": 7000435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7000607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654110", "tid": 35568, "ts": 7000732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7000905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652710", "tid": 35568, "ts": 7001031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7001204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652640", "tid": 35568, "ts": 7001329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7001501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6523d0", "tid": 35568, "ts": 7001626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7001798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652e60", "tid": 35568, "ts": 7001923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652a50", "tid": 35568, "ts": 7002220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654450", "tid": 35568, "ts": 7002518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654520", "tid": 35568, "ts": 7002816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6524a0", "tid": 35568, "ts": 7003112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7003285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651a10", "tid": 35568, "ts": 7003410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7003582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653270", "tid": 35568, "ts": 7003772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7003944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653820", "tid": 35568, "ts": 7004070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7004242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651870", "tid": 35568, "ts": 7004368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7004541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651940", "tid": 35568, "ts": 7004667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7004839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6541e0", "tid": 35568, "ts": 7004965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7005136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6542b0", "tid": 35568, "ts": 7005262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7005434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654790", "tid": 35568, "ts": 7005560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7005732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653410", "tid": 35568, "ts": 7005858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652cc0", "tid": 35568, "ts": 7006155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651ae0", "tid": 35568, "ts": 7006453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653a90", "tid": 35568, "ts": 7006751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654380", "tid": 35568, "ts": 7007048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7007221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654860", "tid": 35568, "ts": 7007346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7007518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651bb0", "tid": 35568, "ts": 7007644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7007816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653ea0", "tid": 35568, "ts": 7007941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7008114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6545f0", "tid": 35568, "ts": 7008239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7008411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6539c0", "tid": 35568, "ts": 7008537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7008752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653000", "tid": 35568, "ts": 7008881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6546c0", "tid": 35568, "ts": 7009180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6534e0", "tid": 35568, "ts": 7009477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652090", "tid": 35568, "ts": 7009775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652980", "tid": 35568, "ts": 7010072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7010244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651d50", "tid": 35568, "ts": 7010369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7010540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652230", "tid": 35568, "ts": 7010666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7010839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653b60", "tid": 35568, "ts": 7010964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7011136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652570", "tid": 35568, "ts": 7011261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7011433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6530d0", "tid": 35568, "ts": 7011558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7011730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652300", "tid": 35568, "ts": 7011855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6531a0", "tid": 35568, "ts": 7012153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6528b0", "tid": 35568, "ts": 7012452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652b20", "tid": 35568, "ts": 7012749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652d90", "tid": 35568, "ts": 7013046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7013218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652f30", "tid": 35568, "ts": 7013344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7013517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653340", "tid": 35568, "ts": 7013642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7013815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651530", "tid": 35568, "ts": 7013940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7014112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653dd0", "tid": 35568, "ts": 7014237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7014409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651600", "tid": 35568, "ts": 7014534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7014706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6516d0", "tid": 35568, "ts": 7014831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651c80", "tid": 35568, "ts": 7015171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6535b0", "tid": 35568, "ts": 7015470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653680", "tid": 35568, "ts": 7015768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653750", "tid": 35568, "ts": 7016065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7016239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6538f0", "tid": 35568, "ts": 7016365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7016536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653c30", "tid": 35568, "ts": 7016661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7016834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653d00", "tid": 35568, "ts": 7016960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7017131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653f70", "tid": 35568, "ts": 7017257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7017428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654040", "tid": 35568, "ts": 7017553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7017724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6517a0", "tid": 35568, "ts": 7017849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651e20", "tid": 35568, "ts": 7018146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651ef0", "tid": 35568, "ts": 7018442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651fc0", "tid": 35568, "ts": 7018739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652160", "tid": 35568, "ts": 7019036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7019208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654ad0", "tid": 35568, "ts": 7019379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7019551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656c20", "tid": 35568, "ts": 7019676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7019847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6569b0", "tid": 35568, "ts": 7019973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7020145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656a80", "tid": 35568, "ts": 7020270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7020441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6557d0", "tid": 35568, "ts": 7020567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7020739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656810", "tid": 35568, "ts": 7020865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6552f0", "tid": 35568, "ts": 7021189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655b10", "tid": 35568, "ts": 7021488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655150", "tid": 35568, "ts": 7021786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654c70", "tid": 35568, "ts": 7022083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7022255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655be0", "tid": 35568, "ts": 7022381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7022553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656b50", "tid": 35568, "ts": 7022679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7022850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655970", "tid": 35568, "ts": 7022975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7023147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655700", "tid": 35568, "ts": 7023272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7023443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6572a0", "tid": 35568, "ts": 7023568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7023738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655cb0", "tid": 35568, "ts": 7023863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654d40", "tid": 35568, "ts": 7024160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657920", "tid": 35568, "ts": 7024457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657ac0", "tid": 35568, "ts": 7024754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655220", "tid": 35568, "ts": 7025051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7025223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6565a0", "tid": 35568, "ts": 7025349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7025521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655d80", "tid": 35568, "ts": 7025646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7025843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655e50", "tid": 35568, "ts": 7025970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7026142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655ff0", "tid": 35568, "ts": 7026268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7026439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657030", "tid": 35568, "ts": 7026627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7026799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655f20", "tid": 35568, "ts": 7026925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657100", "tid": 35568, "ts": 7027223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6568e0", "tid": 35568, "ts": 7027520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6553c0", "tid": 35568, "ts": 7027818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655630", "tid": 35568, "ts": 7028114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7028285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656400", "tid": 35568, "ts": 7028411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7028582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6558a0", "tid": 35568, "ts": 7028707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7028879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6564d0", "tid": 35568, "ts": 7029005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7029176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657440", "tid": 35568, "ts": 7029302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7029474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655a40", "tid": 35568, "ts": 7029599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7029772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6575e0", "tid": 35568, "ts": 7029897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656dc0", "tid": 35568, "ts": 7030195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6560c0", "tid": 35568, "ts": 7030492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654ee0", "tid": 35568, "ts": 7030789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656670", "tid": 35568, "ts": 7031086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7031257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656740", "tid": 35568, "ts": 7031382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7031618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654e10", "tid": 35568, "ts": 7031746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7031924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656cf0", "tid": 35568, "ts": 7032050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7032231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656190", "tid": 35568, "ts": 7032368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7032540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6571d0", "tid": 35568, "ts": 7032666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7032838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656260", "tid": 35568, "ts": 7032963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7033135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656330", "tid": 35568, "ts": 7033261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7033432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657b90", "tid": 35568, "ts": 7033558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7033730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657370", "tid": 35568, "ts": 7033855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655490", "tid": 35568, "ts": 7034153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656e90", "tid": 35568, "ts": 7034452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656f60", "tid": 35568, "ts": 7034750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657510", "tid": 35568, "ts": 7035242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7035490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6576b0", "tid": 35568, "ts": 7035628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7035904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657780", "tid": 35568, "ts": 7036089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7036261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657850", "tid": 35568, "ts": 7036387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7036558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6579f0", "tid": 35568, "ts": 7036684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7036856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655560", "tid": 35568, "ts": 7036982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7037154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657c60", "tid": 35568, "ts": 7037280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7037452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654930", "tid": 35568, "ts": 7037577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7037748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654a00", "tid": 35568, "ts": 7037873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654ba0", "tid": 35568, "ts": 7038170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654fb0", "tid": 35568, "ts": 7038468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655080", "tid": 35568, "ts": 7038765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659b40", "tid": 35568, "ts": 7039062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7039234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658f10", "tid": 35568, "ts": 7039359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7039531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658070", "tid": 35568, "ts": 7039656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7039828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658fe0", "tid": 35568, "ts": 7039953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7040125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ac50", "tid": 35568, "ts": 7040252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7040423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ad20", "tid": 35568, "ts": 7040548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7040721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65adf0", "tid": 35568, "ts": 7040847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6590b0", "tid": 35568, "ts": 7041145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658960", "tid": 35568, "ts": 7041444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659a70", "tid": 35568, "ts": 7041741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a360", "tid": 35568, "ts": 7042040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7042211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659800", "tid": 35568, "ts": 7042336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7042509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658e40", "tid": 35568, "ts": 7042634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7042806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657d30", "tid": 35568, "ts": 7042932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a020", "tid": 35568, "ts": 7043229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6599a0", "tid": 35568, "ts": 7043526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6593f0", "tid": 35568, "ts": 7043825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659590", "tid": 35568, "ts": 7044122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7044294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658890", "tid": 35568, "ts": 7044419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7044591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659180", "tid": 35568, "ts": 7044716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7044889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65aec0", "tid": 35568, "ts": 7045014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7045185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658d70", "tid": 35568, "ts": 7045311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7045484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659e80", "tid": 35568, "ts": 7045610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7045782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a5d0", "tid": 35568, "ts": 7045908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658210", "tid": 35568, "ts": 7046207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6594c0", "tid": 35568, "ts": 7046506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658140", "tid": 35568, "ts": 7046804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a430", "tid": 35568, "ts": 7047102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7047274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659250", "tid": 35568, "ts": 7047399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7047571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a6a0", "tid": 35568, "ts": 7047697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7047870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659320", "tid": 35568, "ts": 7047996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7048167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657ed0", "tid": 35568, "ts": 7048334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7048506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659ce0", "tid": 35568, "ts": 7048631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7048803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659660", "tid": 35568, "ts": 7048929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7049100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65af90", "tid": 35568, "ts": 7049226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7049398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6582e0", "tid": 35568, "ts": 7049580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7049753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65aab0", "tid": 35568, "ts": 7049879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7050051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a500", "tid": 35568, "ts": 7050177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7050348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659730", "tid": 35568, "ts": 7050474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7050706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6598d0", "tid": 35568, "ts": 7050832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659c10", "tid": 35568, "ts": 7051131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a770", "tid": 35568, "ts": 7051430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a840", "tid": 35568, "ts": 7051729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659db0", "tid": 35568, "ts": 7052027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7052199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659f50", "tid": 35568, "ts": 7052324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7052497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a0f0", "tid": 35568, "ts": 7052623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7052795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a1c0", "tid": 35568, "ts": 7052920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b060", "tid": 35568, "ts": 7053216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a290", "tid": 35568, "ts": 7053513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6587c0", "tid": 35568, "ts": 7053811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a910", "tid": 35568, "ts": 7054109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7054282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a9e0", "tid": 35568, "ts": 7054407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7054579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658ca0", "tid": 35568, "ts": 7054704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7054877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658a30", "tid": 35568, "ts": 7055001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7055174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ab80", "tid": 35568, "ts": 7055365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7055538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658b00", "tid": 35568, "ts": 7055665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7055837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657e00", "tid": 35568, "ts": 7055964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7056136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657fa0", "tid": 35568, "ts": 7056262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7056434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658bd0", "tid": 35568, "ts": 7056560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7056732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6583b0", "tid": 35568, "ts": 7056857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658480", "tid": 35568, "ts": 7057155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658550", "tid": 35568, "ts": 7057452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658620", "tid": 35568, "ts": 7057750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6586f0", "tid": 35568, "ts": 7058048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7058221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e390", "tid": 35568, "ts": 7058346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7058518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c310", "tid": 35568, "ts": 7058643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7058815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e2c0", "tid": 35568, "ts": 7058941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7059113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e460", "tid": 35568, "ts": 7059239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7059411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b3a0", "tid": 35568, "ts": 7059538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7059709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c240", "tid": 35568, "ts": 7059834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d010", "tid": 35568, "ts": 7060131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b130", "tid": 35568, "ts": 7060428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65daa0", "tid": 35568, "ts": 7060726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d420", "tid": 35568, "ts": 7061024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7061197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bfd0", "tid": 35568, "ts": 7061322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7061494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d0e0", "tid": 35568, "ts": 7061620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7061793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65dde0", "tid": 35568, "ts": 7061918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bbc0", "tid": 35568, "ts": 7062217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b2d0", "tid": 35568, "ts": 7062515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d1b0", "tid": 35568, "ts": 7062813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b470", "tid": 35568, "ts": 7063110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7063282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d900", "tid": 35568, "ts": 7063408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7063581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b540", "tid": 35568, "ts": 7063706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7063878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d280", "tid": 35568, "ts": 7064003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7064176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c650", "tid": 35568, "ts": 7064302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7064474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ba20", "tid": 35568, "ts": 7064599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7064771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ccd0", "tid": 35568, "ts": 7064896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b200", "tid": 35568, "ts": 7065193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b950", "tid": 35568, "ts": 7065491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65be30", "tid": 35568, "ts": 7065789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d350", "tid": 35568, "ts": 7066087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7066394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b610", "tid": 35568, "ts": 7066524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7066698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ce70", "tid": 35568, "ts": 7066824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7066997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c4b0", "tid": 35568, "ts": 7067123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7067297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bc90", "tid": 35568, "ts": 7067422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7067595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b6e0", "tid": 35568, "ts": 7067721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7067893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bd60", "tid": 35568, "ts": 7068019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7068191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b7b0", "tid": 35568, "ts": 7068317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7068491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b880", "tid": 35568, "ts": 7068616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7068790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bf00", "tid": 35568, "ts": 7068916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d4f0", "tid": 35568, "ts": 7069214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65deb0", "tid": 35568, "ts": 7069512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c0a0", "tid": 35568, "ts": 7069809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d5c0", "tid": 35568, "ts": 7070109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7070281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65baf0", "tid": 35568, "ts": 7070407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7070579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c170", "tid": 35568, "ts": 7070705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7070878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65df80", "tid": 35568, "ts": 7071004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7071176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c3e0", "tid": 35568, "ts": 7071301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7071473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d690", "tid": 35568, "ts": 7071599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7071770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cda0", "tid": 35568, "ts": 7071896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cc00", "tid": 35568, "ts": 7072194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c580", "tid": 35568, "ts": 7072491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c720", "tid": 35568, "ts": 7072789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c7f0", "tid": 35568, "ts": 7073085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7073259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c8c0", "tid": 35568, "ts": 7073385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7073558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c990", "tid": 35568, "ts": 7073684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7073857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ca60", "tid": 35568, "ts": 7073982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7074154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d760", "tid": 35568, "ts": 7074280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7074452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cb30", "tid": 35568, "ts": 7074578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7074751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cf40", "tid": 35568, "ts": 7074876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d830", "tid": 35568, "ts": 7075175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e120", "tid": 35568, "ts": 7075472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d9d0", "tid": 35568, "ts": 7075770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65db70", "tid": 35568, "ts": 7076068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7076239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65dc40", "tid": 35568, "ts": 7076365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7076538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65dd10", "tid": 35568, "ts": 7076663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7076837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e050", "tid": 35568, "ts": 7076962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7077135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e1f0", "tid": 35568, "ts": 7077261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7077433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660820", "tid": 35568, "ts": 7077559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7077732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f230", "tid": 35568, "ts": 7077857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6608f0", "tid": 35568, "ts": 7078156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660a90", "tid": 35568, "ts": 7078454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660270", "tid": 35568, "ts": 7078752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f8b0", "tid": 35568, "ts": 7079050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7079224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e530", "tid": 35568, "ts": 7079349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7079522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ee20", "tid": 35568, "ts": 7079648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7079862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661520", "tid": 35568, "ts": 7079989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7080163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660680", "tid": 35568, "ts": 7080288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7080461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6616c0", "tid": 35568, "ts": 7080587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7080759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ed50", "tid": 35568, "ts": 7080885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7081056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e600", "tid": 35568, "ts": 7081181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7081395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fbf0", "tid": 35568, "ts": 7081527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7081700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fe60", "tid": 35568, "ts": 7081903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7082151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6609c0", "tid": 35568, "ts": 7082281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7082455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f3d0", "tid": 35568, "ts": 7082581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7082753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6601a0", "tid": 35568, "ts": 7082879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660340", "tid": 35568, "ts": 7083178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65eef0", "tid": 35568, "ts": 7083476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ff30", "tid": 35568, "ts": 7083774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fd90", "tid": 35568, "ts": 7084071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7084245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6604e0", "tid": 35568, "ts": 7084370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7084542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6611e0", "tid": 35568, "ts": 7084667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7084839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6615f0", "tid": 35568, "ts": 7084965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7085136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f640", "tid": 35568, "ts": 7085262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7085434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ea10", "tid": 35568, "ts": 7085559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7085731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661790", "tid": 35568, "ts": 7085856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660410", "tid": 35568, "ts": 7086153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660b60", "tid": 35568, "ts": 7086450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6600d0", "tid": 35568, "ts": 7086748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65eae0", "tid": 35568, "ts": 7087046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7087220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660c30", "tid": 35568, "ts": 7087346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7087518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e6d0", "tid": 35568, "ts": 7087644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7087816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660000", "tid": 35568, "ts": 7087942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7088113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f980", "tid": 35568, "ts": 7088239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7088411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6605b0", "tid": 35568, "ts": 7088536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7088709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661450", "tid": 35568, "ts": 7088835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ebb0", "tid": 35568, "ts": 7089133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660d00", "tid": 35568, "ts": 7089430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e870", "tid": 35568, "ts": 7089729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e7a0", "tid": 35568, "ts": 7090026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7090197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661110", "tid": 35568, "ts": 7090323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7090495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65efc0", "tid": 35568, "ts": 7090621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7090794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f570", "tid": 35568, "ts": 7090919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660dd0", "tid": 35568, "ts": 7091216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660750", "tid": 35568, "ts": 7091513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661860", "tid": 35568, "ts": 7091810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660ea0", "tid": 35568, "ts": 7092108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7092281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fcc0", "tid": 35568, "ts": 7092406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7092578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ec80", "tid": 35568, "ts": 7092704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7092876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f090", "tid": 35568, "ts": 7093001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7093175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660f70", "tid": 35568, "ts": 7093301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7093473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661040", "tid": 35568, "ts": 7093598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7093771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e940", "tid": 35568, "ts": 7093897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6612b0", "tid": 35568, "ts": 7094194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f160", "tid": 35568, "ts": 7094493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f300", "tid": 35568, "ts": 7094814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f710", "tid": 35568, "ts": 7095112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7095284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661380", "tid": 35568, "ts": 7095410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7095582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f4a0", "tid": 35568, "ts": 7095708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7095880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f7e0", "tid": 35568, "ts": 7096005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7096178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fa50", "tid": 35568, "ts": 7096303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7096475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fb20", "tid": 35568, "ts": 7096602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7096774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6641d0", "tid": 35568, "ts": 7096899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7097071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6639b0", "tid": 35568, "ts": 7097241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7097472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663a80", "tid": 35568, "ts": 7097600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7097773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662a40", "tid": 35568, "ts": 7097899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662220", "tid": 35568, "ts": 7098199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6645e0", "tid": 35568, "ts": 7098495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663dc0", "tid": 35568, "ts": 7098794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664920", "tid": 35568, "ts": 7099092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7099263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664780", "tid": 35568, "ts": 7099388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7099560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664c60", "tid": 35568, "ts": 7099685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7099857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663c20", "tid": 35568, "ts": 7099982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7100156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661ee0", "tid": 35568, "ts": 7100282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7100455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663cf0", "tid": 35568, "ts": 7100580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7100752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661d40", "tid": 35568, "ts": 7100877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663810", "tid": 35568, "ts": 7101175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664ac0", "tid": 35568, "ts": 7101472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661fb0", "tid": 35568, "ts": 7101769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661e10", "tid": 35568, "ts": 7102067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7102239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662080", "tid": 35568, "ts": 7102364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7102535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662d80", "tid": 35568, "ts": 7102660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7102833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661c70", "tid": 35568, "ts": 7102958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7103129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661ba0", "tid": 35568, "ts": 7103255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7103428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662be0", "tid": 35568, "ts": 7103554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7103725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662150", "tid": 35568, "ts": 7103851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6635a0", "tid": 35568, "ts": 7104148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662e50", "tid": 35568, "ts": 7104446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662b10", "tid": 35568, "ts": 7104743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6622f0", "tid": 35568, "ts": 7105041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7105214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6623c0", "tid": 35568, "ts": 7105339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7105512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663670", "tid": 35568, "ts": 7105637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7105810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663b50", "tid": 35568, "ts": 7105935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7106108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662f20", "tid": 35568, "ts": 7106233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7106405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662490", "tid": 35568, "ts": 7106530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7106702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661930", "tid": 35568, "ts": 7106828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663e90", "tid": 35568, "ts": 7107126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662ff0", "tid": 35568, "ts": 7107423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663f60", "tid": 35568, "ts": 7107719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662560", "tid": 35568, "ts": 7108018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7108191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662cb0", "tid": 35568, "ts": 7108316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7108487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6630c0", "tid": 35568, "ts": 7108614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7108785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6642a0", "tid": 35568, "ts": 7108911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664030", "tid": 35568, "ts": 7109208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663740", "tid": 35568, "ts": 7109507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662630", "tid": 35568, "ts": 7109805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662700", "tid": 35568, "ts": 7110104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7110276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6646b0", "tid": 35568, "ts": 7110401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7110574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6627d0", "tid": 35568, "ts": 7110700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7110870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661a00", "tid": 35568, "ts": 7110995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7111168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664100", "tid": 35568, "ts": 7111294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7111465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661ad0", "tid": 35568, "ts": 7111591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7111762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6638e0", "tid": 35568, "ts": 7111887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663190", "tid": 35568, "ts": 7112185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6628a0", "tid": 35568, "ts": 7112482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662970", "tid": 35568, "ts": 7112781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664370", "tid": 35568, "ts": 7113092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7113264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663260", "tid": 35568, "ts": 7113390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7113562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663330", "tid": 35568, "ts": 7113689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7113862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663400", "tid": 35568, "ts": 7113989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7114162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664440", "tid": 35568, "ts": 7114331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7114505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664510", "tid": 35568, "ts": 7114630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7114802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6634d0", "tid": 35568, "ts": 7114928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664850", "tid": 35568, "ts": 7115226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6649f0", "tid": 35568, "ts": 7115524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664b90", "tid": 35568, "ts": 7115822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667ec0", "tid": 35568, "ts": 7116119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7116292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666b40", "tid": 35568, "ts": 7116417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7116589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667290", "tid": 35568, "ts": 7116715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7116887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667840", "tid": 35568, "ts": 7117012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7117184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6676a0", "tid": 35568, "ts": 7117310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7117482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6653b0", "tid": 35568, "ts": 7117607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7117779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6671c0", "tid": 35568, "ts": 7117961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7118133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664d30", "tid": 35568, "ts": 7118258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7118430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667d20", "tid": 35568, "ts": 7118556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7118728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666db0", "tid": 35568, "ts": 7118853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667020", "tid": 35568, "ts": 7119151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6668d0", "tid": 35568, "ts": 7119449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667f90", "tid": 35568, "ts": 7119746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666e80", "tid": 35568, "ts": 7120043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7120215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6675d0", "tid": 35568, "ts": 7120340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7120513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666ce0", "tid": 35568, "ts": 7120638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7120811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6679e0", "tid": 35568, "ts": 7120937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7121108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666250", "tid": 35568, "ts": 7121233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7121405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665e40", "tid": 35568, "ts": 7121531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7121702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665070", "tid": 35568, "ts": 7121827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666320", "tid": 35568, "ts": 7122124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665bd0", "tid": 35568, "ts": 7122421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667910", "tid": 35568, "ts": 7122719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667430", "tid": 35568, "ts": 7123015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7123187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666f50", "tid": 35568, "ts": 7123314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7123486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667770", "tid": 35568, "ts": 7123611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7123783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665f10", "tid": 35568, "ts": 7123908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6657c0", "tid": 35568, "ts": 7124205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667b80", "tid": 35568, "ts": 7124502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665ca0", "tid": 35568, "ts": 7124799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666c10", "tid": 35568, "ts": 7125097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7125269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665fe0", "tid": 35568, "ts": 7125394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7125566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6670f0", "tid": 35568, "ts": 7125691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7125862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668060", "tid": 35568, "ts": 7125988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7126160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665140", "tid": 35568, "ts": 7126285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7126457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667360", "tid": 35568, "ts": 7126582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7126753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6663f0", "tid": 35568, "ts": 7126878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665210", "tid": 35568, "ts": 7127176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6660b0", "tid": 35568, "ts": 7127473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667500", "tid": 35568, "ts": 7127771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666180", "tid": 35568, "ts": 7128070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7128242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666660", "tid": 35568, "ts": 7128368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7128540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667df0", "tid": 35568, "ts": 7128728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7128900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667ab0", "tid": 35568, "ts": 7129027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7129200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664e00", "tid": 35568, "ts": 7129325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7129497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667c50", "tid": 35568, "ts": 7129623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7129797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666800", "tid": 35568, "ts": 7129922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7130095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664ed0", "tid": 35568, "ts": 7130244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7130416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664fa0", "tid": 35568, "ts": 7130542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7130714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6664c0", "tid": 35568, "ts": 7130840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6652e0", "tid": 35568, "ts": 7131136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665480", "tid": 35568, "ts": 7131433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665550", "tid": 35568, "ts": 7131731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665620", "tid": 35568, "ts": 7132028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7132200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6656f0", "tid": 35568, "ts": 7132325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7132497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666590", "tid": 35568, "ts": 7132622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7132794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665890", "tid": 35568, "ts": 7132919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665d70", "tid": 35568, "ts": 7133216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666730", "tid": 35568, "ts": 7133513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665960", "tid": 35568, "ts": 7133809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665a30", "tid": 35568, "ts": 7134105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7134277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665b00", "tid": 35568, "ts": 7134402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7134574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6669a0", "tid": 35568, "ts": 7134699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7134871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666a70", "tid": 35568, "ts": 7134996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7135168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b460", "tid": 35568, "ts": 7135293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7135465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a420", "tid": 35568, "ts": 7135590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7135762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668fd0", "tid": 35568, "ts": 7135888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6683a0", "tid": 35568, "ts": 7136185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ade0", "tid": 35568, "ts": 7136483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668130", "tid": 35568, "ts": 7136780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6693e0", "tid": 35568, "ts": 7137077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7137249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a5c0", "tid": 35568, "ts": 7137375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7137547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668200", "tid": 35568, "ts": 7137672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7137844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669720", "tid": 35568, "ts": 7137970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7138142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66aaa0", "tid": 35568, "ts": 7138267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7138439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a280", "tid": 35568, "ts": 7138565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7138737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669da0", "tid": 35568, "ts": 7138862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ad10", "tid": 35568, "ts": 7139160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b120", "tid": 35568, "ts": 7139457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a350", "tid": 35568, "ts": 7139755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668af0", "tid": 35568, "ts": 7140054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7140225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669a60", "tid": 35568, "ts": 7140351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7140523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669e70", "tid": 35568, "ts": 7140649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7140821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6697f0", "tid": 35568, "ts": 7140946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7141118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668a20", "tid": 35568, "ts": 7141307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7141478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668880", "tid": 35568, "ts": 7141604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7141777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668f00", "tid": 35568, "ts": 7141902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ab70", "tid": 35568, "ts": 7142199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b050", "tid": 35568, "ts": 7142497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a0e0", "tid": 35568, "ts": 7142794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669650", "tid": 35568, "ts": 7143092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7143264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669240", "tid": 35568, "ts": 7143389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7143561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66aeb0", "tid": 35568, "ts": 7143686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7143859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6682d0", "tid": 35568, "ts": 7143984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7144157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669b30", "tid": 35568, "ts": 7144343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7144605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668bc0", "tid": 35568, "ts": 7144813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7145035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668e30", "tid": 35568, "ts": 7145251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7145434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6694b0", "tid": 35568, "ts": 7145560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7145733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b2c0", "tid": 35568, "ts": 7145858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6690a0", "tid": 35568, "ts": 7146156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a4f0", "tid": 35568, "ts": 7146454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668470", "tid": 35568, "ts": 7146751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669580", "tid": 35568, "ts": 7147048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7147219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a690", "tid": 35568, "ts": 7147345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7147559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a760", "tid": 35568, "ts": 7147691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7147864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669c00", "tid": 35568, "ts": 7147990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7148163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a830", "tid": 35568, "ts": 7148288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7148461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669cd0", "tid": 35568, "ts": 7148586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7148759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669170", "tid": 35568, "ts": 7148884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669f40", "tid": 35568, "ts": 7149182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668950", "tid": 35568, "ts": 7149480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ac40", "tid": 35568, "ts": 7149777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6698c0", "tid": 35568, "ts": 7150074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7150245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b1f0", "tid": 35568, "ts": 7150371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7150583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669990", "tid": 35568, "ts": 7150710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7150882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a010", "tid": 35568, "ts": 7151008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7151180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a1b0", "tid": 35568, "ts": 7151305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7151478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a900", "tid": 35568, "ts": 7151604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7151776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a9d0", "tid": 35568, "ts": 7151901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66af80", "tid": 35568, "ts": 7152198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b390", "tid": 35568, "ts": 7152496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669310", "tid": 35568, "ts": 7152793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668540", "tid": 35568, "ts": 7153092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7153264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668610", "tid": 35568, "ts": 7153390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7153562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6686e0", "tid": 35568, "ts": 7153687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7153860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6687b0", "tid": 35568, "ts": 7153986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7154159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668c90", "tid": 35568, "ts": 7154285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7154458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668d60", "tid": 35568, "ts": 7154583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7154754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d1a0", "tid": 35568, "ts": 7154879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d820", "tid": 35568, "ts": 7155178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e860", "tid": 35568, "ts": 7155475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b530", "tid": 35568, "ts": 7155772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66da90", "tid": 35568, "ts": 7156071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7156242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bbb0", "tid": 35568, "ts": 7156368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7156539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66be20", "tid": 35568, "ts": 7156665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7156836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c980", "tid": 35568, "ts": 7156962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7157134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ce60", "tid": 35568, "ts": 7157260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7157431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c3d0", "tid": 35568, "ts": 7157556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7157728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c7e0", "tid": 35568, "ts": 7157853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c090", "tid": 35568, "ts": 7158150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b940", "tid": 35568, "ts": 7158447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d8f0", "tid": 35568, "ts": 7158744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c570", "tid": 35568, "ts": 7159041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7159212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d4e0", "tid": 35568, "ts": 7159337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7159509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e1e0", "tid": 35568, "ts": 7159635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7159806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d680", "tid": 35568, "ts": 7159993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7160165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c160", "tid": 35568, "ts": 7160291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7160462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d5b0", "tid": 35568, "ts": 7160588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7160759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d9c0", "tid": 35568, "ts": 7160884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b6d0", "tid": 35568, "ts": 7161181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e380", "tid": 35568, "ts": 7161480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ccc0", "tid": 35568, "ts": 7161777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e520", "tid": 35568, "ts": 7162073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7162244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d750", "tid": 35568, "ts": 7162369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7162541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e2b0", "tid": 35568, "ts": 7162666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7162837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b600", "tid": 35568, "ts": 7162963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7163136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b870", "tid": 35568, "ts": 7163293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7163465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b7a0", "tid": 35568, "ts": 7163591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7163764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66df70", "tid": 35568, "ts": 7163890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e450", "tid": 35568, "ts": 7164188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cd90", "tid": 35568, "ts": 7164484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ca50", "tid": 35568, "ts": 7164782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bd50", "tid": 35568, "ts": 7165079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7165251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c230", "tid": 35568, "ts": 7165377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7165549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cb20", "tid": 35568, "ts": 7165674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7165846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cbf0", "tid": 35568, "ts": 7165971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7166145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bc80", "tid": 35568, "ts": 7166270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7166442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cf30", "tid": 35568, "ts": 7166567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7166739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e5f0", "tid": 35568, "ts": 7166865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e6c0", "tid": 35568, "ts": 7167163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c710", "tid": 35568, "ts": 7167460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bef0", "tid": 35568, "ts": 7167758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e790", "tid": 35568, "ts": 7168056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7168228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66db60", "tid": 35568, "ts": 7168354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7168527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d000", "tid": 35568, "ts": 7168652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7168825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c300", "tid": 35568, "ts": 7168951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7169122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66dc30", "tid": 35568, "ts": 7169248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7169420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d0d0", "tid": 35568, "ts": 7169546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7169718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d270", "tid": 35568, "ts": 7169844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c8b0", "tid": 35568, "ts": 7170141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e040", "tid": 35568, "ts": 7170440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66dd00", "tid": 35568, "ts": 7170737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d340", "tid": 35568, "ts": 7171035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7171207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ba10", "tid": 35568, "ts": 7171332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7171505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c640", "tid": 35568, "ts": 7171631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7171803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d410", "tid": 35568, "ts": 7171928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ddd0", "tid": 35568, "ts": 7172226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66dea0", "tid": 35568, "ts": 7172524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bfc0", "tid": 35568, "ts": 7172822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c4a0", "tid": 35568, "ts": 7173120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7173291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e110", "tid": 35568, "ts": 7173417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7173587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bae0", "tid": 35568, "ts": 7173713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7173886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f3c0", "tid": 35568, "ts": 7174011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7174183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fff0", "tid": 35568, "ts": 7174308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7174480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6700c0", "tid": 35568, "ts": 7174606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7174779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670c20", "tid": 35568, "ts": 7174904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7175077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f970", "tid": 35568, "ts": 7175204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7175376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670190", "tid": 35568, "ts": 7175549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7175787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6705a0", "tid": 35568, "ts": 7176027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7176279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670260", "tid": 35568, "ts": 7176460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7176632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ec70", "tid": 35568, "ts": 7176758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7176929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fcb0", "tid": 35568, "ts": 7177055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7177227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671850", "tid": 35568, "ts": 7177352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7177525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671ac0", "tid": 35568, "ts": 7177651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7177823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e930", "tid": 35568, "ts": 7177949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7178121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6712a0", "tid": 35568, "ts": 7178247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7178419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671100", "tid": 35568, "ts": 7178544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7178715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6711d0", "tid": 35568, "ts": 7178841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670330", "tid": 35568, "ts": 7179140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671920", "tid": 35568, "ts": 7179437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670cf0", "tid": 35568, "ts": 7179735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671c60", "tid": 35568, "ts": 7180030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7180202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670dc0", "tid": 35568, "ts": 7180328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7180500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ed40", "tid": 35568, "ts": 7180670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7180842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670e90", "tid": 35568, "ts": 7180969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7181142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fa40", "tid": 35568, "ts": 7181267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7181440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671780", "tid": 35568, "ts": 7181566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7181737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f490", "tid": 35568, "ts": 7181863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6719f0", "tid": 35568, "ts": 7182160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671b90", "tid": 35568, "ts": 7182458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fe50", "tid": 35568, "ts": 7182756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671370", "tid": 35568, "ts": 7183054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7183227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670f60", "tid": 35568, "ts": 7183352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7183525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670400", "tid": 35568, "ts": 7183651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7183822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6704d0", "tid": 35568, "ts": 7183948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7184119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670740", "tid": 35568, "ts": 7184246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7184418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f7d0", "tid": 35568, "ts": 7184544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7184716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670670", "tid": 35568, "ts": 7184842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670810", "tid": 35568, "ts": 7185141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671440", "tid": 35568, "ts": 7185438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f150", "tid": 35568, "ts": 7185735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6708e0", "tid": 35568, "ts": 7186032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7186204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ff20", "tid": 35568, "ts": 7186331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7186502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fd80", "tid": 35568, "ts": 7186684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7186858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671030", "tid": 35568, "ts": 7186984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7187155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6709b0", "tid": 35568, "ts": 7187281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7187453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670a80", "tid": 35568, "ts": 7187579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7187750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66efb0", "tid": 35568, "ts": 7187875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670b50", "tid": 35568, "ts": 7188173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ea00", "tid": 35568, "ts": 7188470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ee10", "tid": 35568, "ts": 7188768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671510", "tid": 35568, "ts": 7189066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7189239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f2f0", "tid": 35568, "ts": 7189365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7189538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6715e0", "tid": 35568, "ts": 7189664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7189836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fbe0", "tid": 35568, "ts": 7189961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7190132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6716b0", "tid": 35568, "ts": 7190258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7190429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ead0", "tid": 35568, "ts": 7190556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7190727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66eba0", "tid": 35568, "ts": 7190852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7191024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66eee0", "tid": 35568, "ts": 7191229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7191464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f080", "tid": 35568, "ts": 7191594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7191768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f220", "tid": 35568, "ts": 7191894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f560", "tid": 35568, "ts": 7192193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f630", "tid": 35568, "ts": 7192493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f700", "tid": 35568, "ts": 7192791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f8a0", "tid": 35568, "ts": 7193089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7193262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fb10", "tid": 35568, "ts": 7193388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7193560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673db0", "tid": 35568, "ts": 7193685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7193858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6739a0", "tid": 35568, "ts": 7193984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7194157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672d70", "tid": 35568, "ts": 7194284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7194456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672e40", "tid": 35568, "ts": 7194605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7194777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672070", "tid": 35568, "ts": 7194904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6730b0", "tid": 35568, "ts": 7195203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674c50", "tid": 35568, "ts": 7195500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673800", "tid": 35568, "ts": 7195798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6745d0", "tid": 35568, "ts": 7196096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7196268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672620", "tid": 35568, "ts": 7196393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7196566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674020", "tid": 35568, "ts": 7196691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7196864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673730", "tid": 35568, "ts": 7196989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7197162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672890", "tid": 35568, "ts": 7197288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7197459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671e00", "tid": 35568, "ts": 7197585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7197756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6726f0", "tid": 35568, "ts": 7197882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673660", "tid": 35568, "ts": 7198179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674290", "tid": 35568, "ts": 7198476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6723b0", "tid": 35568, "ts": 7198772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672210", "tid": 35568, "ts": 7199072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7199244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672f10", "tid": 35568, "ts": 7199370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7199542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672b00", "tid": 35568, "ts": 7199668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7199841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672480", "tid": 35568, "ts": 7199967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7200139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674b80", "tid": 35568, "ts": 7200265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7200437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673e80", "tid": 35568, "ts": 7200563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7200735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6733f0", "tid": 35568, "ts": 7200862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674840", "tid": 35568, "ts": 7201160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673f50", "tid": 35568, "ts": 7201456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673a70", "tid": 35568, "ts": 7201752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674910", "tid": 35568, "ts": 7202050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7202223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673180", "tid": 35568, "ts": 7202349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7202521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672fe0", "tid": 35568, "ts": 7202646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7202818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6746a0", "tid": 35568, "ts": 7202943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7203114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673b40", "tid": 35568, "ts": 7203240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7203412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673250", "tid": 35568, "ts": 7203538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7203710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673320", "tid": 35568, "ts": 7203836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674770", "tid": 35568, "ts": 7204133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674f90", "tid": 35568, "ts": 7204430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6734c0", "tid": 35568, "ts": 7204729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6740f0", "tid": 35568, "ts": 7205027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7205201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673590", "tid": 35568, "ts": 7205327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7205500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674d20", "tid": 35568, "ts": 7205627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7205799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673c10", "tid": 35568, "ts": 7205924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7206097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674ec0", "tid": 35568, "ts": 7206221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7206394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673ce0", "tid": 35568, "ts": 7206519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7206692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6738d0", "tid": 35568, "ts": 7206863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674360", "tid": 35568, "ts": 7207162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672550", "tid": 35568, "ts": 7207462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6741c0", "tid": 35568, "ts": 7207761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674430", "tid": 35568, "ts": 7208059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7208231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674500", "tid": 35568, "ts": 7208358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7208531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6749e0", "tid": 35568, "ts": 7208657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7208831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674df0", "tid": 35568, "ts": 7208957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7209129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675060", "tid": 35568, "ts": 7209256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7209429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6727c0", "tid": 35568, "ts": 7209555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7209728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672960", "tid": 35568, "ts": 7209854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674ab0", "tid": 35568, "ts": 7210153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671d30", "tid": 35568, "ts": 7210451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671ed0", "tid": 35568, "ts": 7210749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671fa0", "tid": 35568, "ts": 7211046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7211219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672140", "tid": 35568, "ts": 7211345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7211517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6722e0", "tid": 35568, "ts": 7211643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7211816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672a30", "tid": 35568, "ts": 7211942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7212114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672bd0", "tid": 35568, "ts": 7212241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7212412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672ca0", "tid": 35568, "ts": 7212538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7212711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677690", "tid": 35568, "ts": 7212838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676e70", "tid": 35568, "ts": 7213136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6779d0", "tid": 35568, "ts": 7213435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6771b0", "tid": 35568, "ts": 7213781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6768c0", "tid": 35568, "ts": 7214080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7214253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677900", "tid": 35568, "ts": 7214379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7214551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677420", "tid": 35568, "ts": 7214677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7214849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677c40", "tid": 35568, "ts": 7214975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7215148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677760", "tid": 35568, "ts": 7215273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7215446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678050", "tid": 35568, "ts": 7215571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7215744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678120", "tid": 35568, "ts": 7215869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676da0", "tid": 35568, "ts": 7216167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677eb0", "tid": 35568, "ts": 7216464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677280", "tid": 35568, "ts": 7216762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676240", "tid": 35568, "ts": 7217060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7217230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677f80", "tid": 35568, "ts": 7217357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7217529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6774f0", "tid": 35568, "ts": 7217655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7217827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676650", "tid": 35568, "ts": 7217953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7218126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675c90", "tid": 35568, "ts": 7218251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7218424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6781f0", "tid": 35568, "ts": 7218550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7218723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6782c0", "tid": 35568, "ts": 7218848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676720", "tid": 35568, "ts": 7219146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6752d0", "tid": 35568, "ts": 7219445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676f40", "tid": 35568, "ts": 7219742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677010", "tid": 35568, "ts": 7220041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7220212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676c00", "tid": 35568, "ts": 7220337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7220509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6757b0", "tid": 35568, "ts": 7220635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7220807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6770e0", "tid": 35568, "ts": 7220932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7221144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677350", "tid": 35568, "ts": 7221271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7221516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6775c0", "tid": 35568, "ts": 7221648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7221821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6767f0", "tid": 35568, "ts": 7221947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7222119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677d10", "tid": 35568, "ts": 7222245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7222498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675a20", "tid": 35568, "ts": 7222633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7222807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676580", "tid": 35568, "ts": 7222934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7223106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676cd0", "tid": 35568, "ts": 7223233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7223405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675950", "tid": 35568, "ts": 7223532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7223704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675d60", "tid": 35568, "ts": 7223829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676990", "tid": 35568, "ts": 7224128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6763e0", "tid": 35568, "ts": 7224427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677830", "tid": 35568, "ts": 7224724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6753a0", "tid": 35568, "ts": 7225021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7225194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677aa0", "tid": 35568, "ts": 7225319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7225491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677b70", "tid": 35568, "ts": 7225616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7225813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675af0", "tid": 35568, "ts": 7225940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7226112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675880", "tid": 35568, "ts": 7226238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7226410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677de0", "tid": 35568, "ts": 7226535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7226707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675200", "tid": 35568, "ts": 7226833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675bc0", "tid": 35568, "ts": 7227131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676a60", "tid": 35568, "ts": 7227428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678390", "tid": 35568, "ts": 7227725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678460", "tid": 35568, "ts": 7228087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7228259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675470", "tid": 35568, "ts": 7228385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7228557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675130", "tid": 35568, "ts": 7228683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7228855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675540", "tid": 35568, "ts": 7228981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7229152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676b30", "tid": 35568, "ts": 7229277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7229449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675610", "tid": 35568, "ts": 7229574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7229746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6756e0", "tid": 35568, "ts": 7229872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675e30", "tid": 35568, "ts": 7230169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675f00", "tid": 35568, "ts": 7230467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675fd0", "tid": 35568, "ts": 7230763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6760a0", "tid": 35568, "ts": 7231060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7231231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676170", "tid": 35568, "ts": 7231356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7231528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676310", "tid": 35568, "ts": 7231653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7231825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6764b0", "tid": 35568, "ts": 7231951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7232123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a8f0", "tid": 35568, "ts": 7232249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7232420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679a50", "tid": 35568, "ts": 7232546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7232716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6797e0", "tid": 35568, "ts": 7232842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a340", "tid": 35568, "ts": 7233139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b040", "tid": 35568, "ts": 7233437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67add0", "tid": 35568, "ts": 7233733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a0d0", "tid": 35568, "ts": 7234031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7234203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678600", "tid": 35568, "ts": 7234329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7234501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6798b0", "tid": 35568, "ts": 7234627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7234799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a750", "tid": 35568, "ts": 7234925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7235097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6786d0", "tid": 35568, "ts": 7235224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7235394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679980", "tid": 35568, "ts": 7235520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7235692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678d50", "tid": 35568, "ts": 7235881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67af70", "tid": 35568, "ts": 7236178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679e60", "tid": 35568, "ts": 7236475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679d90", "tid": 35568, "ts": 7236774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679f30", "tid": 35568, "ts": 7237073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7237245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a410", "tid": 35568, "ts": 7237370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7237543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67aa90", "tid": 35568, "ts": 7237670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7237842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6787a0", "tid": 35568, "ts": 7237970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7238189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ab60", "tid": 35568, "ts": 7238316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7238490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a000", "tid": 35568, "ts": 7238615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7238787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a5b0", "tid": 35568, "ts": 7238913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7239084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a820", "tid": 35568, "ts": 7239209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7239380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b380", "tid": 35568, "ts": 7239538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7239711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a1a0", "tid": 35568, "ts": 7239837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a9c0", "tid": 35568, "ts": 7240135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a270", "tid": 35568, "ts": 7240432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679b20", "tid": 35568, "ts": 7240730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679bf0", "tid": 35568, "ts": 7241027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7241199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b450", "tid": 35568, "ts": 7241324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7241496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679570", "tid": 35568, "ts": 7241623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7241794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679300", "tid": 35568, "ts": 7241921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67aea0", "tid": 35568, "ts": 7242219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678a10", "tid": 35568, "ts": 7242517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ac30", "tid": 35568, "ts": 7242815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b520", "tid": 35568, "ts": 7243113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7243285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b5f0", "tid": 35568, "ts": 7243411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7243583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678c80", "tid": 35568, "ts": 7243709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7243883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b110", "tid": 35568, "ts": 7244008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7244181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ad00", "tid": 35568, "ts": 7244307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7244479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a4e0", "tid": 35568, "ts": 7244604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7244776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678e20", "tid": 35568, "ts": 7244902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678ef0", "tid": 35568, "ts": 7245198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b1e0", "tid": 35568, "ts": 7245496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679090", "tid": 35568, "ts": 7245793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a680", "tid": 35568, "ts": 7246090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7246262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b6c0", "tid": 35568, "ts": 7246388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7246560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678870", "tid": 35568, "ts": 7246729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7246902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b2b0", "tid": 35568, "ts": 7247028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7247200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b790", "tid": 35568, "ts": 7247326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7247497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b860", "tid": 35568, "ts": 7247624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7247796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678530", "tid": 35568, "ts": 7247922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679cc0", "tid": 35568, "ts": 7248219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678940", "tid": 35568, "ts": 7248517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678ae0", "tid": 35568, "ts": 7248814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678bb0", "tid": 35568, "ts": 7249112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7249285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678fc0", "tid": 35568, "ts": 7249410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7249582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679160", "tid": 35568, "ts": 7249708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7249879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679230", "tid": 35568, "ts": 7250005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7250177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6793d0", "tid": 35568, "ts": 7250303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7250475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6794a0", "tid": 35568, "ts": 7250601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7250772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679640", "tid": 35568, "ts": 7250898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679710", "tid": 35568, "ts": 7251195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c490", "tid": 35568, "ts": 7251493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cd80", "tid": 35568, "ts": 7251790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c080", "tid": 35568, "ts": 7252089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7252261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e370", "tid": 35568, "ts": 7252386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7252559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d4d0", "tid": 35568, "ts": 7252685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7252856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67eac0", "tid": 35568, "ts": 7252982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7253154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cb10", "tid": 35568, "ts": 7253279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7253452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c630", "tid": 35568, "ts": 7253577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7253944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ccb0", "tid": 35568, "ts": 7254221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7254507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d400", "tid": 35568, "ts": 7254675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7254885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d9b0", "tid": 35568, "ts": 7255070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7255307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e510", "tid": 35568, "ts": 7255434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7255605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c970", "tid": 35568, "ts": 7255788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7255960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ce50", "tid": 35568, "ts": 7256087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7256260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d260", "tid": 35568, "ts": 7256387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7256559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d8e0", "tid": 35568, "ts": 7256738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7256909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c150", "tid": 35568, "ts": 7257041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7257212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d330", "tid": 35568, "ts": 7257338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7257510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b930", "tid": 35568, "ts": 7257635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7257807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ca40", "tid": 35568, "ts": 7257931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c220", "tid": 35568, "ts": 7258229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e440", "tid": 35568, "ts": 7258527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d5a0", "tid": 35568, "ts": 7258825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d0c0", "tid": 35568, "ts": 7259122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7259295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d190", "tid": 35568, "ts": 7259421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7259593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cbe0", "tid": 35568, "ts": 7259719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7259890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67db50", "tid": 35568, "ts": 7260015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7260187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d670", "tid": 35568, "ts": 7260312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7260484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c560", "tid": 35568, "ts": 7260609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7260781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e780", "tid": 35568, "ts": 7260906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d740", "tid": 35568, "ts": 7261204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67da80", "tid": 35568, "ts": 7261501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67eb90", "tid": 35568, "ts": 7261799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e2a0", "tid": 35568, "ts": 7262096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7262269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d810", "tid": 35568, "ts": 7262394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7262566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67dc20", "tid": 35568, "ts": 7262691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7262863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67dcf0", "tid": 35568, "ts": 7262988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7263160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ddc0", "tid": 35568, "ts": 7263286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7263458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cff0", "tid": 35568, "ts": 7263583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7263755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e1d0", "tid": 35568, "ts": 7263880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67de90", "tid": 35568, "ts": 7264179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cf20", "tid": 35568, "ts": 7264474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bd40", "tid": 35568, "ts": 7264772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e920", "tid": 35568, "ts": 7265070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7265243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e5e0", "tid": 35568, "ts": 7265368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7265540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67df60", "tid": 35568, "ts": 7265665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7265837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e030", "tid": 35568, "ts": 7265963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7266135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bad0", "tid": 35568, "ts": 7266260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7266432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e100", "tid": 35568, "ts": 7266558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7266730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e9f0", "tid": 35568, "ts": 7266856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e6b0", "tid": 35568, "ts": 7267155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e850", "tid": 35568, "ts": 7267452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ec60", "tid": 35568, "ts": 7267749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ba00", "tid": 35568, "ts": 7268046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7268220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bba0", "tid": 35568, "ts": 7268346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7268517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bc70", "tid": 35568, "ts": 7268643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7268815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67be10", "tid": 35568, "ts": 7268941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7269113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bee0", "tid": 35568, "ts": 7269285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7269524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bfb0", "tid": 35568, "ts": 7269650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7269823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c2f0", "tid": 35568, "ts": 7269948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7270120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c3c0", "tid": 35568, "ts": 7270246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7270419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c700", "tid": 35568, "ts": 7270544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7270716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c7d0", "tid": 35568, "ts": 7270842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c8a0", "tid": 35568, "ts": 7271138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6804c0", "tid": 35568, "ts": 7271436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680320", "tid": 35568, "ts": 7271733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681c50", "tid": 35568, "ts": 7272031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7272202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681df0", "tid": 35568, "ts": 7272328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7272500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6810f0", "tid": 35568, "ts": 7272626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7272798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ee00", "tid": 35568, "ts": 7272924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6815d0", "tid": 35568, "ts": 7273223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f210", "tid": 35568, "ts": 7273520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680590", "tid": 35568, "ts": 7273820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681b80", "tid": 35568, "ts": 7274116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7274289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681d20", "tid": 35568, "ts": 7274414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7274586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f890", "tid": 35568, "ts": 7274713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7274885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6800b0", "tid": 35568, "ts": 7275011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7275184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681ec0", "tid": 35568, "ts": 7275311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7275484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f550", "tid": 35568, "ts": 7275609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7275782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f070", "tid": 35568, "ts": 7275908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67eed0", "tid": 35568, "ts": 7276206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f620", "tid": 35568, "ts": 7276504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680180", "tid": 35568, "ts": 7276802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f3b0", "tid": 35568, "ts": 7277101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7277274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6809a0", "tid": 35568, "ts": 7277400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7277572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680800", "tid": 35568, "ts": 7277698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7277870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6808d0", "tid": 35568, "ts": 7277995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7278168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680250", "tid": 35568, "ts": 7278294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7278465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67efa0", "tid": 35568, "ts": 7278592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7278763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ed30", "tid": 35568, "ts": 7278889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f140", "tid": 35568, "ts": 7279187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680a70", "tid": 35568, "ts": 7279484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680b40", "tid": 35568, "ts": 7279781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f2e0", "tid": 35568, "ts": 7280079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7280294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681500", "tid": 35568, "ts": 7280420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7280591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f960", "tid": 35568, "ts": 7280718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7280890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6803f0", "tid": 35568, "ts": 7281016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7281187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6811c0", "tid": 35568, "ts": 7281313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7281485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680c10", "tid": 35568, "ts": 7281610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7281781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681290", "tid": 35568, "ts": 7281906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681f90", "tid": 35568, "ts": 7282203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680660", "tid": 35568, "ts": 7282499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681910", "tid": 35568, "ts": 7282797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681430", "tid": 35568, "ts": 7283094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7283266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fd70", "tid": 35568, "ts": 7283391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7283562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f480", "tid": 35568, "ts": 7283687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7283858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682060", "tid": 35568, "ts": 7283983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7284156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680ce0", "tid": 35568, "ts": 7284281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7284452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f6f0", "tid": 35568, "ts": 7284577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7284749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680db0", "tid": 35568, "ts": 7284914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7285191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f7c0", "tid": 35568, "ts": 7285318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7285489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680730", "tid": 35568, "ts": 7285615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7285787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680e80", "tid": 35568, "ts": 7285942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7286114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6819e0", "tid": 35568, "ts": 7286240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7286414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681770", "tid": 35568, "ts": 7286542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7286715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fa30", "tid": 35568, "ts": 7286841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680f50", "tid": 35568, "ts": 7287169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681020", "tid": 35568, "ts": 7287468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681360", "tid": 35568, "ts": 7287770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6816a0", "tid": 35568, "ts": 7288071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7288243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fb00", "tid": 35568, "ts": 7288370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7288543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fbd0", "tid": 35568, "ts": 7288669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7288842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681840", "tid": 35568, "ts": 7289013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7289186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681ab0", "tid": 35568, "ts": 7289314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7289488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fca0", "tid": 35568, "ts": 7289616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7289789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fe40", "tid": 35568, "ts": 7289945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7290119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ff10", "tid": 35568, "ts": 7290247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7290419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ffe0", "tid": 35568, "ts": 7290547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7290719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6822d0", "tid": 35568, "ts": 7290845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683c00", "tid": 35568, "ts": 7291145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683cd0", "tid": 35568, "ts": 7291445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6841b0", "tid": 35568, "ts": 7291744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684690", "tid": 35568, "ts": 7292043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7292214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682fd0", "tid": 35568, "ts": 7292341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7292564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6830a0", "tid": 35568, "ts": 7292717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7292945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684900", "tid": 35568, "ts": 7293073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7293245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684420", "tid": 35568, "ts": 7293371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7293543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684830", "tid": 35568, "ts": 7293669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7293841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685120", "tid": 35568, "ts": 7293967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7294138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6849d0", "tid": 35568, "ts": 7294264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7294436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6851f0", "tid": 35568, "ts": 7294584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7294757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682af0", "tid": 35568, "ts": 7294885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6837f0", "tid": 35568, "ts": 7295184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685050", "tid": 35568, "ts": 7295480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684d10", "tid": 35568, "ts": 7295777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682470", "tid": 35568, "ts": 7296076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7296249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6826e0", "tid": 35568, "ts": 7296377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7296549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6840e0", "tid": 35568, "ts": 7296675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7296848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683f40", "tid": 35568, "ts": 7296974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7297146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6852c0", "tid": 35568, "ts": 7297272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7297444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684f80", "tid": 35568, "ts": 7297570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7297742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6844f0", "tid": 35568, "ts": 7297867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684aa0", "tid": 35568, "ts": 7298165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685390", "tid": 35568, "ts": 7298465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685460", "tid": 35568, "ts": 7298765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684010", "tid": 35568, "ts": 7299063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7299236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684c40", "tid": 35568, "ts": 7299362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7299533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683b30", "tid": 35568, "ts": 7299659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7299833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684b70", "tid": 35568, "ts": 7299960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7300131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682bc0", "tid": 35568, "ts": 7300258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7300430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683240", "tid": 35568, "ts": 7300645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7300859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683720", "tid": 35568, "ts": 7300985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7301157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683da0", "tid": 35568, "ts": 7301284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7301455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682130", "tid": 35568, "ts": 7301581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7301752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682200", "tid": 35568, "ts": 7301879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683e70", "tid": 35568, "ts": 7302176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683170", "tid": 35568, "ts": 7302474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684280", "tid": 35568, "ts": 7302772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6823a0", "tid": 35568, "ts": 7303070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7303242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682950", "tid": 35568, "ts": 7303367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7303540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682e30", "tid": 35568, "ts": 7303666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7303837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684350", "tid": 35568, "ts": 7303963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7304135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6845c0", "tid": 35568, "ts": 7304262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7304433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684760", "tid": 35568, "ts": 7304559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7304731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682880", "tid": 35568, "ts": 7304858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683a60", "tid": 35568, "ts": 7305157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684de0", "tid": 35568, "ts": 7305455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682540", "tid": 35568, "ts": 7305754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682610", "tid": 35568, "ts": 7306053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7306226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684eb0", "tid": 35568, "ts": 7306352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7306523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683990", "tid": 35568, "ts": 7306650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7306821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6827b0", "tid": 35568, "ts": 7306948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7307120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682a20", "tid": 35568, "ts": 7307247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7307419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682c90", "tid": 35568, "ts": 7307545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7307717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683580", "tid": 35568, "ts": 7307844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682d60", "tid": 35568, "ts": 7308142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682f00", "tid": 35568, "ts": 7308440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683310", "tid": 35568, "ts": 7308740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6833e0", "tid": 35568, "ts": 7309040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7309213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6834b0", "tid": 35568, "ts": 7309339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7309511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6838c0", "tid": 35568, "ts": 7309637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7309809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683650", "tid": 35568, "ts": 7309934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7310105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686090", "tid": 35568, "ts": 7310232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7310405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686bf0", "tid": 35568, "ts": 7310532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7310703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6864a0", "tid": 35568, "ts": 7310830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6874e0", "tid": 35568, "ts": 7311126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6875b0", "tid": 35568, "ts": 7311424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687a90", "tid": 35568, "ts": 7311721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686d90", "tid": 35568, "ts": 7312019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7312191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686f30", "tid": 35568, "ts": 7312317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7312490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688110", "tid": 35568, "ts": 7312616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7312787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685870", "tid": 35568, "ts": 7312913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7313085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685d50", "tid": 35568, "ts": 7313211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7313383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686cc0", "tid": 35568, "ts": 7313556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7313728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688790", "tid": 35568, "ts": 7313855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685c80", "tid": 35568, "ts": 7314153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6879c0", "tid": 35568, "ts": 7314452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686e60", "tid": 35568, "ts": 7314751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686980", "tid": 35568, "ts": 7315111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7315284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687820", "tid": 35568, "ts": 7315411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7315583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687680", "tid": 35568, "ts": 7315709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7315881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687750", "tid": 35568, "ts": 7316007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7316239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6885f0", "tid": 35568, "ts": 7316366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7316538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685600", "tid": 35568, "ts": 7316664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7316837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686710", "tid": 35568, "ts": 7316963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7317134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687b60", "tid": 35568, "ts": 7317260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7317432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687000", "tid": 35568, "ts": 7317559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7317731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6871a0", "tid": 35568, "ts": 7317856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686b20", "tid": 35568, "ts": 7318154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6857a0", "tid": 35568, "ts": 7318451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686160", "tid": 35568, "ts": 7318750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688380", "tid": 35568, "ts": 7319048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7319220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6886c0", "tid": 35568, "ts": 7319346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7319518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6878f0", "tid": 35568, "ts": 7319644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7319816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686230", "tid": 35568, "ts": 7319943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7320114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6856d0", "tid": 35568, "ts": 7320240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7320412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686a50", "tid": 35568, "ts": 7320538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7320708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685a10", "tid": 35568, "ts": 7320834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686300", "tid": 35568, "ts": 7321133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688450", "tid": 35568, "ts": 7321431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6863d0", "tid": 35568, "ts": 7321729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686640", "tid": 35568, "ts": 7322027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7322199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686570", "tid": 35568, "ts": 7322325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7322497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687270", "tid": 35568, "ts": 7322623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7322794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688520", "tid": 35568, "ts": 7322920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6867e0", "tid": 35568, "ts": 7323218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687d00", "tid": 35568, "ts": 7323516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687c30", "tid": 35568, "ts": 7323814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6870d0", "tid": 35568, "ts": 7324111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7324284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687340", "tid": 35568, "ts": 7324467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7324639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687dd0", "tid": 35568, "ts": 7324766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7324939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688860", "tid": 35568, "ts": 7325065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7325237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685530", "tid": 35568, "ts": 7325363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7325535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687410", "tid": 35568, "ts": 7325660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7325832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6868b0", "tid": 35568, "ts": 7325958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7326130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685940", "tid": 35568, "ts": 7326255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7326427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687ea0", "tid": 35568, "ts": 7326553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7326725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6881e0", "tid": 35568, "ts": 7326851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685ae0", "tid": 35568, "ts": 7327149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687f70", "tid": 35568, "ts": 7327475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688040", "tid": 35568, "ts": 7327774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685bb0", "tid": 35568, "ts": 7328071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7328243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685e20", "tid": 35568, "ts": 7328370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7328543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685ef0", "tid": 35568, "ts": 7328670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7328842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6882b0", "tid": 35568, "ts": 7328967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7329139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685fc0", "tid": 35568, "ts": 7329266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7329439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a9b0", "tid": 35568, "ts": 7329565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7329736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bb90", "tid": 35568, "ts": 7329862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b780", "tid": 35568, "ts": 7330161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689ff0", "tid": 35568, "ts": 7330459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689630", "tid": 35568, "ts": 7330757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a810", "tid": 35568, "ts": 7331055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7331228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68aa80", "tid": 35568, "ts": 7331356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7331528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b1d0", "tid": 35568, "ts": 7331653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7331970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a5a0", "tid": 35568, "ts": 7332098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7332270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ab50", "tid": 35568, "ts": 7332397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7332569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688ad0", "tid": 35568, "ts": 7332696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7332869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688d40", "tid": 35568, "ts": 7332996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7333169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b510", "tid": 35568, "ts": 7333295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7333468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ac20", "tid": 35568, "ts": 7333594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7333766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a670", "tid": 35568, "ts": 7333891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b850", "tid": 35568, "ts": 7334189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689490", "tid": 35568, "ts": 7334488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68af60", "tid": 35568, "ts": 7334788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a260", "tid": 35568, "ts": 7335086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7335258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b030", "tid": 35568, "ts": 7335384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7335557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a0c0", "tid": 35568, "ts": 7335684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7335856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a330", "tid": 35568, "ts": 7335983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7336155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b920", "tid": 35568, "ts": 7336281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7336453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689a40", "tid": 35568, "ts": 7336579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7336751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688ba0", "tid": 35568, "ts": 7336877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688c70", "tid": 35568, "ts": 7337174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68acf0", "tid": 35568, "ts": 7337471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688e10", "tid": 35568, "ts": 7337769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a400", "tid": 35568, "ts": 7338066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7338239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68adc0", "tid": 35568, "ts": 7338365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7338536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b9f0", "tid": 35568, "ts": 7338662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7338833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688ee0", "tid": 35568, "ts": 7338959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7339131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6893c0", "tid": 35568, "ts": 7339258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7339429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a740", "tid": 35568, "ts": 7339555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7339727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ae90", "tid": 35568, "ts": 7339853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a8e0", "tid": 35568, "ts": 7340151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bac0", "tid": 35568, "ts": 7340448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b100", "tid": 35568, "ts": 7340746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b2a0", "tid": 35568, "ts": 7341044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7341215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bc60", "tid": 35568, "ts": 7341341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7341513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689150", "tid": 35568, "ts": 7341640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7341811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a4d0", "tid": 35568, "ts": 7341938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7342110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b370", "tid": 35568, "ts": 7342236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7342408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688930", "tid": 35568, "ts": 7342534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7342705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688fb0", "tid": 35568, "ts": 7342831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b440", "tid": 35568, "ts": 7343129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b5e0", "tid": 35568, "ts": 7343427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689080", "tid": 35568, "ts": 7343725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b6b0", "tid": 35568, "ts": 7344025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7344198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689560", "tid": 35568, "ts": 7344324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7344496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689b10", "tid": 35568, "ts": 7344622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7344794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688a00", "tid": 35568, "ts": 7344921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689be0", "tid": 35568, "ts": 7345219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689220", "tid": 35568, "ts": 7345518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a190", "tid": 35568, "ts": 7345816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689700", "tid": 35568, "ts": 7346114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7346349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6897d0", "tid": 35568, "ts": 7346517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7346695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689970", "tid": 35568, "ts": 7346824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7347005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6892f0", "tid": 35568, "ts": 7347142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7347316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6898a0", "tid": 35568, "ts": 7347563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7347752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689cb0", "tid": 35568, "ts": 7347878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689d80", "tid": 35568, "ts": 7348175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689e50", "tid": 35568, "ts": 7348474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689f20", "tid": 35568, "ts": 7348770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c890", "tid": 35568, "ts": 7349069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7349240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c960", "tid": 35568, "ts": 7349390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7349563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68de80", "tid": 35568, "ts": 7349745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7350008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68be00", "tid": 35568, "ts": 7350162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7350365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d0b0", "tid": 35568, "ts": 7350491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7350704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ed20", "tid": 35568, "ts": 7350872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7351132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e840", "tid": 35568, "ts": 7351326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7351569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e290", "tid": 35568, "ts": 7351753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7351998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d730", "tid": 35568, "ts": 7352139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7352311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d180", "tid": 35568, "ts": 7352437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7352609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d660", "tid": 35568, "ts": 7352735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7352907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68edf0", "tid": 35568, "ts": 7353034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7353206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68dc10", "tid": 35568, "ts": 7353332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7353505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c7c0", "tid": 35568, "ts": 7353631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7353803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d800", "tid": 35568, "ts": 7353929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c620", "tid": 35568, "ts": 7354227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68dce0", "tid": 35568, "ts": 7354525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e020", "tid": 35568, "ts": 7354825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d3f0", "tid": 35568, "ts": 7355123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7355296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d8d0", "tid": 35568, "ts": 7355422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7355595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e500", "tid": 35568, "ts": 7355720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7355892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cb00", "tid": 35568, "ts": 7356019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7356192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d250", "tid": 35568, "ts": 7356318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7356490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e360", "tid": 35568, "ts": 7356616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7356789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bd30", "tid": 35568, "ts": 7356915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cbd0", "tid": 35568, "ts": 7357214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d9a0", "tid": 35568, "ts": 7357514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ddb0", "tid": 35568, "ts": 7357812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68eec0", "tid": 35568, "ts": 7358110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7358282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68da70", "tid": 35568, "ts": 7358407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7358580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bed0", "tid": 35568, "ts": 7358706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7358878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68df50", "tid": 35568, "ts": 7359004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7359206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68db40", "tid": 35568, "ts": 7359332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7359504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e5d0", "tid": 35568, "ts": 7359631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7359802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e0f0", "tid": 35568, "ts": 7359928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bfa0", "tid": 35568, "ts": 7360227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e1c0", "tid": 35568, "ts": 7360526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e430", "tid": 35568, "ts": 7360823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e6a0", "tid": 35568, "ts": 7361134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7361384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c070", "tid": 35568, "ts": 7361571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7361832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e910", "tid": 35568, "ts": 7361999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7362249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e770", "tid": 35568, "ts": 7362435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7362695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e9e0", "tid": 35568, "ts": 7362864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7363210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68eab0", "tid": 35568, "ts": 7363481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7363841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68eb80", "tid": 35568, "ts": 7364140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7364392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ec50", "tid": 35568, "ts": 7364581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7364817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c140", "tid": 35568, "ts": 7364987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7365238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d590", "tid": 35568, "ts": 7365394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7365700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c210", "tid": 35568, "ts": 7365858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7366121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c2e0", "tid": 35568, "ts": 7366280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7366512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c3b0", "tid": 35568, "ts": 7366639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7366813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c480", "tid": 35568, "ts": 7366940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7367113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c550", "tid": 35568, "ts": 7367239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7367411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c6f0", "tid": 35568, "ts": 7367536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7367710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ca30", "tid": 35568, "ts": 7367835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cca0", "tid": 35568, "ts": 7368134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cd70", "tid": 35568, "ts": 7368433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ce40", "tid": 35568, "ts": 7368732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cf10", "tid": 35568, "ts": 7369030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7369203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cfe0", "tid": 35568, "ts": 7369329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7369502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d320", "tid": 35568, "ts": 7369627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7369799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d4c0", "tid": 35568, "ts": 7369925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f240", "tid": 35568, "ts": 7370222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650690", "tid": 35568, "ts": 7370520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fcd0", "tid": 35568, "ts": 7370818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651120", "tid": 35568, "ts": 7371115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7371287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651050", "tid": 35568, "ts": 7371412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7371585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6500e0", "tid": 35568, "ts": 7371710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7371883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fc00", "tid": 35568, "ts": 7372009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7372181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fb30", "tid": 35568, "ts": 7372307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7372480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e880", "tid": 35568, "ts": 7372608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7372779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f4b0", "tid": 35568, "ts": 7372905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650b70", "tid": 35568, "ts": 7373203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6501b0", "tid": 35568, "ts": 7373501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f310", "tid": 35568, "ts": 7373799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fe70", "tid": 35568, "ts": 7374098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7374270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fda0", "tid": 35568, "ts": 7374396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7374568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6511f0", "tid": 35568, "ts": 7374694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7374866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650280", "tid": 35568, "ts": 7374992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7375164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650760", "tid": 35568, "ts": 7375289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7375462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650350", "tid": 35568, "ts": 7375588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7375760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ee30", "tid": 35568, "ts": 7375885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e950", "tid": 35568, "ts": 7376183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ef00", "tid": 35568, "ts": 7376481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e7b0", "tid": 35568, "ts": 7376778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6512c0", "tid": 35568, "ts": 7377075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7377247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fa60", "tid": 35568, "ts": 7377373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7377546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ff40", "tid": 35568, "ts": 7377673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7377845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651390", "tid": 35568, "ts": 7377971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7378144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e3a0", "tid": 35568, "ts": 7378270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7378442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e130", "tid": 35568, "ts": 7378569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7378804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e6e0", "tid": 35568, "ts": 7378931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7379104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6504f0", "tid": 35568, "ts": 7379230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7379403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f3e0", "tid": 35568, "ts": 7379529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7379702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650010", "tid": 35568, "ts": 7379828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f8c0", "tid": 35568, "ts": 7380127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650420", "tid": 35568, "ts": 7380426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651460", "tid": 35568, "ts": 7380725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650f80", "tid": 35568, "ts": 7381023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7381196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e200", "tid": 35568, "ts": 7381322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7381495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650c40", "tid": 35568, "ts": 7381621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7381794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f0a0", "tid": 35568, "ts": 7381920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7382092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e470", "tid": 35568, "ts": 7382262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7382435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64efd0", "tid": 35568, "ts": 7382561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7382734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ea20", "tid": 35568, "ts": 7382860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e540", "tid": 35568, "ts": 7383159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e610", "tid": 35568, "ts": 7383459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6505c0", "tid": 35568, "ts": 7383757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650830", "tid": 35568, "ts": 7384054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7384225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e2d0", "tid": 35568, "ts": 7384352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7384523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650900", "tid": 35568, "ts": 7384650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7384821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650d10", "tid": 35568, "ts": 7384947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7385120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64eaf0", "tid": 35568, "ts": 7385246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7385418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650de0", "tid": 35568, "ts": 7385544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7385716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ebc0", "tid": 35568, "ts": 7385843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6509d0", "tid": 35568, "ts": 7386140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650aa0", "tid": 35568, "ts": 7386439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ec90", "tid": 35568, "ts": 7386737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ed60", "tid": 35568, "ts": 7387035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7387208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f170", "tid": 35568, "ts": 7387335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7387507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650eb0", "tid": 35568, "ts": 7387633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7387805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f580", "tid": 35568, "ts": 7387931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f650", "tid": 35568, "ts": 7388230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f720", "tid": 35568, "ts": 7388528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f7f0", "tid": 35568, "ts": 7388826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f990", "tid": 35568, "ts": 7389125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7389297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41180", "tid": 35568, "ts": 7389489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7389663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41db0", "tid": 35568, "ts": 7389790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7389963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40f10", "tid": 35568, "ts": 7390089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7390260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41590", "tid": 35568, "ts": 7390386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7390559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd426a0", "tid": 35568, "ts": 7390686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7390858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40960", "tid": 35568, "ts": 7390986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7391158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40e40", "tid": 35568, "ts": 7391284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7391457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41a70", "tid": 35568, "ts": 7391583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7391756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42f90", "tid": 35568, "ts": 7391882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42430", "tid": 35568, "ts": 7392180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42910", "tid": 35568, "ts": 7392479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40ca0", "tid": 35568, "ts": 7392778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42500", "tid": 35568, "ts": 7393077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7393249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd425d0", "tid": 35568, "ts": 7393375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7393547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41e80", "tid": 35568, "ts": 7393673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7393845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41660", "tid": 35568, "ts": 7393971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7394143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42770", "tid": 35568, "ts": 7394282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7394455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42290", "tid": 35568, "ts": 7394593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7394777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41f50", "tid": 35568, "ts": 7394904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7395077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40d70", "tid": 35568, "ts": 7395204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7395376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40550", "tid": 35568, "ts": 7395560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7395732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43200", "tid": 35568, "ts": 7395860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40fe0", "tid": 35568, "ts": 7396158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43060", "tid": 35568, "ts": 7396458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41c10", "tid": 35568, "ts": 7396758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd433a0", "tid": 35568, "ts": 7397056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7397229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42020", "tid": 35568, "ts": 7397355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7397528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd418d0", "tid": 35568, "ts": 7397654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7397827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd421c0", "tid": 35568, "ts": 7397952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7398125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41250", "tid": 35568, "ts": 7398251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7398423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd402e0", "tid": 35568, "ts": 7398550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7398722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41b40", "tid": 35568, "ts": 7398848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42df0", "tid": 35568, "ts": 7399147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40a30", "tid": 35568, "ts": 7399446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd420f0", "tid": 35568, "ts": 7399745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43130", "tid": 35568, "ts": 7400043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7400218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd410b0", "tid": 35568, "ts": 7400345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7400517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd432d0", "tid": 35568, "ts": 7400644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7400816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41320", "tid": 35568, "ts": 7400942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7401114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42ab0", "tid": 35568, "ts": 7401240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7401413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40140", "tid": 35568, "ts": 7401539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7401711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd419a0", "tid": 35568, "ts": 7401837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43470", "tid": 35568, "ts": 7402136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42c50", "tid": 35568, "ts": 7402433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42360", "tid": 35568, "ts": 7402731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd413f0", "tid": 35568, "ts": 7403030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7403202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd406f0", "tid": 35568, "ts": 7403329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7403501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41ce0", "tid": 35568, "ts": 7403627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7403799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40b00", "tid": 35568, "ts": 7403991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7404165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42840", "tid": 35568, "ts": 7404291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7404464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd414c0", "tid": 35568, "ts": 7404589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7404762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40210", "tid": 35568, "ts": 7404889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41730", "tid": 35568, "ts": 7405189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd429e0", "tid": 35568, "ts": 7405487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40bd0", "tid": 35568, "ts": 7405786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42b80", "tid": 35568, "ts": 7406086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7406259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42ec0", "tid": 35568, "ts": 7406385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7406556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd403b0", "tid": 35568, "ts": 7406682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7406853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40480", "tid": 35568, "ts": 7406980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7407152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42d20", "tid": 35568, "ts": 7407277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7407450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41800", "tid": 35568, "ts": 7407576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7407749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40620", "tid": 35568, "ts": 7407875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd407c0", "tid": 35568, "ts": 7408173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40890", "tid": 35568, "ts": 7408473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44f40", "tid": 35568, "ts": 7408772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45aa0", "tid": 35568, "ts": 7409070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7409241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd450e0", "tid": 35568, "ts": 7409368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7409540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46530", "tid": 35568, "ts": 7409666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7409868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45830", "tid": 35568, "ts": 7410027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7410198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46600", "tid": 35568, "ts": 7410325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7410497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45690", "tid": 35568, "ts": 7410624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7410796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44240", "tid": 35568, "ts": 7410923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45010", "tid": 35568, "ts": 7411222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45eb0", "tid": 35568, "ts": 7411520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43540", "tid": 35568, "ts": 7411818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45760", "tid": 35568, "ts": 7412116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7412287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44310", "tid": 35568, "ts": 7412414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7412586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43950", "tid": 35568, "ts": 7412714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7412885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44cd0", "tid": 35568, "ts": 7413012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7413185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45900", "tid": 35568, "ts": 7413312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7413484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44720", "tid": 35568, "ts": 7413611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7413782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43fd0", "tid": 35568, "ts": 7413910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44990", "tid": 35568, "ts": 7414209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44b30", "tid": 35568, "ts": 7414507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd459d0", "tid": 35568, "ts": 7414806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd440a0", "tid": 35568, "ts": 7415145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7415318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd444b0", "tid": 35568, "ts": 7415445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7415617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46390", "tid": 35568, "ts": 7415743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7415916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45b70", "tid": 35568, "ts": 7416042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7416214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd466d0", "tid": 35568, "ts": 7416341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7416513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd461f0", "tid": 35568, "ts": 7416639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7416813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43610", "tid": 35568, "ts": 7416938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7417110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44da0", "tid": 35568, "ts": 7417236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7417410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43a20", "tid": 35568, "ts": 7417536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7417710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43af0", "tid": 35568, "ts": 7417836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44e70", "tid": 35568, "ts": 7418133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd467a0", "tid": 35568, "ts": 7418473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46120", "tid": 35568, "ts": 7418771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46460", "tid": 35568, "ts": 7419069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7419264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46870", "tid": 35568, "ts": 7419413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7419586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd454f0", "tid": 35568, "ts": 7419713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7419885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd436e0", "tid": 35568, "ts": 7420011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7420182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44170", "tid": 35568, "ts": 7420310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7420481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45c40", "tid": 35568, "ts": 7420608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7420781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd451b0", "tid": 35568, "ts": 7420907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd443e0", "tid": 35568, "ts": 7421206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45f80", "tid": 35568, "ts": 7421503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45d10", "tid": 35568, "ts": 7421801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45280", "tid": 35568, "ts": 7422099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7422271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd437b0", "tid": 35568, "ts": 7422398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7422569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43880", "tid": 35568, "ts": 7422695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7422867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44a60", "tid": 35568, "ts": 7422992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7423165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43bc0", "tid": 35568, "ts": 7423291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7423463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44580", "tid": 35568, "ts": 7423588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7423761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45de0", "tid": 35568, "ts": 7423887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43f00", "tid": 35568, "ts": 7424186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43d60", "tid": 35568, "ts": 7424483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45350", "tid": 35568, "ts": 7424781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44650", "tid": 35568, "ts": 7425079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7425251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43c90", "tid": 35568, "ts": 7425377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7425562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45420", "tid": 35568, "ts": 7425689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7425885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd447f0", "tid": 35568, "ts": 7426011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7426184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44c00", "tid": 35568, "ts": 7426311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7426483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43e30", "tid": 35568, "ts": 7426609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7426781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd455c0", "tid": 35568, "ts": 7426907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd448c0", "tid": 35568, "ts": 7427206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46050", "tid": 35568, "ts": 7427505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd462c0", "tid": 35568, "ts": 7427802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47d90", "tid": 35568, "ts": 7428102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7428274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47f30", "tid": 35568, "ts": 7428400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7428572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd477e0", "tid": 35568, "ts": 7428698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7428870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47710", "tid": 35568, "ts": 7428995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7429167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48c30", "tid": 35568, "ts": 7429294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7429466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd481a0", "tid": 35568, "ts": 7429591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7429762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47230", "tid": 35568, "ts": 7429888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48750", "tid": 35568, "ts": 7430188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49930", "tid": 35568, "ts": 7430487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd478b0", "tid": 35568, "ts": 7430786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48410", "tid": 35568, "ts": 7431084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7431256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48340", "tid": 35568, "ts": 7431383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7431555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd480d0", "tid": 35568, "ts": 7431681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7431854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46c80", "tid": 35568, "ts": 7431979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7432151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd474a0", "tid": 35568, "ts": 7432277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7432449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48f70", "tid": 35568, "ts": 7432576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7432748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd488f0", "tid": 35568, "ts": 7432874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47570", "tid": 35568, "ts": 7433172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49040", "tid": 35568, "ts": 7433472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46d50", "tid": 35568, "ts": 7433769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47a50", "tid": 35568, "ts": 7434111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7434284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49860", "tid": 35568, "ts": 7434411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7434583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47e60", "tid": 35568, "ts": 7434710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7434883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47980", "tid": 35568, "ts": 7435010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7435184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47b20", "tid": 35568, "ts": 7435310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7435482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46fc0", "tid": 35568, "ts": 7435608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7435781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49110", "tid": 35568, "ts": 7435907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7436080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd484e0", "tid": 35568, "ts": 7436206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7436420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48a90", "tid": 35568, "ts": 7436548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7436720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48b60", "tid": 35568, "ts": 7436847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48000", "tid": 35568, "ts": 7437147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49a00", "tid": 35568, "ts": 7437445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd489c0", "tid": 35568, "ts": 7437744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48d00", "tid": 35568, "ts": 7438042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7438214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47160", "tid": 35568, "ts": 7438340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7438513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49380", "tid": 35568, "ts": 7438639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7438812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49ad0", "tid": 35568, "ts": 7438939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7439111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49790", "tid": 35568, "ts": 7439237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7439409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49ba0", "tid": 35568, "ts": 7439535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7439707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49520", "tid": 35568, "ts": 7439833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47bf0", "tid": 35568, "ts": 7440132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47cc0", "tid": 35568, "ts": 7440431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47640", "tid": 35568, "ts": 7440730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46e20", "tid": 35568, "ts": 7441028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7441260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd492b0", "tid": 35568, "ts": 7441388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7441560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47300", "tid": 35568, "ts": 7441686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7441858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49c70", "tid": 35568, "ts": 7441985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7442157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48270", "tid": 35568, "ts": 7442284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7442456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47090", "tid": 35568, "ts": 7442583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7442756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd485b0", "tid": 35568, "ts": 7442882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48680", "tid": 35568, "ts": 7443180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd473d0", "tid": 35568, "ts": 7443479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46940", "tid": 35568, "ts": 7443777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48dd0", "tid": 35568, "ts": 7444076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7444249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48ea0", "tid": 35568, "ts": 7444374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7444547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd491e0", "tid": 35568, "ts": 7444673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7444846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49450", "tid": 35568, "ts": 7444974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7445146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd495f0", "tid": 35568, "ts": 7445272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7445444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46bb0", "tid": 35568, "ts": 7445571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7445743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46ef0", "tid": 35568, "ts": 7445870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48820", "tid": 35568, "ts": 7446169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd496c0", "tid": 35568, "ts": 7446467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46a10", "tid": 35568, "ts": 7446765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46ae0", "tid": 35568, "ts": 7447063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7447235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a7d0", "tid": 35568, "ts": 7447362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7447534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b740", "tid": 35568, "ts": 7447661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7447833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49ee0", "tid": 35568, "ts": 7448022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7448236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bcf0", "tid": 35568, "ts": 7448368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7448540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b400", "tid": 35568, "ts": 7448668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7448840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c030", "tid": 35568, "ts": 7448967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7449140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b4d0", "tid": 35568, "ts": 7449266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7449437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49e10", "tid": 35568, "ts": 7449563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7449736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b5a0", "tid": 35568, "ts": 7449862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a490", "tid": 35568, "ts": 7450161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c370", "tid": 35568, "ts": 7450460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ba80", "tid": 35568, "ts": 7450758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cb90", "tid": 35568, "ts": 7451057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7451229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c780", "tid": 35568, "ts": 7451355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7451527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b670", "tid": 35568, "ts": 7451653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7451826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a220", "tid": 35568, "ts": 7451952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7452124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a3c0", "tid": 35568, "ts": 7452251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7452424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a2f0", "tid": 35568, "ts": 7452549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7452722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cc60", "tid": 35568, "ts": 7452848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c440", "tid": 35568, "ts": 7453146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c100", "tid": 35568, "ts": 7453446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c5e0", "tid": 35568, "ts": 7453745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bb50", "tid": 35568, "ts": 7454044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7454216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c920", "tid": 35568, "ts": 7454343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7454515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cd30", "tid": 35568, "ts": 7454641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7454813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bdc0", "tid": 35568, "ts": 7454940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7455111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c850", "tid": 35568, "ts": 7455237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7455410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b810", "tid": 35568, "ts": 7455536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7455708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a700", "tid": 35568, "ts": 7455835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c9f0", "tid": 35568, "ts": 7456132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a560", "tid": 35568, "ts": 7456431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a630", "tid": 35568, "ts": 7456773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bf60", "tid": 35568, "ts": 7457073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7457244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c1d0", "tid": 35568, "ts": 7457371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7457543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ce00", "tid": 35568, "ts": 7457669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7457841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a150", "tid": 35568, "ts": 7457967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7458140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4be90", "tid": 35568, "ts": 7458265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7458438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ad80", "tid": 35568, "ts": 7458565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7458738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c6b0", "tid": 35568, "ts": 7458864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b8e0", "tid": 35568, "ts": 7459162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b0c0", "tid": 35568, "ts": 7459460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ae50", "tid": 35568, "ts": 7459759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cac0", "tid": 35568, "ts": 7460057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7460229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4af20", "tid": 35568, "ts": 7460355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7460527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c2a0", "tid": 35568, "ts": 7460654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7460826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c510", "tid": 35568, "ts": 7460977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7461150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4aff0", "tid": 35568, "ts": 7461277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7461450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ced0", "tid": 35568, "ts": 7461575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7461747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b9b0", "tid": 35568, "ts": 7461874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49fb0", "tid": 35568, "ts": 7462173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bc20", "tid": 35568, "ts": 7462474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a080", "tid": 35568, "ts": 7462772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ab10", "tid": 35568, "ts": 7463070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7463242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cfa0", "tid": 35568, "ts": 7463368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7463540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d070", "tid": 35568, "ts": 7463666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7463839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a8a0", "tid": 35568, "ts": 7464023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7464196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49d40", "tid": 35568, "ts": 7464323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7464495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a970", "tid": 35568, "ts": 7464622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7464794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4aa40", "tid": 35568, "ts": 7464920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4abe0", "tid": 35568, "ts": 7465219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4acb0", "tid": 35568, "ts": 7465518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b190", "tid": 35568, "ts": 7465816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b260", "tid": 35568, "ts": 7466115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7466287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b330", "tid": 35568, "ts": 7466412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7466585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e590", "tid": 35568, "ts": 7466711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7466882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fdf0", "tid": 35568, "ts": 7467009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7467180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d890", "tid": 35568, "ts": 7467307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7467479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4df10", "tid": 35568, "ts": 7467606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7467778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f9e0", "tid": 35568, "ts": 7467904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fab0", "tid": 35568, "ts": 7468203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e3f0", "tid": 35568, "ts": 7468500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50130", "tid": 35568, "ts": 7468799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e660", "tid": 35568, "ts": 7469096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7469267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd502d0", "tid": 35568, "ts": 7469394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7469567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fec0", "tid": 35568, "ts": 7469693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7469865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f0f0", "tid": 35568, "ts": 7469991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7470163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e4c0", "tid": 35568, "ts": 7470290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7470462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ec10", "tid": 35568, "ts": 7470589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7470760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50200", "tid": 35568, "ts": 7470887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dca0", "tid": 35568, "ts": 7471184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e8d0", "tid": 35568, "ts": 7471483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d2e0", "tid": 35568, "ts": 7471781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4eb40", "tid": 35568, "ts": 7472079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7472252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d6f0", "tid": 35568, "ts": 7472465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7472753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ece0", "tid": 35568, "ts": 7472932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7473166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ff90", "tid": 35568, "ts": 7473405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7473610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fd20", "tid": 35568, "ts": 7473738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7473912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50060", "tid": 35568, "ts": 7474038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7474212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e250", "tid": 35568, "ts": 7474339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7474511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd503a0", "tid": 35568, "ts": 7474637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7474809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4edb0", "tid": 35568, "ts": 7474936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7475107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ee80", "tid": 35568, "ts": 7475234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7475406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dd70", "tid": 35568, "ts": 7475533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7475705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f770", "tid": 35568, "ts": 7475831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7476005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e0b0", "tid": 35568, "ts": 7476131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7476303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e320", "tid": 35568, "ts": 7476430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7476771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e730", "tid": 35568, "ts": 7476931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7477104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d7c0", "tid": 35568, "ts": 7477231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7477405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f840", "tid": 35568, "ts": 7477532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7477704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fb80", "tid": 35568, "ts": 7477831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d480", "tid": 35568, "ts": 7478129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50470", "tid": 35568, "ts": 7478428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e800", "tid": 35568, "ts": 7478726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d620", "tid": 35568, "ts": 7479026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7479199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d140", "tid": 35568, "ts": 7479324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7479496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d210", "tid": 35568, "ts": 7479622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7479795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d3b0", "tid": 35568, "ts": 7479922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d550", "tid": 35568, "ts": 7480221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d960", "tid": 35568, "ts": 7480520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ef50", "tid": 35568, "ts": 7480817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e9a0", "tid": 35568, "ts": 7481116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7481287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4db00", "tid": 35568, "ts": 7481413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7481585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4da30", "tid": 35568, "ts": 7481758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7481931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ea70", "tid": 35568, "ts": 7482058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7482230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f5d0", "tid": 35568, "ts": 7482356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7482528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f910", "tid": 35568, "ts": 7482655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7482828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f290", "tid": 35568, "ts": 7482955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7483126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f360", "tid": 35568, "ts": 7483253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7483424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dbd0", "tid": 35568, "ts": 7483550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7483721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dfe0", "tid": 35568, "ts": 7483847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f6a0", "tid": 35568, "ts": 7484146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f020", "tid": 35568, "ts": 7484443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f1c0", "tid": 35568, "ts": 7484741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4de40", "tid": 35568, "ts": 7485038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7485210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f430", "tid": 35568, "ts": 7485336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7485509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e180", "tid": 35568, "ts": 7485636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7485809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f500", "tid": 35568, "ts": 7485936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7486107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fc50", "tid": 35568, "ts": 7486234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7486407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50950", "tid": 35568, "ts": 7486533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7486705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd510a0", "tid": 35568, "ts": 7486831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52b70", "tid": 35568, "ts": 7487129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52010", "tid": 35568, "ts": 7487427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50d60", "tid": 35568, "ts": 7487726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52f80", "tid": 35568, "ts": 7488072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7488244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51650", "tid": 35568, "ts": 7488371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7488543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd531f0", "tid": 35568, "ts": 7488669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7488842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51240", "tid": 35568, "ts": 7488970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7489142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd517f0", "tid": 35568, "ts": 7489269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7489442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51310", "tid": 35568, "ts": 7489569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7489741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52de0", "tid": 35568, "ts": 7489868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7490039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd506e0", "tid": 35568, "ts": 7490165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7490338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50a20", "tid": 35568, "ts": 7490465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7490637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53460", "tid": 35568, "ts": 7490826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52aa0", "tid": 35568, "ts": 7491126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51f40", "tid": 35568, "ts": 7491424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd529d0", "tid": 35568, "ts": 7491722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52eb0", "tid": 35568, "ts": 7492021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7492194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd525c0", "tid": 35568, "ts": 7492320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7492493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52c40", "tid": 35568, "ts": 7492620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7492791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd520e0", "tid": 35568, "ts": 7492917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7493089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51720", "tid": 35568, "ts": 7493215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7493386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51170", "tid": 35568, "ts": 7493512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7493684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52830", "tid": 35568, "ts": 7493841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd513e0", "tid": 35568, "ts": 7494140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53050", "tid": 35568, "ts": 7494438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50540", "tid": 35568, "ts": 7494760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd507b0", "tid": 35568, "ts": 7495057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7495228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52900", "tid": 35568, "ts": 7495354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7495526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52d10", "tid": 35568, "ts": 7495652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7495823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd518c0", "tid": 35568, "ts": 7495950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7496122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52280", "tid": 35568, "ts": 7496249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7496421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53120", "tid": 35568, "ts": 7496548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7496720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd521b0", "tid": 35568, "ts": 7496846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53530", "tid": 35568, "ts": 7497145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51b30", "tid": 35568, "ts": 7497445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd532c0", "tid": 35568, "ts": 7497744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50af0", "tid": 35568, "ts": 7498044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7498215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50c90", "tid": 35568, "ts": 7498341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7498515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50880", "tid": 35568, "ts": 7498642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7498813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd514b0", "tid": 35568, "ts": 7498939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7499110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53390", "tid": 35568, "ts": 7499236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7499409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52690", "tid": 35568, "ts": 7499536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7499709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52760", "tid": 35568, "ts": 7499835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51580", "tid": 35568, "ts": 7500133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52350", "tid": 35568, "ts": 7500431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51990", "tid": 35568, "ts": 7500730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51da0", "tid": 35568, "ts": 7501028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7501199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50e30", "tid": 35568, "ts": 7501326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7501498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50f00", "tid": 35568, "ts": 7501624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7501798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52420", "tid": 35568, "ts": 7501923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53600", "tid": 35568, "ts": 7502223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd524f0", "tid": 35568, "ts": 7502521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd536d0", "tid": 35568, "ts": 7502820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50bc0", "tid": 35568, "ts": 7503118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7503291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd537a0", "tid": 35568, "ts": 7503417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7503630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51a60", "tid": 35568, "ts": 7503784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7503956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50fd0", "tid": 35568, "ts": 7504083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7504254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51c00", "tid": 35568, "ts": 7504381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7504555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51cd0", "tid": 35568, "ts": 7504682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7504855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51e70", "tid": 35568, "ts": 7504981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7505153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53870", "tid": 35568, "ts": 7505279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7505450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50610", "tid": 35568, "ts": 7505576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7505749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56790", "tid": 35568, "ts": 7505876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd544a0", "tid": 35568, "ts": 7506175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd559c0", "tid": 35568, "ts": 7506473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53ae0", "tid": 35568, "ts": 7506772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd558f0", "tid": 35568, "ts": 7507070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7507242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54230", "tid": 35568, "ts": 7507368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7507541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55b60", "tid": 35568, "ts": 7507668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7507881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54090", "tid": 35568, "ts": 7508007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7508179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54b20", "tid": 35568, "ts": 7508306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7508478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56c70", "tid": 35568, "ts": 7508604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7508776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd547e0", "tid": 35568, "ts": 7508902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54e60", "tid": 35568, "ts": 7509201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55340", "tid": 35568, "ts": 7509499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55750", "tid": 35568, "ts": 7509797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd554e0", "tid": 35568, "ts": 7510098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7510269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56930", "tid": 35568, "ts": 7510396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7510568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56860", "tid": 35568, "ts": 7510694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7510865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56ba0", "tid": 35568, "ts": 7510992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7511164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55c30", "tid": 35568, "ts": 7511291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7511463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56040", "tid": 35568, "ts": 7511589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7511761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55270", "tid": 35568, "ts": 7511888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55d00", "tid": 35568, "ts": 7512185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54a50", "tid": 35568, "ts": 7512483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54bf0", "tid": 35568, "ts": 7512782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd561e0", "tid": 35568, "ts": 7513081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7513253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53bb0", "tid": 35568, "ts": 7513379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7513551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54160", "tid": 35568, "ts": 7513678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7513849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54cc0", "tid": 35568, "ts": 7513975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7514147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55410", "tid": 35568, "ts": 7514273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7514444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54640", "tid": 35568, "ts": 7514569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7514783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56a00", "tid": 35568, "ts": 7514915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54570", "tid": 35568, "ts": 7515213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd562b0", "tid": 35568, "ts": 7515513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55dd0", "tid": 35568, "ts": 7515810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55820", "tid": 35568, "ts": 7516110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7516281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd555b0", "tid": 35568, "ts": 7516407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7516579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55680", "tid": 35568, "ts": 7516704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7516876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54d90", "tid": 35568, "ts": 7517003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7517176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55ea0", "tid": 35568, "ts": 7517302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7517474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd548b0", "tid": 35568, "ts": 7517601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7517773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56380", "tid": 35568, "ts": 7517899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55a90", "tid": 35568, "ts": 7518198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53e20", "tid": 35568, "ts": 7518498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53fc0", "tid": 35568, "ts": 7518797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54980", "tid": 35568, "ts": 7519093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7519277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd550d0", "tid": 35568, "ts": 7519428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7519601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55f70", "tid": 35568, "ts": 7519728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7519900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56520", "tid": 35568, "ts": 7520026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7520198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54300", "tid": 35568, "ts": 7520325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7520498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54f30", "tid": 35568, "ts": 7520624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7520796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56110", "tid": 35568, "ts": 7520923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56450", "tid": 35568, "ts": 7521221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd565f0", "tid": 35568, "ts": 7521519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd543d0", "tid": 35568, "ts": 7521818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54710", "tid": 35568, "ts": 7522115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7522287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55000", "tid": 35568, "ts": 7522414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7522586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd551a0", "tid": 35568, "ts": 7522712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7522884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd566c0", "tid": 35568, "ts": 7523010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7523182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56ad0", "tid": 35568, "ts": 7523308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7523481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53940", "tid": 35568, "ts": 7523608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7523780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53a10", "tid": 35568, "ts": 7523907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53ef0", "tid": 35568, "ts": 7524206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53c80", "tid": 35568, "ts": 7524505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53d50", "tid": 35568, "ts": 7524804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57560", "tid": 35568, "ts": 7525102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7525274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57150", "tid": 35568, "ts": 7525401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7525573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57d80", "tid": 35568, "ts": 7525699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7525871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58cf0", "tid": 35568, "ts": 7525998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7526169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57630", "tid": 35568, "ts": 7526296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7526468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59d30", "tid": 35568, "ts": 7526594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7526766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58330", "tid": 35568, "ts": 7526893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59e00", "tid": 35568, "ts": 7527191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59ac0", "tid": 35568, "ts": 7527490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59510", "tid": 35568, "ts": 7527787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59030", "tid": 35568, "ts": 7528086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7528258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56ee0", "tid": 35568, "ts": 7528385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7528557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57220", "tid": 35568, "ts": 7528683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7528854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd592a0", "tid": 35568, "ts": 7528980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7529151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58740", "tid": 35568, "ts": 7529278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7529449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58670", "tid": 35568, "ts": 7529575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7529748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58c20", "tid": 35568, "ts": 7529875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57f20", "tid": 35568, "ts": 7530173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd577d0", "tid": 35568, "ts": 7530471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58a80", "tid": 35568, "ts": 7530769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58260", "tid": 35568, "ts": 7531069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7531241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59b90", "tid": 35568, "ts": 7531367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7531539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58f60", "tid": 35568, "ts": 7531665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7531837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59c60", "tid": 35568, "ts": 7531963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7532136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd572f0", "tid": 35568, "ts": 7532262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7532434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58dc0", "tid": 35568, "ts": 7532561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7532734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56fb0", "tid": 35568, "ts": 7532921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd573c0", "tid": 35568, "ts": 7533220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd580c0", "tid": 35568, "ts": 7533520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd591d0", "tid": 35568, "ts": 7533818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58e90", "tid": 35568, "ts": 7534118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7534291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57490", "tid": 35568, "ts": 7534417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7534588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57b10", "tid": 35568, "ts": 7534715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7534947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59ed0", "tid": 35568, "ts": 7535075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7535247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59370", "tid": 35568, "ts": 7535375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7535546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59780", "tid": 35568, "ts": 7535673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7535845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59fa0", "tid": 35568, "ts": 7535972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7536144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59100", "tid": 35568, "ts": 7536270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7536440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59440", "tid": 35568, "ts": 7536567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7536739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59850", "tid": 35568, "ts": 7536865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd595e0", "tid": 35568, "ts": 7537164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57970", "tid": 35568, "ts": 7537461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58190", "tid": 35568, "ts": 7537759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a070", "tid": 35568, "ts": 7538056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7538227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58810", "tid": 35568, "ts": 7538353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7538523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56d40", "tid": 35568, "ts": 7538649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7538821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57a40", "tid": 35568, "ts": 7538947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7539119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58400", "tid": 35568, "ts": 7539245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7539417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd588e0", "tid": 35568, "ts": 7539545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7539716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57be0", "tid": 35568, "ts": 7539842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd596b0", "tid": 35568, "ts": 7540140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd578a0", "tid": 35568, "ts": 7540438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59920", "tid": 35568, "ts": 7540736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58b50", "tid": 35568, "ts": 7541034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7541205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd599f0", "tid": 35568, "ts": 7541332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7541502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57700", "tid": 35568, "ts": 7541629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7541801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56e10", "tid": 35568, "ts": 7541926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57080", "tid": 35568, "ts": 7542223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd589b0", "tid": 35568, "ts": 7542521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57cb0", "tid": 35568, "ts": 7542818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57ff0", "tid": 35568, "ts": 7543116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7543288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57e50", "tid": 35568, "ts": 7543414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7543586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd584d0", "tid": 35568, "ts": 7543712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7543883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd585a0", "tid": 35568, "ts": 7544009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7544182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c840", "tid": 35568, "ts": 7544308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7544481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ba70", "tid": 35568, "ts": 7544608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7544782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bb40", "tid": 35568, "ts": 7544910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bf50", "tid": 35568, "ts": 7545209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a550", "tid": 35568, "ts": 7545508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d2d0", "tid": 35568, "ts": 7545807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d060", "tid": 35568, "ts": 7546103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7546275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bce0", "tid": 35568, "ts": 7546401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7546573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d130", "tid": 35568, "ts": 7546699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7546870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cb80", "tid": 35568, "ts": 7546997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7547169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a2e0", "tid": 35568, "ts": 7547295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7547468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a960", "tid": 35568, "ts": 7547638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7547811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d470", "tid": 35568, "ts": 7547938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7548111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ab00", "tid": 35568, "ts": 7548237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7548408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c020", "tid": 35568, "ts": 7548536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7548707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cd20", "tid": 35568, "ts": 7548835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a140", "tid": 35568, "ts": 7549132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c0f0", "tid": 35568, "ts": 7549430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cdf0", "tid": 35568, "ts": 7549728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d200", "tid": 35568, "ts": 7550027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7550198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5aa30", "tid": 35568, "ts": 7550325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7550510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b590", "tid": 35568, "ts": 7550639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7550811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b0b0", "tid": 35568, "ts": 7550939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7551110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bc10", "tid": 35568, "ts": 7551237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7551409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c6a0", "tid": 35568, "ts": 7551536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7551707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a210", "tid": 35568, "ts": 7551833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c770", "tid": 35568, "ts": 7552131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a3b0", "tid": 35568, "ts": 7552428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b180", "tid": 35568, "ts": 7552727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b8d0", "tid": 35568, "ts": 7553025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7553197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5afe0", "tid": 35568, "ts": 7553324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7553496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cc50", "tid": 35568, "ts": 7553622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7553794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a480", "tid": 35568, "ts": 7553921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5af10", "tid": 35568, "ts": 7554217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cab0", "tid": 35568, "ts": 7554516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bdb0", "tid": 35568, "ts": 7554815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5be80", "tid": 35568, "ts": 7555114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7555286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a620", "tid": 35568, "ts": 7555413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7555585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c1c0", "tid": 35568, "ts": 7555711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7555884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a6f0", "tid": 35568, "ts": 7556010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7556182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5abd0", "tid": 35568, "ts": 7556309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7556480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c290", "tid": 35568, "ts": 7556607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7556779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c360", "tid": 35568, "ts": 7556906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ae40", "tid": 35568, "ts": 7557204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d3a0", "tid": 35568, "ts": 7557502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b660", "tid": 35568, "ts": 7557799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a7c0", "tid": 35568, "ts": 7558097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7558270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a890", "tid": 35568, "ts": 7558396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7558568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c430", "tid": 35568, "ts": 7558695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7558867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cec0", "tid": 35568, "ts": 7558993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7559165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5aca0", "tid": 35568, "ts": 7559292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7559464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b250", "tid": 35568, "ts": 7559590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7559763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c5d0", "tid": 35568, "ts": 7559889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ad70", "tid": 35568, "ts": 7560186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cf90", "tid": 35568, "ts": 7560484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b320", "tid": 35568, "ts": 7560782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b730", "tid": 35568, "ts": 7561081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7561252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b3f0", "tid": 35568, "ts": 7561378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7561550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b4c0", "tid": 35568, "ts": 7561677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7561848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c500", "tid": 35568, "ts": 7561975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7562147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b800", "tid": 35568, "ts": 7562274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7562447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b9a0", "tid": 35568, "ts": 7562573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7562746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c910", "tid": 35568, "ts": 7562872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c9e0", "tid": 35568, "ts": 7563171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f690", "tid": 35568, "ts": 7563469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd607a0", "tid": 35568, "ts": 7563768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e650", "tid": 35568, "ts": 7564066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7564238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e3e0", "tid": 35568, "ts": 7564364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7564536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ff80", "tid": 35568, "ts": 7564663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7564835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d6e0", "tid": 35568, "ts": 7564962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7565133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e240", "tid": 35568, "ts": 7565260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7565431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d950", "tid": 35568, "ts": 7565557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7565729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60870", "tid": 35568, "ts": 7565856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7566028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e720", "tid": 35568, "ts": 7566256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7566488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5eda0", "tid": 35568, "ts": 7566617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7566789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5de30", "tid": 35568, "ts": 7566917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e7f0", "tid": 35568, "ts": 7567216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e8c0", "tid": 35568, "ts": 7567517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d880", "tid": 35568, "ts": 7567815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5feb0", "tid": 35568, "ts": 7568114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7568285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d540", "tid": 35568, "ts": 7568412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7568583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ef40", "tid": 35568, "ts": 7568711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7568883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5faa0", "tid": 35568, "ts": 7569010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7569182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d610", "tid": 35568, "ts": 7569308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7569480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fde0", "tid": 35568, "ts": 7569606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7569777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dbc0", "tid": 35568, "ts": 7569903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f350", "tid": 35568, "ts": 7570229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5daf0", "tid": 35568, "ts": 7570528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fd10", "tid": 35568, "ts": 7570827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e990", "tid": 35568, "ts": 7571125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7571296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dfd0", "tid": 35568, "ts": 7571423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7571595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60390", "tid": 35568, "ts": 7571721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7571892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e0a0", "tid": 35568, "ts": 7572018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7572190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dd60", "tid": 35568, "ts": 7572316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7572489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e310", "tid": 35568, "ts": 7572616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7572788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60460", "tid": 35568, "ts": 7572915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f010", "tid": 35568, "ts": 7573213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5df00", "tid": 35568, "ts": 7573511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60050", "tid": 35568, "ts": 7573809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ea60", "tid": 35568, "ts": 7574108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7574281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e4b0", "tid": 35568, "ts": 7574408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7574580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f5c0", "tid": 35568, "ts": 7574706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7574878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f420", "tid": 35568, "ts": 7575005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7575177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dc90", "tid": 35568, "ts": 7575303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7575475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f830", "tid": 35568, "ts": 7575601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7575773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60120", "tid": 35568, "ts": 7575899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7576072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd601f0", "tid": 35568, "ts": 7576198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7576371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5eb30", "tid": 35568, "ts": 7576498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7576670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ec00", "tid": 35568, "ts": 7576858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fb70", "tid": 35568, "ts": 7577158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e170", "tid": 35568, "ts": 7577509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e580", "tid": 35568, "ts": 7577814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fc40", "tid": 35568, "ts": 7578112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7578325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd602c0", "tid": 35568, "ts": 7578452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7578625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ecd0", "tid": 35568, "ts": 7578751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7578923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ee70", "tid": 35568, "ts": 7579050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7579222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60530", "tid": 35568, "ts": 7579349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7579521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60600", "tid": 35568, "ts": 7579647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7579819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f0e0", "tid": 35568, "ts": 7579945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7580117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f1b0", "tid": 35568, "ts": 7580245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7580417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f280", "tid": 35568, "ts": 7580544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7580755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f4f0", "tid": 35568, "ts": 7580882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7581055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f900", "tid": 35568, "ts": 7581182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7581354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f760", "tid": 35568, "ts": 7581481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7581653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f9d0", "tid": 35568, "ts": 7581884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7582141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd606d0", "tid": 35568, "ts": 7582282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7582547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d7b0", "tid": 35568, "ts": 7582675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7582847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5da20", "tid": 35568, "ts": 7582974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7583146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62340", "tid": 35568, "ts": 7583273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7583446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62750", "tid": 35568, "ts": 7583572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7583745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd617e0", "tid": 35568, "ts": 7583871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61090", "tid": 35568, "ts": 7584173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60d50", "tid": 35568, "ts": 7584471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61160", "tid": 35568, "ts": 7584769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60bb0", "tid": 35568, "ts": 7585068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7585240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd631e0", "tid": 35568, "ts": 7585367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7585539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61980", "tid": 35568, "ts": 7585665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7585837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62c30", "tid": 35568, "ts": 7585963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7586135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60940", "tid": 35568, "ts": 7586261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7586433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61bf0", "tid": 35568, "ts": 7586559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7586731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62270", "tid": 35568, "ts": 7586857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63450", "tid": 35568, "ts": 7587155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63380", "tid": 35568, "ts": 7587453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61230", "tid": 35568, "ts": 7587751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60c80", "tid": 35568, "ts": 7588050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7588222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61300", "tid": 35568, "ts": 7588348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7588520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60fc0", "tid": 35568, "ts": 7588647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7588817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd614a0", "tid": 35568, "ts": 7588944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7589116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63ad0", "tid": 35568, "ts": 7589242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7589414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61e60", "tid": 35568, "ts": 7589541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7589712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd625b0", "tid": 35568, "ts": 7589839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60a10", "tid": 35568, "ts": 7590136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61a50", "tid": 35568, "ts": 7590435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63ba0", "tid": 35568, "ts": 7590733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61f30", "tid": 35568, "ts": 7591031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7591204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd620d0", "tid": 35568, "ts": 7591330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7591502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61cc0", "tid": 35568, "ts": 7591628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7591800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61640", "tid": 35568, "ts": 7591926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd632b0", "tid": 35568, "ts": 7592225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61d90", "tid": 35568, "ts": 7592523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62680", "tid": 35568, "ts": 7592822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd613d0", "tid": 35568, "ts": 7593120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7593293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60ae0", "tid": 35568, "ts": 7593419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7593590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62d00", "tid": 35568, "ts": 7593716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7593888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63520", "tid": 35568, "ts": 7594014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7594186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd621a0", "tid": 35568, "ts": 7594312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7594485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62820", "tid": 35568, "ts": 7594634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7594806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60e20", "tid": 35568, "ts": 7594933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7595105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63790", "tid": 35568, "ts": 7595232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7595403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63860", "tid": 35568, "ts": 7595530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7595703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61570", "tid": 35568, "ts": 7595829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd635f0", "tid": 35568, "ts": 7596126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62410", "tid": 35568, "ts": 7596424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd636c0", "tid": 35568, "ts": 7596722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61710", "tid": 35568, "ts": 7597020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7597191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62000", "tid": 35568, "ts": 7597319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7597553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63930", "tid": 35568, "ts": 7597680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7597853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62dd0", "tid": 35568, "ts": 7597979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7598151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63c70", "tid": 35568, "ts": 7598277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7598449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61b20", "tid": 35568, "ts": 7598577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7598749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60ef0", "tid": 35568, "ts": 7598875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd618b0", "tid": 35568, "ts": 7599174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd624e0", "tid": 35568, "ts": 7599472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd628f0", "tid": 35568, "ts": 7599769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd629c0", "tid": 35568, "ts": 7600068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7600239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62a90", "tid": 35568, "ts": 7600365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7600537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62ea0", "tid": 35568, "ts": 7600664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7600836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62b60", "tid": 35568, "ts": 7600962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7601133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62f70", "tid": 35568, "ts": 7601260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7601433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63040", "tid": 35568, "ts": 7601617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7601789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63110", "tid": 35568, "ts": 7601916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63a00", "tid": 35568, "ts": 7602216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64630", "tid": 35568, "ts": 7602515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64700", "tid": 35568, "ts": 7602814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66920", "tid": 35568, "ts": 7603113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7603285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64b10", "tid": 35568, "ts": 7603412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7603584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd647d0", "tid": 35568, "ts": 7603711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7603884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd666b0", "tid": 35568, "ts": 7604010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7604182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66ed0", "tid": 35568, "ts": 7604308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7604480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65740", "tid": 35568, "ts": 7604606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7604779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65260", "tid": 35568, "ts": 7604907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63d40", "tid": 35568, "ts": 7605205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65c20", "tid": 35568, "ts": 7605505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65dc0", "tid": 35568, "ts": 7605804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66780", "tid": 35568, "ts": 7606103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7606276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64560", "tid": 35568, "ts": 7606402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7606573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65a80", "tid": 35568, "ts": 7606699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7606871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64e50", "tid": 35568, "ts": 7606997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7607169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd648a0", "tid": 35568, "ts": 7607295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7607467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66fa0", "tid": 35568, "ts": 7607593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7607765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64f20", "tid": 35568, "ts": 7607892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd662a0", "tid": 35568, "ts": 7608192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64d80", "tid": 35568, "ts": 7608490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66c60", "tid": 35568, "ts": 7608789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64970", "tid": 35568, "ts": 7609089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7609260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64a40", "tid": 35568, "ts": 7609388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7609560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66370", "tid": 35568, "ts": 7609686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7609858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63fb0", "tid": 35568, "ts": 7609984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7610156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66850", "tid": 35568, "ts": 7610282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7610455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65810", "tid": 35568, "ts": 7610582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7610754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66440", "tid": 35568, "ts": 7610881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64ff0", "tid": 35568, "ts": 7611180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd642f0", "tid": 35568, "ts": 7611479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64150", "tid": 35568, "ts": 7611777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66030", "tid": 35568, "ts": 7612075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7612248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd665e0", "tid": 35568, "ts": 7612375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7612547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64220", "tid": 35568, "ts": 7612673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7612845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd650c0", "tid": 35568, "ts": 7612983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7613156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65400", "tid": 35568, "ts": 7613284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7613456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64be0", "tid": 35568, "ts": 7613582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7613754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65e90", "tid": 35568, "ts": 7613923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66100", "tid": 35568, "ts": 7614221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65190", "tid": 35568, "ts": 7614520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63e10", "tid": 35568, "ts": 7614817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd658e0", "tid": 35568, "ts": 7615116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7615288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd659b0", "tid": 35568, "ts": 7615414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7615586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66d30", "tid": 35568, "ts": 7615713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7615884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63ee0", "tid": 35568, "ts": 7616011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7616183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65b50", "tid": 35568, "ts": 7616309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7616481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd643c0", "tid": 35568, "ts": 7616608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7616779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64cb0", "tid": 35568, "ts": 7616906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65330", "tid": 35568, "ts": 7617203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64080", "tid": 35568, "ts": 7617502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65cf0", "tid": 35568, "ts": 7617799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd654d0", "tid": 35568, "ts": 7618097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7618269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66e00", "tid": 35568, "ts": 7618395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7618567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd661d0", "tid": 35568, "ts": 7618693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7618865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66510", "tid": 35568, "ts": 7618993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7619165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd655a0", "tid": 35568, "ts": 7619293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7619464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67070", "tid": 35568, "ts": 7619591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7619764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65670", "tid": 35568, "ts": 7619891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd669f0", "tid": 35568, "ts": 7620189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64490", "tid": 35568, "ts": 7620488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66ac0", "tid": 35568, "ts": 7620786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65f60", "tid": 35568, "ts": 7621084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7621255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66b90", "tid": 35568, "ts": 7621382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7621554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69c50", "tid": 35568, "ts": 7621681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7621852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd680b0", "tid": 35568, "ts": 7621978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7622149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69b80", "tid": 35568, "ts": 7622276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7622448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd673b0", "tid": 35568, "ts": 7622575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7622746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd699e0", "tid": 35568, "ts": 7622873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68db0", "tid": 35568, "ts": 7623170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69840", "tid": 35568, "ts": 7623468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67620", "tid": 35568, "ts": 7623766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd688d0", "tid": 35568, "ts": 7624064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7624236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67a30", "tid": 35568, "ts": 7624362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7624534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69ab0", "tid": 35568, "ts": 7624660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7624832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67140", "tid": 35568, "ts": 7624959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7625131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd690f0", "tid": 35568, "ts": 7625258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7625429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd672e0", "tid": 35568, "ts": 7625554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7625726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67fe0", "tid": 35568, "ts": 7625852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a3a0", "tid": 35568, "ts": 7626174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69290", "tid": 35568, "ts": 7626472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67e40", "tid": 35568, "ts": 7626770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67b00", "tid": 35568, "ts": 7627071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7627243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67210", "tid": 35568, "ts": 7627369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7627540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd691c0", "tid": 35568, "ts": 7627666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7627839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69d20", "tid": 35568, "ts": 7627966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7628137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68180", "tid": 35568, "ts": 7628263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7628434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69500", "tid": 35568, "ts": 7628560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7628776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69df0", "tid": 35568, "ts": 7628903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68660", "tid": 35568, "ts": 7629202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68e80", "tid": 35568, "ts": 7629499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd677c0", "tid": 35568, "ts": 7629798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69910", "tid": 35568, "ts": 7630150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7630322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 7630826, "pid": 35104, "args": { "Heap": { "SizeInBytes": 268435456, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234acd67480", "tid": 35568, "ts": 7630840, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234acd67480", "tid": 35568, "ts": 7630870, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 268435456, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd676f0", "tid": 35568, "ts": 7630987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7631161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68f50", "tid": 35568, "ts": 7631288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7631460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69ec0", "tid": 35568, "ts": 7631588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7631771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd689a0", "tid": 35568, "ts": 7631897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67890", "tid": 35568, "ts": 7632194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68250", "tid": 35568, "ts": 7632492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69f90", "tid": 35568, "ts": 7632790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67960", "tid": 35568, "ts": 7633088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7633260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67bd0", "tid": 35568, "ts": 7633385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7633558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68a70", "tid": 35568, "ts": 7633685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7633857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69770", "tid": 35568, "ts": 7633984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7634156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68b40", "tid": 35568, "ts": 7634282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7634454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67ca0", "tid": 35568, "ts": 7634581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7634753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68c10", "tid": 35568, "ts": 7634878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68320", "tid": 35568, "ts": 7635177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a060", "tid": 35568, "ts": 7635474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69360", "tid": 35568, "ts": 7635772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd683f0", "tid": 35568, "ts": 7636071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7636242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68590", "tid": 35568, "ts": 7636369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7636542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67d70", "tid": 35568, "ts": 7636668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7636841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67f10", "tid": 35568, "ts": 7636968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7637141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68ce0", "tid": 35568, "ts": 7637267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7637440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69020", "tid": 35568, "ts": 7637565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7637736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd684c0", "tid": 35568, "ts": 7637863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69430", "tid": 35568, "ts": 7638161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a200", "tid": 35568, "ts": 7638458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68730", "tid": 35568, "ts": 7638757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68800", "tid": 35568, "ts": 7639055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7639226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a130", "tid": 35568, "ts": 7639352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7639524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd695d0", "tid": 35568, "ts": 7639649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7639822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd696a0", "tid": 35568, "ts": 7639948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7640120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a2d0", "tid": 35568, "ts": 7640245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7640418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a470", "tid": 35568, "ts": 7640543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7640715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c690", "tid": 35568, "ts": 7640841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bf40", "tid": 35568, "ts": 7641139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c760", "tid": 35568, "ts": 7641437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c830", "tid": 35568, "ts": 7641734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c010", "tid": 35568, "ts": 7642032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7642204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a950", "tid": 35568, "ts": 7642331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7642501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d050", "tid": 35568, "ts": 7642628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7642800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b580", "tid": 35568, "ts": 7642926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b8c0", "tid": 35568, "ts": 7643223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6caa0", "tid": 35568, "ts": 7643521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b4b0", "tid": 35568, "ts": 7643819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a880", "tid": 35568, "ts": 7644117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7644346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d7a0", "tid": 35568, "ts": 7644473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7644645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b990", "tid": 35568, "ts": 7644771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7644943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6aa20", "tid": 35568, "ts": 7645069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7645240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6afd0", "tid": 35568, "ts": 7645366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7645538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b7f0", "tid": 35568, "ts": 7645664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7645836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6be70", "tid": 35568, "ts": 7645962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7646133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c350", "tid": 35568, "ts": 7646260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7646432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d2c0", "tid": 35568, "ts": 7646559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7646730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d600", "tid": 35568, "ts": 7646856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a7b0", "tid": 35568, "ts": 7647198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c1b0", "tid": 35568, "ts": 7647497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a6e0", "tid": 35568, "ts": 7647795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c900", "tid": 35568, "ts": 7648091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7648265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ba60", "tid": 35568, "ts": 7648391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7648563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c5c0", "tid": 35568, "ts": 7648688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7648860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d120", "tid": 35568, "ts": 7648987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7649158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b310", "tid": 35568, "ts": 7649284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7649498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d390", "tid": 35568, "ts": 7649624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7649795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6abc0", "tid": 35568, "ts": 7649922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c9d0", "tid": 35568, "ts": 7650219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cb70", "tid": 35568, "ts": 7650517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cf80", "tid": 35568, "ts": 7650816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cc40", "tid": 35568, "ts": 7651115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7651287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b3e0", "tid": 35568, "ts": 7651413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7651584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b650", "tid": 35568, "ts": 7651710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7651882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cd10", "tid": 35568, "ts": 7652008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7652179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6aaf0", "tid": 35568, "ts": 7652306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7652477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bb30", "tid": 35568, "ts": 7652603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7652775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bda0", "tid": 35568, "ts": 7652901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7653073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cde0", "tid": 35568, "ts": 7653199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7653370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d6d0", "tid": 35568, "ts": 7653497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7653669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b720", "tid": 35568, "ts": 7653833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b0a0", "tid": 35568, "ts": 7654130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d870", "tid": 35568, "ts": 7654428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ceb0", "tid": 35568, "ts": 7654726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bc00", "tid": 35568, "ts": 7655024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7655195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ac90", "tid": 35568, "ts": 7655321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7655493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ad60", "tid": 35568, "ts": 7655619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7655791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a540", "tid": 35568, "ts": 7655917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c420", "tid": 35568, "ts": 7656215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d460", "tid": 35568, "ts": 7656512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ae30", "tid": 35568, "ts": 7656810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bcd0", "tid": 35568, "ts": 7657134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7657305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d1f0", "tid": 35568, "ts": 7657432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7657604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d530", "tid": 35568, "ts": 7657795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7657968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c0e0", "tid": 35568, "ts": 7658094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7658265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a610", "tid": 35568, "ts": 7658391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7658563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c280", "tid": 35568, "ts": 7658690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7658861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c4f0", "tid": 35568, "ts": 7658987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7659159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6af00", "tid": 35568, "ts": 7659285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7659457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b170", "tid": 35568, "ts": 7659584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7659756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b240", "tid": 35568, "ts": 7659971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7660143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dd50", "tid": 35568, "ts": 7660270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7660441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e300", "tid": 35568, "ts": 7660567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7660739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fdd0", "tid": 35568, "ts": 7660865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f270", "tid": 35568, "ts": 7661163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70450", "tid": 35568, "ts": 7661461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ebf0", "tid": 35568, "ts": 7661759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd701e0", "tid": 35568, "ts": 7662057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7662229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dae0", "tid": 35568, "ts": 7662355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7662527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d940", "tid": 35568, "ts": 7662653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7662825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd706c0", "tid": 35568, "ts": 7662952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7663189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70110", "tid": 35568, "ts": 7663319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7663498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e090", "tid": 35568, "ts": 7663631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7663870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e7e0", "tid": 35568, "ts": 7664008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7664182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6da10", "tid": 35568, "ts": 7664308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7664480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f410", "tid": 35568, "ts": 7664606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7664777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70380", "tid": 35568, "ts": 7664904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dbb0", "tid": 35568, "ts": 7665202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ea50", "tid": 35568, "ts": 7665500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f4e0", "tid": 35568, "ts": 7665798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e980", "tid": 35568, "ts": 7666096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7666267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f0d0", "tid": 35568, "ts": 7666393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7666564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f000", "tid": 35568, "ts": 7666690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7666862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e640", "tid": 35568, "ts": 7666988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7667160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6def0", "tid": 35568, "ts": 7667287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7667458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f820", "tid": 35568, "ts": 7667584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7667757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70ad0", "tid": 35568, "ts": 7667882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70520", "tid": 35568, "ts": 7668180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e4a0", "tid": 35568, "ts": 7668477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70ba0", "tid": 35568, "ts": 7668775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6eb20", "tid": 35568, "ts": 7669072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7669244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6de20", "tid": 35568, "ts": 7669370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7669542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dc80", "tid": 35568, "ts": 7669669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7669841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e3d0", "tid": 35568, "ts": 7670035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7670207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f340", "tid": 35568, "ts": 7670334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7670506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd705f0", "tid": 35568, "ts": 7670632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7670803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e8b0", "tid": 35568, "ts": 7670929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e710", "tid": 35568, "ts": 7671227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ecc0", "tid": 35568, "ts": 7671526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f9c0", "tid": 35568, "ts": 7671824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dfc0", "tid": 35568, "ts": 7672121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7672293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fea0", "tid": 35568, "ts": 7672419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7672591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f5b0", "tid": 35568, "ts": 7672718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7672890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70790", "tid": 35568, "ts": 7673015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7673187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd702b0", "tid": 35568, "ts": 7673313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7673485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e160", "tid": 35568, "ts": 7673610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7673781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fa90", "tid": 35568, "ts": 7673907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e570", "tid": 35568, "ts": 7674206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ed90", "tid": 35568, "ts": 7674503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e230", "tid": 35568, "ts": 7674800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ee60", "tid": 35568, "ts": 7675097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7675268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ef30", "tid": 35568, "ts": 7675394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7675577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70860", "tid": 35568, "ts": 7675703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7675876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f1a0", "tid": 35568, "ts": 7676002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7676174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f680", "tid": 35568, "ts": 7676301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7676473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fb60", "tid": 35568, "ts": 7676599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7676771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f750", "tid": 35568, "ts": 7676897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70930", "tid": 35568, "ts": 7677193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fc30", "tid": 35568, "ts": 7677492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f8f0", "tid": 35568, "ts": 7677789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70a00", "tid": 35568, "ts": 7678086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7678259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fd00", "tid": 35568, "ts": 7678385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7678558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ff70", "tid": 35568, "ts": 7678684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7678856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70040", "tid": 35568, "ts": 7678983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7679154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70c70", "tid": 35568, "ts": 7679291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7679463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73fa0", "tid": 35568, "ts": 7679590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7679762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72400", "tid": 35568, "ts": 7679888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71490", "tid": 35568, "ts": 7680186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71be0", "tid": 35568, "ts": 7680529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71e50", "tid": 35568, "ts": 7680827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72c20", "tid": 35568, "ts": 7681126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7681297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72e90", "tid": 35568, "ts": 7681423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7681595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71f20", "tid": 35568, "ts": 7681720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7681893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71150", "tid": 35568, "ts": 7682018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7682191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71970", "tid": 35568, "ts": 7682317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7682488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd713c0", "tid": 35568, "ts": 7682614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7682785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71cb0", "tid": 35568, "ts": 7682910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71ff0", "tid": 35568, "ts": 7683209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72a80", "tid": 35568, "ts": 7683506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71630", "tid": 35568, "ts": 7683804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73d30", "tid": 35568, "ts": 7684102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7684273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71220", "tid": 35568, "ts": 7684399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7684571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd712f0", "tid": 35568, "ts": 7684696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7684869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71560", "tid": 35568, "ts": 7684995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7685167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71a40", "tid": 35568, "ts": 7685293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7685464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd731d0", "tid": 35568, "ts": 7685589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7685761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74070", "tid": 35568, "ts": 7685887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71b10", "tid": 35568, "ts": 7686185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72cf0", "tid": 35568, "ts": 7686482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72dc0", "tid": 35568, "ts": 7686779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd724d0", "tid": 35568, "ts": 7687079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7687250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70d40", "tid": 35568, "ts": 7687377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7687548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72810", "tid": 35568, "ts": 7687674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7687846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73ac0", "tid": 35568, "ts": 7687972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7688144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd717d0", "tid": 35568, "ts": 7688269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7688441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd725a0", "tid": 35568, "ts": 7688566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7688738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71d80", "tid": 35568, "ts": 7688865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71700", "tid": 35568, "ts": 7689163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd720c0", "tid": 35568, "ts": 7689460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72670", "tid": 35568, "ts": 7689757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73e00", "tid": 35568, "ts": 7690054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7690226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd718a0", "tid": 35568, "ts": 7690352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7690522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72190", "tid": 35568, "ts": 7690649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7690819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72740", "tid": 35568, "ts": 7690946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7691193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd728e0", "tid": 35568, "ts": 7691459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7691715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70e10", "tid": 35568, "ts": 7691893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7692142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72260", "tid": 35568, "ts": 7692291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7692463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72f60", "tid": 35568, "ts": 7692590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7692762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73ed0", "tid": 35568, "ts": 7692888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73850", "tid": 35568, "ts": 7693187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72330", "tid": 35568, "ts": 7693486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd729b0", "tid": 35568, "ts": 7693783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72b50", "tid": 35568, "ts": 7694081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7694253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73030", "tid": 35568, "ts": 7694379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7694573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73100", "tid": 35568, "ts": 7694700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7694873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd732a0", "tid": 35568, "ts": 7694999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7695171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73370", "tid": 35568, "ts": 7695298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7695468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73440", "tid": 35568, "ts": 7695595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7695768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73510", "tid": 35568, "ts": 7695894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd735e0", "tid": 35568, "ts": 7696192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70ee0", "tid": 35568, "ts": 7696490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73b90", "tid": 35568, "ts": 7696788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd736b0", "tid": 35568, "ts": 7697088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7697260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73780", "tid": 35568, "ts": 7697386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7697558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73920", "tid": 35568, "ts": 7697684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7697856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd739f0", "tid": 35568, "ts": 7697982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7698154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73c60", "tid": 35568, "ts": 7698280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7698451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70fb0", "tid": 35568, "ts": 7698578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7698751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71080", "tid": 35568, "ts": 7698877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76b80", "tid": 35568, "ts": 7699175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd769e0", "tid": 35568, "ts": 7699472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75db0", "tid": 35568, "ts": 7699770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75e80", "tid": 35568, "ts": 7700068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7700239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76840", "tid": 35568, "ts": 7700365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7700537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76910", "tid": 35568, "ts": 7700664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7700836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74480", "tid": 35568, "ts": 7700962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7701135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75590", "tid": 35568, "ts": 7701261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7701432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd772d0", "tid": 35568, "ts": 7701558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7701731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77130", "tid": 35568, "ts": 7701857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd753f0", "tid": 35568, "ts": 7702157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75a70", "tid": 35568, "ts": 7702455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74fe0", "tid": 35568, "ts": 7702754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd760f0", "tid": 35568, "ts": 7703052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7703224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd746f0", "tid": 35568, "ts": 7703350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7703523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74f10", "tid": 35568, "ts": 7703649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7703820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd747c0", "tid": 35568, "ts": 7703947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7704118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd758d0", "tid": 35568, "ts": 7704244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7704417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75800", "tid": 35568, "ts": 7704542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7704714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd750b0", "tid": 35568, "ts": 7704840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75180", "tid": 35568, "ts": 7705138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76c50", "tid": 35568, "ts": 7705436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75b40", "tid": 35568, "ts": 7705733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75250", "tid": 35568, "ts": 7706030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7706203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76d20", "tid": 35568, "ts": 7706329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7706501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74550", "tid": 35568, "ts": 7706627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7706934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74e40", "tid": 35568, "ts": 7707070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7707244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd754c0", "tid": 35568, "ts": 7707372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7707547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75660", "tid": 35568, "ts": 7707674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7707847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75f50", "tid": 35568, "ts": 7707974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7708147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76f90", "tid": 35568, "ts": 7708274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7708445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74d70", "tid": 35568, "ts": 7708573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7708745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd759a0", "tid": 35568, "ts": 7708872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76020", "tid": 35568, "ts": 7709172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74890", "tid": 35568, "ts": 7709472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76df0", "tid": 35568, "ts": 7709771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76ec0", "tid": 35568, "ts": 7710069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7710242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74ca0", "tid": 35568, "ts": 7710368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7710539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77060", "tid": 35568, "ts": 7710666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7710838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75320", "tid": 35568, "ts": 7710964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7711136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd761c0", "tid": 35568, "ts": 7711263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7711435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74140", "tid": 35568, "ts": 7711561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7711734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76290", "tid": 35568, "ts": 7711860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd743b0", "tid": 35568, "ts": 7712159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74960", "tid": 35568, "ts": 7712456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75ce0", "tid": 35568, "ts": 7712756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75c10", "tid": 35568, "ts": 7713056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7713229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77200", "tid": 35568, "ts": 7713356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7713527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd773a0", "tid": 35568, "ts": 7713700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7713872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75730", "tid": 35568, "ts": 7713999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7714172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77470", "tid": 35568, "ts": 7714298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7714471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74210", "tid": 35568, "ts": 7714598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7714770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd742e0", "tid": 35568, "ts": 7714896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74620", "tid": 35568, "ts": 7715194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76430", "tid": 35568, "ts": 7715493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76500", "tid": 35568, "ts": 7715790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74a30", "tid": 35568, "ts": 7716089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7716261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76360", "tid": 35568, "ts": 7716388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7716560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd765d0", "tid": 35568, "ts": 7716687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7716860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd766a0", "tid": 35568, "ts": 7716986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7717158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76770", "tid": 35568, "ts": 7717284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7717457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74b00", "tid": 35568, "ts": 7717583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7717756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74bd0", "tid": 35568, "ts": 7717882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76ab0", "tid": 35568, "ts": 7718180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77af0", "tid": 35568, "ts": 7718480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77540", "tid": 35568, "ts": 7718778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77bc0", "tid": 35568, "ts": 7719077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7719248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79760", "tid": 35568, "ts": 7719375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7719547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a050", "tid": 35568, "ts": 7719673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7719845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd784b0", "tid": 35568, "ts": 7719971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7720143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd783e0", "tid": 35568, "ts": 7720269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7720498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a7a0", "tid": 35568, "ts": 7720626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7720798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78170", "tid": 35568, "ts": 7720924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a120", "tid": 35568, "ts": 7721223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a2c0", "tid": 35568, "ts": 7721520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77c90", "tid": 35568, "ts": 7721819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78240", "tid": 35568, "ts": 7722116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7722288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79690", "tid": 35568, "ts": 7722426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7722598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78f40", "tid": 35568, "ts": 7722724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7722896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78580", "tid": 35568, "ts": 7723023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7723195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd777b0", "tid": 35568, "ts": 7723320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7723493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78310", "tid": 35568, "ts": 7723620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7723791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78650", "tid": 35568, "ts": 7723918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd788c0", "tid": 35568, "ts": 7724215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a600", "tid": 35568, "ts": 7724512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77d60", "tid": 35568, "ts": 7724810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77e30", "tid": 35568, "ts": 7725108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7725281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79d10", "tid": 35568, "ts": 7725407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7725579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77fd0", "tid": 35568, "ts": 7725705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7725878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a870", "tid": 35568, "ts": 7726004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7726175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd799d0", "tid": 35568, "ts": 7726302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7726473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78720", "tid": 35568, "ts": 7726600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7726771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78cd0", "tid": 35568, "ts": 7726897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78c00", "tid": 35568, "ts": 7727196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd787f0", "tid": 35568, "ts": 7727495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78da0", "tid": 35568, "ts": 7727792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a1f0", "tid": 35568, "ts": 7728091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7728263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a390", "tid": 35568, "ts": 7728389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7728560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd791b0", "tid": 35568, "ts": 7728688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7728859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79aa0", "tid": 35568, "ts": 7728985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7729158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79280", "tid": 35568, "ts": 7729284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7729456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78e70", "tid": 35568, "ts": 7729583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7729755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79830", "tid": 35568, "ts": 7729882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a460", "tid": 35568, "ts": 7730179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd780a0", "tid": 35568, "ts": 7730478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77a20", "tid": 35568, "ts": 7730777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78990", "tid": 35568, "ts": 7731075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7731248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a530", "tid": 35568, "ts": 7731374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7731546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a6d0", "tid": 35568, "ts": 7731715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7731888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77610", "tid": 35568, "ts": 7732015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7732187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79010", "tid": 35568, "ts": 7732314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7732486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79350", "tid": 35568, "ts": 7732613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7732785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79b70", "tid": 35568, "ts": 7732911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79420", "tid": 35568, "ts": 7733210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79900", "tid": 35568, "ts": 7733508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79c40", "tid": 35568, "ts": 7733806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd776e0", "tid": 35568, "ts": 7734106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7734277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79de0", "tid": 35568, "ts": 7734403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7734574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd790e0", "tid": 35568, "ts": 7734701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7734871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78a60", "tid": 35568, "ts": 7734998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7735169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77f00", "tid": 35568, "ts": 7735296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7735469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78b30", "tid": 35568, "ts": 7735595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7735767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd794f0", "tid": 35568, "ts": 7735893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7736064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77880", "tid": 35568, "ts": 7736191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7736363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd795c0", "tid": 35568, "ts": 7736561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7736735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77950", "tid": 35568, "ts": 7736866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79eb0", "tid": 35568, "ts": 7737165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79f80", "tid": 35568, "ts": 7737463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d520", "tid": 35568, "ts": 7737762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7aa10", "tid": 35568, "ts": 7738073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7738245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d110", "tid": 35568, "ts": 7738372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7738543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7aef0", "tid": 35568, "ts": 7738738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7738910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b570", "tid": 35568, "ts": 7739037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7739210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cd00", "tid": 35568, "ts": 7739336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7739508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d380", "tid": 35568, "ts": 7739635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7739807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7afc0", "tid": 35568, "ts": 7739934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7740106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dba0", "tid": 35568, "ts": 7740233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7740405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b300", "tid": 35568, "ts": 7740532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7740703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dc70", "tid": 35568, "ts": 7740829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bf30", "tid": 35568, "ts": 7741127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b090", "tid": 35568, "ts": 7741426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7abb0", "tid": 35568, "ts": 7741724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b640", "tid": 35568, "ts": 7742022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7742194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b3d0", "tid": 35568, "ts": 7742320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7742492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b160", "tid": 35568, "ts": 7742618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7742790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d790", "tid": 35568, "ts": 7742917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c410", "tid": 35568, "ts": 7743216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d450", "tid": 35568, "ts": 7743514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d5f0", "tid": 35568, "ts": 7743813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cc30", "tid": 35568, "ts": 7744112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7744284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c9c0", "tid": 35568, "ts": 7744410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7744582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b4a0", "tid": 35568, "ts": 7744708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7744879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d860", "tid": 35568, "ts": 7745006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7745179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a940", "tid": 35568, "ts": 7745305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7745478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c5b0", "tid": 35568, "ts": 7745605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7745778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7da00", "tid": 35568, "ts": 7745904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7746076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b710", "tid": 35568, "ts": 7746202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7746374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bb20", "tid": 35568, "ts": 7746501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7746761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d1e0", "tid": 35568, "ts": 7746888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d930", "tid": 35568, "ts": 7747189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d6c0", "tid": 35568, "ts": 7747487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c750", "tid": 35568, "ts": 7747786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cdd0", "tid": 35568, "ts": 7748083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7748254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ac80", "tid": 35568, "ts": 7748381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7748553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b7e0", "tid": 35568, "ts": 7748680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7748851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bbf0", "tid": 35568, "ts": 7748977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7749150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d2b0", "tid": 35568, "ts": 7749276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7749449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b8b0", "tid": 35568, "ts": 7749576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7749748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b230", "tid": 35568, "ts": 7749875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7750047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dad0", "tid": 35568, "ts": 7750328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7750501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bd90", "tid": 35568, "ts": 7750628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7750800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b980", "tid": 35568, "ts": 7750927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ca90", "tid": 35568, "ts": 7751226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ba50", "tid": 35568, "ts": 7751525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7aae0", "tid": 35568, "ts": 7751823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c000", "tid": 35568, "ts": 7752121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7752292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c680", "tid": 35568, "ts": 7752418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7752591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cea0", "tid": 35568, "ts": 7752717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7752888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cf70", "tid": 35568, "ts": 7753014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7753186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ad50", "tid": 35568, "ts": 7753313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7753485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c820", "tid": 35568, "ts": 7753673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7753844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ae20", "tid": 35568, "ts": 7753973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7754144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bcc0", "tid": 35568, "ts": 7754271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7754443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7be60", "tid": 35568, "ts": 7754569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7754739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c0d0", "tid": 35568, "ts": 7754865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c1a0", "tid": 35568, "ts": 7755164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d040", "tid": 35568, "ts": 7755462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c270", "tid": 35568, "ts": 7755760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c340", "tid": 35568, "ts": 7756058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7756231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c4e0", "tid": 35568, "ts": 7756358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7756530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c8f0", "tid": 35568, "ts": 7756657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7756828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cb60", "tid": 35568, "ts": 7756954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7757126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e150", "tid": 35568, "ts": 7757252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7757423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f0c0", "tid": 35568, "ts": 7757549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7757722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80ed0", "tid": 35568, "ts": 7757848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80100", "tid": 35568, "ts": 7758146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e970", "tid": 35568, "ts": 7758446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f5a0", "tid": 35568, "ts": 7758744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f8e0", "tid": 35568, "ts": 7759041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7759214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd801d0", "tid": 35568, "ts": 7759340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7759512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80e00", "tid": 35568, "ts": 7759638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7759810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f190", "tid": 35568, "ts": 7759936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7760108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7eb10", "tid": 35568, "ts": 7760234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7760407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ef20", "tid": 35568, "ts": 7760533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7760704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e7d0", "tid": 35568, "ts": 7760830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd805e0", "tid": 35568, "ts": 7761129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fcf0", "tid": 35568, "ts": 7761427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ea40", "tid": 35568, "ts": 7761725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f670", "tid": 35568, "ts": 7762022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7762195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7eff0", "tid": 35568, "ts": 7762321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7762494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fb50", "tid": 35568, "ts": 7762620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7762792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80d30", "tid": 35568, "ts": 7762918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dd40", "tid": 35568, "ts": 7763217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7de10", "tid": 35568, "ts": 7763517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dee0", "tid": 35568, "ts": 7763815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e8a0", "tid": 35568, "ts": 7764113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7764284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f260", "tid": 35568, "ts": 7764410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7764583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd806b0", "tid": 35568, "ts": 7764709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7764881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ebe0", "tid": 35568, "ts": 7765007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7765178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e080", "tid": 35568, "ts": 7765304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7765476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ecb0", "tid": 35568, "ts": 7765602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7765774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80780", "tid": 35568, "ts": 7765900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ed80", "tid": 35568, "ts": 7766198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dfb0", "tid": 35568, "ts": 7766496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ee50", "tid": 35568, "ts": 7766795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80b90", "tid": 35568, "ts": 7767093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7767265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e220", "tid": 35568, "ts": 7767391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7767563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f740", "tid": 35568, "ts": 7767689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7767862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e3c0", "tid": 35568, "ts": 7767989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7768161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f330", "tid": 35568, "ts": 7768287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7768459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f4d0", "tid": 35568, "ts": 7768585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7768757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e630", "tid": 35568, "ts": 7768884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7769056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80c60", "tid": 35568, "ts": 7769230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7769510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e2f0", "tid": 35568, "ts": 7769671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7769857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e490", "tid": 35568, "ts": 7770007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7770204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e560", "tid": 35568, "ts": 7770354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7770561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e700", "tid": 35568, "ts": 7770766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7770939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f810", "tid": 35568, "ts": 7771088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7771295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f400", "tid": 35568, "ts": 7771486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7771684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f9b0", "tid": 35568, "ts": 7771813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7771985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fa80", "tid": 35568, "ts": 7772114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7772288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fc20", "tid": 35568, "ts": 7772415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7772600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fdc0", "tid": 35568, "ts": 7772740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7772915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fe90", "tid": 35568, "ts": 7773042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7773216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80370", "tid": 35568, "ts": 7773344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7773517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ff60", "tid": 35568, "ts": 7773647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7773823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80030", "tid": 35568, "ts": 7773953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7774128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd802a0", "tid": 35568, "ts": 7774258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7774433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80440", "tid": 35568, "ts": 7774563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7774738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80510", "tid": 35568, "ts": 7774868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80850", "tid": 35568, "ts": 7775175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80920", "tid": 35568, "ts": 7775482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd809f0", "tid": 35568, "ts": 7775790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80ac0", "tid": 35568, "ts": 7776098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7776277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451d40", "tid": 35568, "ts": 7776553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7776736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4515f0", "tid": 35568, "ts": 7776869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7777050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450ea0", "tid": 35568, "ts": 7777182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7777364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452d80", "tid": 35568, "ts": 7777496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7777677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450d00", "tid": 35568, "ts": 7777808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452220", "tid": 35568, "ts": 7778140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4501a0", "tid": 35568, "ts": 7778445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451380", "tid": 35568, "ts": 7778749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451930", "tid": 35568, "ts": 7779121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7779322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451e10", "tid": 35568, "ts": 7779450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7779623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452150", "tid": 35568, "ts": 7779750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7779924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453190", "tid": 35568, "ts": 7780051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7780224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452700", "tid": 35568, "ts": 7780351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7780526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450820", "tid": 35568, "ts": 7780721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7780894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453260", "tid": 35568, "ts": 7781021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7781195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4508f0", "tid": 35568, "ts": 7781322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7781495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4509c0", "tid": 35568, "ts": 7781622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7781795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453330", "tid": 35568, "ts": 7781922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450270", "tid": 35568, "ts": 7782222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451040", "tid": 35568, "ts": 7782521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450340", "tid": 35568, "ts": 7782821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452b10", "tid": 35568, "ts": 7783122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7783293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450c30", "tid": 35568, "ts": 7783419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7783720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4512b0", "tid": 35568, "ts": 7783859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7784032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4523c0", "tid": 35568, "ts": 7784159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7784332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452ff0", "tid": 35568, "ts": 7784459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7784631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453400", "tid": 35568, "ts": 7784758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450750", "tid": 35568, "ts": 7785204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450dd0", "tid": 35568, "ts": 7785504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450a90", "tid": 35568, "ts": 7785803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451c70", "tid": 35568, "ts": 7786102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7786274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4527d0", "tid": 35568, "ts": 7786402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7786575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451ee0", "tid": 35568, "ts": 7786701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7786873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450410", "tid": 35568, "ts": 7786999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7787170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450f70", "tid": 35568, "ts": 7787296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7787468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4528a0", "tid": 35568, "ts": 7787595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7787766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450b60", "tid": 35568, "ts": 7787893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4534d0", "tid": 35568, "ts": 7788193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4511e0", "tid": 35568, "ts": 7788491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452970", "tid": 35568, "ts": 7788789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4522f0", "tid": 35568, "ts": 7789088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7789260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4504e0", "tid": 35568, "ts": 7789387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7789558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452490", "tid": 35568, "ts": 7789719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7789893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452560", "tid": 35568, "ts": 7790020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7790193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4505b0", "tid": 35568, "ts": 7790319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7790491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451520", "tid": 35568, "ts": 7790618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7790789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451450", "tid": 35568, "ts": 7790916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451110", "tid": 35568, "ts": 7791214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452a40", "tid": 35568, "ts": 7791512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451ad0", "tid": 35568, "ts": 7791812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451fb0", "tid": 35568, "ts": 7792110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7792325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452f20", "tid": 35568, "ts": 7792452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7792624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4516c0", "tid": 35568, "ts": 7792751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7792923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452be0", "tid": 35568, "ts": 7793049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7793221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450680", "tid": 35568, "ts": 7793348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7793519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452080", "tid": 35568, "ts": 7793646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7793817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452cb0", "tid": 35568, "ts": 7793944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7794114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451790", "tid": 35568, "ts": 7794240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7794412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451860", "tid": 35568, "ts": 7794561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7794733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451a00", "tid": 35568, "ts": 7794859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451ba0", "tid": 35568, "ts": 7795159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452e50", "tid": 35568, "ts": 7795458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452630", "tid": 35568, "ts": 7795756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4530c0", "tid": 35568, "ts": 7796055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7796226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455550", "tid": 35568, "ts": 7796353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7796525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453cf0", "tid": 35568, "ts": 7796652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7796822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453c20", "tid": 35568, "ts": 7796949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7797121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4563f0", "tid": 35568, "ts": 7797247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7797420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4560b0", "tid": 35568, "ts": 7797546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7797717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4539b0", "tid": 35568, "ts": 7797843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4557c0", "tid": 35568, "ts": 7798142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4564c0", "tid": 35568, "ts": 7798441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4535a0", "tid": 35568, "ts": 7798740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455a30", "tid": 35568, "ts": 7799040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7799212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456590", "tid": 35568, "ts": 7799338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7799511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456180", "tid": 35568, "ts": 7799637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7799809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4538e0", "tid": 35568, "ts": 7799935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7800108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454780", "tid": 35568, "ts": 7800235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7800407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453740", "tid": 35568, "ts": 7800604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7800840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455b00", "tid": 35568, "ts": 7801008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7801315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4552e0", "tid": 35568, "ts": 7801471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7801645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454ac0", "tid": 35568, "ts": 7801773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454850", "tid": 35568, "ts": 7802130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455bd0", "tid": 35568, "ts": 7802431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455ca0", "tid": 35568, "ts": 7802756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455fe0", "tid": 35568, "ts": 7803055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7803228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455890", "tid": 35568, "ts": 7803355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7803527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453670", "tid": 35568, "ts": 7803655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7803827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454920", "tid": 35568, "ts": 7803954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7804126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4546b0", "tid": 35568, "ts": 7804252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7804425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454b90", "tid": 35568, "ts": 7804551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7804726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4541d0", "tid": 35568, "ts": 7804853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4568d0", "tid": 35568, "ts": 7805151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4549f0", "tid": 35568, "ts": 7805449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453810", "tid": 35568, "ts": 7805748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4542a0", "tid": 35568, "ts": 7806047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7806220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453a80", "tid": 35568, "ts": 7806347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7806520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455d70", "tid": 35568, "ts": 7806647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7806818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4553b0", "tid": 35568, "ts": 7806945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7807116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455070", "tid": 35568, "ts": 7807242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7807412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454440", "tid": 35568, "ts": 7807539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7807711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456250", "tid": 35568, "ts": 7807837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456660", "tid": 35568, "ts": 7808135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454370", "tid": 35568, "ts": 7808432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453b50", "tid": 35568, "ts": 7808793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454c60", "tid": 35568, "ts": 7809094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7809265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454d30", "tid": 35568, "ts": 7809391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7809563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454e00", "tid": 35568, "ts": 7809690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7809862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453dc0", "tid": 35568, "ts": 7809989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7810161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454510", "tid": 35568, "ts": 7810288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7810460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455480", "tid": 35568, "ts": 7810586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7810758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453e90", "tid": 35568, "ts": 7810885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454ed0", "tid": 35568, "ts": 7811184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455960", "tid": 35568, "ts": 7811482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456320", "tid": 35568, "ts": 7811780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455e40", "tid": 35568, "ts": 7812080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7812253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453f60", "tid": 35568, "ts": 7812380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7812551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455f10", "tid": 35568, "ts": 7812677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7812849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454030", "tid": 35568, "ts": 7812976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7813148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454100", "tid": 35568, "ts": 7813275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7813447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4545e0", "tid": 35568, "ts": 7813573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7813745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454fa0", "tid": 35568, "ts": 7813871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455140", "tid": 35568, "ts": 7814211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455210", "tid": 35568, "ts": 7814512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455620", "tid": 35568, "ts": 7814811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4556f0", "tid": 35568, "ts": 7815109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7815281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456730", "tid": 35568, "ts": 7815408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7815580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456800", "tid": 35568, "ts": 7815706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7815878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4586e0", "tid": 35568, "ts": 7816004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7816275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458e30", "tid": 35568, "ts": 7816407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7816581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458d60", "tid": 35568, "ts": 7816709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7816881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458470", "tid": 35568, "ts": 7817008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7817181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456f50", "tid": 35568, "ts": 7817308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7817481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457ab0", "tid": 35568, "ts": 7817608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7817779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457020", "tid": 35568, "ts": 7817906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4569a0", "tid": 35568, "ts": 7818206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457b80", "tid": 35568, "ts": 7818505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457c50", "tid": 35568, "ts": 7818804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459720", "tid": 35568, "ts": 7819103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7819276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4597f0", "tid": 35568, "ts": 7819403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7819574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456e80", "tid": 35568, "ts": 7819701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7819874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459cd0", "tid": 35568, "ts": 7820000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7820171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456a70", "tid": 35568, "ts": 7820298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7820469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458f00", "tid": 35568, "ts": 7820596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7820768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457910", "tid": 35568, "ts": 7820895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457d20", "tid": 35568, "ts": 7821193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458880", "tid": 35568, "ts": 7821493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456db0", "tid": 35568, "ts": 7821793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456b40", "tid": 35568, "ts": 7822091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7822262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458610", "tid": 35568, "ts": 7822413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7822586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457770", "tid": 35568, "ts": 7822712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7822885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457500", "tid": 35568, "ts": 7823012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7823183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459b30", "tid": 35568, "ts": 7823310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7823482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456c10", "tid": 35568, "ts": 7823608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7823781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457f90", "tid": 35568, "ts": 7823907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457290", "tid": 35568, "ts": 7824207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458c90", "tid": 35568, "ts": 7824506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456ce0", "tid": 35568, "ts": 7824803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4590a0", "tid": 35568, "ts": 7825102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7825274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457df0", "tid": 35568, "ts": 7825401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7825573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4570f0", "tid": 35568, "ts": 7825699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7825873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457ec0", "tid": 35568, "ts": 7826022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7826193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4571c0", "tid": 35568, "ts": 7826319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7826492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4575d0", "tid": 35568, "ts": 7826619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7826791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4587b0", "tid": 35568, "ts": 7826917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458a20", "tid": 35568, "ts": 7827216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457360", "tid": 35568, "ts": 7827515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4579e0", "tid": 35568, "ts": 7827813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458950", "tid": 35568, "ts": 7828110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7828282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459a60", "tid": 35568, "ts": 7828409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7828580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4598c0", "tid": 35568, "ts": 7828707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7828878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4583a0", "tid": 35568, "ts": 7829005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7829178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459240", "tid": 35568, "ts": 7829305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7829476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458060", "tid": 35568, "ts": 7829602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7829774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458af0", "tid": 35568, "ts": 7829900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458bc0", "tid": 35568, "ts": 7830201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457430", "tid": 35568, "ts": 7830498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458130", "tid": 35568, "ts": 7830796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458200", "tid": 35568, "ts": 7831094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7831267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458fd0", "tid": 35568, "ts": 7831394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7831566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4576a0", "tid": 35568, "ts": 7831746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7831919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457840", "tid": 35568, "ts": 7832046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7832219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459580", "tid": 35568, "ts": 7832346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7832518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4582d0", "tid": 35568, "ts": 7832644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7832816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459170", "tid": 35568, "ts": 7832944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7833116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459c00", "tid": 35568, "ts": 7833243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7833415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458540", "tid": 35568, "ts": 7833542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7833713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459310", "tid": 35568, "ts": 7833840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4593e0", "tid": 35568, "ts": 7834140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4594b0", "tid": 35568, "ts": 7834440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459650", "tid": 35568, "ts": 7834739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459990", "tid": 35568, "ts": 7835039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7835210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cf30", "tid": 35568, "ts": 7835337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7836847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b120", "tid": 35568, "ts": 7836977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7837149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b2c0", "tid": 35568, "ts": 7837276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7837448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a280", "tid": 35568, "ts": 7837575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7837747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c4a0", "tid": 35568, "ts": 7837874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45aeb0", "tid": 35568, "ts": 7838172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a9d0", "tid": 35568, "ts": 7838471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a690", "tid": 35568, "ts": 7838770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c230", "tid": 35568, "ts": 7839068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7839241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a420", "tid": 35568, "ts": 7839430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7839603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b050", "tid": 35568, "ts": 7839730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7839902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c980", "tid": 35568, "ts": 7840029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7840200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459f40", "tid": 35568, "ts": 7840327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7840498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45aaa0", "tid": 35568, "ts": 7840624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7840796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b1f0", "tid": 35568, "ts": 7840922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bef0", "tid": 35568, "ts": 7841221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bfc0", "tid": 35568, "ts": 7841519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d000", "tid": 35568, "ts": 7841817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a350", "tid": 35568, "ts": 7842115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7842287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45af80", "tid": 35568, "ts": 7842414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7842586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c8b0", "tid": 35568, "ts": 7842712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7842884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a1b0", "tid": 35568, "ts": 7843011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7843182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45be20", "tid": 35568, "ts": 7843309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7843481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459da0", "tid": 35568, "ts": 7843607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7843779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ca50", "tid": 35568, "ts": 7843905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d0d0", "tid": 35568, "ts": 7844204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a4f0", "tid": 35568, "ts": 7844502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cb20", "tid": 35568, "ts": 7844801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bc80", "tid": 35568, "ts": 7845099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7845269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a5c0", "tid": 35568, "ts": 7845396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7845568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a760", "tid": 35568, "ts": 7845695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7845868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cbf0", "tid": 35568, "ts": 7845994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7846167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c7e0", "tid": 35568, "ts": 7846294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7846465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ba10", "tid": 35568, "ts": 7846592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7846764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c570", "tid": 35568, "ts": 7846890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7847061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a830", "tid": 35568, "ts": 7847188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7847421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ccc0", "tid": 35568, "ts": 7847550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7847723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a900", "tid": 35568, "ts": 7847850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ce60", "tid": 35568, "ts": 7848147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ab70", "tid": 35568, "ts": 7848447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b600", "tid": 35568, "ts": 7848791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a0e0", "tid": 35568, "ts": 7849092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7849264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c090", "tid": 35568, "ts": 7849392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7849564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cd90", "tid": 35568, "ts": 7849690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7849862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c160", "tid": 35568, "ts": 7849989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7850160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459e70", "tid": 35568, "ts": 7850286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7850457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c300", "tid": 35568, "ts": 7850584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7850757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a010", "tid": 35568, "ts": 7850883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c3d0", "tid": 35568, "ts": 7851181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ac40", "tid": 35568, "ts": 7851478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c640", "tid": 35568, "ts": 7851777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ad10", "tid": 35568, "ts": 7852075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7852247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ade0", "tid": 35568, "ts": 7852373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7852545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b390", "tid": 35568, "ts": 7852671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7852843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b460", "tid": 35568, "ts": 7852968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7853141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b870", "tid": 35568, "ts": 7853267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7853439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b530", "tid": 35568, "ts": 7853565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7853736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b6d0", "tid": 35568, "ts": 7853861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b7a0", "tid": 35568, "ts": 7854159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b940", "tid": 35568, "ts": 7854458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bae0", "tid": 35568, "ts": 7854756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bbb0", "tid": 35568, "ts": 7855053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7855226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bd50", "tid": 35568, "ts": 7855353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7855525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c710", "tid": 35568, "ts": 7855651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7855823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45dd00", "tid": 35568, "ts": 7855950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7856122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460330", "tid": 35568, "ts": 7856248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7856420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d4e0", "tid": 35568, "ts": 7856547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7856719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f2f0", "tid": 35568, "ts": 7856845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fe50", "tid": 35568, "ts": 7857144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d1a0", "tid": 35568, "ts": 7857442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45da90", "tid": 35568, "ts": 7857739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d5b0", "tid": 35568, "ts": 7858037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7858208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45dea0", "tid": 35568, "ts": 7858334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7858505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f970", "tid": 35568, "ts": 7858632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7858804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fcb0", "tid": 35568, "ts": 7858929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d680", "tid": 35568, "ts": 7859229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460400", "tid": 35568, "ts": 7859527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e5f0", "tid": 35568, "ts": 7859826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f630", "tid": 35568, "ts": 7860123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7860295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4604d0", "tid": 35568, "ts": 7860422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7860593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e6c0", "tid": 35568, "ts": 7860720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7860891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45efb0", "tid": 35568, "ts": 7861018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7861190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d750", "tid": 35568, "ts": 7861317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7861490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fa40", "tid": 35568, "ts": 7861616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7861788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45dc30", "tid": 35568, "ts": 7861914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7862086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45eee0", "tid": 35568, "ts": 7862212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7862384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ead0", "tid": 35568, "ts": 7862510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7862682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d820", "tid": 35568, "ts": 7862809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d270", "tid": 35568, "ts": 7863194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f220", "tid": 35568, "ts": 7863504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d8f0", "tid": 35568, "ts": 7863804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45df70", "tid": 35568, "ts": 7864103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7864274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e2b0", "tid": 35568, "ts": 7864401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7864614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d340", "tid": 35568, "ts": 7864741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7864914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fb10", "tid": 35568, "ts": 7865040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7865213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f150", "tid": 35568, "ts": 7865339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7865510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4600c0", "tid": 35568, "ts": 7865636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7865808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f7d0", "tid": 35568, "ts": 7865935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f080", "tid": 35568, "ts": 7866232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d9c0", "tid": 35568, "ts": 7866530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e450", "tid": 35568, "ts": 7866828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e790", "tid": 35568, "ts": 7867125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7867296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f3c0", "tid": 35568, "ts": 7867423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7867594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fd80", "tid": 35568, "ts": 7867720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7867891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f490", "tid": 35568, "ts": 7868017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7868188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f700", "tid": 35568, "ts": 7868314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7868484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f560", "tid": 35568, "ts": 7868611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7868782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e040", "tid": 35568, "ts": 7868909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7869080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ff20", "tid": 35568, "ts": 7869207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7869378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45db60", "tid": 35568, "ts": 7869504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7869675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fff0", "tid": 35568, "ts": 7869862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e520", "tid": 35568, "ts": 7870161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e380", "tid": 35568, "ts": 7870459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e860", "tid": 35568, "ts": 7870758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ec70", "tid": 35568, "ts": 7871054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7871226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f8a0", "tid": 35568, "ts": 7871352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7871523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ddd0", "tid": 35568, "ts": 7871650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7871821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e930", "tid": 35568, "ts": 7871947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7872119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ea00", "tid": 35568, "ts": 7872245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7872416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e110", "tid": 35568, "ts": 7872542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7872714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d410", "tid": 35568, "ts": 7872842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e1e0", "tid": 35568, "ts": 7873140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460190", "tid": 35568, "ts": 7873439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fbe0", "tid": 35568, "ts": 7873737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45eba0", "tid": 35568, "ts": 7874034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7874205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ed40", "tid": 35568, "ts": 7874331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7874502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460260", "tid": 35568, "ts": 7874628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7874800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ee10", "tid": 35568, "ts": 7874927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463180", "tid": 35568, "ts": 7875225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460cf0", "tid": 35568, "ts": 7875522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460b50", "tid": 35568, "ts": 7875820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461780", "tid": 35568, "ts": 7876117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7876287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463250", "tid": 35568, "ts": 7876414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7876586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460c20", "tid": 35568, "ts": 7876711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7876882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4605a0", "tid": 35568, "ts": 7877009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7877181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460670", "tid": 35568, "ts": 7877307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7877478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4608e0", "tid": 35568, "ts": 7877604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7877775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4626f0", "tid": 35568, "ts": 7877901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7878072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463320", "tid": 35568, "ts": 7878198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7878370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463800", "tid": 35568, "ts": 7878587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7878801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4609b0", "tid": 35568, "ts": 7878929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4634c0", "tid": 35568, "ts": 7879229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460740", "tid": 35568, "ts": 7879528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461850", "tid": 35568, "ts": 7879827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461d30", "tid": 35568, "ts": 7880126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7880298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462210", "tid": 35568, "ts": 7880424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7880597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460dc0", "tid": 35568, "ts": 7880724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7880896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460e90", "tid": 35568, "ts": 7881023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7881195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461c60", "tid": 35568, "ts": 7881321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7881492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460f60", "tid": 35568, "ts": 7881659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7881832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462f10", "tid": 35568, "ts": 7881959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7882131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4611d0", "tid": 35568, "ts": 7882256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7882427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461030", "tid": 35568, "ts": 7882553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7882725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460810", "tid": 35568, "ts": 7882851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461920", "tid": 35568, "ts": 7883149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462a30", "tid": 35568, "ts": 7883448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462960", "tid": 35568, "ts": 7883747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461e00", "tid": 35568, "ts": 7884045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7884217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4619f0", "tid": 35568, "ts": 7884343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7884515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462620", "tid": 35568, "ts": 7884641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7884813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4633f0", "tid": 35568, "ts": 7884939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7885111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462070", "tid": 35568, "ts": 7885238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7885410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462140", "tid": 35568, "ts": 7885536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7885708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462890", "tid": 35568, "ts": 7885835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4638d0", "tid": 35568, "ts": 7886132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4627c0", "tid": 35568, "ts": 7886430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462b00", "tid": 35568, "ts": 7886727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460a80", "tid": 35568, "ts": 7887025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7887197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462bd0", "tid": 35568, "ts": 7887322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7887495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461100", "tid": 35568, "ts": 7887621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7887793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4612a0", "tid": 35568, "ts": 7887919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461370", "tid": 35568, "ts": 7888217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461440", "tid": 35568, "ts": 7888514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461510", "tid": 35568, "ts": 7888813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462fe0", "tid": 35568, "ts": 7889110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7889281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4615e0", "tid": 35568, "ts": 7889408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7889580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4616b0", "tid": 35568, "ts": 7889706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7889877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461ed0", "tid": 35568, "ts": 7890003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7890175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4630b0", "tid": 35568, "ts": 7890301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7890473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463590", "tid": 35568, "ts": 7890599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7890771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4622e0", "tid": 35568, "ts": 7890897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461ac0", "tid": 35568, "ts": 7891194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461b90", "tid": 35568, "ts": 7891493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461fa0", "tid": 35568, "ts": 7891790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462ca0", "tid": 35568, "ts": 7892088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7892259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462d70", "tid": 35568, "ts": 7892385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7892556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4623b0", "tid": 35568, "ts": 7892683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7892855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462480", "tid": 35568, "ts": 7892980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7893153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463660", "tid": 35568, "ts": 7893279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7893450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462550", "tid": 35568, "ts": 7893576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7893748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462e40", "tid": 35568, "ts": 7893874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463730", "tid": 35568, "ts": 7894182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4664b0", "tid": 35568, "ts": 7894482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466580", "tid": 35568, "ts": 7894803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4652d0", "tid": 35568, "ts": 7895101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7895273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466310", "tid": 35568, "ts": 7895399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7895570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4645d0", "tid": 35568, "ts": 7895697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7895869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464020", "tid": 35568, "ts": 7895996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7896168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4667f0", "tid": 35568, "ts": 7896295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7896467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4640f0", "tid": 35568, "ts": 7896594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7896765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465e30", "tid": 35568, "ts": 7896891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464ab0", "tid": 35568, "ts": 7897188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463e80", "tid": 35568, "ts": 7897485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4668c0", "tid": 35568, "ts": 7897783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464290", "tid": 35568, "ts": 7898082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7898254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4641c0", "tid": 35568, "ts": 7898421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7898592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4657b0", "tid": 35568, "ts": 7898720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7898892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463f50", "tid": 35568, "ts": 7899018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7899190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4646a0", "tid": 35568, "ts": 7899316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7899488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466650", "tid": 35568, "ts": 7899615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7899787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466c00", "tid": 35568, "ts": 7899913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7900086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464360", "tid": 35568, "ts": 7900233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7900405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464b80", "tid": 35568, "ts": 7900532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7900704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465540", "tid": 35568, "ts": 7900831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464430", "tid": 35568, "ts": 7901129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464770", "tid": 35568, "ts": 7901427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4653a0", "tid": 35568, "ts": 7901726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464500", "tid": 35568, "ts": 7902025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7902196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463db0", "tid": 35568, "ts": 7902322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7902494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4656e0", "tid": 35568, "ts": 7902619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7902792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464840", "tid": 35568, "ts": 7902918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466a60", "tid": 35568, "ts": 7903216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465130", "tid": 35568, "ts": 7903516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465610", "tid": 35568, "ts": 7903816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464910", "tid": 35568, "ts": 7904115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7904288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465f00", "tid": 35568, "ts": 7904414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7904585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466990", "tid": 35568, "ts": 7904711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7904883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4649e0", "tid": 35568, "ts": 7905010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7905182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464c50", "tid": 35568, "ts": 7905308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7905481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464d20", "tid": 35568, "ts": 7905608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7905779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466720", "tid": 35568, "ts": 7905906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464df0", "tid": 35568, "ts": 7906204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464ec0", "tid": 35568, "ts": 7906501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466240", "tid": 35568, "ts": 7906801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4639a0", "tid": 35568, "ts": 7907098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7907271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466b30", "tid": 35568, "ts": 7907397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7907569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466cd0", "tid": 35568, "ts": 7907695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7907868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463c10", "tid": 35568, "ts": 7907994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7908166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4660a0", "tid": 35568, "ts": 7908292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7908464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465470", "tid": 35568, "ts": 7908591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7908763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464f90", "tid": 35568, "ts": 7908889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7909061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465200", "tid": 35568, "ts": 7909188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7909360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465060", "tid": 35568, "ts": 7909486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7909658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463a70", "tid": 35568, "ts": 7909785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7910132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465880", "tid": 35568, "ts": 7910314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7910580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465950", "tid": 35568, "ts": 7910740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463b40", "tid": 35568, "ts": 7911130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465bc0", "tid": 35568, "ts": 7911429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465a20", "tid": 35568, "ts": 7911728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465fd0", "tid": 35568, "ts": 7912026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7912197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466170", "tid": 35568, "ts": 7912324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7912496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4663e0", "tid": 35568, "ts": 7912623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7912794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465af0", "tid": 35568, "ts": 7912920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463ce0", "tid": 35568, "ts": 7913220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465c90", "tid": 35568, "ts": 7913519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465d60", "tid": 35568, "ts": 7913817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4698b0", "tid": 35568, "ts": 7914115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7914287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468a10", "tid": 35568, "ts": 7914413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7914585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467010", "tid": 35568, "ts": 7914711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7914925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469570", "tid": 35568, "ts": 7915057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7915229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4671b0", "tid": 35568, "ts": 7915355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7915527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467350", "tid": 35568, "ts": 7915654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7915825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466da0", "tid": 35568, "ts": 7915952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7916124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469f30", "tid": 35568, "ts": 7916251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7916423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468530", "tid": 35568, "ts": 7916549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7916722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468940", "tid": 35568, "ts": 7916848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467280", "tid": 35568, "ts": 7917147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469300", "tid": 35568, "ts": 7917447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467420", "tid": 35568, "ts": 7917745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469b20", "tid": 35568, "ts": 7918044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7918216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4670e0", "tid": 35568, "ts": 7918342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7918516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4682c0", "tid": 35568, "ts": 7918643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7918815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468ae0", "tid": 35568, "ts": 7918942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7919114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a000", "tid": 35568, "ts": 7919241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7919414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469bf0", "tid": 35568, "ts": 7919540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7919713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468870", "tid": 35568, "ts": 7919840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467830", "tid": 35568, "ts": 7920138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468fc0", "tid": 35568, "ts": 7920436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466e70", "tid": 35568, "ts": 7920735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467690", "tid": 35568, "ts": 7921033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7921205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469980", "tid": 35568, "ts": 7921331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7921503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467900", "tid": 35568, "ts": 7921629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7921801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469090", "tid": 35568, "ts": 7921928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466f40", "tid": 35568, "ts": 7922227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4674f0", "tid": 35568, "ts": 7922525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468c80", "tid": 35568, "ts": 7922824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469160", "tid": 35568, "ts": 7923122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7923293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4694a0", "tid": 35568, "ts": 7923420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7923592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469230", "tid": 35568, "ts": 7923718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7923889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4686d0", "tid": 35568, "ts": 7924015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7924187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469710", "tid": 35568, "ts": 7924314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7924485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4679d0", "tid": 35568, "ts": 7924611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7924783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468600", "tid": 35568, "ts": 7924909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7925081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467de0", "tid": 35568, "ts": 7925208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7925379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4693d0", "tid": 35568, "ts": 7925578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7925750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468460", "tid": 35568, "ts": 7925876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469640", "tid": 35568, "ts": 7926176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4675c0", "tid": 35568, "ts": 7926474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a0d0", "tid": 35568, "ts": 7926772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467760", "tid": 35568, "ts": 7927070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7927241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467f80", "tid": 35568, "ts": 7927368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7927540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467aa0", "tid": 35568, "ts": 7927667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7927838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4697e0", "tid": 35568, "ts": 7927964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7928135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469a50", "tid": 35568, "ts": 7928261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7928432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467b70", "tid": 35568, "ts": 7928558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7928729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467c40", "tid": 35568, "ts": 7928856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469cc0", "tid": 35568, "ts": 7929154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467d10", "tid": 35568, "ts": 7929453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467eb0", "tid": 35568, "ts": 7929751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468050", "tid": 35568, "ts": 7930050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7930223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469d90", "tid": 35568, "ts": 7930350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7930522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469e60", "tid": 35568, "ts": 7930650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7930822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468120", "tid": 35568, "ts": 7930947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7931118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4681f0", "tid": 35568, "ts": 7931245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7931417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468390", "tid": 35568, "ts": 7931543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7931716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4687a0", "tid": 35568, "ts": 7931843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468bb0", "tid": 35568, "ts": 7932141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468d50", "tid": 35568, "ts": 7932440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468e20", "tid": 35568, "ts": 7932738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468ef0", "tid": 35568, "ts": 7933036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7933208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b110", "tid": 35568, "ts": 7933334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7933505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b2b0", "tid": 35568, "ts": 7933632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7933803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ccb0", "tid": 35568, "ts": 7933929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a8f0", "tid": 35568, "ts": 7934227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bc70", "tid": 35568, "ts": 7934525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46aa90", "tid": 35568, "ts": 7934824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46aea0", "tid": 35568, "ts": 7935122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7935335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d260", "tid": 35568, "ts": 7935464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7935637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a270", "tid": 35568, "ts": 7935764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7935934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a9c0", "tid": 35568, "ts": 7936061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7936234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a820", "tid": 35568, "ts": 7936360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7936532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cff0", "tid": 35568, "ts": 7936659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7936830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46af70", "tid": 35568, "ts": 7936957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7937129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b040", "tid": 35568, "ts": 7937255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7937427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a4e0", "tid": 35568, "ts": 7937553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7937725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b930", "tid": 35568, "ts": 7937853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46be10", "tid": 35568, "ts": 7938152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ab60", "tid": 35568, "ts": 7938450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bee0", "tid": 35568, "ts": 7938748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d0c0", "tid": 35568, "ts": 7939046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7939217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cd80", "tid": 35568, "ts": 7939344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7939516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d400", "tid": 35568, "ts": 7939642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7939814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c7d0", "tid": 35568, "ts": 7939940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7940111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c3c0", "tid": 35568, "ts": 7940238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7940410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b1e0", "tid": 35568, "ts": 7940536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7940708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bd40", "tid": 35568, "ts": 7940833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b790", "tid": 35568, "ts": 7941196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cbe0", "tid": 35568, "ts": 7941496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a5b0", "tid": 35568, "ts": 7941794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c970", "tid": 35568, "ts": 7942093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7942264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c560", "tid": 35568, "ts": 7942391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7942562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a1a0", "tid": 35568, "ts": 7942688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7942860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c630", "tid": 35568, "ts": 7942986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7943158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c8a0", "tid": 35568, "ts": 7943284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7943455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bad0", "tid": 35568, "ts": 7943581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7943753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ce50", "tid": 35568, "ts": 7943880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c700", "tid": 35568, "ts": 7944178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bfb0", "tid": 35568, "ts": 7944477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b5f0", "tid": 35568, "ts": 7944775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d330", "tid": 35568, "ts": 7945074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7945246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c080", "tid": 35568, "ts": 7945372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7945544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a680", "tid": 35568, "ts": 7945670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7945841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ca40", "tid": 35568, "ts": 7945968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7946141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b860", "tid": 35568, "ts": 7946267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7946439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b380", "tid": 35568, "ts": 7946566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7946738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c150", "tid": 35568, "ts": 7946865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7947037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d4d0", "tid": 35568, "ts": 7947222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7947394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cb10", "tid": 35568, "ts": 7947522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7947694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ba00", "tid": 35568, "ts": 7947863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cf20", "tid": 35568, "ts": 7948164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d190", "tid": 35568, "ts": 7948464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a340", "tid": 35568, "ts": 7948764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c2f0", "tid": 35568, "ts": 7949062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7949234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b6c0", "tid": 35568, "ts": 7949361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7949532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a410", "tid": 35568, "ts": 7949659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7949831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a750", "tid": 35568, "ts": 7949958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7950130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ac30", "tid": 35568, "ts": 7950256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7950429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ad00", "tid": 35568, "ts": 7950555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7950726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c490", "tid": 35568, "ts": 7950853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bba0", "tid": 35568, "ts": 7951151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46add0", "tid": 35568, "ts": 7951450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b450", "tid": 35568, "ts": 7951750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b520", "tid": 35568, "ts": 7952049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7952221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c220", "tid": 35568, "ts": 7952349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7952520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e1d0", "tid": 35568, "ts": 7952647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7952819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d5a0", "tid": 35568, "ts": 7952945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7953117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d670", "tid": 35568, "ts": 7953244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7953415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4703f0", "tid": 35568, "ts": 7953542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7953714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46db50", "tid": 35568, "ts": 7953841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4704c0", "tid": 35568, "ts": 7954138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46eed0", "tid": 35568, "ts": 7954438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d9b0", "tid": 35568, "ts": 7954737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470590", "tid": 35568, "ts": 7955036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7955208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46dc20", "tid": 35568, "ts": 7955335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7955507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46efa0", "tid": 35568, "ts": 7955633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7955806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470660", "tid": 35568, "ts": 7955932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7956105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f070", "tid": 35568, "ts": 7956231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7956403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46de90", "tid": 35568, "ts": 7956530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7956712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e2a0", "tid": 35568, "ts": 7956840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f960", "tid": 35568, "ts": 7957138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470730", "tid": 35568, "ts": 7957437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fca0", "tid": 35568, "ts": 7957736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fa30", "tid": 35568, "ts": 7958034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7958205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f140", "tid": 35568, "ts": 7958332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7958505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f2e0", "tid": 35568, "ts": 7958632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7958803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d740", "tid": 35568, "ts": 7958929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46eb90", "tid": 35568, "ts": 7959228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f210", "tid": 35568, "ts": 7959526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e370", "tid": 35568, "ts": 7959824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e510", "tid": 35568, "ts": 7960122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7960293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fb00", "tid": 35568, "ts": 7960419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7960592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f550", "tid": 35568, "ts": 7960718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7960890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e9f0", "tid": 35568, "ts": 7961017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7961189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fbd0", "tid": 35568, "ts": 7961316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7961488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470800", "tid": 35568, "ts": 7961614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7961786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d810", "tid": 35568, "ts": 7961913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f480", "tid": 35568, "ts": 7962210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f890", "tid": 35568, "ts": 7962509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f3b0", "tid": 35568, "ts": 7962807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46dcf0", "tid": 35568, "ts": 7963105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7963276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ddc0", "tid": 35568, "ts": 7963403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7963575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e440", "tid": 35568, "ts": 7963701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7963873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46eac0", "tid": 35568, "ts": 7964000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7964172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e030", "tid": 35568, "ts": 7964300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7964471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f7c0", "tid": 35568, "ts": 7964597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7964769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e780", "tid": 35568, "ts": 7964896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470180", "tid": 35568, "ts": 7965194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f620", "tid": 35568, "ts": 7965492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46df60", "tid": 35568, "ts": 7965792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e5e0", "tid": 35568, "ts": 7966091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7966262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4708d0", "tid": 35568, "ts": 7966389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7966561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fd70", "tid": 35568, "ts": 7966689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7966860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ec60", "tid": 35568, "ts": 7966987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7967158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470250", "tid": 35568, "ts": 7967284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7967456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d8e0", "tid": 35568, "ts": 7967584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7967756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f6f0", "tid": 35568, "ts": 7967882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e6b0", "tid": 35568, "ts": 7968181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46da80", "tid": 35568, "ts": 7968479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e100", "tid": 35568, "ts": 7968778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fe40", "tid": 35568, "ts": 7969077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7969248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e850", "tid": 35568, "ts": 7969375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7969547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e920", "tid": 35568, "ts": 7969674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7969845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ed30", "tid": 35568, "ts": 7969972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7970143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ee00", "tid": 35568, "ts": 7970270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7970441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470320", "tid": 35568, "ts": 7970567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7970738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4700b0", "tid": 35568, "ts": 7970865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ff10", "tid": 35568, "ts": 7971162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ffe0", "tid": 35568, "ts": 7971460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472f00", "tid": 35568, "ts": 7971758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472060", "tid": 35568, "ts": 7972055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7972227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470c10", "tid": 35568, "ts": 7972418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7972590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4734b0", "tid": 35568, "ts": 7972718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7972889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4722d0", "tid": 35568, "ts": 7973016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7973188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472e30", "tid": 35568, "ts": 7973314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7973485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4738c0", "tid": 35568, "ts": 7973611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7973783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473720", "tid": 35568, "ts": 7973910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473650", "tid": 35568, "ts": 7974208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471020", "tid": 35568, "ts": 7974506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4737f0", "tid": 35568, "ts": 7974805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473990", "tid": 35568, "ts": 7975103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7975274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4710f0", "tid": 35568, "ts": 7975401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7975574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4723a0", "tid": 35568, "ts": 7975700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7975871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472d60", "tid": 35568, "ts": 7975999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7976171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470ce0", "tid": 35568, "ts": 7976297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7976469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473c00", "tid": 35568, "ts": 7976596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7976767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472fd0", "tid": 35568, "ts": 7976893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472470", "tid": 35568, "ts": 7977191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471770", "tid": 35568, "ts": 7977490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473b30", "tid": 35568, "ts": 7977788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471290", "tid": 35568, "ts": 7978087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7978258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473a60", "tid": 35568, "ts": 7978385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7978556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470db0", "tid": 35568, "ts": 7978683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7978855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473170", "tid": 35568, "ts": 7978982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7979154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471430", "tid": 35568, "ts": 7979280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7979453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470e80", "tid": 35568, "ts": 7979580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7979819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473cd0", "tid": 35568, "ts": 7979948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7980125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471500", "tid": 35568, "ts": 7980253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7980433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471910", "tid": 35568, "ts": 7980571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7980784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471d20", "tid": 35568, "ts": 7980917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4709a0", "tid": 35568, "ts": 7981216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471f90", "tid": 35568, "ts": 7981515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472540", "tid": 35568, "ts": 7981814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472200", "tid": 35568, "ts": 7982112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7982284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470a70", "tid": 35568, "ts": 7982411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7982583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4730a0", "tid": 35568, "ts": 7982710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7982882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471c50", "tid": 35568, "ts": 7983010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7983180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470b40", "tid": 35568, "ts": 7983308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7983480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472610", "tid": 35568, "ts": 7983607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7983779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473240", "tid": 35568, "ts": 7983905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4715d0", "tid": 35568, "ts": 7984203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470f50", "tid": 35568, "ts": 7984502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471ec0", "tid": 35568, "ts": 7984800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473310", "tid": 35568, "ts": 7985099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7985270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471840", "tid": 35568, "ts": 7985397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7985568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4711c0", "tid": 35568, "ts": 7985695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7985866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471360", "tid": 35568, "ts": 7985993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7986164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4716a0", "tid": 35568, "ts": 7986291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7986462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4726e0", "tid": 35568, "ts": 7986590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7986762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4719e0", "tid": 35568, "ts": 7986914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7987086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471b80", "tid": 35568, "ts": 7987214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7987385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4733e0", "tid": 35568, "ts": 7987511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7987682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471ab0", "tid": 35568, "ts": 7987809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471df0", "tid": 35568, "ts": 7988164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472130", "tid": 35568, "ts": 7988463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4727b0", "tid": 35568, "ts": 7988761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472880", "tid": 35568, "ts": 7989059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7989232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472950", "tid": 35568, "ts": 7989359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7989531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472a20", "tid": 35568, "ts": 7989658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7989829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472af0", "tid": 35568, "ts": 7989956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7990128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472bc0", "tid": 35568, "ts": 7990255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7990426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472c90", "tid": 35568, "ts": 7990552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7990724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473580", "tid": 35568, "ts": 7990850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474830", "tid": 35568, "ts": 7991147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4751f0", "tid": 35568, "ts": 7991445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474350", "tid": 35568, "ts": 7991743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475d50", "tid": 35568, "ts": 7992041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7992212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4756d0", "tid": 35568, "ts": 7992339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7992511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4749d0", "tid": 35568, "ts": 7992638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7992809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474010", "tid": 35568, "ts": 7992936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7993107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4752c0", "tid": 35568, "ts": 7993234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7993406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475600", "tid": 35568, "ts": 7993533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7993704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474aa0", "tid": 35568, "ts": 7993831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475e20", "tid": 35568, "ts": 7994128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474420", "tid": 35568, "ts": 7994426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476b20", "tid": 35568, "ts": 7994746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474de0", "tid": 35568, "ts": 7995045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7995217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476bf0", "tid": 35568, "ts": 7995344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7995515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474690", "tid": 35568, "ts": 7995642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7995814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474b70", "tid": 35568, "ts": 7995941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7996111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475ef0", "tid": 35568, "ts": 7996238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7996410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475fc0", "tid": 35568, "ts": 7996537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7996708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4740e0", "tid": 35568, "ts": 7996834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475530", "tid": 35568, "ts": 7997133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476160", "tid": 35568, "ts": 7997430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476cc0", "tid": 35568, "ts": 7997728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474c40", "tid": 35568, "ts": 7998025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7998196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476230", "tid": 35568, "ts": 7998322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7998493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476d90", "tid": 35568, "ts": 7998621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7998792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4741b0", "tid": 35568, "ts": 7998918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477000", "tid": 35568, "ts": 7999217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476090", "tid": 35568, "ts": 7999514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4768b0", "tid": 35568, "ts": 7999813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475390", "tid": 35568, "ts": 8000112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8000283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4767e0", "tid": 35568, "ts": 8000410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8000581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475460", "tid": 35568, "ts": 8000708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8000879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474900", "tid": 35568, "ts": 8001006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8001177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476300", "tid": 35568, "ts": 8001303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8001475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4757a0", "tid": 35568, "ts": 8001602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8001774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4770d0", "tid": 35568, "ts": 8001901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4763d0", "tid": 35568, "ts": 8002200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4744f0", "tid": 35568, "ts": 8002497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473da0", "tid": 35568, "ts": 8002794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4764a0", "tid": 35568, "ts": 8003093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8003264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474f80", "tid": 35568, "ts": 8003391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8003650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474d10", "tid": 35568, "ts": 8003865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475870", "tid": 35568, "ts": 8004190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475a10", "tid": 35568, "ts": 8004498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476980", "tid": 35568, "ts": 8004802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476570", "tid": 35568, "ts": 8005106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8005279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4745c0", "tid": 35568, "ts": 8005408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8005582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473e70", "tid": 35568, "ts": 8005710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8005885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476640", "tid": 35568, "ts": 8006014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8006232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475940", "tid": 35568, "ts": 8006361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8006536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474eb0", "tid": 35568, "ts": 8006664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8006837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476710", "tid": 35568, "ts": 8006965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8007137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475ae0", "tid": 35568, "ts": 8007265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8007437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475050", "tid": 35568, "ts": 8007564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8007738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474280", "tid": 35568, "ts": 8007866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476a50", "tid": 35568, "ts": 8008167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475bb0", "tid": 35568, "ts": 8008466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473f40", "tid": 35568, "ts": 8008765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475c80", "tid": 35568, "ts": 8009067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8009239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474760", "tid": 35568, "ts": 8009400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8009573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476e60", "tid": 35568, "ts": 8009702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8009874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476f30", "tid": 35568, "ts": 8010002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8010174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475120", "tid": 35568, "ts": 8010301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8010472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478040", "tid": 35568, "ts": 8010601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8010774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a4d0", "tid": 35568, "ts": 8010902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8011074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4771a0", "tid": 35568, "ts": 8011202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8011375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479220", "tid": 35568, "ts": 8011502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8011675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477b60", "tid": 35568, "ts": 8011865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477dd0", "tid": 35568, "ts": 8012166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479d80", "tid": 35568, "ts": 8012466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479080", "tid": 35568, "ts": 8012767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478d40", "tid": 35568, "ts": 8013067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8013239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479970", "tid": 35568, "ts": 8013366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8013538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477d00", "tid": 35568, "ts": 8013665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8013838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4775b0", "tid": 35568, "ts": 8014010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8014183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a0c0", "tid": 35568, "ts": 8014310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8014483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479cb0", "tid": 35568, "ts": 8014611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8014783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478450", "tid": 35568, "ts": 8014911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8015084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478110", "tid": 35568, "ts": 8015210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8015382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479490", "tid": 35568, "ts": 8015509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8015681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477ea0", "tid": 35568, "ts": 8015864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479e50", "tid": 35568, "ts": 8016164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478ee0", "tid": 35568, "ts": 8016462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478a00", "tid": 35568, "ts": 8016761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477820", "tid": 35568, "ts": 8017060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8017232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478ad0", "tid": 35568, "ts": 8017359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8017531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4774e0", "tid": 35568, "ts": 8017658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8017829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a190", "tid": 35568, "ts": 8017956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8018130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4798a0", "tid": 35568, "ts": 8018257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8018430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479f20", "tid": 35568, "ts": 8018556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8018729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4781e0", "tid": 35568, "ts": 8018856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8019028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479700", "tid": 35568, "ts": 8019155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8019384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478790", "tid": 35568, "ts": 8019539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8019716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a260", "tid": 35568, "ts": 8019879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479ff0", "tid": 35568, "ts": 8020178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477270", "tid": 35568, "ts": 8020477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479a40", "tid": 35568, "ts": 8020776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479630", "tid": 35568, "ts": 8021075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8021248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477f70", "tid": 35568, "ts": 8021376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8021549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4782b0", "tid": 35568, "ts": 8021675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8021847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a400", "tid": 35568, "ts": 8021973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8022145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4797d0", "tid": 35568, "ts": 8022271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8022443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477410", "tid": 35568, "ts": 8022570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8022742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478ba0", "tid": 35568, "ts": 8022870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478380", "tid": 35568, "ts": 8023169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477750", "tid": 35568, "ts": 8023467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a330", "tid": 35568, "ts": 8023766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478c70", "tid": 35568, "ts": 8024066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8024237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479be0", "tid": 35568, "ts": 8024364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8024536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479b10", "tid": 35568, "ts": 8024663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8024836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477680", "tid": 35568, "ts": 8024963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8025135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477340", "tid": 35568, "ts": 8025263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8025435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4778f0", "tid": 35568, "ts": 8025562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8025735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4779c0", "tid": 35568, "ts": 8025862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477a90", "tid": 35568, "ts": 8026185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477c30", "tid": 35568, "ts": 8026484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4785f0", "tid": 35568, "ts": 8026785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478520", "tid": 35568, "ts": 8027084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8027256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479560", "tid": 35568, "ts": 8027383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8027554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4786c0", "tid": 35568, "ts": 8027681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8027854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478860", "tid": 35568, "ts": 8027980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8028152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478e10", "tid": 35568, "ts": 8028279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8028453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479150", "tid": 35568, "ts": 8028580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8028751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478930", "tid": 35568, "ts": 8028879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478fb0", "tid": 35568, "ts": 8029178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4792f0", "tid": 35568, "ts": 8029477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4793c0", "tid": 35568, "ts": 8029776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c480", "tid": 35568, "ts": 8030076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8030249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d8d0", "tid": 35568, "ts": 8030377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8030549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c2e0", "tid": 35568, "ts": 8030676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8030848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cb00", "tid": 35568, "ts": 8030975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8031147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47af60", "tid": 35568, "ts": 8031274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8031445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a9b0", "tid": 35568, "ts": 8031572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8031745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cca0", "tid": 35568, "ts": 8031871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c6f0", "tid": 35568, "ts": 8032171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ae90", "tid": 35568, "ts": 8032470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cbd0", "tid": 35568, "ts": 8032769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ca30", "tid": 35568, "ts": 8033069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8033241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a5a0", "tid": 35568, "ts": 8033368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8033541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c3b0", "tid": 35568, "ts": 8033668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8033839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b780", "tid": 35568, "ts": 8033967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8034140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b370", "tid": 35568, "ts": 8034267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8034440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a670", "tid": 35568, "ts": 8034567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8034738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b1d0", "tid": 35568, "ts": 8034930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8035102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b030", "tid": 35568, "ts": 8035230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8035403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d0b0", "tid": 35568, "ts": 8035530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8035703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b2a0", "tid": 35568, "ts": 8035830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c210", "tid": 35568, "ts": 8036129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bac0", "tid": 35568, "ts": 8036428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ac20", "tid": 35568, "ts": 8036726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bed0", "tid": 35568, "ts": 8037026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8037198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cd70", "tid": 35568, "ts": 8037324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8037496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b440", "tid": 35568, "ts": 8037622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8037795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b6b0", "tid": 35568, "ts": 8037922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b9f0", "tid": 35568, "ts": 8038223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bfa0", "tid": 35568, "ts": 8038523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d320", "tid": 35568, "ts": 8038823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c960", "tid": 35568, "ts": 8039122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8039294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a740", "tid": 35568, "ts": 8039422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8039594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ce40", "tid": 35568, "ts": 8039721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8039893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a810", "tid": 35568, "ts": 8040020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8040192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cf10", "tid": 35568, "ts": 8040320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8040492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a8e0", "tid": 35568, "ts": 8040619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8040793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47aa80", "tid": 35568, "ts": 8040920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c620", "tid": 35568, "ts": 8041221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b100", "tid": 35568, "ts": 8041519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b510", "tid": 35568, "ts": 8041818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c550", "tid": 35568, "ts": 8042117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8042289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bb90", "tid": 35568, "ts": 8042416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8042588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cfe0", "tid": 35568, "ts": 8042715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8042888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ab50", "tid": 35568, "ts": 8043015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8043186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d180", "tid": 35568, "ts": 8043313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8043485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c7c0", "tid": 35568, "ts": 8043613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8043784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47acf0", "tid": 35568, "ts": 8043911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d250", "tid": 35568, "ts": 8044212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b850", "tid": 35568, "ts": 8044513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b5e0", "tid": 35568, "ts": 8044812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b920", "tid": 35568, "ts": 8045113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8045285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47adc0", "tid": 35568, "ts": 8045413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8045585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d3f0", "tid": 35568, "ts": 8045713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8045886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bc60", "tid": 35568, "ts": 8046012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8046184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bd30", "tid": 35568, "ts": 8046312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8046484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47be00", "tid": 35568, "ts": 8046611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8046783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c070", "tid": 35568, "ts": 8046910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8047126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c140", "tid": 35568, "ts": 8047254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8047427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c890", "tid": 35568, "ts": 8047555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8047728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d4c0", "tid": 35568, "ts": 8047855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d590", "tid": 35568, "ts": 8048154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d660", "tid": 35568, "ts": 8048454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d730", "tid": 35568, "ts": 8048752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d800", "tid": 35568, "ts": 8049052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8049225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e840", "tid": 35568, "ts": 8049351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8049524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4804b0", "tid": 35568, "ts": 8049651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8049824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480c00", "tid": 35568, "ts": 8049952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8050124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47eb80", "tid": 35568, "ts": 8050251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8050432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ff00", "tid": 35568, "ts": 8050561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8050733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f060", "tid": 35568, "ts": 8050861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fbc0", "tid": 35568, "ts": 8051160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ef90", "tid": 35568, "ts": 8051460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4803e0", "tid": 35568, "ts": 8051760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e020", "tid": 35568, "ts": 8052058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8052231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d9a0", "tid": 35568, "ts": 8052358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8052529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e0f0", "tid": 35568, "ts": 8052656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8052829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480720", "tid": 35568, "ts": 8052956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8053127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480650", "tid": 35568, "ts": 8053254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8053427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f950", "tid": 35568, "ts": 8053554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8053726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47edf0", "tid": 35568, "ts": 8053853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f7b0", "tid": 35568, "ts": 8054153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e290", "tid": 35568, "ts": 8054451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480310", "tid": 35568, "ts": 8054752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e770", "tid": 35568, "ts": 8055051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8055223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47eec0", "tid": 35568, "ts": 8055351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8055525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480170", "tid": 35568, "ts": 8055651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8055824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e430", "tid": 35568, "ts": 8055950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8056123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fa20", "tid": 35568, "ts": 8056250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8056422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ffd0", "tid": 35568, "ts": 8056549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8056721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f3a0", "tid": 35568, "ts": 8056849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f130", "tid": 35568, "ts": 8057149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ddb0", "tid": 35568, "ts": 8057502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e5d0", "tid": 35568, "ts": 8057809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f200", "tid": 35568, "ts": 8058109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8058283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e6a0", "tid": 35568, "ts": 8058410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8058582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47df50", "tid": 35568, "ts": 8058709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8058882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fc90", "tid": 35568, "ts": 8059009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8059182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47de80", "tid": 35568, "ts": 8059310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8059481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e1c0", "tid": 35568, "ts": 8059609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8059783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47faf0", "tid": 35568, "ts": 8059910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47dce0", "tid": 35568, "ts": 8060209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f2d0", "tid": 35568, "ts": 8060509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47da70", "tid": 35568, "ts": 8060808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480240", "tid": 35568, "ts": 8061109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8061281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f470", "tid": 35568, "ts": 8061408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8061581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480580", "tid": 35568, "ts": 8061708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8061881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480a60", "tid": 35568, "ts": 8062009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8062180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f540", "tid": 35568, "ts": 8062307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8062479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4807f0", "tid": 35568, "ts": 8062606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8062779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f610", "tid": 35568, "ts": 8062906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fd60", "tid": 35568, "ts": 8063205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4808c0", "tid": 35568, "ts": 8063503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e500", "tid": 35568, "ts": 8063802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fe30", "tid": 35568, "ts": 8064101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8064273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4800a0", "tid": 35568, "ts": 8064400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8064573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480990", "tid": 35568, "ts": 8064700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8064873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480b30", "tid": 35568, "ts": 8065001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8065174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480cd0", "tid": 35568, "ts": 8065301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8065473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47db40", "tid": 35568, "ts": 8065600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8065773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47dc10", "tid": 35568, "ts": 8065900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8066122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f880", "tid": 35568, "ts": 8066262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8066435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e360", "tid": 35568, "ts": 8066562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8066733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f6e0", "tid": 35568, "ts": 8066861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e910", "tid": 35568, "ts": 8067160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e9e0", "tid": 35568, "ts": 8067459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47eab0", "tid": 35568, "ts": 8067759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ec50", "tid": 35568, "ts": 8068058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8068231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ed20", "tid": 35568, "ts": 8068358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8068530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481de0", "tid": 35568, "ts": 8068657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8068830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4837e0", "tid": 35568, "ts": 8068957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8069129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480da0", "tid": 35568, "ts": 8069257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8069429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481010", "tid": 35568, "ts": 8069557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8069729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483710", "tid": 35568, "ts": 8069856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481830", "tid": 35568, "ts": 8070156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482ef0", "tid": 35568, "ts": 8070455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481eb0", "tid": 35568, "ts": 8070756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4826d0", "tid": 35568, "ts": 8071056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8071228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481900", "tid": 35568, "ts": 8071355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8071527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483300", "tid": 35568, "ts": 8071654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8071828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482460", "tid": 35568, "ts": 8071955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8072126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482fc0", "tid": 35568, "ts": 8072253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8072426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482c80", "tid": 35568, "ts": 8072553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8072725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483090", "tid": 35568, "ts": 8072852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481aa0", "tid": 35568, "ts": 8073151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481d10", "tid": 35568, "ts": 8073452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4822c0", "tid": 35568, "ts": 8073751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4810e0", "tid": 35568, "ts": 8074052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8074225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4827a0", "tid": 35568, "ts": 8074351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8074525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483230", "tid": 35568, "ts": 8074652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8074824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483f30", "tid": 35568, "ts": 8074951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8075123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482ae0", "tid": 35568, "ts": 8075251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8075422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480e70", "tid": 35568, "ts": 8075549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8075722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481280", "tid": 35568, "ts": 8075849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481350", "tid": 35568, "ts": 8076147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4833d0", "tid": 35568, "ts": 8076446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4811b0", "tid": 35568, "ts": 8076747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480f40", "tid": 35568, "ts": 8077089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8077261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4819d0", "tid": 35568, "ts": 8077388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8077561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481420", "tid": 35568, "ts": 8077688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8077861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483980", "tid": 35568, "ts": 8077988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8078161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483160", "tid": 35568, "ts": 8078289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8078462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481b70", "tid": 35568, "ts": 8078590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8078762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4814f0", "tid": 35568, "ts": 8078952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8079125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483cc0", "tid": 35568, "ts": 8079252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8079425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481c40", "tid": 35568, "ts": 8079553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8079725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4834a0", "tid": 35568, "ts": 8079852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4838b0", "tid": 35568, "ts": 8080199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483570", "tid": 35568, "ts": 8080500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482390", "tid": 35568, "ts": 8080800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483e60", "tid": 35568, "ts": 8081099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8081271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4821f0", "tid": 35568, "ts": 8081399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8081570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483640", "tid": 35568, "ts": 8081742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8081980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483a50", "tid": 35568, "ts": 8082108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8082280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484000", "tid": 35568, "ts": 8082408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8082579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4840d0", "tid": 35568, "ts": 8082707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8082880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4815c0", "tid": 35568, "ts": 8083007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8083178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483d90", "tid": 35568, "ts": 8083306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8083477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481690", "tid": 35568, "ts": 8083605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8083776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483b20", "tid": 35568, "ts": 8083903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8084077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481f80", "tid": 35568, "ts": 8084204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8084376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482050", "tid": 35568, "ts": 8084561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8084733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483bf0", "tid": 35568, "ts": 8084860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482120", "tid": 35568, "ts": 8085159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482530", "tid": 35568, "ts": 8085459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481760", "tid": 35568, "ts": 8085757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482870", "tid": 35568, "ts": 8086056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8086227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482600", "tid": 35568, "ts": 8086355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8086528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482940", "tid": 35568, "ts": 8086655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8086827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482a10", "tid": 35568, "ts": 8086954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8087126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482bb0", "tid": 35568, "ts": 8087254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8087425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482d50", "tid": 35568, "ts": 8087552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8087724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482e20", "tid": 35568, "ts": 8087852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484ea0", "tid": 35568, "ts": 8088151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487330", "tid": 35568, "ts": 8088450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485450", "tid": 35568, "ts": 8088749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485d40", "tid": 35568, "ts": 8089048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8089221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486ff0", "tid": 35568, "ts": 8089348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8089520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484750", "tid": 35568, "ts": 8089647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8089818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485380", "tid": 35568, "ts": 8089946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8090118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485790", "tid": 35568, "ts": 8090245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8090417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486080", "tid": 35568, "ts": 8090544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8090715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484680", "tid": 35568, "ts": 8090842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484820", "tid": 35568, "ts": 8091140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485520", "tid": 35568, "ts": 8091440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485040", "tid": 35568, "ts": 8091741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485ad0", "tid": 35568, "ts": 8092039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8092211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4870c0", "tid": 35568, "ts": 8092337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8092510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4848f0", "tid": 35568, "ts": 8092636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8092808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486f20", "tid": 35568, "ts": 8092934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8093107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486220", "tid": 35568, "ts": 8093233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8093406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484b60", "tid": 35568, "ts": 8093534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8093707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4862f0", "tid": 35568, "ts": 8093835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8094006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484c30", "tid": 35568, "ts": 8094133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8094304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486700", "tid": 35568, "ts": 8094431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8094721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487190", "tid": 35568, "ts": 8094848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4863c0", "tid": 35568, "ts": 8095146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4855f0", "tid": 35568, "ts": 8095446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484f70", "tid": 35568, "ts": 8095745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485110", "tid": 35568, "ts": 8096044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8096218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4867d0", "tid": 35568, "ts": 8096345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8096519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484270", "tid": 35568, "ts": 8096646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8096819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487260", "tid": 35568, "ts": 8096946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8097118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486150", "tid": 35568, "ts": 8097246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8097532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487400", "tid": 35568, "ts": 8097664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8097838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4851e0", "tid": 35568, "ts": 8097967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8098140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486490", "tid": 35568, "ts": 8098267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8098441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4856c0", "tid": 35568, "ts": 8098633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8098806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4852b0", "tid": 35568, "ts": 8098934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8099107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4868a0", "tid": 35568, "ts": 8099235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8099408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484d00", "tid": 35568, "ts": 8099535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8099706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4874d0", "tid": 35568, "ts": 8099834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4841a0", "tid": 35568, "ts": 8100134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486e50", "tid": 35568, "ts": 8100435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485c70", "tid": 35568, "ts": 8100735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484340", "tid": 35568, "ts": 8101035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8101207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484410", "tid": 35568, "ts": 8101334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8101506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485ba0", "tid": 35568, "ts": 8101634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8101805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486560", "tid": 35568, "ts": 8101932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8102104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4844e0", "tid": 35568, "ts": 8102231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8102403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485860", "tid": 35568, "ts": 8102531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8102703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484dd0", "tid": 35568, "ts": 8102830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486630", "tid": 35568, "ts": 8103128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4845b0", "tid": 35568, "ts": 8103428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485930", "tid": 35568, "ts": 8103728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485a00", "tid": 35568, "ts": 8104027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8104199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485e10", "tid": 35568, "ts": 8104326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8104498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4849c0", "tid": 35568, "ts": 8104625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8104798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485ee0", "tid": 35568, "ts": 8104925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484a90", "tid": 35568, "ts": 8105224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485fb0", "tid": 35568, "ts": 8105523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486970", "tid": 35568, "ts": 8105822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486a40", "tid": 35568, "ts": 8106121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8106293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486b10", "tid": 35568, "ts": 8106421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8106593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486be0", "tid": 35568, "ts": 8106720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8106891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486cb0", "tid": 35568, "ts": 8107019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8107192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486d80", "tid": 35568, "ts": 8107319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8107491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489b00", "tid": 35568, "ts": 8107618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8107790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4889f0", "tid": 35568, "ts": 8107917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488030", "tid": 35568, "ts": 8108216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488510", "tid": 35568, "ts": 8108514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488440", "tid": 35568, "ts": 8108814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489550", "tid": 35568, "ts": 8109112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8109286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487f60", "tid": 35568, "ts": 8109413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8109585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489f10", "tid": 35568, "ts": 8109712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8109883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487810", "tid": 35568, "ts": 8110010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8110181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489bd0", "tid": 35568, "ts": 8110308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8110480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487c20", "tid": 35568, "ts": 8110607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8110779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a250", "tid": 35568, "ts": 8110906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4879b0", "tid": 35568, "ts": 8111206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487b50", "tid": 35568, "ts": 8111505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487670", "tid": 35568, "ts": 8111805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a3f0", "tid": 35568, "ts": 8112105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8112277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487cf0", "tid": 35568, "ts": 8112404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8112576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489140", "tid": 35568, "ts": 8112705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8112877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487a80", "tid": 35568, "ts": 8113041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8113213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4885e0", "tid": 35568, "ts": 8113342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8113555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489620", "tid": 35568, "ts": 8113684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8113856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487dc0", "tid": 35568, "ts": 8113984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8114156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488100", "tid": 35568, "ts": 8114282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8114455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a0b0", "tid": 35568, "ts": 8114582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8114755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489070", "tid": 35568, "ts": 8114882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489ca0", "tid": 35568, "ts": 8115182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488ed0", "tid": 35568, "ts": 8115483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487e90", "tid": 35568, "ts": 8115784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488d30", "tid": 35568, "ts": 8116084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8116257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4896f0", "tid": 35568, "ts": 8116385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8116557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488fa0", "tid": 35568, "ts": 8116684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8116856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a4c0", "tid": 35568, "ts": 8116984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8117157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4886b0", "tid": 35568, "ts": 8117284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8117455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489210", "tid": 35568, "ts": 8117583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8117756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4881d0", "tid": 35568, "ts": 8117883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a180", "tid": 35568, "ts": 8118181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488920", "tid": 35568, "ts": 8118480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4892e0", "tid": 35568, "ts": 8118812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489890", "tid": 35568, "ts": 8119113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8119285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a800", "tid": 35568, "ts": 8119412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8119585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489480", "tid": 35568, "ts": 8119713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8119885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a320", "tid": 35568, "ts": 8120012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8120184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4893b0", "tid": 35568, "ts": 8120310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8120483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a8d0", "tid": 35568, "ts": 8120610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8120783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488780", "tid": 35568, "ts": 8120910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4897c0", "tid": 35568, "ts": 8121209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489d70", "tid": 35568, "ts": 8121507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489960", "tid": 35568, "ts": 8121805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487740", "tid": 35568, "ts": 8122104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8122277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489a30", "tid": 35568, "ts": 8122403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8122576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4882a0", "tid": 35568, "ts": 8122703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8122876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a590", "tid": 35568, "ts": 8123004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8123176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489e40", "tid": 35568, "ts": 8123304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8123476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a660", "tid": 35568, "ts": 8123602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8123774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488ac0", "tid": 35568, "ts": 8123902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a730", "tid": 35568, "ts": 8124202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488850", "tid": 35568, "ts": 8124500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488c60", "tid": 35568, "ts": 8124800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488b90", "tid": 35568, "ts": 8125099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8125271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488e00", "tid": 35568, "ts": 8125399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8125571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489fe0", "tid": 35568, "ts": 8125698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8125871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488370", "tid": 35568, "ts": 8125999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8126171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4875a0", "tid": 35568, "ts": 8126298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8126469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4878e0", "tid": 35568, "ts": 8126596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8126769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d580", "tid": 35568, "ts": 8126896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bc50", "tid": 35568, "ts": 8127195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ca20", "tid": 35568, "ts": 8127495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c3a0", "tid": 35568, "ts": 8127794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b770", "tid": 35568, "ts": 8128094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8128265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b910", "tid": 35568, "ts": 8128393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8128632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d0a0", "tid": 35568, "ts": 8128899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8129142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b9e0", "tid": 35568, "ts": 8129320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8129553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b840", "tid": 35568, "ts": 8129767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8129939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bab0", "tid": 35568, "ts": 8130067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8130239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b5d0", "tid": 35568, "ts": 8130367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8130540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48aa70", "tid": 35568, "ts": 8130668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8130841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d650", "tid": 35568, "ts": 8130969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8131141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b290", "tid": 35568, "ts": 8131269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8131441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ce30", "tid": 35568, "ts": 8131569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8131741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bd20", "tid": 35568, "ts": 8131869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b430", "tid": 35568, "ts": 8132169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d4b0", "tid": 35568, "ts": 8132468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c6e0", "tid": 35568, "ts": 8132771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bb80", "tid": 35568, "ts": 8133071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8133243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48caf0", "tid": 35568, "ts": 8133370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8133542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cfd0", "tid": 35568, "ts": 8133670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8133842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48dcd0", "tid": 35568, "ts": 8133969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8134141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b6a0", "tid": 35568, "ts": 8134269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8134440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ac10", "tid": 35568, "ts": 8134568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8134739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b500", "tid": 35568, "ts": 8134867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cbc0", "tid": 35568, "ts": 8135165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ace0", "tid": 35568, "ts": 8135467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cc90", "tid": 35568, "ts": 8135769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bdf0", "tid": 35568, "ts": 8136070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8136242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c540", "tid": 35568, "ts": 8136370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8136542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48db30", "tid": 35568, "ts": 8136670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8136842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d310", "tid": 35568, "ts": 8136970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8137267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48af50", "tid": 35568, "ts": 8137432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8137605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bec0", "tid": 35568, "ts": 8137733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8137905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b360", "tid": 35568, "ts": 8138032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8138204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d7f0", "tid": 35568, "ts": 8138331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8138503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bf90", "tid": 35568, "ts": 8138631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8138803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d720", "tid": 35568, "ts": 8138930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8139103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b020", "tid": 35568, "ts": 8139230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8139403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d8c0", "tid": 35568, "ts": 8139530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8139702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d990", "tid": 35568, "ts": 8139830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d170", "tid": 35568, "ts": 8140129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cf00", "tid": 35568, "ts": 8140430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c060", "tid": 35568, "ts": 8140730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d3e0", "tid": 35568, "ts": 8141030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8141202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48da60", "tid": 35568, "ts": 8141329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8141502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c130", "tid": 35568, "ts": 8141630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8141802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c200", "tid": 35568, "ts": 8141930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8142103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48dc00", "tid": 35568, "ts": 8142231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8142404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d240", "tid": 35568, "ts": 8142531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8142705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a9a0", "tid": 35568, "ts": 8142832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ab40", "tid": 35568, "ts": 8143132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48adb0", "tid": 35568, "ts": 8143431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ae80", "tid": 35568, "ts": 8143731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b0f0", "tid": 35568, "ts": 8144030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8144240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c2d0", "tid": 35568, "ts": 8144369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8144543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c470", "tid": 35568, "ts": 8144670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8144842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b1c0", "tid": 35568, "ts": 8144969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8145142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cd60", "tid": 35568, "ts": 8145269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8145442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c610", "tid": 35568, "ts": 8145571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8145745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c7b0", "tid": 35568, "ts": 8145872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c880", "tid": 35568, "ts": 8146173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c950", "tid": 35568, "ts": 8146473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f6d0", "tid": 35568, "ts": 8146772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fae0", "tid": 35568, "ts": 8147117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8147289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f870", "tid": 35568, "ts": 8147416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8147590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e1b0", "tid": 35568, "ts": 8147718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8147890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e280", "tid": 35568, "ts": 8148017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8148189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4903d0", "tid": 35568, "ts": 8148317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8148531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ffc0", "tid": 35568, "ts": 8148660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8148832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fef0", "tid": 35568, "ts": 8148959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8149132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e760", "tid": 35568, "ts": 8149259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8149430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e0e0", "tid": 35568, "ts": 8149557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8149730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f390", "tid": 35568, "ts": 8149857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e830", "tid": 35568, "ts": 8150158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fc80", "tid": 35568, "ts": 8150459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e350", "tid": 35568, "ts": 8150758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e010", "tid": 35568, "ts": 8151058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8151230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490a50", "tid": 35568, "ts": 8151382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8151554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e900", "tid": 35568, "ts": 8151682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8151855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e420", "tid": 35568, "ts": 8151983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8152154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490710", "tid": 35568, "ts": 8152283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8152455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490090", "tid": 35568, "ts": 8152583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8152815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490160", "tid": 35568, "ts": 8152943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8153116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490230", "tid": 35568, "ts": 8153244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8153416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e4f0", "tid": 35568, "ts": 8153543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8153716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490e60", "tid": 35568, "ts": 8153902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e5c0", "tid": 35568, "ts": 8154202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48de70", "tid": 35568, "ts": 8154503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fa10", "tid": 35568, "ts": 8154802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e9d0", "tid": 35568, "ts": 8155105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8155277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490b20", "tid": 35568, "ts": 8155404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8155577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e690", "tid": 35568, "ts": 8155704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8155877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f460", "tid": 35568, "ts": 8156004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8156176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490570", "tid": 35568, "ts": 8156304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8156476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48eaa0", "tid": 35568, "ts": 8156603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8156777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48eb70", "tid": 35568, "ts": 8156905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48dda0", "tid": 35568, "ts": 8157205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490300", "tid": 35568, "ts": 8157505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4904a0", "tid": 35568, "ts": 8157806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4907e0", "tid": 35568, "ts": 8158106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8158279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ede0", "tid": 35568, "ts": 8158406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8158579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490640", "tid": 35568, "ts": 8158707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8158879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ec40", "tid": 35568, "ts": 8159007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8159179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490f30", "tid": 35568, "ts": 8159305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8159476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4908b0", "tid": 35568, "ts": 8159603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8159777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ed10", "tid": 35568, "ts": 8159982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8160156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48eeb0", "tid": 35568, "ts": 8160285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8160457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ef80", "tid": 35568, "ts": 8160585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8160757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490980", "tid": 35568, "ts": 8160885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490bf0", "tid": 35568, "ts": 8161185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f050", "tid": 35568, "ts": 8161485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f7a0", "tid": 35568, "ts": 8161784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f120", "tid": 35568, "ts": 8162084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8162256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f600", "tid": 35568, "ts": 8162384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8162557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f1f0", "tid": 35568, "ts": 8162684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8162856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f2c0", "tid": 35568, "ts": 8162984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8163157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f530", "tid": 35568, "ts": 8163285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8163457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48df40", "tid": 35568, "ts": 8163585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8163757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f940", "tid": 35568, "ts": 8163885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490cc0", "tid": 35568, "ts": 8164185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fbb0", "tid": 35568, "ts": 8164485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fd50", "tid": 35568, "ts": 8164786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490d90", "tid": 35568, "ts": 8165085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8165258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fe20", "tid": 35568, "ts": 8165386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8165558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54b20", "tid": 35568, "ts": 8165751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8165927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb559c0", "tid": 35568, "ts": 8166055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8166228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55b60", "tid": 35568, "ts": 8166355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8166527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56860", "tid": 35568, "ts": 8166655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8166827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb561e0", "tid": 35568, "ts": 8166954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8167126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53530", "tid": 35568, "ts": 8167253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8167425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55a90", "tid": 35568, "ts": 8167553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8167726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54570", "tid": 35568, "ts": 8167853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55c30", "tid": 35568, "ts": 8168153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56110", "tid": 35568, "ts": 8168453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55270", "tid": 35568, "ts": 8168753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55d00", "tid": 35568, "ts": 8169052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8169225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53600", "tid": 35568, "ts": 8169353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8169524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56790", "tid": 35568, "ts": 8169653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8169826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56380", "tid": 35568, "ts": 8169954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8170125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53ae0", "tid": 35568, "ts": 8170253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8170425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb547e0", "tid": 35568, "ts": 8170553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8170726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb536d0", "tid": 35568, "ts": 8170853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54640", "tid": 35568, "ts": 8171154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54710", "tid": 35568, "ts": 8171453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54160", "tid": 35568, "ts": 8171753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb562b0", "tid": 35568, "ts": 8172083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8172255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55750", "tid": 35568, "ts": 8172383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8172556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53ef0", "tid": 35568, "ts": 8172685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8172857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56040", "tid": 35568, "ts": 8172985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8173159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54d90", "tid": 35568, "ts": 8173287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8173460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53bb0", "tid": 35568, "ts": 8173588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8173761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb537a0", "tid": 35568, "ts": 8173889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54bf0", "tid": 35568, "ts": 8174190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb548b0", "tid": 35568, "ts": 8174491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53940", "tid": 35568, "ts": 8174793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53c80", "tid": 35568, "ts": 8175093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8175265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53fc0", "tid": 35568, "ts": 8175392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8175628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55680", "tid": 35568, "ts": 8175866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8176151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54980", "tid": 35568, "ts": 8176360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8176533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55410", "tid": 35568, "ts": 8176661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8176834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56450", "tid": 35568, "ts": 8176962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8177134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55dd0", "tid": 35568, "ts": 8177262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8177434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54a50", "tid": 35568, "ts": 8177563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8177735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54cc0", "tid": 35568, "ts": 8177863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56520", "tid": 35568, "ts": 8178164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53870", "tid": 35568, "ts": 8178463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55000", "tid": 35568, "ts": 8178763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54e60", "tid": 35568, "ts": 8179065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8179239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb565f0", "tid": 35568, "ts": 8179367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8179540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb544a0", "tid": 35568, "ts": 8179667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8179840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54f30", "tid": 35568, "ts": 8179968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8180139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54090", "tid": 35568, "ts": 8180267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8180438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53d50", "tid": 35568, "ts": 8180608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8180783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb566c0", "tid": 35568, "ts": 8180912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54300", "tid": 35568, "ts": 8181212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53a10", "tid": 35568, "ts": 8181512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb551a0", "tid": 35568, "ts": 8181811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb550d0", "tid": 35568, "ts": 8182110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8182282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53e20", "tid": 35568, "ts": 8182410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8182582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55340", "tid": 35568, "ts": 8182710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8182882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb554e0", "tid": 35568, "ts": 8183009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8183182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb558f0", "tid": 35568, "ts": 8183309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8183481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54230", "tid": 35568, "ts": 8183609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8183781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb555b0", "tid": 35568, "ts": 8183908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb543d0", "tid": 35568, "ts": 8184207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55820", "tid": 35568, "ts": 8184507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55ea0", "tid": 35568, "ts": 8184808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55f70", "tid": 35568, "ts": 8185108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8185280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57cb0", "tid": 35568, "ts": 8185408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8185580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57560", "tid": 35568, "ts": 8185708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8185880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56a00", "tid": 35568, "ts": 8186069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8186242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56ee0", "tid": 35568, "ts": 8186370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8186542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb595e0", "tid": 35568, "ts": 8186670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8186843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56ad0", "tid": 35568, "ts": 8186971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8187142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb596b0", "tid": 35568, "ts": 8187270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8187442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57490", "tid": 35568, "ts": 8187570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8187743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58b50", "tid": 35568, "ts": 8187870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb577d0", "tid": 35568, "ts": 8188172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57be0", "tid": 35568, "ts": 8188471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59780", "tid": 35568, "ts": 8188771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59b90", "tid": 35568, "ts": 8189071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8189244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb588e0", "tid": 35568, "ts": 8189371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8189543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57970", "tid": 35568, "ts": 8189671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8189842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59850", "tid": 35568, "ts": 8189970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8190141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb578a0", "tid": 35568, "ts": 8190268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8190441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57a40", "tid": 35568, "ts": 8190568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8190741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58dc0", "tid": 35568, "ts": 8190868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8191055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56930", "tid": 35568, "ts": 8191291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8191492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58cf0", "tid": 35568, "ts": 8191620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8191793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb592a0", "tid": 35568, "ts": 8191921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56ba0", "tid": 35568, "ts": 8192222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56fb0", "tid": 35568, "ts": 8192522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57150", "tid": 35568, "ts": 8192823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57700", "tid": 35568, "ts": 8193123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8193297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59370", "tid": 35568, "ts": 8193425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8193597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57d80", "tid": 35568, "ts": 8193725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8193896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56c70", "tid": 35568, "ts": 8194024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8194198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57e50", "tid": 35568, "ts": 8194325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8194499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56d40", "tid": 35568, "ts": 8194650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8194824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58c20", "tid": 35568, "ts": 8194952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8195125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57f20", "tid": 35568, "ts": 8195254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8195426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59440", "tid": 35568, "ts": 8195555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8195727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56e10", "tid": 35568, "ts": 8195856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb580c0", "tid": 35568, "ts": 8196155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57630", "tid": 35568, "ts": 8196455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59ac0", "tid": 35568, "ts": 8196755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57ff0", "tid": 35568, "ts": 8197055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8197227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58190", "tid": 35568, "ts": 8197355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8197528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb589b0", "tid": 35568, "ts": 8197657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8197829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57080", "tid": 35568, "ts": 8197956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8198129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59920", "tid": 35568, "ts": 8198256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8198428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb584d0", "tid": 35568, "ts": 8198555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8198728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb585a0", "tid": 35568, "ts": 8198855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58260", "tid": 35568, "ts": 8199155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58330", "tid": 35568, "ts": 8199455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57220", "tid": 35568, "ts": 8199755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb572f0", "tid": 35568, "ts": 8200054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8200226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57b10", "tid": 35568, "ts": 8200354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8200525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58e90", "tid": 35568, "ts": 8200653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8200826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58400", "tid": 35568, "ts": 8200953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8201126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb599f0", "tid": 35568, "ts": 8201253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8201426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58670", "tid": 35568, "ts": 8201553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8201725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59c60", "tid": 35568, "ts": 8201852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58740", "tid": 35568, "ts": 8202151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58f60", "tid": 35568, "ts": 8202451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58810", "tid": 35568, "ts": 8202751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb573c0", "tid": 35568, "ts": 8203051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8203223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58a80", "tid": 35568, "ts": 8203350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8203522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59030", "tid": 35568, "ts": 8203650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8203823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59100", "tid": 35568, "ts": 8203951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8204124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb591d0", "tid": 35568, "ts": 8204252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8204425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59510", "tid": 35568, "ts": 8204553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8204725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c1c0", "tid": 35568, "ts": 8204852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c430", "tid": 35568, "ts": 8205151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b320", "tid": 35568, "ts": 8205451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c290", "tid": 35568, "ts": 8205751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5aca0", "tid": 35568, "ts": 8206052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8206223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c020", "tid": 35568, "ts": 8206351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8206523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ae40", "tid": 35568, "ts": 8206651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8206923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cd20", "tid": 35568, "ts": 8207076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8207276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59fa0", "tid": 35568, "ts": 8207403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8207577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ab00", "tid": 35568, "ts": 8207705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8207878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c0f0", "tid": 35568, "ts": 8208006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8208179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5be80", "tid": 35568, "ts": 8208307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8208479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5af10", "tid": 35568, "ts": 8208607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8208779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c500", "tid": 35568, "ts": 8208907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c360", "tid": 35568, "ts": 8209207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c840", "tid": 35568, "ts": 8209507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a960", "tid": 35568, "ts": 8209807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a620", "tid": 35568, "ts": 8210107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8210280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cdf0", "tid": 35568, "ts": 8210408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8210581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c5d0", "tid": 35568, "ts": 8210708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8210881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c6a0", "tid": 35568, "ts": 8211009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8211182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a3b0", "tid": 35568, "ts": 8211310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8211481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c770", "tid": 35568, "ts": 8211609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8211782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5afe0", "tid": 35568, "ts": 8211909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ad70", "tid": 35568, "ts": 8212208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5abd0", "tid": 35568, "ts": 8212509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c910", "tid": 35568, "ts": 8212808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ba70", "tid": 35568, "ts": 8213109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8213281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cf90", "tid": 35568, "ts": 8213408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8213581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5aa30", "tid": 35568, "ts": 8213708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8213882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a480", "tid": 35568, "ts": 8214057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8214231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59d30", "tid": 35568, "ts": 8214359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8214533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b0b0", "tid": 35568, "ts": 8214662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8214834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b250", "tid": 35568, "ts": 8214963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8215135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a210", "tid": 35568, "ts": 8215263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8215435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a6f0", "tid": 35568, "ts": 8215563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8215735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b180", "tid": 35568, "ts": 8215862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b3f0", "tid": 35568, "ts": 8216162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c9e0", "tid": 35568, "ts": 8216461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a550", "tid": 35568, "ts": 8216762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cab0", "tid": 35568, "ts": 8217063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8217235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d060", "tid": 35568, "ts": 8217363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8217536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cb80", "tid": 35568, "ts": 8217664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8217837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a7c0", "tid": 35568, "ts": 8217965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8218137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bc10", "tid": 35568, "ts": 8218307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8218480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cc50", "tid": 35568, "ts": 8218607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8218780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a890", "tid": 35568, "ts": 8218908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8219079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b4c0", "tid": 35568, "ts": 8219207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8219380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b590", "tid": 35568, "ts": 8219507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8219680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cec0", "tid": 35568, "ts": 8219807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b660", "tid": 35568, "ts": 8220151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b730", "tid": 35568, "ts": 8220452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b800", "tid": 35568, "ts": 8220749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b8d0", "tid": 35568, "ts": 8221051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8221222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b9a0", "tid": 35568, "ts": 8221350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8221522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59e00", "tid": 35568, "ts": 8221650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8221821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bb40", "tid": 35568, "ts": 8221949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8222122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a070", "tid": 35568, "ts": 8222250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8222508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bce0", "tid": 35568, "ts": 8222636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8222809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59ed0", "tid": 35568, "ts": 8222936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8223108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bdb0", "tid": 35568, "ts": 8223292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8223465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bf50", "tid": 35568, "ts": 8223594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8223766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a140", "tid": 35568, "ts": 8223895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a2e0", "tid": 35568, "ts": 8224194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dd60", "tid": 35568, "ts": 8224495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e170", "tid": 35568, "ts": 8224795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5feb0", "tid": 35568, "ts": 8225094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8225266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ecd0", "tid": 35568, "ts": 8225393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8225565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d540", "tid": 35568, "ts": 8225693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8225865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5daf0", "tid": 35568, "ts": 8225993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8226189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f690", "tid": 35568, "ts": 8226317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8226490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d130", "tid": 35568, "ts": 8226618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8226791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f4f0", "tid": 35568, "ts": 8226920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f350", "tid": 35568, "ts": 8227220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ff80", "tid": 35568, "ts": 8227520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e0a0", "tid": 35568, "ts": 8227820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5df00", "tid": 35568, "ts": 8228121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8228296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5eb30", "tid": 35568, "ts": 8228423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8228595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f5c0", "tid": 35568, "ts": 8228723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8228895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d7b0", "tid": 35568, "ts": 8229022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8229195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60390", "tid": 35568, "ts": 8229355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8229528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d6e0", "tid": 35568, "ts": 8229656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8229828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d200", "tid": 35568, "ts": 8229956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8230128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fde0", "tid": 35568, "ts": 8230255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8230426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e3e0", "tid": 35568, "ts": 8230554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8230726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5de30", "tid": 35568, "ts": 8230854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb602c0", "tid": 35568, "ts": 8231154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f760", "tid": 35568, "ts": 8231454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d610", "tid": 35568, "ts": 8231754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60460", "tid": 35568, "ts": 8232053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8232225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f830", "tid": 35568, "ts": 8232352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8232524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5faa0", "tid": 35568, "ts": 8232652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8232824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d2d0", "tid": 35568, "ts": 8232951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8233124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d880", "tid": 35568, "ts": 8233251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8233424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e4b0", "tid": 35568, "ts": 8233552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8233725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f900", "tid": 35568, "ts": 8233853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f9d0", "tid": 35568, "ts": 8234154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f420", "tid": 35568, "ts": 8234455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dfd0", "tid": 35568, "ts": 8234753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d950", "tid": 35568, "ts": 8235053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8235226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5da20", "tid": 35568, "ts": 8235354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8235526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fb70", "tid": 35568, "ts": 8235654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8235827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fc40", "tid": 35568, "ts": 8235955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8236127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fd10", "tid": 35568, "ts": 8236256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8236428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e580", "tid": 35568, "ts": 8236556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8236729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5eda0", "tid": 35568, "ts": 8236857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e240", "tid": 35568, "ts": 8237158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60050", "tid": 35568, "ts": 8237458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e310", "tid": 35568, "ts": 8237758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e7f0", "tid": 35568, "ts": 8238170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8238417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e650", "tid": 35568, "ts": 8238583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8238858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e720", "tid": 35568, "ts": 8239064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8239235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e8c0", "tid": 35568, "ts": 8239364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8239537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e990", "tid": 35568, "ts": 8239665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8239837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60120", "tid": 35568, "ts": 8239965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8240138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ea60", "tid": 35568, "ts": 8240266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8240437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb601f0", "tid": 35568, "ts": 8240564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8240737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f280", "tid": 35568, "ts": 8240864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d3a0", "tid": 35568, "ts": 8241165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ec00", "tid": 35568, "ts": 8241465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d470", "tid": 35568, "ts": 8241764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ee70", "tid": 35568, "ts": 8242065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8242237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dbc0", "tid": 35568, "ts": 8242364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8242536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dc90", "tid": 35568, "ts": 8242663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8242835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ef40", "tid": 35568, "ts": 8242962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8243135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f010", "tid": 35568, "ts": 8243264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8243436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f0e0", "tid": 35568, "ts": 8243564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8243736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f1b0", "tid": 35568, "ts": 8243864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb620d0", "tid": 35568, "ts": 8244164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61230", "tid": 35568, "ts": 8244465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60c80", "tid": 35568, "ts": 8244765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62d00", "tid": 35568, "ts": 8245065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8245238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb614a0", "tid": 35568, "ts": 8245366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8245538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61a50", "tid": 35568, "ts": 8245666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8245839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61cc0", "tid": 35568, "ts": 8245967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8246139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61300", "tid": 35568, "ts": 8246266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8246438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb631e0", "tid": 35568, "ts": 8246565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8246738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60530", "tid": 35568, "ts": 8246866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60600", "tid": 35568, "ts": 8247167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb624e0", "tid": 35568, "ts": 8247509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60940", "tid": 35568, "ts": 8247810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb636c0", "tid": 35568, "ts": 8248111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8248284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb618b0", "tid": 35568, "ts": 8248411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8248584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62a90", "tid": 35568, "ts": 8248712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8248885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61570", "tid": 35568, "ts": 8249012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8249184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61b20", "tid": 35568, "ts": 8249311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8249485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61bf0", "tid": 35568, "ts": 8249613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8249785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60a10", "tid": 35568, "ts": 8249913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb613d0", "tid": 35568, "ts": 8250214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61640", "tid": 35568, "ts": 8250515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63520", "tid": 35568, "ts": 8250813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60ef0", "tid": 35568, "ts": 8251115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8251288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb607a0", "tid": 35568, "ts": 8251415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8251587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61710", "tid": 35568, "ts": 8251715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8251887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60ae0", "tid": 35568, "ts": 8252014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8252186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60bb0", "tid": 35568, "ts": 8252314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8252486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61f30", "tid": 35568, "ts": 8252613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8252787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb621a0", "tid": 35568, "ts": 8252915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8253088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62270", "tid": 35568, "ts": 8253215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8253387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60fc0", "tid": 35568, "ts": 8253515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8253728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62dd0", "tid": 35568, "ts": 8253857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb629c0", "tid": 35568, "ts": 8254156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb617e0", "tid": 35568, "ts": 8254458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61980", "tid": 35568, "ts": 8254759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61d90", "tid": 35568, "ts": 8255061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8255234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62ea0", "tid": 35568, "ts": 8255362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8255534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62f70", "tid": 35568, "ts": 8255662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8255835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60d50", "tid": 35568, "ts": 8255962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8256135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60e20", "tid": 35568, "ts": 8256262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8256435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62b60", "tid": 35568, "ts": 8256563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8256736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63380", "tid": 35568, "ts": 8256864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb635f0", "tid": 35568, "ts": 8257164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61e60", "tid": 35568, "ts": 8257464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62000", "tid": 35568, "ts": 8257765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63790", "tid": 35568, "ts": 8258067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8258239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62340", "tid": 35568, "ts": 8258367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8258538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63040", "tid": 35568, "ts": 8258666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8258838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62410", "tid": 35568, "ts": 8258965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8259138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61090", "tid": 35568, "ts": 8259265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8259438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62c30", "tid": 35568, "ts": 8259565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8259737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb625b0", "tid": 35568, "ts": 8259865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62680", "tid": 35568, "ts": 8260164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62750", "tid": 35568, "ts": 8260463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb628f0", "tid": 35568, "ts": 8260764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62820", "tid": 35568, "ts": 8261064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8261236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63110", "tid": 35568, "ts": 8261364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8261536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61160", "tid": 35568, "ts": 8261664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8261836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb632b0", "tid": 35568, "ts": 8261964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8262136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63450", "tid": 35568, "ts": 8262263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8262437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63860", "tid": 35568, "ts": 8262564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8262736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb606d0", "tid": 35568, "ts": 8262864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60870", "tid": 35568, "ts": 8263163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63ba0", "tid": 35568, "ts": 8263464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66c60", "tid": 35568, "ts": 8263765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb643c0", "tid": 35568, "ts": 8264067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8264240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65330", "tid": 35568, "ts": 8264367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8264539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66510", "tid": 35568, "ts": 8264666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8264839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb665e0", "tid": 35568, "ts": 8264967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8265139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64cb0", "tid": 35568, "ts": 8265267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8265439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65cf0", "tid": 35568, "ts": 8265566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8265738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64a40", "tid": 35568, "ts": 8265866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63a00", "tid": 35568, "ts": 8266166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb666b0", "tid": 35568, "ts": 8266466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65260", "tid": 35568, "ts": 8266765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65f60", "tid": 35568, "ts": 8267066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8267239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb662a0", "tid": 35568, "ts": 8267366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8267538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66780", "tid": 35568, "ts": 8267666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8267839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63930", "tid": 35568, "ts": 8267967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8268138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63ad0", "tid": 35568, "ts": 8268265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8268438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66920", "tid": 35568, "ts": 8268565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8268738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63c70", "tid": 35568, "ts": 8268865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8269038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66100", "tid": 35568, "ts": 8269200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8269415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65dc0", "tid": 35568, "ts": 8269543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8269717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64be0", "tid": 35568, "ts": 8269844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66850", "tid": 35568, "ts": 8270143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64b10", "tid": 35568, "ts": 8270443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66b90", "tid": 35568, "ts": 8270743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64150", "tid": 35568, "ts": 8271043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8271214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb669f0", "tid": 35568, "ts": 8271342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8271513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66ac0", "tid": 35568, "ts": 8271640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8271812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63d40", "tid": 35568, "ts": 8271940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8272113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66370", "tid": 35568, "ts": 8272241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8272414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63e10", "tid": 35568, "ts": 8272541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8272714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63ee0", "tid": 35568, "ts": 8272842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63fb0", "tid": 35568, "ts": 8273206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb654d0", "tid": 35568, "ts": 8273508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66440", "tid": 35568, "ts": 8273807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64080", "tid": 35568, "ts": 8274108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8274280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64d80", "tid": 35568, "ts": 8274408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8274581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64630", "tid": 35568, "ts": 8274709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8274882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64e50", "tid": 35568, "ts": 8275010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8275183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64220", "tid": 35568, "ts": 8275310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8275483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65e90", "tid": 35568, "ts": 8275610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8275782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb642f0", "tid": 35568, "ts": 8275909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64490", "tid": 35568, "ts": 8276208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb661d0", "tid": 35568, "ts": 8276509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb650c0", "tid": 35568, "ts": 8276810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65740", "tid": 35568, "ts": 8277111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8277282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65400", "tid": 35568, "ts": 8277411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8277583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64f20", "tid": 35568, "ts": 8277710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8277881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64560", "tid": 35568, "ts": 8278008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8278180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64700", "tid": 35568, "ts": 8278307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8278479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb647d0", "tid": 35568, "ts": 8278606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8278779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65190", "tid": 35568, "ts": 8278907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb655a0", "tid": 35568, "ts": 8279207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb648a0", "tid": 35568, "ts": 8279508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64970", "tid": 35568, "ts": 8279809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66030", "tid": 35568, "ts": 8280108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8280281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64ff0", "tid": 35568, "ts": 8280408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8280623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65670", "tid": 35568, "ts": 8280758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8280930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65810", "tid": 35568, "ts": 8281058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8281231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb658e0", "tid": 35568, "ts": 8281359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8281531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb659b0", "tid": 35568, "ts": 8281659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8281832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65a80", "tid": 35568, "ts": 8281959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8282132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65b50", "tid": 35568, "ts": 8282260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8282433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65c20", "tid": 35568, "ts": 8282560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8282732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67fe0", "tid": 35568, "ts": 8282859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb699e0", "tid": 35568, "ts": 8283160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67f10", "tid": 35568, "ts": 8283459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68f50", "tid": 35568, "ts": 8283758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb672e0", "tid": 35568, "ts": 8284057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8284230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66e00", "tid": 35568, "ts": 8284358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8284531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69840", "tid": 35568, "ts": 8284659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8284878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb677c0", "tid": 35568, "ts": 8285032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8285205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb680b0", "tid": 35568, "ts": 8285333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8285505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68320", "tid": 35568, "ts": 8285633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8285805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67210", "tid": 35568, "ts": 8285933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8286105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69df0", "tid": 35568, "ts": 8286233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8286405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69ec0", "tid": 35568, "ts": 8286533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8286706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68b40", "tid": 35568, "ts": 8286833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67b00", "tid": 35568, "ts": 8287133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69ab0", "tid": 35568, "ts": 8287433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a060", "tid": 35568, "ts": 8287735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67140", "tid": 35568, "ts": 8288035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8288208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68180", "tid": 35568, "ts": 8288336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8288508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67a30", "tid": 35568, "ts": 8288636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8288809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69430", "tid": 35568, "ts": 8288936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8289108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69910", "tid": 35568, "ts": 8289235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8289408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb673b0", "tid": 35568, "ts": 8289537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8289708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68250", "tid": 35568, "ts": 8289836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69500", "tid": 35568, "ts": 8290199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb688d0", "tid": 35568, "ts": 8290499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb689a0", "tid": 35568, "ts": 8290798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69f90", "tid": 35568, "ts": 8291099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8291314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb683f0", "tid": 35568, "ts": 8291443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8291615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69020", "tid": 35568, "ts": 8291743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8291915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb691c0", "tid": 35568, "ts": 8292043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8292215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66ed0", "tid": 35568, "ts": 8292398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8292572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69770", "tid": 35568, "ts": 8292701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8292874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69b80", "tid": 35568, "ts": 8293002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8293175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69290", "tid": 35568, "ts": 8293303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8293475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68a70", "tid": 35568, "ts": 8293603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8293774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69360", "tid": 35568, "ts": 8293902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb695d0", "tid": 35568, "ts": 8294202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68e80", "tid": 35568, "ts": 8294500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67bd0", "tid": 35568, "ts": 8294825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69c50", "tid": 35568, "ts": 8295124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8295297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68c10", "tid": 35568, "ts": 8295424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8295597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67ca0", "tid": 35568, "ts": 8295725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8295897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb684c0", "tid": 35568, "ts": 8296024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8296262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb696a0", "tid": 35568, "ts": 8296393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8296570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69d20", "tid": 35568, "ts": 8296699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8296880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66d30", "tid": 35568, "ts": 8297019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8297191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68ce0", "tid": 35568, "ts": 8297319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8297491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66fa0", "tid": 35568, "ts": 8297619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8297793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68800", "tid": 35568, "ts": 8297921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68590", "tid": 35568, "ts": 8298221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67480", "tid": 35568, "ts": 8298520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67070", "tid": 35568, "ts": 8298820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68660", "tid": 35568, "ts": 8299120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8299292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67d70", "tid": 35568, "ts": 8299420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8299593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67550", "tid": 35568, "ts": 8299721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8299892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67620", "tid": 35568, "ts": 8300020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8300192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb676f0", "tid": 35568, "ts": 8300319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8300559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67890", "tid": 35568, "ts": 8300687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8300860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67e40", "tid": 35568, "ts": 8300987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8301159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb690f0", "tid": 35568, "ts": 8301286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8301459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68730", "tid": 35568, "ts": 8301586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8301760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67960", "tid": 35568, "ts": 8301888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68db0", "tid": 35568, "ts": 8302187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c4f0", "tid": 35568, "ts": 8302486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b240", "tid": 35568, "ts": 8302785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a7b0", "tid": 35568, "ts": 8303086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8303258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b7f0", "tid": 35568, "ts": 8303385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8303557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b580", "tid": 35568, "ts": 8303685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8303857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bb30", "tid": 35568, "ts": 8303984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8304156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b310", "tid": 35568, "ts": 8304284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8304457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c5c0", "tid": 35568, "ts": 8304584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8304757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cd10", "tid": 35568, "ts": 8304884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b4b0", "tid": 35568, "ts": 8305184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a3a0", "tid": 35568, "ts": 8305483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ac90", "tid": 35568, "ts": 8305781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b3e0", "tid": 35568, "ts": 8306080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8306252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d1f0", "tid": 35568, "ts": 8306380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8306552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6afd0", "tid": 35568, "ts": 8306680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8306852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6af00", "tid": 35568, "ts": 8306980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8307150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b650", "tid": 35568, "ts": 8307278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8307450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b170", "tid": 35568, "ts": 8307578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8307750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c690", "tid": 35568, "ts": 8307879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d460", "tid": 35568, "ts": 8308178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b720", "tid": 35568, "ts": 8308478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c760", "tid": 35568, "ts": 8308778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b0a0", "tid": 35568, "ts": 8309078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8309250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ad60", "tid": 35568, "ts": 8309378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8309549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c830", "tid": 35568, "ts": 8309678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8309850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b8c0", "tid": 35568, "ts": 8309977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8310149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b990", "tid": 35568, "ts": 8310276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8310448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a470", "tid": 35568, "ts": 8310575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8310746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a610", "tid": 35568, "ts": 8310875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c010", "tid": 35568, "ts": 8311175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a130", "tid": 35568, "ts": 8311475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a540", "tid": 35568, "ts": 8311775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ae30", "tid": 35568, "ts": 8312075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8312247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ba60", "tid": 35568, "ts": 8312375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8312547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bc00", "tid": 35568, "ts": 8312676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8312847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a6e0", "tid": 35568, "ts": 8312975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8313148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bcd0", "tid": 35568, "ts": 8313276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8313448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c900", "tid": 35568, "ts": 8313576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8313748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cb70", "tid": 35568, "ts": 8313918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c9d0", "tid": 35568, "ts": 8314220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bda0", "tid": 35568, "ts": 8314519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6caa0", "tid": 35568, "ts": 8314819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6aaf0", "tid": 35568, "ts": 8315118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8315289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d120", "tid": 35568, "ts": 8315416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8315587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cc40", "tid": 35568, "ts": 8315715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8315888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6be70", "tid": 35568, "ts": 8316016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8316262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bf40", "tid": 35568, "ts": 8316417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8316590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c0e0", "tid": 35568, "ts": 8316720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8316891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6abc0", "tid": 35568, "ts": 8317020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8317192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cde0", "tid": 35568, "ts": 8317319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8317492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c1b0", "tid": 35568, "ts": 8317620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8317792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ceb0", "tid": 35568, "ts": 8317920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c280", "tid": 35568, "ts": 8318222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c350", "tid": 35568, "ts": 8318522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c420", "tid": 35568, "ts": 8318823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d2c0", "tid": 35568, "ts": 8319124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8319296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cf80", "tid": 35568, "ts": 8319425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8319596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d050", "tid": 35568, "ts": 8319724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8319896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a880", "tid": 35568, "ts": 8320024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8320196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d390", "tid": 35568, "ts": 8320324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8320496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a200", "tid": 35568, "ts": 8320623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8320796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a2d0", "tid": 35568, "ts": 8320923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a950", "tid": 35568, "ts": 8321223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6aa20", "tid": 35568, "ts": 8321523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70790", "tid": 35568, "ts": 8321822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d600", "tid": 35568, "ts": 8322122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8322294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f9c0", "tid": 35568, "ts": 8322422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8322594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f410", "tid": 35568, "ts": 8322722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8322895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70040", "tid": 35568, "ts": 8323024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8323195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70110", "tid": 35568, "ts": 8323323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8323494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fb60", "tid": 35568, "ts": 8323622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8323794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d6d0", "tid": 35568, "ts": 8323922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fea0", "tid": 35568, "ts": 8324222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fd00", "tid": 35568, "ts": 8324521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f820", "tid": 35568, "ts": 8324821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e7e0", "tid": 35568, "ts": 8325122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8325293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6da10", "tid": 35568, "ts": 8325420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8325592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e4a0", "tid": 35568, "ts": 8325721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8325893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70450", "tid": 35568, "ts": 8326020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8326193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d7a0", "tid": 35568, "ts": 8326321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8326493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e090", "tid": 35568, "ts": 8326620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8326793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e3d0", "tid": 35568, "ts": 8326920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb705f0", "tid": 35568, "ts": 8327221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f000", "tid": 35568, "ts": 8327520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f4e0", "tid": 35568, "ts": 8327820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e710", "tid": 35568, "ts": 8328120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8328291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb701e0", "tid": 35568, "ts": 8328419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8328591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e300", "tid": 35568, "ts": 8328718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8328892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f8f0", "tid": 35568, "ts": 8329019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8329191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb702b0", "tid": 35568, "ts": 8329318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8329490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f5b0", "tid": 35568, "ts": 8329617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8329789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e980", "tid": 35568, "ts": 8329917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb706c0", "tid": 35568, "ts": 8330218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dae0", "tid": 35568, "ts": 8330519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e160", "tid": 35568, "ts": 8330819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fc30", "tid": 35568, "ts": 8331118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8331291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f0d0", "tid": 35568, "ts": 8331419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8331591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70380", "tid": 35568, "ts": 8331752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dbb0", "tid": 35568, "ts": 8332142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f340", "tid": 35568, "ts": 8332448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ef30", "tid": 35568, "ts": 8332748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e8b0", "tid": 35568, "ts": 8333050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8333223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6def0", "tid": 35568, "ts": 8333351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8333526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dfc0", "tid": 35568, "ts": 8333654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8333827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e640", "tid": 35568, "ts": 8333954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8334127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ea50", "tid": 35568, "ts": 8334254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8334426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dc80", "tid": 35568, "ts": 8334555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8334728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dd50", "tid": 35568, "ts": 8334856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6de20", "tid": 35568, "ts": 8335155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f1a0", "tid": 35568, "ts": 8335456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fa90", "tid": 35568, "ts": 8335757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f680", "tid": 35568, "ts": 8336057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8336229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fdd0", "tid": 35568, "ts": 8336357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8336529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6eb20", "tid": 35568, "ts": 8336724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8336913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f270", "tid": 35568, "ts": 8337041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8337214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ff70", "tid": 35568, "ts": 8337341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8337514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ebf0", "tid": 35568, "ts": 8337641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8337814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e230", "tid": 35568, "ts": 8337942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8338115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f750", "tid": 35568, "ts": 8338242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8338415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70520", "tid": 35568, "ts": 8338543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8338715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70860", "tid": 35568, "ts": 8338843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e570", "tid": 35568, "ts": 8339179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d530", "tid": 35568, "ts": 8339480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ecc0", "tid": 35568, "ts": 8339780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ed90", "tid": 35568, "ts": 8340080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8340252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d870", "tid": 35568, "ts": 8340380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8340553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d940", "tid": 35568, "ts": 8340681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8340854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ee60", "tid": 35568, "ts": 8340983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8341155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70d40", "tid": 35568, "ts": 8341282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8341456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72c20", "tid": 35568, "ts": 8341583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8341755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72cf0", "tid": 35568, "ts": 8341883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb729b0", "tid": 35568, "ts": 8342182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71700", "tid": 35568, "ts": 8342482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb731d0", "tid": 35568, "ts": 8342782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71e50", "tid": 35568, "ts": 8343082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8343253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72f60", "tid": 35568, "ts": 8343381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8343553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70a00", "tid": 35568, "ts": 8343680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8343852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73510", "tid": 35568, "ts": 8343980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8344152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb718a0", "tid": 35568, "ts": 8344307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8344479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb725a0", "tid": 35568, "ts": 8344606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8344778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71cb0", "tid": 35568, "ts": 8344905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8345078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72a80", "tid": 35568, "ts": 8345205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8345377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71be0", "tid": 35568, "ts": 8345505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8345751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72dc0", "tid": 35568, "ts": 8345886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8346058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71970", "tid": 35568, "ts": 8346186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8346412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73850", "tid": 35568, "ts": 8346540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8346712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72740", "tid": 35568, "ts": 8346840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8347011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72e90", "tid": 35568, "ts": 8347139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8347474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71d80", "tid": 35568, "ts": 8347682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8347932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70e10", "tid": 35568, "ts": 8348083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8348345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73ac0", "tid": 35568, "ts": 8348473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8348645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72330", "tid": 35568, "ts": 8348772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8348944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73920", "tid": 35568, "ts": 8349072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8349243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71a40", "tid": 35568, "ts": 8349371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8349543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb728e0", "tid": 35568, "ts": 8349671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8349843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71ff0", "tid": 35568, "ts": 8349970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8350142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73030", "tid": 35568, "ts": 8350271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8350444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73b90", "tid": 35568, "ts": 8350572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8350744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb717d0", "tid": 35568, "ts": 8350872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71080", "tid": 35568, "ts": 8351172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71150", "tid": 35568, "ts": 8351473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71f20", "tid": 35568, "ts": 8351772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73100", "tid": 35568, "ts": 8352071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8352243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70ad0", "tid": 35568, "ts": 8352371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8352542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70fb0", "tid": 35568, "ts": 8352670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8352843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb720c0", "tid": 35568, "ts": 8352971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8353142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72190", "tid": 35568, "ts": 8353270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8353441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73440", "tid": 35568, "ts": 8353569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8353741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71b10", "tid": 35568, "ts": 8353870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70ee0", "tid": 35568, "ts": 8354170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72b50", "tid": 35568, "ts": 8354469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb732a0", "tid": 35568, "ts": 8354767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73370", "tid": 35568, "ts": 8355066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8355238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71220", "tid": 35568, "ts": 8355366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8355540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72260", "tid": 35568, "ts": 8355668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8355841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72400", "tid": 35568, "ts": 8355998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8356169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb735e0", "tid": 35568, "ts": 8356297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8356470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71630", "tid": 35568, "ts": 8356599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8356771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb724d0", "tid": 35568, "ts": 8356899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72810", "tid": 35568, "ts": 8357200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb736b0", "tid": 35568, "ts": 8357500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71560", "tid": 35568, "ts": 8357800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73780", "tid": 35568, "ts": 8358101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8358272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72670", "tid": 35568, "ts": 8358399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8358571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb712f0", "tid": 35568, "ts": 8358699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8358871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb739f0", "tid": 35568, "ts": 8358998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8359170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73c60", "tid": 35568, "ts": 8359298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8359470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70930", "tid": 35568, "ts": 8359598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8359771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70ba0", "tid": 35568, "ts": 8359899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8360073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70c70", "tid": 35568, "ts": 8360201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8360374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb713c0", "tid": 35568, "ts": 8360564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8360737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71490", "tid": 35568, "ts": 8360865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb742e0", "tid": 35568, "ts": 8361166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77060", "tid": 35568, "ts": 8361466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76f90", "tid": 35568, "ts": 8361823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75320", "tid": 35568, "ts": 8362124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8362298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb747c0", "tid": 35568, "ts": 8362426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8362599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74960", "tid": 35568, "ts": 8362728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8362987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76ec0", "tid": 35568, "ts": 8363118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8363292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76770", "tid": 35568, "ts": 8363419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8363591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb746f0", "tid": 35568, "ts": 8363718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8363890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76d20", "tid": 35568, "ts": 8364018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8364189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74d70", "tid": 35568, "ts": 8364317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8364490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb753f0", "tid": 35568, "ts": 8364618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8364789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb750b0", "tid": 35568, "ts": 8364916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75250", "tid": 35568, "ts": 8365216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76020", "tid": 35568, "ts": 8365516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73d30", "tid": 35568, "ts": 8365816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb761c0", "tid": 35568, "ts": 8366115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8366290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73ed0", "tid": 35568, "ts": 8366417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8366590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76b80", "tid": 35568, "ts": 8366718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8366890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb760f0", "tid": 35568, "ts": 8367017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8367189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75180", "tid": 35568, "ts": 8367317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8367488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75730", "tid": 35568, "ts": 8367615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8367788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76df0", "tid": 35568, "ts": 8367916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76910", "tid": 35568, "ts": 8368218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74a30", "tid": 35568, "ts": 8368517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73e00", "tid": 35568, "ts": 8368816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76c50", "tid": 35568, "ts": 8369116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8369287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb754c0", "tid": 35568, "ts": 8369415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8369587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76290", "tid": 35568, "ts": 8369715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8369888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74e40", "tid": 35568, "ts": 8370016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8370188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73fa0", "tid": 35568, "ts": 8370315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8370487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74140", "tid": 35568, "ts": 8370615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8370787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb758d0", "tid": 35568, "ts": 8370915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76840", "tid": 35568, "ts": 8371216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75f50", "tid": 35568, "ts": 8371515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb769e0", "tid": 35568, "ts": 8371814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75660", "tid": 35568, "ts": 8372114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8372286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74890", "tid": 35568, "ts": 8372414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8372586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76500", "tid": 35568, "ts": 8372713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8372885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75590", "tid": 35568, "ts": 8373013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8373185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76360", "tid": 35568, "ts": 8373313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8373486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76ab0", "tid": 35568, "ts": 8373614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8373785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75800", "tid": 35568, "ts": 8373912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb759a0", "tid": 35568, "ts": 8374211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75a70", "tid": 35568, "ts": 8374510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75db0", "tid": 35568, "ts": 8374811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74b00", "tid": 35568, "ts": 8375112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8375285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74210", "tid": 35568, "ts": 8375412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8375584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76430", "tid": 35568, "ts": 8375711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8375885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75b40", "tid": 35568, "ts": 8376012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8376184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb765d0", "tid": 35568, "ts": 8376312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8376483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb766a0", "tid": 35568, "ts": 8376611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8376783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74070", "tid": 35568, "ts": 8376911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb743b0", "tid": 35568, "ts": 8377211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74480", "tid": 35568, "ts": 8377511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74550", "tid": 35568, "ts": 8377810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74620", "tid": 35568, "ts": 8378110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8378282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74bd0", "tid": 35568, "ts": 8378409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8378662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74ca0", "tid": 35568, "ts": 8378849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75c10", "tid": 35568, "ts": 8379156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74f10", "tid": 35568, "ts": 8379458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75ce0", "tid": 35568, "ts": 8379760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74fe0", "tid": 35568, "ts": 8380062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8380235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75e80", "tid": 35568, "ts": 8380363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8380535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79760", "tid": 35568, "ts": 8380664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8380835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79900", "tid": 35568, "ts": 8381006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8381178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb772d0", "tid": 35568, "ts": 8381306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8381480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a2c0", "tid": 35568, "ts": 8381608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8381780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a390", "tid": 35568, "ts": 8381908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79010", "tid": 35568, "ts": 8382208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb799d0", "tid": 35568, "ts": 8382508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb787f0", "tid": 35568, "ts": 8382809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79350", "tid": 35568, "ts": 8383108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8383281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78240", "tid": 35568, "ts": 8383409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8383582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb773a0", "tid": 35568, "ts": 8383710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8383882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb783e0", "tid": 35568, "ts": 8384009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8384182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78f40", "tid": 35568, "ts": 8384309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8384482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78990", "tid": 35568, "ts": 8384609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8384780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb788c0", "tid": 35568, "ts": 8384907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79420", "tid": 35568, "ts": 8385208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78a60", "tid": 35568, "ts": 8385507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb795c0", "tid": 35568, "ts": 8385807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79c40", "tid": 35568, "ts": 8386107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8386279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78310", "tid": 35568, "ts": 8386407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8386579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a460", "tid": 35568, "ts": 8386707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8386879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77610", "tid": 35568, "ts": 8387007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8387179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb784b0", "tid": 35568, "ts": 8387306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8387479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb776e0", "tid": 35568, "ts": 8387607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8387780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78b30", "tid": 35568, "ts": 8387907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb790e0", "tid": 35568, "ts": 8388206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77130", "tid": 35568, "ts": 8388506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77200", "tid": 35568, "ts": 8388805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78c00", "tid": 35568, "ts": 8389105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8389279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77bc0", "tid": 35568, "ts": 8389407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8389578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78da0", "tid": 35568, "ts": 8389706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8389878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78580", "tid": 35568, "ts": 8390006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8390179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77470", "tid": 35568, "ts": 8390306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8390480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77fd0", "tid": 35568, "ts": 8390608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8390781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77540", "tid": 35568, "ts": 8390908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78cd0", "tid": 35568, "ts": 8391208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb794f0", "tid": 35568, "ts": 8391509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79b70", "tid": 35568, "ts": 8391808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79830", "tid": 35568, "ts": 8392108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8392282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78650", "tid": 35568, "ts": 8392409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8392581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb777b0", "tid": 35568, "ts": 8392708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8392881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79de0", "tid": 35568, "ts": 8393009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8393181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79d10", "tid": 35568, "ts": 8393309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8393481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78e70", "tid": 35568, "ts": 8393609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8393781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb791b0", "tid": 35568, "ts": 8393909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8394082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78720", "tid": 35568, "ts": 8394218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8394390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79280", "tid": 35568, "ts": 8394519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8394715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79690", "tid": 35568, "ts": 8394843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79eb0", "tid": 35568, "ts": 8395142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79aa0", "tid": 35568, "ts": 8395443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79f80", "tid": 35568, "ts": 8395743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77880", "tid": 35568, "ts": 8396044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8396216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a050", "tid": 35568, "ts": 8396343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8396517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a120", "tid": 35568, "ts": 8396644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8396816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77950", "tid": 35568, "ts": 8396944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8397116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a1f0", "tid": 35568, "ts": 8397244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8397417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77a20", "tid": 35568, "ts": 8397545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8397716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77af0", "tid": 35568, "ts": 8397844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77c90", "tid": 35568, "ts": 8398144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77d60", "tid": 35568, "ts": 8398445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77e30", "tid": 35568, "ts": 8398744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77f00", "tid": 35568, "ts": 8399046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8399220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb780a0", "tid": 35568, "ts": 8399347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8399519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78170", "tid": 35568, "ts": 8399648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8399820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d520", "tid": 35568, "ts": 8399947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8400121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a530", "tid": 35568, "ts": 8400249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8400420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c9c0", "tid": 35568, "ts": 8400549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8400722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a6d0", "tid": 35568, "ts": 8400849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c750", "tid": 35568, "ts": 8401149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ac80", "tid": 35568, "ts": 8401449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7aa10", "tid": 35568, "ts": 8401749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cdd0", "tid": 35568, "ts": 8402048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8402220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ba50", "tid": 35568, "ts": 8402349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8402522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c820", "tid": 35568, "ts": 8402650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8402823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d5f0", "tid": 35568, "ts": 8402951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8403124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c5b0", "tid": 35568, "ts": 8403252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8403424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b160", "tid": 35568, "ts": 8403552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8403725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b7e0", "tid": 35568, "ts": 8403853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b3d0", "tid": 35568, "ts": 8404154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b4a0", "tid": 35568, "ts": 8404455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c1a0", "tid": 35568, "ts": 8404755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bbf0", "tid": 35568, "ts": 8405055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8405227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ca90", "tid": 35568, "ts": 8405355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8405527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d040", "tid": 35568, "ts": 8405654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8405827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ad50", "tid": 35568, "ts": 8405955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8406127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b8b0", "tid": 35568, "ts": 8406255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8406427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7aef0", "tid": 35568, "ts": 8406556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8406728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cd00", "tid": 35568, "ts": 8406856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bcc0", "tid": 35568, "ts": 8407157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7afc0", "tid": 35568, "ts": 8407458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cea0", "tid": 35568, "ts": 8407759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7aae0", "tid": 35568, "ts": 8408060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8408233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b640", "tid": 35568, "ts": 8408360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8408534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d1e0", "tid": 35568, "ts": 8408661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8408833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cf70", "tid": 35568, "ts": 8408961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8409134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c680", "tid": 35568, "ts": 8409262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8409434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b230", "tid": 35568, "ts": 8409562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8409734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b570", "tid": 35568, "ts": 8409871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bb20", "tid": 35568, "ts": 8410171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d860", "tid": 35568, "ts": 8410472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b300", "tid": 35568, "ts": 8410771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d6c0", "tid": 35568, "ts": 8411072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8411245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b710", "tid": 35568, "ts": 8411373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8411546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b980", "tid": 35568, "ts": 8411673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8411846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c410", "tid": 35568, "ts": 8411973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8412146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a600", "tid": 35568, "ts": 8412274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8412446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a940", "tid": 35568, "ts": 8412574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8412746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bd90", "tid": 35568, "ts": 8412874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7be60", "tid": 35568, "ts": 8413174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bf30", "tid": 35568, "ts": 8413475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d110", "tid": 35568, "ts": 8413775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c000", "tid": 35568, "ts": 8414119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8414292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c0d0", "tid": 35568, "ts": 8414421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8414593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c4e0", "tid": 35568, "ts": 8414721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8414893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c270", "tid": 35568, "ts": 8415022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8415194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d2b0", "tid": 35568, "ts": 8415322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8415495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c340", "tid": 35568, "ts": 8415623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8415794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c8f0", "tid": 35568, "ts": 8415922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cb60", "tid": 35568, "ts": 8416223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cc30", "tid": 35568, "ts": 8416524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d380", "tid": 35568, "ts": 8416824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ae20", "tid": 35568, "ts": 8417126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8417298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d450", "tid": 35568, "ts": 8417427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8417599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d790", "tid": 35568, "ts": 8417727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8417898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a7a0", "tid": 35568, "ts": 8418026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8418200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a870", "tid": 35568, "ts": 8418327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8418500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7abb0", "tid": 35568, "ts": 8418628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8418801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b090", "tid": 35568, "ts": 8418929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8419102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f260", "tid": 35568, "ts": 8419386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8419704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e3c0", "tid": 35568, "ts": 8419833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb801d0", "tid": 35568, "ts": 8420134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7eb10", "tid": 35568, "ts": 8420433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f670", "tid": 35568, "ts": 8420733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f0c0", "tid": 35568, "ts": 8421033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8421206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f810", "tid": 35568, "ts": 8421334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8421508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7eff0", "tid": 35568, "ts": 8421636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8421809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ed80", "tid": 35568, "ts": 8421937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8422110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ee50", "tid": 35568, "ts": 8422238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8422411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb809f0", "tid": 35568, "ts": 8422539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8422711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f9b0", "tid": 35568, "ts": 8422839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e970", "tid": 35568, "ts": 8423140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f330", "tid": 35568, "ts": 8423440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb805e0", "tid": 35568, "ts": 8423741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80920", "tid": 35568, "ts": 8424042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8424215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80c60", "tid": 35568, "ts": 8424344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8424517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dd40", "tid": 35568, "ts": 8424644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8424817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e490", "tid": 35568, "ts": 8424945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8425119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ff60", "tid": 35568, "ts": 8425247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8425441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ebe0", "tid": 35568, "ts": 8425582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8425755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f5a0", "tid": 35568, "ts": 8425883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ef20", "tid": 35568, "ts": 8426210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e560", "tid": 35568, "ts": 8426512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f190", "tid": 35568, "ts": 8426812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fb50", "tid": 35568, "ts": 8427113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8427285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f400", "tid": 35568, "ts": 8427413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8427586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fdc0", "tid": 35568, "ts": 8427713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8427886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f4d0", "tid": 35568, "ts": 8428014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8428188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7de10", "tid": 35568, "ts": 8428316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8428488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ecb0", "tid": 35568, "ts": 8428617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8428790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80510", "tid": 35568, "ts": 8428918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f740", "tid": 35568, "ts": 8429219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e080", "tid": 35568, "ts": 8429522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ea40", "tid": 35568, "ts": 8429821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e150", "tid": 35568, "ts": 8430122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8430295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f8e0", "tid": 35568, "ts": 8430423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8430595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fa80", "tid": 35568, "ts": 8430786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8430959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fc20", "tid": 35568, "ts": 8431088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8431261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fcf0", "tid": 35568, "ts": 8431390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8431562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fe90", "tid": 35568, "ts": 8431691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8431864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80030", "tid": 35568, "ts": 8431992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8432165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80440", "tid": 35568, "ts": 8432293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8432466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80100", "tid": 35568, "ts": 8432594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8432767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb806b0", "tid": 35568, "ts": 8432895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb802a0", "tid": 35568, "ts": 8433196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80780", "tid": 35568, "ts": 8433497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80b90", "tid": 35568, "ts": 8433799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e630", "tid": 35568, "ts": 8434101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8434315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dee0", "tid": 35568, "ts": 8434444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8434617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80370", "tid": 35568, "ts": 8434744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8434916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dba0", "tid": 35568, "ts": 8435046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8435218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80850", "tid": 35568, "ts": 8435346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8435517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80ac0", "tid": 35568, "ts": 8435646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8435819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d930", "tid": 35568, "ts": 8435948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8436119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7da00", "tid": 35568, "ts": 8436247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8436419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dad0", "tid": 35568, "ts": 8436546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8436719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e2f0", "tid": 35568, "ts": 8436847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dc70", "tid": 35568, "ts": 8437148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dfb0", "tid": 35568, "ts": 8437448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e220", "tid": 35568, "ts": 8437749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e700", "tid": 35568, "ts": 8438050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8438223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e7d0", "tid": 35568, "ts": 8438351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8438524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e8a0", "tid": 35568, "ts": 8438652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8438825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb836a0", "tid": 35568, "ts": 8438953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8439126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83df0", "tid": 35568, "ts": 8439255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8439427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82e80", "tid": 35568, "ts": 8439556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8439729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb835d0", "tid": 35568, "ts": 8439857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83770", "tid": 35568, "ts": 8440157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81f10", "tid": 35568, "ts": 8440458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83d20", "tid": 35568, "ts": 8440759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81d70", "tid": 35568, "ts": 8441091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8441285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83360", "tid": 35568, "ts": 8441413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8441586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81fe0", "tid": 35568, "ts": 8441714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8441886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82180", "tid": 35568, "ts": 8442014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8442187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81e40", "tid": 35568, "ts": 8442316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8442488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb828d0", "tid": 35568, "ts": 8442615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8442789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82f50", "tid": 35568, "ts": 8442917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81bd0", "tid": 35568, "ts": 8443218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82db0", "tid": 35568, "ts": 8443519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82b40", "tid": 35568, "ts": 8443819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82730", "tid": 35568, "ts": 8444120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8444293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83020", "tid": 35568, "ts": 8444421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8444593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb823f0", "tid": 35568, "ts": 8444722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8444895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb820b0", "tid": 35568, "ts": 8445023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8445197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83c50", "tid": 35568, "ts": 8445325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8445497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82250", "tid": 35568, "ts": 8445625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8445797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb831c0", "tid": 35568, "ts": 8445924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb824c0", "tid": 35568, "ts": 8446226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82ce0", "tid": 35568, "ts": 8446526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82590", "tid": 35568, "ts": 8446826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82320", "tid": 35568, "ts": 8447126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8447297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82660", "tid": 35568, "ts": 8447528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8447702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb812e0", "tid": 35568, "ts": 8447831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81070", "tid": 35568, "ts": 8448130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84060", "tid": 35568, "ts": 8448429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81140", "tid": 35568, "ts": 8448729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81890", "tid": 35568, "ts": 8449030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8449204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83840", "tid": 35568, "ts": 8449426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8449616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81550", "tid": 35568, "ts": 8449744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8449917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82800", "tid": 35568, "ts": 8450045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8450218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb830f0", "tid": 35568, "ts": 8450346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8450519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83290", "tid": 35568, "ts": 8450646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8450820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83910", "tid": 35568, "ts": 8450948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8451121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83430", "tid": 35568, "ts": 8451249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8451421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83ec0", "tid": 35568, "ts": 8451549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8451722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83500", "tid": 35568, "ts": 8451850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80d30", "tid": 35568, "ts": 8452152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81ca0", "tid": 35568, "ts": 8452454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb839e0", "tid": 35568, "ts": 8452756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81480", "tid": 35568, "ts": 8453057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8453229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb829a0", "tid": 35568, "ts": 8453357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8453529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83ab0", "tid": 35568, "ts": 8453657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8453829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82a70", "tid": 35568, "ts": 8453956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8454129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83b80", "tid": 35568, "ts": 8454257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8454429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81210", "tid": 35568, "ts": 8454557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8454730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83f90", "tid": 35568, "ts": 8454858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80e00", "tid": 35568, "ts": 8455159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80ed0", "tid": 35568, "ts": 8455459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82c10", "tid": 35568, "ts": 8455759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb816f0", "tid": 35568, "ts": 8456058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8456230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80fa0", "tid": 35568, "ts": 8456358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8456531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb813b0", "tid": 35568, "ts": 8456701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8456970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81620", "tid": 35568, "ts": 8457181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8457378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb817c0", "tid": 35568, "ts": 8457579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8457863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81960", "tid": 35568, "ts": 8457992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8458163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81a30", "tid": 35568, "ts": 8458291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8458464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81b00", "tid": 35568, "ts": 8458592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8458763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb853e0", "tid": 35568, "ts": 8458891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84540", "tid": 35568, "ts": 8459191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84610", "tid": 35568, "ts": 8459491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86b70", "tid": 35568, "ts": 8459791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85b30", "tid": 35568, "ts": 8460090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8460262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb861b0", "tid": 35568, "ts": 8460391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8460564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb865c0", "tid": 35568, "ts": 8460692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8460865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85f40", "tid": 35568, "ts": 8460993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8461165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86900", "tid": 35568, "ts": 8461294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8461466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87390", "tid": 35568, "ts": 8461594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8461765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87460", "tid": 35568, "ts": 8461893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86350", "tid": 35568, "ts": 8462194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb846e0", "tid": 35568, "ts": 8462494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb869d0", "tid": 35568, "ts": 8462793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86690", "tid": 35568, "ts": 8463093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8463266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86c40", "tid": 35568, "ts": 8463394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8463566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb872c0", "tid": 35568, "ts": 8463694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8463866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86d10", "tid": 35568, "ts": 8463994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8464167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86760", "tid": 35568, "ts": 8464295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8464467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84130", "tid": 35568, "ts": 8464595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8464767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84f00", "tid": 35568, "ts": 8464894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87050", "tid": 35568, "ts": 8465194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85650", "tid": 35568, "ts": 8465495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb854b0", "tid": 35568, "ts": 8465796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84880", "tid": 35568, "ts": 8466097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8466269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85990", "tid": 35568, "ts": 8466397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8466569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86aa0", "tid": 35568, "ts": 8466697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8466869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb847b0", "tid": 35568, "ts": 8466997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8467168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86de0", "tid": 35568, "ts": 8467297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8467469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86eb0", "tid": 35568, "ts": 8467598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8467770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86f80", "tid": 35568, "ts": 8467898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84950", "tid": 35568, "ts": 8468198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84a20", "tid": 35568, "ts": 8468500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84470", "tid": 35568, "ts": 8468801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87120", "tid": 35568, "ts": 8469100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8469272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86830", "tid": 35568, "ts": 8469400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8469571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84fd0", "tid": 35568, "ts": 8469699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8469872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84af0", "tid": 35568, "ts": 8470000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8470171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84bc0", "tid": 35568, "ts": 8470300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8470472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb850a0", "tid": 35568, "ts": 8470600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8470772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85170", "tid": 35568, "ts": 8470900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb871f0", "tid": 35568, "ts": 8471200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86010", "tid": 35568, "ts": 8471500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84c90", "tid": 35568, "ts": 8471800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84d60", "tid": 35568, "ts": 8472101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8472286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85240", "tid": 35568, "ts": 8472458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8472630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85310", "tid": 35568, "ts": 8472759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8472932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85da0", "tid": 35568, "ts": 8473061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8473234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84200", "tid": 35568, "ts": 8473362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8473535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85580", "tid": 35568, "ts": 8473663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8473836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb842d0", "tid": 35568, "ts": 8473964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8474136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb843a0", "tid": 35568, "ts": 8474265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8474437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84e30", "tid": 35568, "ts": 8474566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8474739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85cd0", "tid": 35568, "ts": 8474867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85720", "tid": 35568, "ts": 8475167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86280", "tid": 35568, "ts": 8475467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb857f0", "tid": 35568, "ts": 8475768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb858c0", "tid": 35568, "ts": 8476069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8476240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85a60", "tid": 35568, "ts": 8476369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8476541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85c00", "tid": 35568, "ts": 8476670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8476841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85e70", "tid": 35568, "ts": 8476970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8477144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb860e0", "tid": 35568, "ts": 8477272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8477444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86420", "tid": 35568, "ts": 8477573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8477745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb864f0", "tid": 35568, "ts": 8477873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88a50", "tid": 35568, "ts": 8478174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87fc0", "tid": 35568, "ts": 8478474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89680", "tid": 35568, "ts": 8478775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87870", "tid": 35568, "ts": 8479077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8479250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88230", "tid": 35568, "ts": 8479378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8479550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a380", "tid": 35568, "ts": 8479678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8479850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb895b0", "tid": 35568, "ts": 8479979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8480151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb887e0", "tid": 35568, "ts": 8480280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8480452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87940", "tid": 35568, "ts": 8480581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8480752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb891a0", "tid": 35568, "ts": 8480881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8481097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87530", "tid": 35568, "ts": 8481226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8481398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89f70", "tid": 35568, "ts": 8481552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8481724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a520", "tid": 35568, "ts": 8481853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb883d0", "tid": 35568, "ts": 8482156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87d50", "tid": 35568, "ts": 8482457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88640", "tid": 35568, "ts": 8482757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb877a0", "tid": 35568, "ts": 8483057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8483230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88710", "tid": 35568, "ts": 8483357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8483531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89270", "tid": 35568, "ts": 8483659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8483831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87bb0", "tid": 35568, "ts": 8483960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8484133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb888b0", "tid": 35568, "ts": 8484260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8484432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88160", "tid": 35568, "ts": 8484561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8484734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89dd0", "tid": 35568, "ts": 8484863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88300", "tid": 35568, "ts": 8485163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88980", "tid": 35568, "ts": 8485462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88b20", "tid": 35568, "ts": 8485762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87c80", "tid": 35568, "ts": 8486061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8486234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88bf0", "tid": 35568, "ts": 8486362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8486534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88090", "tid": 35568, "ts": 8486662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8486835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89340", "tid": 35568, "ts": 8486963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8487136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89ea0", "tid": 35568, "ts": 8487264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8487436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88cc0", "tid": 35568, "ts": 8487563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8487734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87a10", "tid": 35568, "ts": 8487862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88d90", "tid": 35568, "ts": 8488224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89750", "tid": 35568, "ts": 8488524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a790", "tid": 35568, "ts": 8488825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88e60", "tid": 35568, "ts": 8489126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8489298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb890d0", "tid": 35568, "ts": 8489426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8489598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb884a0", "tid": 35568, "ts": 8489725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8489899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb899c0", "tid": 35568, "ts": 8490027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8490199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a450", "tid": 35568, "ts": 8490328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8490501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88570", "tid": 35568, "ts": 8490629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8490802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a040", "tid": 35568, "ts": 8490930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8491102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89410", "tid": 35568, "ts": 8491230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8491403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87e20", "tid": 35568, "ts": 8491531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8491704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88f30", "tid": 35568, "ts": 8491832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a5f0", "tid": 35568, "ts": 8492134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb898f0", "tid": 35568, "ts": 8492434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a110", "tid": 35568, "ts": 8492735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a6c0", "tid": 35568, "ts": 8493037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8493209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a860", "tid": 35568, "ts": 8493337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8493509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89000", "tid": 35568, "ts": 8493637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8493811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb894e0", "tid": 35568, "ts": 8493939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8494112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89a90", "tid": 35568, "ts": 8494239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8494411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87600", "tid": 35568, "ts": 8494563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8494737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb876d0", "tid": 35568, "ts": 8494865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87ae0", "tid": 35568, "ts": 8495167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a1e0", "tid": 35568, "ts": 8495467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89820", "tid": 35568, "ts": 8495768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89b60", "tid": 35568, "ts": 8496070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8496243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87ef0", "tid": 35568, "ts": 8496371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8496544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89c30", "tid": 35568, "ts": 8496673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8496845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89d00", "tid": 35568, "ts": 8496973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8497146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a2b0", "tid": 35568, "ts": 8497275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8497446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8db90", "tid": 35568, "ts": 8497575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8497749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d5e0", "tid": 35568, "ts": 8497877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d9f0", "tid": 35568, "ts": 8498177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8be50", "tid": 35568, "ts": 8498477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bd80", "tid": 35568, "ts": 8498777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c190", "tid": 35568, "ts": 8499078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8499250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ad40", "tid": 35568, "ts": 8499379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8499552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bf20", "tid": 35568, "ts": 8499680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8499852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d850", "tid": 35568, "ts": 8500038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8500211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d100", "tid": 35568, "ts": 8500340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8500513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c5a0", "tid": 35568, "ts": 8500642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8500815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b2f0", "tid": 35568, "ts": 8500944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8501117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bff0", "tid": 35568, "ts": 8501308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8501481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c8e0", "tid": 35568, "ts": 8501609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8501782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dc60", "tid": 35568, "ts": 8501911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d6b0", "tid": 35568, "ts": 8502212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d370", "tid": 35568, "ts": 8502513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c0c0", "tid": 35568, "ts": 8502815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d780", "tid": 35568, "ts": 8503116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8503289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d440", "tid": 35568, "ts": 8503417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8503688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dac0", "tid": 35568, "ts": 8503822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8503995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b7d0", "tid": 35568, "ts": 8504124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8504297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d1d0", "tid": 35568, "ts": 8504427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8504600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d920", "tid": 35568, "ts": 8504729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8504901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c260", "tid": 35568, "ts": 8505028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8505202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ba40", "tid": 35568, "ts": 8505330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8505503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a930", "tid": 35568, "ts": 8505631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8505846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c330", "tid": 35568, "ts": 8505975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8506147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c810", "tid": 35568, "ts": 8506276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8506450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ac70", "tid": 35568, "ts": 8506578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8506750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c670", "tid": 35568, "ts": 8506879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ccf0", "tid": 35568, "ts": 8507180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c9b0", "tid": 35568, "ts": 8507480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c740", "tid": 35568, "ts": 8507781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d2a0", "tid": 35568, "ts": 8508080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8508253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ca80", "tid": 35568, "ts": 8508381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8508553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d510", "tid": 35568, "ts": 8508680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8508855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aa00", "tid": 35568, "ts": 8508982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8509155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aad0", "tid": 35568, "ts": 8509283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8509456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b490", "tid": 35568, "ts": 8509584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8509757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ae10", "tid": 35568, "ts": 8509885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bb10", "tid": 35568, "ts": 8510185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c400", "tid": 35568, "ts": 8510486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cb50", "tid": 35568, "ts": 8510786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c4d0", "tid": 35568, "ts": 8511087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8511260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aba0", "tid": 35568, "ts": 8511387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8511560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aee0", "tid": 35568, "ts": 8511688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8511861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8afb0", "tid": 35568, "ts": 8511989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8512162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cc20", "tid": 35568, "ts": 8512290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8512462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b080", "tid": 35568, "ts": 8512590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8512762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b150", "tid": 35568, "ts": 8512889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b220", "tid": 35568, "ts": 8513192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b3c0", "tid": 35568, "ts": 8513492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d030", "tid": 35568, "ts": 8513794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cdc0", "tid": 35568, "ts": 8514095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8514268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ce90", "tid": 35568, "ts": 8514439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8514612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cf60", "tid": 35568, "ts": 8514740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8514912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b560", "tid": 35568, "ts": 8515040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8515212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b630", "tid": 35568, "ts": 8515340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8515512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b700", "tid": 35568, "ts": 8515640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8515813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b8a0", "tid": 35568, "ts": 8515941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8516114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b970", "tid": 35568, "ts": 8516242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8516414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bbe0", "tid": 35568, "ts": 8516542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8516715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bcb0", "tid": 35568, "ts": 8516842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e2e0", "tid": 35568, "ts": 8517143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ea30", "tid": 35568, "ts": 8517443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb900f0", "tid": 35568, "ts": 8517743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f320", "tid": 35568, "ts": 8518042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8518215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f250", "tid": 35568, "ts": 8518343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8518515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f0b0", "tid": 35568, "ts": 8518642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8518814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f180", "tid": 35568, "ts": 8518943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8519115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fdb0", "tid": 35568, "ts": 8519319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8519504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ebd0", "tid": 35568, "ts": 8519632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8519804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f730", "tid": 35568, "ts": 8519932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8520105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e550", "tid": 35568, "ts": 8520233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8520405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e3b0", "tid": 35568, "ts": 8520533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8520705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f3f0", "tid": 35568, "ts": 8520833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f4c0", "tid": 35568, "ts": 8521133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f8d0", "tid": 35568, "ts": 8521434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8eca0", "tid": 35568, "ts": 8521735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e140", "tid": 35568, "ts": 8522036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8522209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90020", "tid": 35568, "ts": 8522337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8522511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dfa0", "tid": 35568, "ts": 8522639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8522811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90b80", "tid": 35568, "ts": 8522940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8523113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8eb00", "tid": 35568, "ts": 8523241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8523415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e070", "tid": 35568, "ts": 8523543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8523715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e620", "tid": 35568, "ts": 8523843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90d20", "tid": 35568, "ts": 8524143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fc10", "tid": 35568, "ts": 8524442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f9a0", "tid": 35568, "ts": 8524742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90360", "tid": 35568, "ts": 8525042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8525217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ed70", "tid": 35568, "ts": 8525345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8525518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fe80", "tid": 35568, "ts": 8525645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8525819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb909e0", "tid": 35568, "ts": 8525948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8526121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ff50", "tid": 35568, "ts": 8526248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8526420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f590", "tid": 35568, "ts": 8526547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8526720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e210", "tid": 35568, "ts": 8526849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90df0", "tid": 35568, "ts": 8527149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fa70", "tid": 35568, "ts": 8527449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90c50", "tid": 35568, "ts": 8527750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e6f0", "tid": 35568, "ts": 8528050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8528222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e480", "tid": 35568, "ts": 8528350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8528522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e7c0", "tid": 35568, "ts": 8528650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8528822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f660", "tid": 35568, "ts": 8528950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8529122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ee40", "tid": 35568, "ts": 8529250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8529422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e890", "tid": 35568, "ts": 8529550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8529724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f800", "tid": 35568, "ts": 8529852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90430", "tid": 35568, "ts": 8530152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e960", "tid": 35568, "ts": 8530453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fce0", "tid": 35568, "ts": 8530755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb905d0", "tid": 35568, "ts": 8531057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8531229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb901c0", "tid": 35568, "ts": 8531358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8531531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90ec0", "tid": 35568, "ts": 8531659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8531831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dd30", "tid": 35568, "ts": 8531959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8532132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ef10", "tid": 35568, "ts": 8532260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8532434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90500", "tid": 35568, "ts": 8532562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8532735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fb40", "tid": 35568, "ts": 8532862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90290", "tid": 35568, "ts": 8533163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb906a0", "tid": 35568, "ts": 8533463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90770", "tid": 35568, "ts": 8533763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90840", "tid": 35568, "ts": 8534064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8534235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8efe0", "tid": 35568, "ts": 8534364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8534536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90910", "tid": 35568, "ts": 8534730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8534943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90ab0", "tid": 35568, "ts": 8535073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8535244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8de00", "tid": 35568, "ts": 8535372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8535544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ded0", "tid": 35568, "ts": 8535672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8535844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52de0", "tid": 35568, "ts": 8535973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8536144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51c00", "tid": 35568, "ts": 8536272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8536444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53120", "tid": 35568, "ts": 8536572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8536744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50470", "tid": 35568, "ts": 8536872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb531f0", "tid": 35568, "ts": 8537173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb510a0", "tid": 35568, "ts": 8537474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51cd0", "tid": 35568, "ts": 8537775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50130", "tid": 35568, "ts": 8538077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8538250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51b30", "tid": 35568, "ts": 8538377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8538549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb525c0", "tid": 35568, "ts": 8538677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8538849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52aa0", "tid": 35568, "ts": 8538977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8539150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51720", "tid": 35568, "ts": 8539320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8539492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51580", "tid": 35568, "ts": 8539620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8539793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb532c0", "tid": 35568, "ts": 8539921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51650", "tid": 35568, "ts": 8540221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52900", "tid": 35568, "ts": 8540521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52b70", "tid": 35568, "ts": 8540821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb506e0", "tid": 35568, "ts": 8541122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8541295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52eb0", "tid": 35568, "ts": 8541423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8541596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52830", "tid": 35568, "ts": 8541724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8541896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51240", "tid": 35568, "ts": 8542024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8542195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50fd0", "tid": 35568, "ts": 8542323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8542496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb529d0", "tid": 35568, "ts": 8542624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8542796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51170", "tid": 35568, "ts": 8542924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50f00", "tid": 35568, "ts": 8543224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51f40", "tid": 35568, "ts": 8543525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51e70", "tid": 35568, "ts": 8543823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51da0", "tid": 35568, "ts": 8544123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8544295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50200", "tid": 35568, "ts": 8544424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8544596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52010", "tid": 35568, "ts": 8544724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8544896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52690", "tid": 35568, "ts": 8545024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8545197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51310", "tid": 35568, "ts": 8545325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8545497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb502d0", "tid": 35568, "ts": 8545625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8545797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb517f0", "tid": 35568, "ts": 8545925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50880", "tid": 35568, "ts": 8546226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53390", "tid": 35568, "ts": 8546526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb518c0", "tid": 35568, "ts": 8546826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52280", "tid": 35568, "ts": 8547127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8547298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50950", "tid": 35568, "ts": 8547466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8547641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51990", "tid": 35568, "ts": 8547769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8547942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51a60", "tid": 35568, "ts": 8548072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8548245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb513e0", "tid": 35568, "ts": 8548373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8548545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb514b0", "tid": 35568, "ts": 8548672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8548845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52f80", "tid": 35568, "ts": 8548973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8549145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb520e0", "tid": 35568, "ts": 8549273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8549445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50540", "tid": 35568, "ts": 8549572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8549744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb521b0", "tid": 35568, "ts": 8549873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52350", "tid": 35568, "ts": 8550172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52420", "tid": 35568, "ts": 8550510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52c40", "tid": 35568, "ts": 8550811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52d10", "tid": 35568, "ts": 8551112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8551285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52760", "tid": 35568, "ts": 8551413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8551587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53460", "tid": 35568, "ts": 8551715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8551888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb507b0", "tid": 35568, "ts": 8552016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8552189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb524f0", "tid": 35568, "ts": 8552317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8552489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53050", "tid": 35568, "ts": 8552617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8552791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb503a0", "tid": 35568, "ts": 8552919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50a20", "tid": 35568, "ts": 8553219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50610", "tid": 35568, "ts": 8553519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50af0", "tid": 35568, "ts": 8553821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50bc0", "tid": 35568, "ts": 8554121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8554294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50c90", "tid": 35568, "ts": 8554422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8554596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50d60", "tid": 35568, "ts": 8554724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8554898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50e30", "tid": 35568, "ts": 8555026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8555198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231170", "tid": 35568, "ts": 8555390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8555565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231240", "tid": 35568, "ts": 8555694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8555867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232f80", "tid": 35568, "ts": 8555995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8556168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2321b0", "tid": 35568, "ts": 8556295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8556468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231720", "tid": 35568, "ts": 8556596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8556768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2325c0", "tid": 35568, "ts": 8556896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2314b0", "tid": 35568, "ts": 8557196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231cd0", "tid": 35568, "ts": 8557496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230950", "tid": 35568, "ts": 8557797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230bc0", "tid": 35568, "ts": 8558097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8558269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233050", "tid": 35568, "ts": 8558397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8558569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230f00", "tid": 35568, "ts": 8558696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8558868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231f40", "tid": 35568, "ts": 8558997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8559168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231310", "tid": 35568, "ts": 8559320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8559494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231e70", "tid": 35568, "ts": 8559623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8559796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2317f0", "tid": 35568, "ts": 8559924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232010", "tid": 35568, "ts": 8560224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2329d0", "tid": 35568, "ts": 8560523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230fd0", "tid": 35568, "ts": 8560823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2318c0", "tid": 35568, "ts": 8561124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8561296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2313e0", "tid": 35568, "ts": 8561425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8561597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232de0", "tid": 35568, "ts": 8561725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8561897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231580", "tid": 35568, "ts": 8562024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8562197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231650", "tid": 35568, "ts": 8562325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8562497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2320e0", "tid": 35568, "ts": 8562625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8562796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231990", "tid": 35568, "ts": 8562924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232280", "tid": 35568, "ts": 8563224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232d10", "tid": 35568, "ts": 8563525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230200", "tid": 35568, "ts": 8563826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2310a0", "tid": 35568, "ts": 8564126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8564299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230540", "tid": 35568, "ts": 8564426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8564599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233120", "tid": 35568, "ts": 8564727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8564899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2332c0", "tid": 35568, "ts": 8565026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8565200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230d60", "tid": 35568, "ts": 8565328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8565499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232350", "tid": 35568, "ts": 8565627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8565799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232420", "tid": 35568, "ts": 8565928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8566212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230e30", "tid": 35568, "ts": 8566456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8566724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232900", "tid": 35568, "ts": 8566865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8567127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231a60", "tid": 35568, "ts": 8567350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8567521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233460", "tid": 35568, "ts": 8567649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8567822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232eb0", "tid": 35568, "ts": 8567950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8568122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2324f0", "tid": 35568, "ts": 8568250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8568422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233390", "tid": 35568, "ts": 8568550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8568722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231b30", "tid": 35568, "ts": 8568849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231c00", "tid": 35568, "ts": 8569151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232690", "tid": 35568, "ts": 8569508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2331f0", "tid": 35568, "ts": 8569810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230130", "tid": 35568, "ts": 8570110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8570283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231da0", "tid": 35568, "ts": 8570411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8570584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230af0", "tid": 35568, "ts": 8570712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8570886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230610", "tid": 35568, "ts": 8571014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8571187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232760", "tid": 35568, "ts": 8571314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8571487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232830", "tid": 35568, "ts": 8571614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8571787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232aa0", "tid": 35568, "ts": 8571914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232b70", "tid": 35568, "ts": 8572215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232c40", "tid": 35568, "ts": 8572515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2302d0", "tid": 35568, "ts": 8572815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2303a0", "tid": 35568, "ts": 8573116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8573288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230470", "tid": 35568, "ts": 8573415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8573587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2306e0", "tid": 35568, "ts": 8573715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8573888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2307b0", "tid": 35568, "ts": 8574016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8574188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230880", "tid": 35568, "ts": 8574316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8574490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230a20", "tid": 35568, "ts": 8574618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8574792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230c90", "tid": 35568, "ts": 8574920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2366c0", "tid": 35568, "ts": 8575221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2355b0", "tid": 35568, "ts": 8575523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233bb0", "tid": 35568, "ts": 8575823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2336d0", "tid": 35568, "ts": 8576124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8576297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233940", "tid": 35568, "ts": 8576426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8576599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235820", "tid": 35568, "ts": 8576727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8576899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236790", "tid": 35568, "ts": 8577027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8577243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233a10", "tid": 35568, "ts": 8577372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8577545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235340", "tid": 35568, "ts": 8577673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8577845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2343d0", "tid": 35568, "ts": 8577973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8578146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233ef0", "tid": 35568, "ts": 8578274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8578448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234b20", "tid": 35568, "ts": 8578576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8578749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234090", "tid": 35568, "ts": 8578878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2365f0", "tid": 35568, "ts": 8579178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233c80", "tid": 35568, "ts": 8579480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236860", "tid": 35568, "ts": 8579780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234570", "tid": 35568, "ts": 8580081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8580254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234640", "tid": 35568, "ts": 8580382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8580554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2358f0", "tid": 35568, "ts": 8580682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8580854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235b60", "tid": 35568, "ts": 8580982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8581154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234bf0", "tid": 35568, "ts": 8581328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8581501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2361e0", "tid": 35568, "ts": 8581628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8581890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235c30", "tid": 35568, "ts": 8582022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8582197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234710", "tid": 35568, "ts": 8582326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8582499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235680", "tid": 35568, "ts": 8582628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8582801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233ae0", "tid": 35568, "ts": 8582930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8583102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235ea0", "tid": 35568, "ts": 8583230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8583402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235270", "tid": 35568, "ts": 8583531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8583703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235750", "tid": 35568, "ts": 8583831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2359c0", "tid": 35568, "ts": 8584132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234f30", "tid": 35568, "ts": 8584434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235a90", "tid": 35568, "ts": 8584736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2347e0", "tid": 35568, "ts": 8585038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8585210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234a50", "tid": 35568, "ts": 8585337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8585509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234cc0", "tid": 35568, "ts": 8585638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8585811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2351a0", "tid": 35568, "ts": 8585939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8586111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233d50", "tid": 35568, "ts": 8586239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8586411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2350d0", "tid": 35568, "ts": 8586538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8586711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234160", "tid": 35568, "ts": 8586838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2348b0", "tid": 35568, "ts": 8587138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234980", "tid": 35568, "ts": 8587439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236040", "tid": 35568, "ts": 8587740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235d00", "tid": 35568, "ts": 8588039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8588211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2344a0", "tid": 35568, "ts": 8588339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8588511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233530", "tid": 35568, "ts": 8588639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8588810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235f70", "tid": 35568, "ts": 8588938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8589110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234d90", "tid": 35568, "ts": 8589238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8589411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2337a0", "tid": 35568, "ts": 8589539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8589711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233600", "tid": 35568, "ts": 8589839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234e60", "tid": 35568, "ts": 8590183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235000", "tid": 35568, "ts": 8590484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235410", "tid": 35568, "ts": 8590785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2354e0", "tid": 35568, "ts": 8591084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8591257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233fc0", "tid": 35568, "ts": 8591384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8591556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233870", "tid": 35568, "ts": 8591684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8591857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236110", "tid": 35568, "ts": 8591984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8592156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235dd0", "tid": 35568, "ts": 8592283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8592455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2362b0", "tid": 35568, "ts": 8592583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8592755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233e20", "tid": 35568, "ts": 8592883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236380", "tid": 35568, "ts": 8593182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236450", "tid": 35568, "ts": 8593481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236520", "tid": 35568, "ts": 8593781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234230", "tid": 35568, "ts": 8594080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8594253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234300", "tid": 35568, "ts": 8594382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8594577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239780", "tid": 35568, "ts": 8594705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8594878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236ee0", "tid": 35568, "ts": 8595006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8595179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236d40", "tid": 35568, "ts": 8595307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8595479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236c70", "tid": 35568, "ts": 8595608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8595780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239370", "tid": 35568, "ts": 8595908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239850", "tid": 35568, "ts": 8596209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2395e0", "tid": 35568, "ts": 8596509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236e10", "tid": 35568, "ts": 8596809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237560", "tid": 35568, "ts": 8597110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8597323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239920", "tid": 35568, "ts": 8597502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8597676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239440", "tid": 35568, "ts": 8597804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8597977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238330", "tid": 35568, "ts": 8598105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8598278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2377d0", "tid": 35568, "ts": 8598406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8598578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237150", "tid": 35568, "ts": 8598707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8598879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238740", "tid": 35568, "ts": 8599008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8599180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239100", "tid": 35568, "ts": 8599309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8599481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2373c0", "tid": 35568, "ts": 8599609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8599781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2399f0", "tid": 35568, "ts": 8599910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239510", "tid": 35568, "ts": 8600210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237970", "tid": 35568, "ts": 8600511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236ba0", "tid": 35568, "ts": 8600812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238e90", "tid": 35568, "ts": 8601112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8601284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238670", "tid": 35568, "ts": 8601412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8601585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237be0", "tid": 35568, "ts": 8601712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8601883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2396b0", "tid": 35568, "ts": 8602012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8602185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236fb0", "tid": 35568, "ts": 8602313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8602485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237e50", "tid": 35568, "ts": 8602612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8602783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238810", "tid": 35568, "ts": 8602911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237080", "tid": 35568, "ts": 8603210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237ff0", "tid": 35568, "ts": 8603511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237700", "tid": 35568, "ts": 8603811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2372f0", "tid": 35568, "ts": 8604114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8604286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237220", "tid": 35568, "ts": 8604414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8604585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2380c0", "tid": 35568, "ts": 8604714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8604887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238190", "tid": 35568, "ts": 8605014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8605187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238f60", "tid": 35568, "ts": 8605314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8605487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238a80", "tid": 35568, "ts": 8605615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8605787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2391d0", "tid": 35568, "ts": 8605914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239ac0", "tid": 35568, "ts": 8606213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239b90", "tid": 35568, "ts": 8606513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237f20", "tid": 35568, "ts": 8606813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237490", "tid": 35568, "ts": 8607111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8607283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237630", "tid": 35568, "ts": 8607411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8607584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239c60", "tid": 35568, "ts": 8607711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8607882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2378a0", "tid": 35568, "ts": 8608010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8608183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238260", "tid": 35568, "ts": 8608311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8608482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237a40", "tid": 35568, "ts": 8608610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8608783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236930", "tid": 35568, "ts": 8608911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2388e0", "tid": 35568, "ts": 8609212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237b10", "tid": 35568, "ts": 8609512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236a00", "tid": 35568, "ts": 8609813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238400", "tid": 35568, "ts": 8610113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8610285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238b50", "tid": 35568, "ts": 8610412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8610585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2384d0", "tid": 35568, "ts": 8610713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8610884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2389b0", "tid": 35568, "ts": 8611012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8611185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236ad0", "tid": 35568, "ts": 8611313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8611485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237d80", "tid": 35568, "ts": 8611613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8611785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238dc0", "tid": 35568, "ts": 8611940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8612113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237cb0", "tid": 35568, "ts": 8612242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8612414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2385a0", "tid": 35568, "ts": 8612542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8612714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238c20", "tid": 35568, "ts": 8612843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8613191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238cf0", "tid": 35568, "ts": 8613325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8613504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239030", "tid": 35568, "ts": 8613635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8613817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2392a0", "tid": 35568, "ts": 8613957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8614130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b800", "tid": 35568, "ts": 8614259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8614432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cb80", "tid": 35568, "ts": 8614602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8614774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23afe0", "tid": 35568, "ts": 8614904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8615077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c500", "tid": 35568, "ts": 8615206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8615378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ae40", "tid": 35568, "ts": 8615507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8615710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c910", "tid": 35568, "ts": 8615930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8616153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ab00", "tid": 35568, "ts": 8616282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8616455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a140", "tid": 35568, "ts": 8616583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8616758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c290", "tid": 35568, "ts": 8616886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a210", "tid": 35568, "ts": 8617186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c430", "tid": 35568, "ts": 8617487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a960", "tid": 35568, "ts": 8617789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c5d0", "tid": 35568, "ts": 8618088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8618261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23aa30", "tid": 35568, "ts": 8618389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8618561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23abd0", "tid": 35568, "ts": 8618689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8618863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23aca0", "tid": 35568, "ts": 8618991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8619163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a480", "tid": 35568, "ts": 8619291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8619463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cd20", "tid": 35568, "ts": 8619592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8619765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b3f0", "tid": 35568, "ts": 8619893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a6f0", "tid": 35568, "ts": 8620193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bce0", "tid": 35568, "ts": 8620493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c770", "tid": 35568, "ts": 8620793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bdb0", "tid": 35568, "ts": 8621093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8621266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23be80", "tid": 35568, "ts": 8621394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8621568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ad70", "tid": 35568, "ts": 8621695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8621868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c6a0", "tid": 35568, "ts": 8621996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8622169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cec0", "tid": 35568, "ts": 8622364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8622538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c840", "tid": 35568, "ts": 8622666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8622839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a3b0", "tid": 35568, "ts": 8622967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8623141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bb40", "tid": 35568, "ts": 8623269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8623444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cc50", "tid": 35568, "ts": 8623573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8623747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c360", "tid": 35568, "ts": 8623875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bf50", "tid": 35568, "ts": 8624177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b590", "tid": 35568, "ts": 8624478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a550", "tid": 35568, "ts": 8624779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b0b0", "tid": 35568, "ts": 8625079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8625252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c9e0", "tid": 35568, "ts": 8625380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8625553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c0f0", "tid": 35568, "ts": 8625681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8625854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b320", "tid": 35568, "ts": 8625982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8626167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cab0", "tid": 35568, "ts": 8626306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8626479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c020", "tid": 35568, "ts": 8626607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8626780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23af10", "tid": 35568, "ts": 8626908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c1c0", "tid": 35568, "ts": 8627207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cdf0", "tid": 35568, "ts": 8627509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cf90", "tid": 35568, "ts": 8627809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b8d0", "tid": 35568, "ts": 8628109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8628281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d060", "tid": 35568, "ts": 8628409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8628656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239d30", "tid": 35568, "ts": 8628789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8628962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b180", "tid": 35568, "ts": 8629092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8629265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239e00", "tid": 35568, "ts": 8629394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8629566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bc10", "tid": 35568, "ts": 8629694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8629867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239ed0", "tid": 35568, "ts": 8629995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8630168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239fa0", "tid": 35568, "ts": 8630296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8630469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a070", "tid": 35568, "ts": 8630597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8630770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b250", "tid": 35568, "ts": 8630898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b4c0", "tid": 35568, "ts": 8631199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a2e0", "tid": 35568, "ts": 8631499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b9a0", "tid": 35568, "ts": 8631799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a620", "tid": 35568, "ts": 8632098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8632271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a7c0", "tid": 35568, "ts": 8632399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8632571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a890", "tid": 35568, "ts": 8632701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8632874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b660", "tid": 35568, "ts": 8633002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8633174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b730", "tid": 35568, "ts": 8633303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8633475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ba70", "tid": 35568, "ts": 8633603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8633776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e7f0", "tid": 35568, "ts": 8633904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f760", "tid": 35568, "ts": 8634205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23feb0", "tid": 35568, "ts": 8634506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f900", "tid": 35568, "ts": 8634807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240120", "tid": 35568, "ts": 8635107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8635279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2402c0", "tid": 35568, "ts": 8635407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8635580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f010", "tid": 35568, "ts": 8635707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8635881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e720", "tid": 35568, "ts": 8636009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8636181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240460", "tid": 35568, "ts": 8636310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8636482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e310", "tid": 35568, "ts": 8636609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8636782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e170", "tid": 35568, "ts": 8636909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d3a0", "tid": 35568, "ts": 8637210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e650", "tid": 35568, "ts": 8637511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240390", "tid": 35568, "ts": 8637813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e240", "tid": 35568, "ts": 8638114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8638286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ef40", "tid": 35568, "ts": 8638415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8638587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e3e0", "tid": 35568, "ts": 8638782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8638956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dfd0", "tid": 35568, "ts": 8639085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8639258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d950", "tid": 35568, "ts": 8639386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8639559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fb70", "tid": 35568, "ts": 8639688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8639861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240050", "tid": 35568, "ts": 8639989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8640161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e8c0", "tid": 35568, "ts": 8640289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8640461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f0e0", "tid": 35568, "ts": 8640589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8640762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fc40", "tid": 35568, "ts": 8640890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d540", "tid": 35568, "ts": 8641189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f830", "tid": 35568, "ts": 8641490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f1b0", "tid": 35568, "ts": 8641792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e990", "tid": 35568, "ts": 8642093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8642265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d130", "tid": 35568, "ts": 8642393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8642567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d200", "tid": 35568, "ts": 8642695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8642867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dbc0", "tid": 35568, "ts": 8642996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8643170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23daf0", "tid": 35568, "ts": 8643299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8643471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d7b0", "tid": 35568, "ts": 8643600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8643773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23da20", "tid": 35568, "ts": 8643901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8644074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f5c0", "tid": 35568, "ts": 8644244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8644417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dd60", "tid": 35568, "ts": 8644545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8644718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23eb30", "tid": 35568, "ts": 8644846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d880", "tid": 35568, "ts": 8645147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fd10", "tid": 35568, "ts": 8645446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ff80", "tid": 35568, "ts": 8645746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ec00", "tid": 35568, "ts": 8646046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8646218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dc90", "tid": 35568, "ts": 8646347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8646519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d2d0", "tid": 35568, "ts": 8646662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8646835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e4b0", "tid": 35568, "ts": 8646964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8647137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f9d0", "tid": 35568, "ts": 8647266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8647438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23de30", "tid": 35568, "ts": 8647566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8647738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d6e0", "tid": 35568, "ts": 8647867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8648098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fde0", "tid": 35568, "ts": 8648234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8648407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e580", "tid": 35568, "ts": 8648535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8648761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ecd0", "tid": 35568, "ts": 8648891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d470", "tid": 35568, "ts": 8649192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23df00", "tid": 35568, "ts": 8649493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ee70", "tid": 35568, "ts": 8649792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23faa0", "tid": 35568, "ts": 8650093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8650267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ea60", "tid": 35568, "ts": 8650395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8650567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d610", "tid": 35568, "ts": 8650695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8650867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f280", "tid": 35568, "ts": 8650996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8651169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23eda0", "tid": 35568, "ts": 8651297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8651468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f350", "tid": 35568, "ts": 8651596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8651769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e0a0", "tid": 35568, "ts": 8651898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f420", "tid": 35568, "ts": 8652200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f4f0", "tid": 35568, "ts": 8652500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f690", "tid": 35568, "ts": 8652800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2401f0", "tid": 35568, "ts": 8653102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8653274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242b60", "tid": 35568, "ts": 8653402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8653574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241b20", "tid": 35568, "ts": 8653702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8653874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242750", "tid": 35568, "ts": 8654003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8654175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243450", "tid": 35568, "ts": 8654303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8654476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2407a0", "tid": 35568, "ts": 8654604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8654776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2417e0", "tid": 35568, "ts": 8654904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242f70", "tid": 35568, "ts": 8655204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241570", "tid": 35568, "ts": 8655505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242c30", "tid": 35568, "ts": 8655805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240870", "tid": 35568, "ts": 8656105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8656277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2428f0", "tid": 35568, "ts": 8656405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8656577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2429c0", "tid": 35568, "ts": 8656706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8656877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2424e0", "tid": 35568, "ts": 8657006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8657178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242ea0", "tid": 35568, "ts": 8657307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8657478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241160", "tid": 35568, "ts": 8657606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8657779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2436c0", "tid": 35568, "ts": 8657907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2425b0", "tid": 35568, "ts": 8658207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242680", "tid": 35568, "ts": 8658507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240bb0", "tid": 35568, "ts": 8658808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240c80", "tid": 35568, "ts": 8659108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8659280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241bf0", "tid": 35568, "ts": 8659408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8659581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243520", "tid": 35568, "ts": 8659709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8659959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241f30", "tid": 35568, "ts": 8660098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8660272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241cc0", "tid": 35568, "ts": 8660400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8660572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2435f0", "tid": 35568, "ts": 8660701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8660873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2413d0", "tid": 35568, "ts": 8661001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8661172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240d50", "tid": 35568, "ts": 8661300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8661472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242d00", "tid": 35568, "ts": 8661601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8661773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243040", "tid": 35568, "ts": 8661901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243110", "tid": 35568, "ts": 8662201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2418b0", "tid": 35568, "ts": 8662501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240a10", "tid": 35568, "ts": 8662802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242000", "tid": 35568, "ts": 8663104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8663276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241d90", "tid": 35568, "ts": 8663403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8663576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2432b0", "tid": 35568, "ts": 8663704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8663876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241300", "tid": 35568, "ts": 8664005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8664177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241980", "tid": 35568, "ts": 8664305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8664478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242820", "tid": 35568, "ts": 8664607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8664779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240e20", "tid": 35568, "ts": 8664907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242a90", "tid": 35568, "ts": 8665207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2414a0", "tid": 35568, "ts": 8665508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241e60", "tid": 35568, "ts": 8665808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240ef0", "tid": 35568, "ts": 8666108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8666281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240fc0", "tid": 35568, "ts": 8666409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8666581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242dd0", "tid": 35568, "ts": 8666709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8666881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241090", "tid": 35568, "ts": 8667009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8667180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2431e0", "tid": 35568, "ts": 8667308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8667480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241640", "tid": 35568, "ts": 8667608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8667781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243380", "tid": 35568, "ts": 8667909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243790", "tid": 35568, "ts": 8668209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243860", "tid": 35568, "ts": 8668509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240530", "tid": 35568, "ts": 8668810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241230", "tid": 35568, "ts": 8669109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8669282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241710", "tid": 35568, "ts": 8669410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8669581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240600", "tid": 35568, "ts": 8669734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8669909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2420d0", "tid": 35568, "ts": 8670037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8670210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241a50", "tid": 35568, "ts": 8670337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8670509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2421a0", "tid": 35568, "ts": 8670637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8670809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242270", "tid": 35568, "ts": 8670936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8671109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2406d0", "tid": 35568, "ts": 8671237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8671410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240940", "tid": 35568, "ts": 8671539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8671711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242340", "tid": 35568, "ts": 8671840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242410", "tid": 35568, "ts": 8672140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240ae0", "tid": 35568, "ts": 8672441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245740", "tid": 35568, "ts": 8672743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2462a0", "tid": 35568, "ts": 8673044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8673218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245190", "tid": 35568, "ts": 8673347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8673519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246780", "tid": 35568, "ts": 8673647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8673820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246ac0", "tid": 35568, "ts": 8673947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8674119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244b10", "tid": 35568, "ts": 8674248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8674420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2458e0", "tid": 35568, "ts": 8674548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8674721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245e90", "tid": 35568, "ts": 8674848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8675021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245810", "tid": 35568, "ts": 8675149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8675320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245400", "tid": 35568, "ts": 8675547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8675857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243930", "tid": 35568, "ts": 8676050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8676284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245330", "tid": 35568, "ts": 8676492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8676707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246b90", "tid": 35568, "ts": 8676836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244630", "tid": 35568, "ts": 8677136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244490", "tid": 35568, "ts": 8677436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244ff0", "tid": 35568, "ts": 8677736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246920", "tid": 35568, "ts": 8678037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8678209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246c60", "tid": 35568, "ts": 8678337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8678510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243fb0", "tid": 35568, "ts": 8678638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8678811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245f60", "tid": 35568, "ts": 8678940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8679111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246370", "tid": 35568, "ts": 8679240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8679413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244d80", "tid": 35568, "ts": 8679543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8679715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2454d0", "tid": 35568, "ts": 8679843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244220", "tid": 35568, "ts": 8680145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2466b0", "tid": 35568, "ts": 8680444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246440", "tid": 35568, "ts": 8680745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245a80", "tid": 35568, "ts": 8681044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8681217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244970", "tid": 35568, "ts": 8681345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8681517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2450c0", "tid": 35568, "ts": 8681695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8681868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244080", "tid": 35568, "ts": 8681997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8682170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244150", "tid": 35568, "ts": 8682298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8682472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244f20", "tid": 35568, "ts": 8682600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8682772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246100", "tid": 35568, "ts": 8682901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2455a0", "tid": 35568, "ts": 8683201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243ee0", "tid": 35568, "ts": 8683501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246510", "tid": 35568, "ts": 8683802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244560", "tid": 35568, "ts": 8684101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8684274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243a00", "tid": 35568, "ts": 8684402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8684574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245260", "tid": 35568, "ts": 8684701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8684873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2442f0", "tid": 35568, "ts": 8685001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8685173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2443c0", "tid": 35568, "ts": 8685301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8685474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246850", "tid": 35568, "ts": 8685602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8685774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243ad0", "tid": 35568, "ts": 8685902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245670", "tid": 35568, "ts": 8686203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2459b0", "tid": 35568, "ts": 8686503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244a40", "tid": 35568, "ts": 8686804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245b50", "tid": 35568, "ts": 8687106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8687278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2469f0", "tid": 35568, "ts": 8687406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8687578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245c20", "tid": 35568, "ts": 8687706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8687878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244700", "tid": 35568, "ts": 8688006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8688179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2447d0", "tid": 35568, "ts": 8688308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8688481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243ba0", "tid": 35568, "ts": 8688608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8688780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243c70", "tid": 35568, "ts": 8688908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245cf0", "tid": 35568, "ts": 8689209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245dc0", "tid": 35568, "ts": 8689508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246030", "tid": 35568, "ts": 8689808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2448a0", "tid": 35568, "ts": 8690109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8690281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2465e0", "tid": 35568, "ts": 8690410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8690582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244be0", "tid": 35568, "ts": 8690710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8690883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2461d0", "tid": 35568, "ts": 8691035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8691225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244cb0", "tid": 35568, "ts": 8691354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8691527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243d40", "tid": 35568, "ts": 8691656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8691829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244e50", "tid": 35568, "ts": 8691957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8692129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243e10", "tid": 35568, "ts": 8692259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8692431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2473b0", "tid": 35568, "ts": 8692560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8692732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2483f0", "tid": 35568, "ts": 8692861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2499e0", "tid": 35568, "ts": 8693162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248f50", "tid": 35568, "ts": 8693463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249c50", "tid": 35568, "ts": 8693765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247b00", "tid": 35568, "ts": 8694064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8694237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249430", "tid": 35568, "ts": 8694366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8694538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249840", "tid": 35568, "ts": 8694689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8694861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2484c0", "tid": 35568, "ts": 8694989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8695161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249910", "tid": 35568, "ts": 8695288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8695461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249770", "tid": 35568, "ts": 8695590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8695763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249ec0", "tid": 35568, "ts": 8695891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247480", "tid": 35568, "ts": 8696192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247ca0", "tid": 35568, "ts": 8696492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2489a0", "tid": 35568, "ts": 8696793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249500", "tid": 35568, "ts": 8697094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8697266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249ab0", "tid": 35568, "ts": 8697395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8697568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247550", "tid": 35568, "ts": 8697696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8697868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248a70", "tid": 35568, "ts": 8697996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8698168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247890", "tid": 35568, "ts": 8698296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8698468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249d20", "tid": 35568, "ts": 8698597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8698769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249df0", "tid": 35568, "ts": 8698897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247620", "tid": 35568, "ts": 8699197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249f90", "tid": 35568, "ts": 8699499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246e00", "tid": 35568, "ts": 8699799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247bd0", "tid": 35568, "ts": 8700164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8700337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a060", "tid": 35568, "ts": 8700471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8700644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248180", "tid": 35568, "ts": 8700773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8700946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247070", "tid": 35568, "ts": 8701074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8701247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248250", "tid": 35568, "ts": 8701376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8701548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247d70", "tid": 35568, "ts": 8701677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8701849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248320", "tid": 35568, "ts": 8701977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8702151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248ce0", "tid": 35568, "ts": 8702280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8702453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248590", "tid": 35568, "ts": 8702582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8702754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248db0", "tid": 35568, "ts": 8702882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2495d0", "tid": 35568, "ts": 8703183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248b40", "tid": 35568, "ts": 8703483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2496a0", "tid": 35568, "ts": 8703782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249b80", "tid": 35568, "ts": 8704083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8704256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248c10", "tid": 35568, "ts": 8704384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8704556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246d30", "tid": 35568, "ts": 8704685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8704858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246ed0", "tid": 35568, "ts": 8704986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8705160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2477c0", "tid": 35568, "ts": 8705288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8705462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247210", "tid": 35568, "ts": 8705591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8705762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2476f0", "tid": 35568, "ts": 8705891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8706063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2472e0", "tid": 35568, "ts": 8706191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8706364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248660", "tid": 35568, "ts": 8706492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8706712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247960", "tid": 35568, "ts": 8706877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8707123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247e40", "tid": 35568, "ts": 8707252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8707425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246fa0", "tid": 35568, "ts": 8707553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8707724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247a30", "tid": 35568, "ts": 8707852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8708023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247140", "tid": 35568, "ts": 8708279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8708508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247f10", "tid": 35568, "ts": 8708680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8708930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247fe0", "tid": 35568, "ts": 8709086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8709258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2480b0", "tid": 35568, "ts": 8709386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8709558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248730", "tid": 35568, "ts": 8709686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8709858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248e80", "tid": 35568, "ts": 8710082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8710255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248800", "tid": 35568, "ts": 8710383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8710555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2488d0", "tid": 35568, "ts": 8710683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8710856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249020", "tid": 35568, "ts": 8710984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8711157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2490f0", "tid": 35568, "ts": 8711286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8711458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2491c0", "tid": 35568, "ts": 8711587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8711760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249290", "tid": 35568, "ts": 8711888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249360", "tid": 35568, "ts": 8712190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b990", "tid": 35568, "ts": 8712493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a950", "tid": 35568, "ts": 8712795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cde0", "tid": 35568, "ts": 8713207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8713380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bc00", "tid": 35568, "ts": 8713508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8713681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c1b0", "tid": 35568, "ts": 8713810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8713984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a130", "tid": 35568, "ts": 8714112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8714284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bcd0", "tid": 35568, "ts": 8714412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8714585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c280", "tid": 35568, "ts": 8714713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8714886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c830", "tid": 35568, "ts": 8715015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8715187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cf80", "tid": 35568, "ts": 8715314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8715549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bda0", "tid": 35568, "ts": 8715685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8715858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a200", "tid": 35568, "ts": 8715986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8716159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a2d0", "tid": 35568, "ts": 8716287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8716460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b580", "tid": 35568, "ts": 8716589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8716762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ac90", "tid": 35568, "ts": 8716890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cd10", "tid": 35568, "ts": 8717221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b240", "tid": 35568, "ts": 8717520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24af00", "tid": 35568, "ts": 8717822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b650", "tid": 35568, "ts": 8718122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8718294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ba60", "tid": 35568, "ts": 8718423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8718595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b720", "tid": 35568, "ts": 8718723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8718895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a3a0", "tid": 35568, "ts": 8719023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8719226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cb70", "tid": 35568, "ts": 8719414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8719647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24be70", "tid": 35568, "ts": 8719838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8720081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a470", "tid": 35568, "ts": 8720257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8720519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bf40", "tid": 35568, "ts": 8720710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8720954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c900", "tid": 35568, "ts": 8721128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8721480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24afd0", "tid": 35568, "ts": 8721670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8721937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d050", "tid": 35568, "ts": 8722066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8722343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c010", "tid": 35568, "ts": 8722606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8722840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24aaf0", "tid": 35568, "ts": 8723030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8723205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24aa20", "tid": 35568, "ts": 8723334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8723506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ceb0", "tid": 35568, "ts": 8723634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8723806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c350", "tid": 35568, "ts": 8723935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8724107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c760", "tid": 35568, "ts": 8724236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8724409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c0e0", "tid": 35568, "ts": 8724537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8724710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b3e0", "tid": 35568, "ts": 8724838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bb30", "tid": 35568, "ts": 8725139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d120", "tid": 35568, "ts": 8725439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b4b0", "tid": 35568, "ts": 8725740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ae30", "tid": 35568, "ts": 8726041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8726214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c420", "tid": 35568, "ts": 8726342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8726515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24abc0", "tid": 35568, "ts": 8726644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8726817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c4f0", "tid": 35568, "ts": 8726945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8727118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d1f0", "tid": 35568, "ts": 8727246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8727418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c5c0", "tid": 35568, "ts": 8727546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8727718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b7f0", "tid": 35568, "ts": 8727847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d2c0", "tid": 35568, "ts": 8728147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b0a0", "tid": 35568, "ts": 8728448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c690", "tid": 35568, "ts": 8728748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c9d0", "tid": 35568, "ts": 8729048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8729221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d390", "tid": 35568, "ts": 8729348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8729520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ad60", "tid": 35568, "ts": 8729648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8729819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b170", "tid": 35568, "ts": 8729947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8730119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b310", "tid": 35568, "ts": 8730246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8730419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b8c0", "tid": 35568, "ts": 8730547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8730719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24caa0", "tid": 35568, "ts": 8730847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cc40", "tid": 35568, "ts": 8731147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d460", "tid": 35568, "ts": 8731447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a540", "tid": 35568, "ts": 8731746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a610", "tid": 35568, "ts": 8732047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8732219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a6e0", "tid": 35568, "ts": 8732348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8732520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a7b0", "tid": 35568, "ts": 8732648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8732821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a880", "tid": 35568, "ts": 8732951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8733124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f0d0", "tid": 35568, "ts": 8733253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8733426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fdd0", "tid": 35568, "ts": 8733555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8733727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250380", "tid": 35568, "ts": 8733856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ff70", "tid": 35568, "ts": 8734157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e980", "tid": 35568, "ts": 8734458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f1a0", "tid": 35568, "ts": 8734758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d6d0", "tid": 35568, "ts": 8735059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8735232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f9c0", "tid": 35568, "ts": 8735360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8735532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e7e0", "tid": 35568, "ts": 8735660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8735833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24eb20", "tid": 35568, "ts": 8735961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8736134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250520", "tid": 35568, "ts": 8736262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8736436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fa90", "tid": 35568, "ts": 8736564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8736736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ef30", "tid": 35568, "ts": 8736864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8737036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fb60", "tid": 35568, "ts": 8737165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8737336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fc30", "tid": 35568, "ts": 8737465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8737638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250040", "tid": 35568, "ts": 8737765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dd50", "tid": 35568, "ts": 8738179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2501e0", "tid": 35568, "ts": 8738484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dbb0", "tid": 35568, "ts": 8738787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e8b0", "tid": 35568, "ts": 8739088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8739259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ebf0", "tid": 35568, "ts": 8739388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8739561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fd00", "tid": 35568, "ts": 8739689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8739861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ee60", "tid": 35568, "ts": 8739990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8740163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dfc0", "tid": 35568, "ts": 8740292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8740465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f5b0", "tid": 35568, "ts": 8740593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8740765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fea0", "tid": 35568, "ts": 8740894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e570", "tid": 35568, "ts": 8741194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250450", "tid": 35568, "ts": 8741495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d940", "tid": 35568, "ts": 8741796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ed90", "tid": 35568, "ts": 8742097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8742270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250790", "tid": 35568, "ts": 8742397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8742570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f4e0", "tid": 35568, "ts": 8742699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8742871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f410", "tid": 35568, "ts": 8742999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8743171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ecc0", "tid": 35568, "ts": 8743300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8743474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250860", "tid": 35568, "ts": 8743602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8743774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f680", "tid": 35568, "ts": 8743901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e710", "tid": 35568, "ts": 8744201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2502b0", "tid": 35568, "ts": 8744501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f000", "tid": 35568, "ts": 8744801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d530", "tid": 35568, "ts": 8745103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8745276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f750", "tid": 35568, "ts": 8745404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8745577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250110", "tid": 35568, "ts": 8745705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8745877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e640", "tid": 35568, "ts": 8746005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8746178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f270", "tid": 35568, "ts": 8746306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8746478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f820", "tid": 35568, "ts": 8746606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8746778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2505f0", "tid": 35568, "ts": 8746906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2506c0", "tid": 35568, "ts": 8747207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f340", "tid": 35568, "ts": 8747508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f8f0", "tid": 35568, "ts": 8747808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d600", "tid": 35568, "ts": 8748111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8748282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d7a0", "tid": 35568, "ts": 8748410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8748583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d870", "tid": 35568, "ts": 8748711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8748884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24da10", "tid": 35568, "ts": 8749011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8749184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dae0", "tid": 35568, "ts": 8749313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8749485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e090", "tid": 35568, "ts": 8749613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8749785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dc80", "tid": 35568, "ts": 8749970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8750145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24de20", "tid": 35568, "ts": 8750273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8750445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24def0", "tid": 35568, "ts": 8750573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8750746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e160", "tid": 35568, "ts": 8750874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e230", "tid": 35568, "ts": 8751176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e300", "tid": 35568, "ts": 8751477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e3d0", "tid": 35568, "ts": 8751778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e4a0", "tid": 35568, "ts": 8752079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8752253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ea50", "tid": 35568, "ts": 8752381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8752554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2512f0", "tid": 35568, "ts": 8752682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8752854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2520c0", "tid": 35568, "ts": 8752983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8753156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252f60", "tid": 35568, "ts": 8753284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8753456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252260", "tid": 35568, "ts": 8753652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8753824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251e50", "tid": 35568, "ts": 8753952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8754124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252400", "tid": 35568, "ts": 8754252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8754425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253b90", "tid": 35568, "ts": 8754554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8754726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250a00", "tid": 35568, "ts": 8754854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253c60", "tid": 35568, "ts": 8755154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251ff0", "tid": 35568, "ts": 8755454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250930", "tid": 35568, "ts": 8755755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253100", "tid": 35568, "ts": 8756056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8756227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252190", "tid": 35568, "ts": 8756356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8756528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2524d0", "tid": 35568, "ts": 8756656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8756827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252dc0", "tid": 35568, "ts": 8756955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8757127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252330", "tid": 35568, "ts": 8757255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8757427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250ad0", "tid": 35568, "ts": 8757555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8757729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2536b0", "tid": 35568, "ts": 8757857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250ee0", "tid": 35568, "ts": 8758157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251700", "tid": 35568, "ts": 8758457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2518a0", "tid": 35568, "ts": 8758758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2517d0", "tid": 35568, "ts": 8759059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8759231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251d80", "tid": 35568, "ts": 8759359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8759530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2525a0", "tid": 35568, "ts": 8759658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8759830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252670", "tid": 35568, "ts": 8759959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8760129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2529b0", "tid": 35568, "ts": 8760258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8760431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252740", "tid": 35568, "ts": 8760559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8760732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2528e0", "tid": 35568, "ts": 8760860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253780", "tid": 35568, "ts": 8761162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253850", "tid": 35568, "ts": 8761462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250d40", "tid": 35568, "ts": 8761763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253370", "tid": 35568, "ts": 8762064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8762237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251150", "tid": 35568, "ts": 8762366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8762538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251220", "tid": 35568, "ts": 8762666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8762839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250fb0", "tid": 35568, "ts": 8762966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8763140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251970", "tid": 35568, "ts": 8763268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8763440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251560", "tid": 35568, "ts": 8763569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8763741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253030", "tid": 35568, "ts": 8763869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251080", "tid": 35568, "ts": 8764170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253920", "tid": 35568, "ts": 8764471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251a40", "tid": 35568, "ts": 8764771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251f20", "tid": 35568, "ts": 8765072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8765244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252810", "tid": 35568, "ts": 8765372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8765545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250e10", "tid": 35568, "ts": 8765673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8765845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2513c0", "tid": 35568, "ts": 8765974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8766147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251b10", "tid": 35568, "ts": 8766275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8766446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251be0", "tid": 35568, "ts": 8766574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8766747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253ac0", "tid": 35568, "ts": 8766875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251490", "tid": 35568, "ts": 8767174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252a80", "tid": 35568, "ts": 8767475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252b50", "tid": 35568, "ts": 8767775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250ba0", "tid": 35568, "ts": 8768076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8768247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2531d0", "tid": 35568, "ts": 8768375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8768547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251630", "tid": 35568, "ts": 8768675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8768847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252e90", "tid": 35568, "ts": 8768975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8769197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250c70", "tid": 35568, "ts": 8769389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8769562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251cb0", "tid": 35568, "ts": 8769690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8769864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252c20", "tid": 35568, "ts": 8769993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8770165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252cf0", "tid": 35568, "ts": 8770294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8770466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2532a0", "tid": 35568, "ts": 8770594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8770767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253440", "tid": 35568, "ts": 8770896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253510", "tid": 35568, "ts": 8771198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2535e0", "tid": 35568, "ts": 8771498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2539f0", "tid": 35568, "ts": 8771801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2543b0", "tid": 35568, "ts": 8772102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8772275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254890", "tid": 35568, "ts": 8772404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8772576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256910", "tid": 35568, "ts": 8772704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8772877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254e40", "tid": 35568, "ts": 8773005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8773179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254620", "tid": 35568, "ts": 8773307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8773478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255250", "tid": 35568, "ts": 8773607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8773779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2561c0", "tid": 35568, "ts": 8773907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254d70", "tid": 35568, "ts": 8774208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254a30", "tid": 35568, "ts": 8774507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254ca0", "tid": 35568, "ts": 8774810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254960", "tid": 35568, "ts": 8775110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8775283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254b00", "tid": 35568, "ts": 8775411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8775583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2558d0", "tid": 35568, "ts": 8775712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8775884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255db0", "tid": 35568, "ts": 8776013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8776184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256430", "tid": 35568, "ts": 8776312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8776485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254bd0", "tid": 35568, "ts": 8776613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8776784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2569e0", "tid": 35568, "ts": 8776912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254f10", "tid": 35568, "ts": 8777214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254210", "tid": 35568, "ts": 8777515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254fe0", "tid": 35568, "ts": 8777815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256ab0", "tid": 35568, "ts": 8778115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8778288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255a70", "tid": 35568, "ts": 8778416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8778589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2550b0", "tid": 35568, "ts": 8778800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8778972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2560f0", "tid": 35568, "ts": 8779101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8779273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255b40", "tid": 35568, "ts": 8779402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8779574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253d30", "tid": 35568, "ts": 8779702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8779874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256b80", "tid": 35568, "ts": 8780002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8780175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256c50", "tid": 35568, "ts": 8780303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8780476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255180", "tid": 35568, "ts": 8780603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8780776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255320", "tid": 35568, "ts": 8780904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8781076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255c10", "tid": 35568, "ts": 8781204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8781376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255e80", "tid": 35568, "ts": 8781535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8781708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255f50", "tid": 35568, "ts": 8781838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256020", "tid": 35568, "ts": 8782139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256d20", "tid": 35568, "ts": 8782440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256770", "tid": 35568, "ts": 8782741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256f90", "tid": 35568, "ts": 8783042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8783262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254140", "tid": 35568, "ts": 8783391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8783564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256500", "tid": 35568, "ts": 8783692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8783865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2565d0", "tid": 35568, "ts": 8783993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8784166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2553f0", "tid": 35568, "ts": 8784294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8784467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256290", "tid": 35568, "ts": 8784595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8784807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255730", "tid": 35568, "ts": 8784975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8785185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2546f0", "tid": 35568, "ts": 8785353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8785588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254480", "tid": 35568, "ts": 8785749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8785947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2554c0", "tid": 35568, "ts": 8786098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8786294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2542e0", "tid": 35568, "ts": 8786493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8786667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255590", "tid": 35568, "ts": 8786818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8787057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2547c0", "tid": 35568, "ts": 8787237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8787437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255660", "tid": 35568, "ts": 8787566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8787739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255800", "tid": 35568, "ts": 8787867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257060", "tid": 35568, "ts": 8788169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255ce0", "tid": 35568, "ts": 8788494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253e00", "tid": 35568, "ts": 8788797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256df0", "tid": 35568, "ts": 8789100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8789273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256360", "tid": 35568, "ts": 8789404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8789578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256ec0", "tid": 35568, "ts": 8789707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8789880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2566a0", "tid": 35568, "ts": 8790010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8790182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2559a0", "tid": 35568, "ts": 8790311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8790485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256840", "tid": 35568, "ts": 8790614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8790788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253ed0", "tid": 35568, "ts": 8790917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253fa0", "tid": 35568, "ts": 8791220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254070", "tid": 35568, "ts": 8791522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254550", "tid": 35568, "ts": 8791826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a390", "tid": 35568, "ts": 8792129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8792304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257950", "tid": 35568, "ts": 8792434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8792607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257130", "tid": 35568, "ts": 8792737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8792911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258650", "tid": 35568, "ts": 8793040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8793213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258310", "tid": 35568, "ts": 8793343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8793594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257d60", "tid": 35568, "ts": 8793726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8793900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259760", "tid": 35568, "ts": 8794053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8794226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257200", "tid": 35568, "ts": 8794356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8794551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258c00", "tid": 35568, "ts": 8794695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8794879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2591b0", "tid": 35568, "ts": 8795009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8795225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257a20", "tid": 35568, "ts": 8795379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8795575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2576e0", "tid": 35568, "ts": 8795704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8795877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258720", "tid": 35568, "ts": 8796006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8796177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2587f0", "tid": 35568, "ts": 8796306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8796477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257af0", "tid": 35568, "ts": 8796608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8796781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258240", "tid": 35568, "ts": 8796910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259280", "tid": 35568, "ts": 8797211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a2c0", "tid": 35568, "ts": 8797511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259830", "tid": 35568, "ts": 8797811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258cd0", "tid": 35568, "ts": 8798113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8798285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2595c0", "tid": 35568, "ts": 8798414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8798588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257c90", "tid": 35568, "ts": 8798717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8798889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258e70", "tid": 35568, "ts": 8799118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8799292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2583e0", "tid": 35568, "ts": 8799421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8799592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2588c0", "tid": 35568, "ts": 8799721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8799892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2590e0", "tid": 35568, "ts": 8800021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8800194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259350", "tid": 35568, "ts": 8800323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8800598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2572d0", "tid": 35568, "ts": 8800728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8800901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259b70", "tid": 35568, "ts": 8801080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8801269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257bc0", "tid": 35568, "ts": 8801434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8801606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2573a0", "tid": 35568, "ts": 8801738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8801969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257e30", "tid": 35568, "ts": 8802102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8802274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257470", "tid": 35568, "ts": 8802404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8802603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257f00", "tid": 35568, "ts": 8802732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8802906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259d10", "tid": 35568, "ts": 8803034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8803207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258da0", "tid": 35568, "ts": 8803336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8803509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a460", "tid": 35568, "ts": 8803637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8803810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258990", "tid": 35568, "ts": 8803939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8804112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258a60", "tid": 35568, "ts": 8804240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8804413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258b30", "tid": 35568, "ts": 8804541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8804713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257540", "tid": 35568, "ts": 8804841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259de0", "tid": 35568, "ts": 8805143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2594f0", "tid": 35568, "ts": 8805445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258f40", "tid": 35568, "ts": 8805748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257fd0", "tid": 35568, "ts": 8806050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8806222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257610", "tid": 35568, "ts": 8806351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8806523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2580a0", "tid": 35568, "ts": 8806651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8806824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a1f0", "tid": 35568, "ts": 8806952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8807124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259010", "tid": 35568, "ts": 8807253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8807426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258170", "tid": 35568, "ts": 8807555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8807728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259420", "tid": 35568, "ts": 8807858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2577b0", "tid": 35568, "ts": 8808161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259690", "tid": 35568, "ts": 8808461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259900", "tid": 35568, "ts": 8808761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2599d0", "tid": 35568, "ts": 8809062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8809235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a120", "tid": 35568, "ts": 8809365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8809537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259eb0", "tid": 35568, "ts": 8809666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8809838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a050", "tid": 35568, "ts": 8809967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8810139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259aa0", "tid": 35568, "ts": 8810268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8810442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2584b0", "tid": 35568, "ts": 8810571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8810745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259c40", "tid": 35568, "ts": 8810874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259f80", "tid": 35568, "ts": 8811176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257880", "tid": 35568, "ts": 8811477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258580", "tid": 35568, "ts": 8811779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ba50", "tid": 35568, "ts": 8812080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8812252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bb20", "tid": 35568, "ts": 8812382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8812554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b980", "tid": 35568, "ts": 8812683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8812856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25aa10", "tid": 35568, "ts": 8812985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8813158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bbf0", "tid": 35568, "ts": 8813286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8813459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ac80", "tid": 35568, "ts": 8813588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8813761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d450", "tid": 35568, "ts": 8813889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8814062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25aef0", "tid": 35568, "ts": 8814228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8814401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b090", "tid": 35568, "ts": 8814530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8814703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cd00", "tid": 35568, "ts": 8814831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c340", "tid": 35568, "ts": 8815133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d860", "tid": 35568, "ts": 8815435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c410", "tid": 35568, "ts": 8815734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a6d0", "tid": 35568, "ts": 8816152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8816415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cdd0", "tid": 35568, "ts": 8816547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8816721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25abb0", "tid": 35568, "ts": 8816850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c680", "tid": 35568, "ts": 8817153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a600", "tid": 35568, "ts": 8817455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25afc0", "tid": 35568, "ts": 8817803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25aae0", "tid": 35568, "ts": 8818106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8818277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c000", "tid": 35568, "ts": 8818406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8818580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a870", "tid": 35568, "ts": 8818708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8818880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b230", "tid": 35568, "ts": 8819009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8819180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b4a0", "tid": 35568, "ts": 8819309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8819481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b160", "tid": 35568, "ts": 8819611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8819782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bcc0", "tid": 35568, "ts": 8819911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c270", "tid": 35568, "ts": 8820213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b570", "tid": 35568, "ts": 8820515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bd90", "tid": 35568, "ts": 8820817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25be60", "tid": 35568, "ts": 8821117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8821290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cc30", "tid": 35568, "ts": 8821418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8821592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ae20", "tid": 35568, "ts": 8821720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8821893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d110", "tid": 35568, "ts": 8822022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8822194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b300", "tid": 35568, "ts": 8822323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8822495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b3d0", "tid": 35568, "ts": 8822624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8822797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cea0", "tid": 35568, "ts": 8822925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8823097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d5f0", "tid": 35568, "ts": 8823226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8823398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bf30", "tid": 35568, "ts": 8823526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8823699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c4e0", "tid": 35568, "ts": 8823828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b640", "tid": 35568, "ts": 8824129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c0d0", "tid": 35568, "ts": 8824431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cf70", "tid": 35568, "ts": 8824732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a530", "tid": 35568, "ts": 8825033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8825207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d2b0", "tid": 35568, "ts": 8825335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8825507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d520", "tid": 35568, "ts": 8825635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8825808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a940", "tid": 35568, "ts": 8825936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8826108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a7a0", "tid": 35568, "ts": 8826259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8826431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d1e0", "tid": 35568, "ts": 8826560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8826733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d040", "tid": 35568, "ts": 8826862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d380", "tid": 35568, "ts": 8827163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c1a0", "tid": 35568, "ts": 8827465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d6c0", "tid": 35568, "ts": 8827767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b8b0", "tid": 35568, "ts": 8828067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8828241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c5b0", "tid": 35568, "ts": 8828369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8828541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ad50", "tid": 35568, "ts": 8828670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8828843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c750", "tid": 35568, "ts": 8828972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8829144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ca90", "tid": 35568, "ts": 8829272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8829445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d790", "tid": 35568, "ts": 8829575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8829748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b710", "tid": 35568, "ts": 8829876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b7e0", "tid": 35568, "ts": 8830177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c820", "tid": 35568, "ts": 8830478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c8f0", "tid": 35568, "ts": 8830779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c9c0", "tid": 35568, "ts": 8831081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8831253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cb60", "tid": 35568, "ts": 8831381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8831553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260920", "tid": 35568, "ts": 8831740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8831969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ed80", "tid": 35568, "ts": 8832099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8832272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f5a0", "tid": 35568, "ts": 8832402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8832576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f670", "tid": 35568, "ts": 8832706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8832878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2606b0", "tid": 35568, "ts": 8833008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8833209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fb50", "tid": 35568, "ts": 8833339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8833513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f260", "tid": 35568, "ts": 8833643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8833817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e970", "tid": 35568, "ts": 8833949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8834122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ff60", "tid": 35568, "ts": 8834252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8834426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25da00", "tid": 35568, "ts": 8834555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8834727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fc20", "tid": 35568, "ts": 8834857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8835031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f330", "tid": 35568, "ts": 8835161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8835417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e560", "tid": 35568, "ts": 8835633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8835952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e2f0", "tid": 35568, "ts": 8836169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8836456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25de10", "tid": 35568, "ts": 8836702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8837035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f9b0", "tid": 35568, "ts": 8837208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8837524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fa80", "tid": 35568, "ts": 8837770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8838091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e7d0", "tid": 35568, "ts": 8838350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8838653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2602a0", "tid": 35568, "ts": 8838883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8839218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f740", "tid": 35568, "ts": 8839415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8839720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f810", "tid": 35568, "ts": 8839966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8840284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fdc0", "tid": 35568, "ts": 8840498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8840817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e8a0", "tid": 35568, "ts": 8841062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8841376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ebe0", "tid": 35568, "ts": 8841620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8841880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e150", "tid": 35568, "ts": 8842127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8842444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2605e0", "tid": 35568, "ts": 8842691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8843011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e220", "tid": 35568, "ts": 8843240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8843558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dee0", "tid": 35568, "ts": 8843803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8844139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260100", "tid": 35568, "ts": 8844353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8844685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dad0", "tid": 35568, "ts": 8844930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8845235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260440", "tid": 35568, "ts": 8845464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8845800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260370", "tid": 35568, "ts": 8846017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8846335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dba0", "tid": 35568, "ts": 8846581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8846869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e3c0", "tid": 35568, "ts": 8847115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8847412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ecb0", "tid": 35568, "ts": 8847627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8847960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e490", "tid": 35568, "ts": 8848205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8848447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ea40", "tid": 35568, "ts": 8848693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8848996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f8e0", "tid": 35568, "ts": 8849227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8849400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fe90", "tid": 35568, "ts": 8849529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8849702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f0c0", "tid": 35568, "ts": 8849831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8850018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25eb10", "tid": 35568, "ts": 8850263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8850563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260030", "tid": 35568, "ts": 8850812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8851144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fcf0", "tid": 35568, "ts": 8851361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8851696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2601d0", "tid": 35568, "ts": 8851940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8852258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dfb0", "tid": 35568, "ts": 8852387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8852560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e630", "tid": 35568, "ts": 8852775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8853064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ee50", "tid": 35568, "ts": 8853278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8853610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260510", "tid": 35568, "ts": 8853843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8854191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260b90", "tid": 35568, "ts": 8854434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8854708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ef20", "tid": 35568, "ts": 8854940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8855113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260780", "tid": 35568, "ts": 8855327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8855574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260850", "tid": 35568, "ts": 8855819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8856122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2609f0", "tid": 35568, "ts": 8856322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8856657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f400", "tid": 35568, "ts": 8856904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8857252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260ac0", "tid": 35568, "ts": 8857467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8857727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25eff0", "tid": 35568, "ts": 8857957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8858290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260c60", "tid": 35568, "ts": 8858532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8858864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f190", "tid": 35568, "ts": 8859213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8859558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d930", "tid": 35568, "ts": 8859807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8860140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dc70", "tid": 35568, "ts": 8860384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8860720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f4d0", "tid": 35568, "ts": 8860965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8861314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e080", "tid": 35568, "ts": 8861530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8861789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dd40", "tid": 35568, "ts": 8861977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8862181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e700", "tid": 35568, "ts": 8862427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8862771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262a70", "tid": 35568, "ts": 8863029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8863237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2624c0", "tid": 35568, "ts": 8863437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8863727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262660", "tid": 35568, "ts": 8863857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8864054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262250", "tid": 35568, "ts": 8864184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8864356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263c50", "tid": 35568, "ts": 8864485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8864657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261140", "tid": 35568, "ts": 8864870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262800", "tid": 35568, "ts": 8865173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261070", "tid": 35568, "ts": 8865475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261550", "tid": 35568, "ts": 8865776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263df0", "tid": 35568, "ts": 8866078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8866250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263430", "tid": 35568, "ts": 8866379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8866551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261620", "tid": 35568, "ts": 8866679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8866851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262320", "tid": 35568, "ts": 8866980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8867152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2616f0", "tid": 35568, "ts": 8867281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8867453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263ec0", "tid": 35568, "ts": 8867582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8867755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261ca0", "tid": 35568, "ts": 8867884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263500", "tid": 35568, "ts": 8868184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264060", "tid": 35568, "ts": 8868486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263290", "tid": 35568, "ts": 8868788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260ed0", "tid": 35568, "ts": 8869088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8869261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2628d0", "tid": 35568, "ts": 8869389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8869563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261210", "tid": 35568, "ts": 8869691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8869862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261f10", "tid": 35568, "ts": 8869992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8870164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2617c0", "tid": 35568, "ts": 8870293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8870465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263f90", "tid": 35568, "ts": 8870595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8870768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260fa0", "tid": 35568, "ts": 8870897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263360", "tid": 35568, "ts": 8871199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262b40", "tid": 35568, "ts": 8871501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262ce0", "tid": 35568, "ts": 8871803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262f50", "tid": 35568, "ts": 8872105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8872276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263ab0", "tid": 35568, "ts": 8872405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8872578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263910", "tid": 35568, "ts": 8872707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8872879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2623f0", "tid": 35568, "ts": 8873008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8873181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2635d0", "tid": 35568, "ts": 8873309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8873482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260d30", "tid": 35568, "ts": 8873610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8873783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262c10", "tid": 35568, "ts": 8873912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2636a0", "tid": 35568, "ts": 8874212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260e00", "tid": 35568, "ts": 8874513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261fe0", "tid": 35568, "ts": 8874815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2631c0", "tid": 35568, "ts": 8875118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8875290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261960", "tid": 35568, "ts": 8875458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8875631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2612e0", "tid": 35568, "ts": 8875760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8875933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2629a0", "tid": 35568, "ts": 8876062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8876235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2613b0", "tid": 35568, "ts": 8876363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8876535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261a30", "tid": 35568, "ts": 8876664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8876837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2620b0", "tid": 35568, "ts": 8876965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8877136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262180", "tid": 35568, "ts": 8877265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8877440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263770", "tid": 35568, "ts": 8877568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8877782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261890", "tid": 35568, "ts": 8877912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8878084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261480", "tid": 35568, "ts": 8878213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8878385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263b80", "tid": 35568, "ts": 8878549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8878753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262590", "tid": 35568, "ts": 8878882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263840", "tid": 35568, "ts": 8879183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262db0", "tid": 35568, "ts": 8879484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2639e0", "tid": 35568, "ts": 8879784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261b00", "tid": 35568, "ts": 8880085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8880257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261bd0", "tid": 35568, "ts": 8880387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8880559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263d20", "tid": 35568, "ts": 8880687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8880859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261d70", "tid": 35568, "ts": 8880988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8881160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261e40", "tid": 35568, "ts": 8881289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8881462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262730", "tid": 35568, "ts": 8881590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8881763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262e80", "tid": 35568, "ts": 8881891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263020", "tid": 35568, "ts": 8882192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2630f0", "tid": 35568, "ts": 8882493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264540", "tid": 35568, "ts": 8882794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266eb0", "tid": 35568, "ts": 8883095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8883268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267050", "tid": 35568, "ts": 8883396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8883569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2642d0", "tid": 35568, "ts": 8883697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8883869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267120", "tid": 35568, "ts": 8883997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8884170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264610", "tid": 35568, "ts": 8884298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8884471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264950", "tid": 35568, "ts": 8884599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8884772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264a20", "tid": 35568, "ts": 8884901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266de0", "tid": 35568, "ts": 8885201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266350", "tid": 35568, "ts": 8885502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2672c0", "tid": 35568, "ts": 8885803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2646e0", "tid": 35568, "ts": 8886104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8886276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267390", "tid": 35568, "ts": 8886405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8886578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264af0", "tid": 35568, "ts": 8886707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8886879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2647b0", "tid": 35568, "ts": 8887007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8887180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2671f0", "tid": 35568, "ts": 8887308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8887481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266690", "tid": 35568, "ts": 8887610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8887781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267460", "tid": 35568, "ts": 8887910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264e30", "tid": 35568, "ts": 8888209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266c40", "tid": 35568, "ts": 8888511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266d10", "tid": 35568, "ts": 8888811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2660e0", "tid": 35568, "ts": 8889113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8889286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266f80", "tid": 35568, "ts": 8889415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8889586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266830", "tid": 35568, "ts": 8889715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8889888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265170", "tid": 35568, "ts": 8890016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8890188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2653e0", "tid": 35568, "ts": 8890317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8890489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264130", "tid": 35568, "ts": 8890618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8890790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264200", "tid": 35568, "ts": 8890918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264fd0", "tid": 35568, "ts": 8891218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2654b0", "tid": 35568, "ts": 8891518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265580", "tid": 35568, "ts": 8891819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2643a0", "tid": 35568, "ts": 8892119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8892291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264470", "tid": 35568, "ts": 8892420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8892592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264880", "tid": 35568, "ts": 8892720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8892892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266010", "tid": 35568, "ts": 8893020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8893192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264bc0", "tid": 35568, "ts": 8893321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8893493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266900", "tid": 35568, "ts": 8893635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8893808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234adea2bd0", "tid": 35568, "ts": 8893876, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 8894976, "pid": 35104, "args": { "Heap": { "SizeInBytes": 536870912, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234ae265720", "tid": 35568, "ts": 8894991, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234ae265720", "tid": 35568, "ts": 8895033, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 536870912, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264c90", "tid": 35568, "ts": 8895173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8895476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264d60", "tid": 35568, "ts": 8895620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8895795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2661b0", "tid": 35568, "ts": 8895924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8896111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266760", "tid": 35568, "ts": 8896240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8896414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2650a0", "tid": 35568, "ts": 8896543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8896717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266aa0", "tid": 35568, "ts": 8896847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264f00", "tid": 35568, "ts": 8897149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265240", "tid": 35568, "ts": 8897451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266b70", "tid": 35568, "ts": 8897799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265310", "tid": 35568, "ts": 8898101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8898274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265650", "tid": 35568, "ts": 8898403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8898575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2657f0", "tid": 35568, "ts": 8898703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8898877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2658c0", "tid": 35568, "ts": 8899005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8899178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265990", "tid": 35568, "ts": 8899308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8899481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265a60", "tid": 35568, "ts": 8899672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8899846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265b30", "tid": 35568, "ts": 8899975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8900148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265c00", "tid": 35568, "ts": 8900277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8900449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265e70", "tid": 35568, "ts": 8900577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8900750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265cd0", "tid": 35568, "ts": 8900878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265da0", "tid": 35568, "ts": 8901180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265f40", "tid": 35568, "ts": 8901481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266280", "tid": 35568, "ts": 8901782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266420", "tid": 35568, "ts": 8902083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8902257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2664f0", "tid": 35568, "ts": 8902386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8902558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2665c0", "tid": 35568, "ts": 8902687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8902860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2688b0", "tid": 35568, "ts": 8902989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8903161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269b60", "tid": 35568, "ts": 8903290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8903461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268a50", "tid": 35568, "ts": 8903590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8903762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269ea0", "tid": 35568, "ts": 8903891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269750", "tid": 35568, "ts": 8904191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268090", "tid": 35568, "ts": 8904491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2699c0", "tid": 35568, "ts": 8904792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268160", "tid": 35568, "ts": 8905092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8905263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269c30", "tid": 35568, "ts": 8905392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8905565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268e60", "tid": 35568, "ts": 8905717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8905890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268f30", "tid": 35568, "ts": 8906019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8906191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267530", "tid": 35568, "ts": 8906320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8906493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269a90", "tid": 35568, "ts": 8906621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8906794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269dd0", "tid": 35568, "ts": 8906922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267fc0", "tid": 35568, "ts": 8907223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269f70", "tid": 35568, "ts": 8907524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269000", "tid": 35568, "ts": 8907826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268230", "tid": 35568, "ts": 8908126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8908299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a040", "tid": 35568, "ts": 8908426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8908599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a450", "tid": 35568, "ts": 8908728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8908900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267940", "tid": 35568, "ts": 8909028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8909200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268bf0", "tid": 35568, "ts": 8909328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8909500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a520", "tid": 35568, "ts": 8909628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8909870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a380", "tid": 35568, "ts": 8910037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8910221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268980", "tid": 35568, "ts": 8910350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8910522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a110", "tid": 35568, "ts": 8910651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8910824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268b20", "tid": 35568, "ts": 8910953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8911125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269d00", "tid": 35568, "ts": 8911254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8911427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a1e0", "tid": 35568, "ts": 8911555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8911728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a2b0", "tid": 35568, "ts": 8911857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268cc0", "tid": 35568, "ts": 8912159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2691a0", "tid": 35568, "ts": 8912460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a5f0", "tid": 35568, "ts": 8912761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268d90", "tid": 35568, "ts": 8913063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8913235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269270", "tid": 35568, "ts": 8913363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8913536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267600", "tid": 35568, "ts": 8913663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8913835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269340", "tid": 35568, "ts": 8913963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8914135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268300", "tid": 35568, "ts": 8914263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8914438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a6c0", "tid": 35568, "ts": 8914565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8914738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2690d0", "tid": 35568, "ts": 8914866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2683d0", "tid": 35568, "ts": 8915168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a790", "tid": 35568, "ts": 8915470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269410", "tid": 35568, "ts": 8915772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2687e0", "tid": 35568, "ts": 8916072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8916244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267ef0", "tid": 35568, "ts": 8916372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8916544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a860", "tid": 35568, "ts": 8916672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8916844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269820", "tid": 35568, "ts": 8916971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8917144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2676d0", "tid": 35568, "ts": 8917273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8917446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2684a0", "tid": 35568, "ts": 8917574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8917746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267c80", "tid": 35568, "ts": 8917874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2694e0", "tid": 35568, "ts": 8918175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2695b0", "tid": 35568, "ts": 8918475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269680", "tid": 35568, "ts": 8918776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268710", "tid": 35568, "ts": 8919076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8919248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267d50", "tid": 35568, "ts": 8919376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8919549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2677a0", "tid": 35568, "ts": 8919678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8919850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267870", "tid": 35568, "ts": 8919979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8920150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267a10", "tid": 35568, "ts": 8920279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8920451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2698f0", "tid": 35568, "ts": 8920580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8920752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267ae0", "tid": 35568, "ts": 8920880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267bb0", "tid": 35568, "ts": 8921183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267e20", "tid": 35568, "ts": 8921485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268570", "tid": 35568, "ts": 8921786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268640", "tid": 35568, "ts": 8922087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8922260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d440", "tid": 35568, "ts": 8922388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8922560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b560", "tid": 35568, "ts": 8922688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8922860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dac0", "tid": 35568, "ts": 8922989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8923161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d030", "tid": 35568, "ts": 8923289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8923462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b700", "tid": 35568, "ts": 8923591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8923763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b630", "tid": 35568, "ts": 8923891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8924136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cdc0", "tid": 35568, "ts": 8924270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8924443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d2a0", "tid": 35568, "ts": 8924572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8924746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c400", "tid": 35568, "ts": 8924875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26db90", "tid": 35568, "ts": 8925177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dc60", "tid": 35568, "ts": 8925510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b150", "tid": 35568, "ts": 8925813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d5e0", "tid": 35568, "ts": 8926115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8926287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b8a0", "tid": 35568, "ts": 8926416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8926587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b7d0", "tid": 35568, "ts": 8926716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8926888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aad0", "tid": 35568, "ts": 8927016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8927190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ce90", "tid": 35568, "ts": 8927318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8927491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d100", "tid": 35568, "ts": 8927620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8927793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cc20", "tid": 35568, "ts": 8927922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aba0", "tid": 35568, "ts": 8928224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c5a0", "tid": 35568, "ts": 8928524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d510", "tid": 35568, "ts": 8928825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b970", "tid": 35568, "ts": 8929126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8929298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b2f0", "tid": 35568, "ts": 8929426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8929598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cf60", "tid": 35568, "ts": 8929727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8929901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d1d0", "tid": 35568, "ts": 8930029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8930201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bbe0", "tid": 35568, "ts": 8930329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8930503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d370", "tid": 35568, "ts": 8930631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8930805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a930", "tid": 35568, "ts": 8931031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8931204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aa00", "tid": 35568, "ts": 8931333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8931505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c9b0", "tid": 35568, "ts": 8931633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8931805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ba40", "tid": 35568, "ts": 8931935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8932109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bb10", "tid": 35568, "ts": 8932237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8932410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ac70", "tid": 35568, "ts": 8932538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8932710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bd80", "tid": 35568, "ts": 8932839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c670", "tid": 35568, "ts": 8933139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d9f0", "tid": 35568, "ts": 8933439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ad40", "tid": 35568, "ts": 8933739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ccf0", "tid": 35568, "ts": 8934039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8934211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d6b0", "tid": 35568, "ts": 8934339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8934511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ae10", "tid": 35568, "ts": 8934640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8934813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aee0", "tid": 35568, "ts": 8934942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8935113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c0c0", "tid": 35568, "ts": 8935243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8935416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d780", "tid": 35568, "ts": 8935545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8935716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bcb0", "tid": 35568, "ts": 8935844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26afb0", "tid": 35568, "ts": 8936146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ca80", "tid": 35568, "ts": 8936446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cb50", "tid": 35568, "ts": 8936746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26be50", "tid": 35568, "ts": 8937047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8937219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bf20", "tid": 35568, "ts": 8937347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8937519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bff0", "tid": 35568, "ts": 8937648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8937820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d850", "tid": 35568, "ts": 8937948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8938120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b080", "tid": 35568, "ts": 8938249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8938422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b220", "tid": 35568, "ts": 8938550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8938721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c740", "tid": 35568, "ts": 8938850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b3c0", "tid": 35568, "ts": 8939150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c190", "tid": 35568, "ts": 8939513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d920", "tid": 35568, "ts": 8939814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b490", "tid": 35568, "ts": 8940115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8940287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c260", "tid": 35568, "ts": 8940416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8940589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c330", "tid": 35568, "ts": 8940717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8940890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c4d0", "tid": 35568, "ts": 8941068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8941283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c810", "tid": 35568, "ts": 8941415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8941589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c8e0", "tid": 35568, "ts": 8941717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8941890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26eb00", "tid": 35568, "ts": 8942019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8942190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f3f0", "tid": 35568, "ts": 8942318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8942490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270290", "tid": 35568, "ts": 8942620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8942792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2706a0", "tid": 35568, "ts": 8942920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270770", "tid": 35568, "ts": 8943219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270360", "tid": 35568, "ts": 8943519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2709e0", "tid": 35568, "ts": 8943819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ebd0", "tid": 35568, "ts": 8944119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8944292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e210", "tid": 35568, "ts": 8944420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8944592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26de00", "tid": 35568, "ts": 8944721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8944893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270ab0", "tid": 35568, "ts": 8945022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8945194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e140", "tid": 35568, "ts": 8945322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8945494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270b80", "tid": 35568, "ts": 8945623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8945858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270840", "tid": 35568, "ts": 8945989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8946166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dd30", "tid": 35568, "ts": 8946295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8946476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2700f0", "tid": 35568, "ts": 8946615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8946789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ef10", "tid": 35568, "ts": 8946918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fb40", "tid": 35568, "ts": 8947219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fe80", "tid": 35568, "ts": 8947520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270430", "tid": 35568, "ts": 8947820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270c50", "tid": 35568, "ts": 8948121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8948295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ed70", "tid": 35568, "ts": 8948423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8948594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270910", "tid": 35568, "ts": 8948723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8948895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ded0", "tid": 35568, "ts": 8949023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8949195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26eca0", "tid": 35568, "ts": 8949325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8949497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f590", "tid": 35568, "ts": 8949626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8949799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270d20", "tid": 35568, "ts": 8949927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8950099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270df0", "tid": 35568, "ts": 8950228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8950441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e3b0", "tid": 35568, "ts": 8950570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8950742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270500", "tid": 35568, "ts": 8950870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f8d0", "tid": 35568, "ts": 8951170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26efe0", "tid": 35568, "ts": 8951471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ee40", "tid": 35568, "ts": 8951772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f660", "tid": 35568, "ts": 8952072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8952244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270ec0", "tid": 35568, "ts": 8952373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8952545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dfa0", "tid": 35568, "ts": 8952674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8952847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fc10", "tid": 35568, "ts": 8952976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8953146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2705d0", "tid": 35568, "ts": 8953276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8953450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f800", "tid": 35568, "ts": 8953578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8953750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fce0", "tid": 35568, "ts": 8953878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f4c0", "tid": 35568, "ts": 8954179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e070", "tid": 35568, "ts": 8954480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e6f0", "tid": 35568, "ts": 8954782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e2e0", "tid": 35568, "ts": 8955083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8955255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f320", "tid": 35568, "ts": 8955384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8955555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e890", "tid": 35568, "ts": 8955684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8955856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e480", "tid": 35568, "ts": 8955986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8956159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e550", "tid": 35568, "ts": 8956287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8956459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e620", "tid": 35568, "ts": 8956589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8956800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f9a0", "tid": 35568, "ts": 8956928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8957100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f730", "tid": 35568, "ts": 8957228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8957400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e7c0", "tid": 35568, "ts": 8957529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8957701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e960", "tid": 35568, "ts": 8957829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ea30", "tid": 35568, "ts": 8958130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f0b0", "tid": 35568, "ts": 8958430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f250", "tid": 35568, "ts": 8958731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fdb0", "tid": 35568, "ts": 8959032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8959204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ff50", "tid": 35568, "ts": 8959333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8959505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f180", "tid": 35568, "ts": 8959635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8959807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fa70", "tid": 35568, "ts": 8959935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8960107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270020", "tid": 35568, "ts": 8960235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8960407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2701c0", "tid": 35568, "ts": 8960536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8960708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1280", "tid": 35568, "ts": 8960905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0990", "tid": 35568, "ts": 8961209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1900", "tid": 35568, "ts": 8961511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfbc0", "tid": 35568, "ts": 8961812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1690", "tid": 35568, "ts": 8962112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8962284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc19d0", "tid": 35568, "ts": 8962412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8962585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc07f0", "tid": 35568, "ts": 8962714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8962887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0720", "tid": 35568, "ts": 8963015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8963188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf610", "tid": 35568, "ts": 8963316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8963488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0c00", "tid": 35568, "ts": 8963617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8963789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0b30", "tid": 35568, "ts": 8963918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8964091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1aa0", "tid": 35568, "ts": 8964220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8964434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0a60", "tid": 35568, "ts": 8964564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8964736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1350", "tid": 35568, "ts": 8964865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1420", "tid": 35568, "ts": 8965166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc03e0", "tid": 35568, "ts": 8965466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2530", "tid": 35568, "ts": 8965767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2870", "tid": 35568, "ts": 8966069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8966240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0310", "tid": 35568, "ts": 8966369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8966541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1010", "tid": 35568, "ts": 8966670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8966842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0f40", "tid": 35568, "ts": 8966971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8967143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0cd0", "tid": 35568, "ts": 8967272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8967444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0da0", "tid": 35568, "ts": 8967572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8967744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc21f0", "tid": 35568, "ts": 8967872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1c40", "tid": 35568, "ts": 8968173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1830", "tid": 35568, "ts": 8968474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfa20", "tid": 35568, "ts": 8968775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1d10", "tid": 35568, "ts": 8969076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8969248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc22c0", "tid": 35568, "ts": 8969378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8969550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2120", "tid": 35568, "ts": 8969679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8969850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc14f0", "tid": 35568, "ts": 8969980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8970151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbff00", "tid": 35568, "ts": 8970280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8970452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0e70", "tid": 35568, "ts": 8970580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8970753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc10e0", "tid": 35568, "ts": 8970882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf540", "tid": 35568, "ts": 8971183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc15c0", "tid": 35568, "ts": 8971483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1760", "tid": 35568, "ts": 8971784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc11b0", "tid": 35568, "ts": 8972083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8972293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf6e0", "tid": 35568, "ts": 8972423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8972594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1b70", "tid": 35568, "ts": 8972722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8972895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1de0", "tid": 35568, "ts": 8973023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8973196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1eb0", "tid": 35568, "ts": 8973324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8973497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf7b0", "tid": 35568, "ts": 8973625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8973797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1f80", "tid": 35568, "ts": 8973925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8974097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2050", "tid": 35568, "ts": 8974226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8974399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf880", "tid": 35568, "ts": 8974527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8974700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2390", "tid": 35568, "ts": 8974828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf950", "tid": 35568, "ts": 8975129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc26d0", "tid": 35568, "ts": 8975430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfc90", "tid": 35568, "ts": 8975731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2460", "tid": 35568, "ts": 8976031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8976203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2600", "tid": 35568, "ts": 8976332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8976505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc27a0", "tid": 35568, "ts": 8976633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8976804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfaf0", "tid": 35568, "ts": 8976932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8977104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfe30", "tid": 35568, "ts": 8977233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8977404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfd60", "tid": 35568, "ts": 8977532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8977704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbffd0", "tid": 35568, "ts": 8977832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc00a0", "tid": 35568, "ts": 8978135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0170", "tid": 35568, "ts": 8978435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc04b0", "tid": 35568, "ts": 8978737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0240", "tid": 35568, "ts": 8979037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8979209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0580", "tid": 35568, "ts": 8979338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8979510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0650", "tid": 35568, "ts": 8979639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8979812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc08c0", "tid": 35568, "ts": 8979940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8980111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4000", "tid": 35568, "ts": 8980240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8980412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2bb0", "tid": 35568, "ts": 8980541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8980714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4f70", "tid": 35568, "ts": 8980842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4dd0", "tid": 35568, "ts": 8981141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2c80", "tid": 35568, "ts": 8981442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3980", "tid": 35568, "ts": 8981741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5520", "tid": 35568, "ts": 8982042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8982214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4ea0", "tid": 35568, "ts": 8982343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8982516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc52b0", "tid": 35568, "ts": 8982643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8982817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4410", "tid": 35568, "ts": 8982946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8983117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5040", "tid": 35568, "ts": 8983247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8983420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5450", "tid": 35568, "ts": 8983548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8983721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc49c0", "tid": 35568, "ts": 8983850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2d50", "tid": 35568, "ts": 8984150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5790", "tid": 35568, "ts": 8984451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2e20", "tid": 35568, "ts": 8984752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc56c0", "tid": 35568, "ts": 8985052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8985225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2ef0", "tid": 35568, "ts": 8985353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8985526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4a90", "tid": 35568, "ts": 8985655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8985828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5110", "tid": 35568, "ts": 8985957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8986128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc41a0", "tid": 35568, "ts": 8986257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8986429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc55f0", "tid": 35568, "ts": 8986620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8986793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2940", "tid": 35568, "ts": 8986921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8987094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5860", "tid": 35568, "ts": 8987223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8987395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4b60", "tid": 35568, "ts": 8987523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8987696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4c30", "tid": 35568, "ts": 8987824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2a10", "tid": 35568, "ts": 8988166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5930", "tid": 35568, "ts": 8988466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2ae0", "tid": 35568, "ts": 8988768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5380", "tid": 35568, "ts": 8989068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8989241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5a00", "tid": 35568, "ts": 8989369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8989542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5ad0", "tid": 35568, "ts": 8989671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8989842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc37e0", "tid": 35568, "ts": 8989971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8990144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2fc0", "tid": 35568, "ts": 8990272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8990443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5ba0", "tid": 35568, "ts": 8990571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8990743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc51e0", "tid": 35568, "ts": 8990871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4d00", "tid": 35568, "ts": 8991172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3d90", "tid": 35568, "ts": 8991472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3f30", "tid": 35568, "ts": 8991798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5c70", "tid": 35568, "ts": 8992100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8992273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3a50", "tid": 35568, "ts": 8992401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8992574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3090", "tid": 35568, "ts": 8992703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8992876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3160", "tid": 35568, "ts": 8993004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8993177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3b20", "tid": 35568, "ts": 8993305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8993478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3230", "tid": 35568, "ts": 8993606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8993778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3300", "tid": 35568, "ts": 8993907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8994078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3640", "tid": 35568, "ts": 8994207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8994379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3e60", "tid": 35568, "ts": 8994508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8994703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4340", "tid": 35568, "ts": 8994832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3bf0", "tid": 35568, "ts": 8995132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc40d0", "tid": 35568, "ts": 8995433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc33d0", "tid": 35568, "ts": 8995733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc34a0", "tid": 35568, "ts": 8996034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8996206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4270", "tid": 35568, "ts": 8996335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8996508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3570", "tid": 35568, "ts": 8996636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8996808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc45b0", "tid": 35568, "ts": 8996936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8997109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc44e0", "tid": 35568, "ts": 8997237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8997409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3710", "tid": 35568, "ts": 8997580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8997753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc38b0", "tid": 35568, "ts": 8997882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3cc0", "tid": 35568, "ts": 8998183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4680", "tid": 35568, "ts": 8998483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4750", "tid": 35568, "ts": 8998784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4820", "tid": 35568, "ts": 8999085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8999258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc48f0", "tid": 35568, "ts": 8999386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8999559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8440", "tid": 35568, "ts": 8999687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8999858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8780", "tid": 35568, "ts": 9000042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9000215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7670", "tid": 35568, "ts": 9000344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9000516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc67d0", "tid": 35568, "ts": 9000644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9000816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7a80", "tid": 35568, "ts": 9000944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9001116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6a40", "tid": 35568, "ts": 9001246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9001417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6ff0", "tid": 35568, "ts": 9001545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9001717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9070", "tid": 35568, "ts": 9001845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8850", "tid": 35568, "ts": 9002146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7e90", "tid": 35568, "ts": 9002446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc70c0", "tid": 35568, "ts": 9002748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7b50", "tid": 35568, "ts": 9003049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9003220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6f20", "tid": 35568, "ts": 9003349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9003598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8030", "tid": 35568, "ts": 9003817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9004064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7330", "tid": 35568, "ts": 9004255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9004500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc79b0", "tid": 35568, "ts": 9004684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9004856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6080", "tid": 35568, "ts": 9004985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9005158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7c20", "tid": 35568, "ts": 9005287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9005461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7cf0", "tid": 35568, "ts": 9005589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9005761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc85e0", "tid": 35568, "ts": 9005890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5d40", "tid": 35568, "ts": 9006191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc86b0", "tid": 35568, "ts": 9006493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7190", "tid": 35568, "ts": 9006795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7740", "tid": 35568, "ts": 9007096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9007269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6700", "tid": 35568, "ts": 9007397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9007569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7dc0", "tid": 35568, "ts": 9007699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9007872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc82a0", "tid": 35568, "ts": 9008001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9008172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5ee0", "tid": 35568, "ts": 9008302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9008475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5e10", "tid": 35568, "ts": 9008605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9008778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8100", "tid": 35568, "ts": 9008907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6d80", "tid": 35568, "ts": 9009209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6150", "tid": 35568, "ts": 9009511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7f60", "tid": 35568, "ts": 9009812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8fa0", "tid": 35568, "ts": 9010113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9010287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6be0", "tid": 35568, "ts": 9010416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9010588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8d30", "tid": 35568, "ts": 9010717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9010889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc81d0", "tid": 35568, "ts": 9011018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9011190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8370", "tid": 35568, "ts": 9011318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9011491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8ed0", "tid": 35568, "ts": 9011619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9011792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc74d0", "tid": 35568, "ts": 9011920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8510", "tid": 35568, "ts": 9012222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8920", "tid": 35568, "ts": 9012523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc89f0", "tid": 35568, "ts": 9012824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8ac0", "tid": 35568, "ts": 9013125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9013297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8b90", "tid": 35568, "ts": 9013425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9013597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc75a0", "tid": 35568, "ts": 9013725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9013898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6220", "tid": 35568, "ts": 9014027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9014200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8c60", "tid": 35568, "ts": 9014329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9014501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc68a0", "tid": 35568, "ts": 9014630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9014803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8e00", "tid": 35568, "ts": 9014931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9015103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5fb0", "tid": 35568, "ts": 9015230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9015403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6970", "tid": 35568, "ts": 9015531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9015704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc62f0", "tid": 35568, "ts": 9015863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7260", "tid": 35568, "ts": 9016164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc63c0", "tid": 35568, "ts": 9016465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7810", "tid": 35568, "ts": 9016766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6490", "tid": 35568, "ts": 9017068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9017240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6560", "tid": 35568, "ts": 9017369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9017541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc78e0", "tid": 35568, "ts": 9017671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9017843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7400", "tid": 35568, "ts": 9017972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9018145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6630", "tid": 35568, "ts": 9018274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9018446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6b10", "tid": 35568, "ts": 9018575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9018749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6cb0", "tid": 35568, "ts": 9018877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9019049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6e50", "tid": 35568, "ts": 9019235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9019408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcae80", "tid": 35568, "ts": 9019537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9019709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9ca0", "tid": 35568, "ts": 9019837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca0b0", "tid": 35568, "ts": 9020138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbec0", "tid": 35568, "ts": 9020439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca250", "tid": 35568, "ts": 9020741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc97c0", "tid": 35568, "ts": 9021043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9021215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca180", "tid": 35568, "ts": 9021344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9021516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb290", "tid": 35568, "ts": 9021644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9021858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca320", "tid": 35568, "ts": 9021989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9022162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbf90", "tid": 35568, "ts": 9022291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9022465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbb80", "tid": 35568, "ts": 9022594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9022768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbc50", "tid": 35568, "ts": 9022898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbdf0", "tid": 35568, "ts": 9023198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9550", "tid": 35568, "ts": 9023499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb1c0", "tid": 35568, "ts": 9023799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9480", "tid": 35568, "ts": 9024101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9024274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc060", "tid": 35568, "ts": 9024403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9024576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9620", "tid": 35568, "ts": 9024705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9024877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9890", "tid": 35568, "ts": 9025006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9025179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9140", "tid": 35568, "ts": 9025307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9025479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca730", "tid": 35568, "ts": 9025607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9025780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9f10", "tid": 35568, "ts": 9025909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9026082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb020", "tid": 35568, "ts": 9026210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9026408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca660", "tid": 35568, "ts": 9026538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9026710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb910", "tid": 35568, "ts": 9026839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcaf50", "tid": 35568, "ts": 9027141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc3a0", "tid": 35568, "ts": 9027442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb6a0", "tid": 35568, "ts": 9027744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca800", "tid": 35568, "ts": 9028045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9028217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9210", "tid": 35568, "ts": 9028346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9028519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcaa70", "tid": 35568, "ts": 9028647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9028820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc96f0", "tid": 35568, "ts": 9028949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9029121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca3f0", "tid": 35568, "ts": 9029250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9029421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9960", "tid": 35568, "ts": 9029549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9029722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc130", "tid": 35568, "ts": 9029851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb770", "tid": 35568, "ts": 9030153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca9a0", "tid": 35568, "ts": 9030454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcab40", "tid": 35568, "ts": 9030754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca4c0", "tid": 35568, "ts": 9031096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9031270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9b00", "tid": 35568, "ts": 9031399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9031572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcac10", "tid": 35568, "ts": 9031701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9031874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc2d0", "tid": 35568, "ts": 9032003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9032176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9a30", "tid": 35568, "ts": 9032305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9032478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcace0", "tid": 35568, "ts": 9032607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9032779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb360", "tid": 35568, "ts": 9032908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbab0", "tid": 35568, "ts": 9033209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb5d0", "tid": 35568, "ts": 9033511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb500", "tid": 35568, "ts": 9033812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc200", "tid": 35568, "ts": 9034112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9034285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca590", "tid": 35568, "ts": 9034413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9034585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbd20", "tid": 35568, "ts": 9034713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9034919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb0f0", "tid": 35568, "ts": 9035048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9035221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcadb0", "tid": 35568, "ts": 9035350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9035522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9fe0", "tid": 35568, "ts": 9035652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9035825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc470", "tid": 35568, "ts": 9035954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9036126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb840", "tid": 35568, "ts": 9036255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9036426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb430", "tid": 35568, "ts": 9036597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9036770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca8d0", "tid": 35568, "ts": 9036899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb9e0", "tid": 35568, "ts": 9037201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc92e0", "tid": 35568, "ts": 9037502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9bd0", "tid": 35568, "ts": 9037802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc93b0", "tid": 35568, "ts": 9038102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9038276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9d70", "tid": 35568, "ts": 9038405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9038577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9e40", "tid": 35568, "ts": 9038706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9038877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdf40", "tid": 35568, "ts": 9039006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9039178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf120", "tid": 35568, "ts": 9039307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9039480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce280", "tid": 35568, "ts": 9039609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9039781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd4b0", "tid": 35568, "ts": 9039910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf2c0", "tid": 35568, "ts": 9040211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dceeb0", "tid": 35568, "ts": 9040512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce830", "tid": 35568, "ts": 9040812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcede0", "tid": 35568, "ts": 9041114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9041285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccf00", "tid": 35568, "ts": 9041414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9041586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcde70", "tid": 35568, "ts": 9041715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9041887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf1f0", "tid": 35568, "ts": 9042017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9042189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccd60", "tid": 35568, "ts": 9042318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9042490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce1b0", "tid": 35568, "ts": 9042619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9042791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf530", "tid": 35568, "ts": 9042919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9043091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf870", "tid": 35568, "ts": 9403185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9403482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc7b0", "tid": 35568, "ts": 9403630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9403813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dced10", "tid": 35568, "ts": 9403950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9404131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccfd0", "tid": 35568, "ts": 9404266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9404447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc880", "tid": 35568, "ts": 9404591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9404766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd8c0", "tid": 35568, "ts": 9404896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdb30", "tid": 35568, "ts": 9405200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf6d0", "tid": 35568, "ts": 9405504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf7a0", "tid": 35568, "ts": 9405808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce5c0", "tid": 35568, "ts": 9406112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9406285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce690", "tid": 35568, "ts": 9406415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9406587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd0a0", "tid": 35568, "ts": 9406717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9406889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc540", "tid": 35568, "ts": 9407019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9407191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce4f0", "tid": 35568, "ts": 9407322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9407495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcef80", "tid": 35568, "ts": 9407624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9407797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc950", "tid": 35568, "ts": 9407926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9408099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf050", "tid": 35568, "ts": 9408228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9408401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce420", "tid": 35568, "ts": 9408530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9408701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd170", "tid": 35568, "ts": 9408829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce0e0", "tid": 35568, "ts": 9409133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce760", "tid": 35568, "ts": 9409435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd990", "tid": 35568, "ts": 9409769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc610", "tid": 35568, "ts": 9410103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9410276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcca20", "tid": 35568, "ts": 9410406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9410579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccaf0", "tid": 35568, "ts": 9410708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9410881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce900", "tid": 35568, "ts": 9411011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9411185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdc00", "tid": 35568, "ts": 9411316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9411491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccbc0", "tid": 35568, "ts": 9411621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9411794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dceaa0", "tid": 35568, "ts": 9411923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9412096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf460", "tid": 35568, "ts": 9412226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9412399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd240", "tid": 35568, "ts": 9412528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9412702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd310", "tid": 35568, "ts": 9412832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd3e0", "tid": 35568, "ts": 9413133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd580", "tid": 35568, "ts": 9413435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd650", "tid": 35568, "ts": 9413735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdcd0", "tid": 35568, "ts": 9414037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9414210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdda0", "tid": 35568, "ts": 9414339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9414512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd07e0", "tid": 35568, "ts": 9414641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9414815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2790", "tid": 35568, "ts": 9414944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9415117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfae0", "tid": 35568, "ts": 9415246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9415419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1f70", "tid": 35568, "ts": 9415549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9415722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2930", "tid": 35568, "ts": 9415851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd18f0", "tid": 35568, "ts": 9416154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd15b0", "tid": 35568, "ts": 9416456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd11a0", "tid": 35568, "ts": 9416758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0160", "tid": 35568, "ts": 9417060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9417232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfc80", "tid": 35568, "ts": 9417362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9417536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd25f0", "tid": 35568, "ts": 9417665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9417839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0230", "tid": 35568, "ts": 9417970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9418144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfd50", "tid": 35568, "ts": 9418273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9418446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1000", "tid": 35568, "ts": 9418575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9418748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd10d0", "tid": 35568, "ts": 9418877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9419050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1ea0", "tid": 35568, "ts": 9419179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9419472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd03d0", "tid": 35568, "ts": 9419624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9419797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd04a0", "tid": 35568, "ts": 9419927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9420099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2a00", "tid": 35568, "ts": 9420228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9420400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd19c0", "tid": 35568, "ts": 9420529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9420703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd08b0", "tid": 35568, "ts": 9420831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2040", "tid": 35568, "ts": 9421135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1a90", "tid": 35568, "ts": 9421437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd22b0", "tid": 35568, "ts": 9421741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2ad0", "tid": 35568, "ts": 9422043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9422215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1750", "tid": 35568, "ts": 9422345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9422517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2ba0", "tid": 35568, "ts": 9422646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9422818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0300", "tid": 35568, "ts": 9422947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9423119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfe20", "tid": 35568, "ts": 9423249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9423421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0570", "tid": 35568, "ts": 9423550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9423722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2c70", "tid": 35568, "ts": 9423851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0b20", "tid": 35568, "ts": 9424153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0e60", "tid": 35568, "ts": 9424457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2860", "tid": 35568, "ts": 9424808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1680", "tid": 35568, "ts": 9425109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9425281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2450", "tid": 35568, "ts": 9425451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9425624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0090", "tid": 35568, "ts": 9425755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9425928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfa10", "tid": 35568, "ts": 9426058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9426229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1b60", "tid": 35568, "ts": 9426370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9426556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0980", "tid": 35568, "ts": 9426685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9426858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0640", "tid": 35568, "ts": 9426987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9427160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0bf0", "tid": 35568, "ts": 9427289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9427462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0cc0", "tid": 35568, "ts": 9427591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9427764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1c30", "tid": 35568, "ts": 9427894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9428066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1410", "tid": 35568, "ts": 9428195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9428369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0710", "tid": 35568, "ts": 9428525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9428699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfbb0", "tid": 35568, "ts": 9428828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf940", "tid": 35568, "ts": 9429132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2110", "tid": 35568, "ts": 9429433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd21e0", "tid": 35568, "ts": 9429740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1270", "tid": 35568, "ts": 9430042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9430214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfef0", "tid": 35568, "ts": 9430344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9430516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcffc0", "tid": 35568, "ts": 9430645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9430819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0a50", "tid": 35568, "ts": 9430948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9431120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0d90", "tid": 35568, "ts": 9431249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9431421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0f30", "tid": 35568, "ts": 9431550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9431723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2520", "tid": 35568, "ts": 9431852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1dd0", "tid": 35568, "ts": 9432152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2380", "tid": 35568, "ts": 9432455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1340", "tid": 35568, "ts": 9432755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd14e0", "tid": 35568, "ts": 9433057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9433228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1820", "tid": 35568, "ts": 9433357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9433530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1d00", "tid": 35568, "ts": 9433659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9433831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd26c0", "tid": 35568, "ts": 9433960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9434133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3cb0", "tid": 35568, "ts": 9434269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9434441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3220", "tid": 35568, "ts": 9434570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9434742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5d30", "tid": 35568, "ts": 9434871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5b90", "tid": 35568, "ts": 9435172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4190", "tid": 35568, "ts": 9435472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3560", "tid": 35568, "ts": 9435773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4400", "tid": 35568, "ts": 9436075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9436247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4b50", "tid": 35568, "ts": 9436376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9436548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd56b0", "tid": 35568, "ts": 9436678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9436849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4260", "tid": 35568, "ts": 9436979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9437151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5ed0", "tid": 35568, "ts": 9437280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9437453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4c20", "tid": 35568, "ts": 9437582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9437754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3f20", "tid": 35568, "ts": 9437884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd37d0", "tid": 35568, "ts": 9438186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd48e0", "tid": 35568, "ts": 9438488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5e00", "tid": 35568, "ts": 9438792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd51d0", "tid": 35568, "ts": 9439094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9439267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2ee0", "tid": 35568, "ts": 9439396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9439569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3b10", "tid": 35568, "ts": 9439698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9439870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4330", "tid": 35568, "ts": 9439999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9440173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4810", "tid": 35568, "ts": 9440302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9440476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3150", "tid": 35568, "ts": 9440605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9440779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd32f0", "tid": 35568, "ts": 9440908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9441259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3ff0", "tid": 35568, "ts": 9441520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9441789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3490", "tid": 35568, "ts": 9441994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9442212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5fa0", "tid": 35568, "ts": 9442435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9442607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3700", "tid": 35568, "ts": 9442737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9442909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd38a0", "tid": 35568, "ts": 9443039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9443213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3630", "tid": 35568, "ts": 9443342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9443515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3970", "tid": 35568, "ts": 9443645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9443817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3080", "tid": 35568, "ts": 9443947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9444119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3a40", "tid": 35568, "ts": 9444248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9444421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2d40", "tid": 35568, "ts": 9444550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9444724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd33c0", "tid": 35568, "ts": 9444854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3be0", "tid": 35568, "ts": 9445156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd44d0", "tid": 35568, "ts": 9445459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3d80", "tid": 35568, "ts": 9445762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3e50", "tid": 35568, "ts": 9446065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9446237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4cf0", "tid": 35568, "ts": 9446366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9446539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4dc0", "tid": 35568, "ts": 9446669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9446842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4e90", "tid": 35568, "ts": 9446971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9447144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4f60", "tid": 35568, "ts": 9447273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9447446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd45a0", "tid": 35568, "ts": 9447575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9447748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd40c0", "tid": 35568, "ts": 9447878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4670", "tid": 35568, "ts": 9448179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6070", "tid": 35568, "ts": 9448482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2e10", "tid": 35568, "ts": 9448784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5030", "tid": 35568, "ts": 9449087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9449259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5780", "tid": 35568, "ts": 9449388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9449561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4740", "tid": 35568, "ts": 9449689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9449862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5100", "tid": 35568, "ts": 9449991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9450163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd49b0", "tid": 35568, "ts": 9450293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9450466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4a80", "tid": 35568, "ts": 9450594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9450767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd52a0", "tid": 35568, "ts": 9450897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5510", "tid": 35568, "ts": 9451198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5850", "tid": 35568, "ts": 9451501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd55e0", "tid": 35568, "ts": 9451803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5c60", "tid": 35568, "ts": 9452105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9452278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5370", "tid": 35568, "ts": 9452408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9452580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5440", "tid": 35568, "ts": 9452709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9452883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5920", "tid": 35568, "ts": 9453012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9453185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd59f0", "tid": 35568, "ts": 9453313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9453485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5ac0", "tid": 35568, "ts": 9453614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9453810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2fb0", "tid": 35568, "ts": 9453940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9454113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8020", "tid": 35568, "ts": 9454242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9454415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6620", "tid": 35568, "ts": 9454545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9454717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6960", "tid": 35568, "ts": 9454846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd86a0", "tid": 35568, "ts": 9455148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6140", "tid": 35568, "ts": 9455452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7590", "tid": 35568, "ts": 9455754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7e80", "tid": 35568, "ts": 9456056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9456229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7660", "tid": 35568, "ts": 9456358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9456529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd85d0", "tid": 35568, "ts": 9456701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9456873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6f10", "tid": 35568, "ts": 9457002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9457175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6210", "tid": 35568, "ts": 9457305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9457478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8df0", "tid": 35568, "ts": 9457608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9457779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8360", "tid": 35568, "ts": 9457908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9458080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7ce0", "tid": 35568, "ts": 9458209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9458380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6a30", "tid": 35568, "ts": 9458527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9458700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8c50", "tid": 35568, "ts": 9458830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8910", "tid": 35568, "ts": 9459132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8500", "tid": 35568, "ts": 9459435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7730", "tid": 35568, "ts": 9459736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8430", "tid": 35568, "ts": 9460037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9460208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8ab0", "tid": 35568, "ts": 9460338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9460509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd62e0", "tid": 35568, "ts": 9460638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9460810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6890", "tid": 35568, "ts": 9460940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9461112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8d20", "tid": 35568, "ts": 9461241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9461413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd70b0", "tid": 35568, "ts": 9461543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9461715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd66f0", "tid": 35568, "ts": 9461844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8770", "tid": 35568, "ts": 9462144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9130", "tid": 35568, "ts": 9462445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7f50", "tid": 35568, "ts": 9462745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9470", "tid": 35568, "ts": 9463046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9463219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd80f0", "tid": 35568, "ts": 9463347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9463519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6d70", "tid": 35568, "ts": 9463649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9463819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7800", "tid": 35568, "ts": 9463948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9464122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd73f0", "tid": 35568, "ts": 9464251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9464422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd81c0", "tid": 35568, "ts": 9464552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9464724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8b80", "tid": 35568, "ts": 9464854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7320", "tid": 35568, "ts": 9465155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd78d0", "tid": 35568, "ts": 9465456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6bd0", "tid": 35568, "ts": 9465758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8290", "tid": 35568, "ts": 9466059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9466231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8ec0", "tid": 35568, "ts": 9466360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9466532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8f90", "tid": 35568, "ts": 9466662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9466833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd63b0", "tid": 35568, "ts": 9466962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9467135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd79a0", "tid": 35568, "ts": 9467263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9467435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6480", "tid": 35568, "ts": 9467565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9467737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7a70", "tid": 35568, "ts": 9467865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9060", "tid": 35568, "ts": 9468167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8840", "tid": 35568, "ts": 9468469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd89e0", "tid": 35568, "ts": 9468771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9200", "tid": 35568, "ts": 9469072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9469244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7db0", "tid": 35568, "ts": 9469373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9469546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd92d0", "tid": 35568, "ts": 9469674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9469846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6fe0", "tid": 35568, "ts": 9469975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9470147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7b40", "tid": 35568, "ts": 9470276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9470448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd93a0", "tid": 35568, "ts": 9470577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9470748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6550", "tid": 35568, "ts": 9470877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7c10", "tid": 35568, "ts": 9471179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd67c0", "tid": 35568, "ts": 9471481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6b00", "tid": 35568, "ts": 9471782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6ca0", "tid": 35568, "ts": 9472083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9472309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6e40", "tid": 35568, "ts": 9472439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9472611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7180", "tid": 35568, "ts": 9472740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9472913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7250", "tid": 35568, "ts": 9473042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9473216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd74c0", "tid": 35568, "ts": 9473344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9473518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda310", "tid": 35568, "ts": 9473647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9473820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc390", "tid": 35568, "ts": 9473949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9474122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc460", "tid": 35568, "ts": 9474251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9474423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc530", "tid": 35568, "ts": 9474552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9474723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9c90", "tid": 35568, "ts": 9474852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda3e0", "tid": 35568, "ts": 9475153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddab30", "tid": 35568, "ts": 9475455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda170", "tid": 35568, "ts": 9475757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddaa60", "tid": 35568, "ts": 9476059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9476231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9d60", "tid": 35568, "ts": 9476361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9476532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda4b0", "tid": 35568, "ts": 9476661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9476833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb830", "tid": 35568, "ts": 9476962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9477135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddac00", "tid": 35568, "ts": 9477264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9477437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbd10", "tid": 35568, "ts": 9477566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9477738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc7a0", "tid": 35568, "ts": 9477867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddacd0", "tid": 35568, "ts": 9478171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda580", "tid": 35568, "ts": 9478473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9950", "tid": 35568, "ts": 9478775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9540", "tid": 35568, "ts": 9479076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9479249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda650", "tid": 35568, "ts": 9479378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9479550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda720", "tid": 35568, "ts": 9479679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9479851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc600", "tid": 35568, "ts": 9479980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9480153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb5c0", "tid": 35568, "ts": 9480282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9480455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb9d0", "tid": 35568, "ts": 9480584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9480756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb760", "tid": 35568, "ts": 9480885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb900", "tid": 35568, "ts": 9481187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc6d0", "tid": 35568, "ts": 9481489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbeb0", "tid": 35568, "ts": 9481791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc870", "tid": 35568, "ts": 9482093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9482265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbf80", "tid": 35568, "ts": 9482395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9482567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb350", "tid": 35568, "ts": 9482696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9482869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc050", "tid": 35568, "ts": 9482997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9483169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9610", "tid": 35568, "ts": 9483299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9483471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9fd0", "tid": 35568, "ts": 9483600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9483772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd96e0", "tid": 35568, "ts": 9483901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddae70", "tid": 35568, "ts": 9484204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb4f0", "tid": 35568, "ts": 9484505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd97b0", "tid": 35568, "ts": 9484807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb1b0", "tid": 35568, "ts": 9485107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9485278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9880", "tid": 35568, "ts": 9485408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9485581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb420", "tid": 35568, "ts": 9485710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9485883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc120", "tid": 35568, "ts": 9486013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9486185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddada0", "tid": 35568, "ts": 9486327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9486500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9f00", "tid": 35568, "ts": 9486630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9486803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9a20", "tid": 35568, "ts": 9486933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9487105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbaa0", "tid": 35568, "ts": 9487235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9487408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddaf40", "tid": 35568, "ts": 9487537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9487711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb010", "tid": 35568, "ts": 9487880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc1f0", "tid": 35568, "ts": 9488184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb0e0", "tid": 35568, "ts": 9488484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb280", "tid": 35568, "ts": 9488786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb690", "tid": 35568, "ts": 9489088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9489261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9af0", "tid": 35568, "ts": 9489391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9489563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbde0", "tid": 35568, "ts": 9489693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9489866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbb70", "tid": 35568, "ts": 9489995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9490166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9bc0", "tid": 35568, "ts": 9490295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9490467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9e30", "tid": 35568, "ts": 9490596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9490768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc2c0", "tid": 35568, "ts": 9490897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda0a0", "tid": 35568, "ts": 9491200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda240", "tid": 35568, "ts": 9491501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda7f0", "tid": 35568, "ts": 9491826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbc40", "tid": 35568, "ts": 9492127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9492300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda8c0", "tid": 35568, "ts": 9492428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9492600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda990", "tid": 35568, "ts": 9492728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9492900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd3d0", "tid": 35568, "ts": 9493029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9493203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde9c0", "tid": 35568, "ts": 9493331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9493504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddce20", "tid": 35568, "ts": 9493632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9493805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddea90", "tid": 35568, "ts": 9493934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9494107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde820", "tid": 35568, "ts": 9494236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9494408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd160", "tid": 35568, "ts": 9494549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9494733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf110", "tid": 35568, "ts": 9494862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfa00", "tid": 35568, "ts": 9495163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf930", "tid": 35568, "ts": 9495465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf790", "tid": 35568, "ts": 9495766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde4e0", "tid": 35568, "ts": 9496067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9496239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde750", "tid": 35568, "ts": 9496368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9496541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dded00", "tid": 35568, "ts": 9496669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9496842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcae0", "tid": 35568, "ts": 9496971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9497142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde0d0", "tid": 35568, "ts": 9497272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9497444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde680", "tid": 35568, "ts": 9497573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9497744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf450", "tid": 35568, "ts": 9497873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddbf0", "tid": 35568, "ts": 9498176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd090", "tid": 35568, "ts": 9498476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd4a0", "tid": 35568, "ts": 9498777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfad0", "tid": 35568, "ts": 9499083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9499254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddedd0", "tid": 35568, "ts": 9499384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9499557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcc80", "tid": 35568, "ts": 9499687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9499860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcef0", "tid": 35568, "ts": 9499989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9500161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde8f0", "tid": 35568, "ts": 9500291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9500464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde5b0", "tid": 35568, "ts": 9500593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9500765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddeea0", "tid": 35568, "ts": 9500894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf380", "tid": 35568, "ts": 9501196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf860", "tid": 35568, "ts": 9501498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddeb60", "tid": 35568, "ts": 9501799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddd90", "tid": 35568, "ts": 9502100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9502273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd230", "tid": 35568, "ts": 9502403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9502575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf520", "tid": 35568, "ts": 9502704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9502876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddec30", "tid": 35568, "ts": 9503005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9503178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf1e0", "tid": 35568, "ts": 9503307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9503516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddde60", "tid": 35568, "ts": 9503700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9503925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddef70", "tid": 35568, "ts": 9504055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9504226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf040", "tid": 35568, "ts": 9504356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9504528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd570", "tid": 35568, "ts": 9504658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9504831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf2b0", "tid": 35568, "ts": 9504960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9505132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd300", "tid": 35568, "ts": 9505261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9505433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf5f0", "tid": 35568, "ts": 9505562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9505735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddca10", "tid": 35568, "ts": 9505864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfba0", "tid": 35568, "ts": 9506167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf6c0", "tid": 35568, "ts": 9506467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfc70", "tid": 35568, "ts": 9506770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc940", "tid": 35568, "ts": 9507071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9507244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcbb0", "tid": 35568, "ts": 9507373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9507546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd640", "tid": 35568, "ts": 9507675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9507847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcd50", "tid": 35568, "ts": 9507976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9508150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde410", "tid": 35568, "ts": 9508278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9508450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcfc0", "tid": 35568, "ts": 9508578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9508751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddb20", "tid": 35568, "ts": 9508881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd710", "tid": 35568, "ts": 9509183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd7e0", "tid": 35568, "ts": 9509484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd8b0", "tid": 35568, "ts": 9509788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd980", "tid": 35568, "ts": 9510091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9510263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddcc0", "tid": 35568, "ts": 9510392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9510564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddda50", "tid": 35568, "ts": 9510693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9510865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddf30", "tid": 35568, "ts": 9510994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9511166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde000", "tid": 35568, "ts": 9511295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9511467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde1a0", "tid": 35568, "ts": 9511596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9511769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde270", "tid": 35568, "ts": 9511898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde340", "tid": 35568, "ts": 9512199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de18e0", "tid": 35568, "ts": 9512501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2030", "tid": 35568, "ts": 9512803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0970", "tid": 35568, "ts": 9513104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9513278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfd40", "tid": 35568, "ts": 9513406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9513578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1dc0", "tid": 35568, "ts": 9513707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9513880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0cb0", "tid": 35568, "ts": 9514009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9514181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de07d0", "tid": 35568, "ts": 9514309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9514481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1330", "tid": 35568, "ts": 9514611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9514783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1400", "tid": 35568, "ts": 9514912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2d30", "tid": 35568, "ts": 9515214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de15a0", "tid": 35568, "ts": 9515516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2100", "tid": 35568, "ts": 9515817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0a40", "tid": 35568, "ts": 9516119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9516293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de21d0", "tid": 35568, "ts": 9516422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9516595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0560", "tid": 35568, "ts": 9516725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9516898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0700", "tid": 35568, "ts": 9517028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9517200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de19b0", "tid": 35568, "ts": 9517343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9517516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de22a0", "tid": 35568, "ts": 9517645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9517818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de03c0", "tid": 35568, "ts": 9517948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9518121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0be0", "tid": 35568, "ts": 9518251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9518424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0d80", "tid": 35568, "ts": 9518553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9518726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de25e0", "tid": 35568, "ts": 9518855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de26b0", "tid": 35568, "ts": 9519165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2e00", "tid": 35568, "ts": 9519466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2b90", "tid": 35568, "ts": 9519768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2780", "tid": 35568, "ts": 9520069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9520242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2850", "tid": 35568, "ts": 9520371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9520544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfee0", "tid": 35568, "ts": 9520673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9520845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2ed0", "tid": 35568, "ts": 9520974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9521146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0080", "tid": 35568, "ts": 9521275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9521447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2370", "tid": 35568, "ts": 9521583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9521757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1260", "tid": 35568, "ts": 9521887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0150", "tid": 35568, "ts": 9522187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0ff0", "tid": 35568, "ts": 9522490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0630", "tid": 35568, "ts": 9522792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2fa0", "tid": 35568, "ts": 9523094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9523267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1e90", "tid": 35568, "ts": 9523396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9523569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1190", "tid": 35568, "ts": 9523698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9523871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0e50", "tid": 35568, "ts": 9524001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9524174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1f60", "tid": 35568, "ts": 9524303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9524476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2c60", "tid": 35568, "ts": 9524605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9524799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2920", "tid": 35568, "ts": 9524945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9525118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2440", "tid": 35568, "ts": 9525247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9525421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1cf0", "tid": 35568, "ts": 9525551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9525724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1670", "tid": 35568, "ts": 9525853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2510", "tid": 35568, "ts": 9526155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de29f0", "tid": 35568, "ts": 9526456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de08a0", "tid": 35568, "ts": 9526759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0490", "tid": 35568, "ts": 9527061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9527235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3070", "tid": 35568, "ts": 9527365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9527537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1740", "tid": 35568, "ts": 9527666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9527839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2ac0", "tid": 35568, "ts": 9527968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9528140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfe10", "tid": 35568, "ts": 9528268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9528439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0f20", "tid": 35568, "ts": 9528568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9528742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0b10", "tid": 35568, "ts": 9528871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9529043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de14d0", "tid": 35568, "ts": 9529173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9529345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddffb0", "tid": 35568, "ts": 9529475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9529734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1a80", "tid": 35568, "ts": 9529892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0220", "tid": 35568, "ts": 9530194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de02f0", "tid": 35568, "ts": 9530496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de10c0", "tid": 35568, "ts": 9530797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1b50", "tid": 35568, "ts": 9531098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9531270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1810", "tid": 35568, "ts": 9531399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9531572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1c20", "tid": 35568, "ts": 9531701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9531873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de48d0", "tid": 35568, "ts": 9532002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9532175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3890", "tid": 35568, "ts": 9532304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9532476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3550", "tid": 35568, "ts": 9532604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9532777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3bd0", "tid": 35568, "ts": 9532906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4ce0", "tid": 35568, "ts": 9533207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5430", "tid": 35568, "ts": 9533508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4db0", "tid": 35568, "ts": 9533810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de49a0", "tid": 35568, "ts": 9534112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9534285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de59e0", "tid": 35568, "ts": 9534414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9534587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de36f0", "tid": 35568, "ts": 9534754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9534962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4e80", "tid": 35568, "ts": 9535093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9535266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6130", "tid": 35568, "ts": 9535396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9535568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de50f0", "tid": 35568, "ts": 9535698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9535872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de43f0", "tid": 35568, "ts": 9536001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9536174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3960", "tid": 35568, "ts": 9536303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9536476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6200", "tid": 35568, "ts": 9536605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9536777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de62d0", "tid": 35568, "ts": 9536906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4320", "tid": 35568, "ts": 9537208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4f50", "tid": 35568, "ts": 9537511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4a70", "tid": 35568, "ts": 9537812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de51c0", "tid": 35568, "ts": 9538114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9538288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5020", "tid": 35568, "ts": 9538417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9538590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5290", "tid": 35568, "ts": 9538719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9538891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de32e0", "tid": 35568, "ts": 9539021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9539194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5500", "tid": 35568, "ts": 9539323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9539496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de55d0", "tid": 35568, "ts": 9539624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9539796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de63a0", "tid": 35568, "ts": 9539926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9540099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5360", "tid": 35568, "ts": 9540228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9540400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3a30", "tid": 35568, "ts": 9540529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9540701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de56a0", "tid": 35568, "ts": 9540830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5770", "tid": 35568, "ts": 9541132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3b00", "tid": 35568, "ts": 9541434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5840", "tid": 35568, "ts": 9541735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3ca0", "tid": 35568, "ts": 9542036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9542207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5ab0", "tid": 35568, "ts": 9542337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9542510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5910", "tid": 35568, "ts": 9542639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9542812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de44c0", "tid": 35568, "ts": 9542942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9543114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5b80", "tid": 35568, "ts": 9543243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9543415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3d70", "tid": 35568, "ts": 9543546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9543718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5c50", "tid": 35568, "ts": 9543847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3e40", "tid": 35568, "ts": 9544148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4590", "tid": 35568, "ts": 9544450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5df0", "tid": 35568, "ts": 9544751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5ec0", "tid": 35568, "ts": 9545054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9545226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3f10", "tid": 35568, "ts": 9545356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9545528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3fe0", "tid": 35568, "ts": 9545657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9545828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3210", "tid": 35568, "ts": 9545958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9546131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5d20", "tid": 35568, "ts": 9546260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9546433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4660", "tid": 35568, "ts": 9546563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9546735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5f90", "tid": 35568, "ts": 9546864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6060", "tid": 35568, "ts": 9547166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4b40", "tid": 35568, "ts": 9547465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de40b0", "tid": 35568, "ts": 9547767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3620", "tid": 35568, "ts": 9548070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9548242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de37c0", "tid": 35568, "ts": 9548371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9548544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6470", "tid": 35568, "ts": 9548673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9548845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3140", "tid": 35568, "ts": 9548975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9549147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de33b0", "tid": 35568, "ts": 9549275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9549447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3480", "tid": 35568, "ts": 9549576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9549748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4180", "tid": 35568, "ts": 9549878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9550051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4250", "tid": 35568, "ts": 9550179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9550383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4730", "tid": 35568, "ts": 9550614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9550864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4800", "tid": 35568, "ts": 9551044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9551321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4c10", "tid": 35568, "ts": 9551510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9551685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9460", "tid": 35568, "ts": 9551814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9551986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8eb0", "tid": 35568, "ts": 9552116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9552289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9870", "tid": 35568, "ts": 9552418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9552590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7da0", "tid": 35568, "ts": 9552719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9552892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7a60", "tid": 35568, "ts": 9553020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9553193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6fd0", "tid": 35568, "ts": 9553322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9553495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de80e0", "tid": 35568, "ts": 9553624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9553797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9600", "tid": 35568, "ts": 9553928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9554100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9530", "tid": 35568, "ts": 9554229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9554402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de81b0", "tid": 35568, "ts": 9554531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9554704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8830", "tid": 35568, "ts": 9554833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7310", "tid": 35568, "ts": 9555135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9390", "tid": 35568, "ts": 9555438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8350", "tid": 35568, "ts": 9555741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6bc0", "tid": 35568, "ts": 9556042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9556215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de96d0", "tid": 35568, "ts": 9556344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9556518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de85c0", "tid": 35568, "ts": 9556647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9556819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8f80", "tid": 35568, "ts": 9556948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9557121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de89d0", "tid": 35568, "ts": 9557251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9557424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8280", "tid": 35568, "ts": 9557584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9557758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8690", "tid": 35568, "ts": 9557893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9120", "tid": 35568, "ts": 9558195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8420", "tid": 35568, "ts": 9558497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de97a0", "tid": 35568, "ts": 9558823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de84f0", "tid": 35568, "ts": 9559125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9559297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de67b0", "tid": 35568, "ts": 9559426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9559599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6540", "tid": 35568, "ts": 9559727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9559899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7720", "tid": 35568, "ts": 9560028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9560200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6610", "tid": 35568, "ts": 9560329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9560502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de77f0", "tid": 35568, "ts": 9560631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9560804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8760", "tid": 35568, "ts": 9560933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9561106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6a20", "tid": 35568, "ts": 9561235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9561408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7e70", "tid": 35568, "ts": 9561538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9561711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8900", "tid": 35568, "ts": 9561840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de66e0", "tid": 35568, "ts": 9562141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7f40", "tid": 35568, "ts": 9562443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8010", "tid": 35568, "ts": 9562745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6880", "tid": 35568, "ts": 9563047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9563219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6950", "tid": 35568, "ts": 9563348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9563520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8de0", "tid": 35568, "ts": 9563650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9563821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9050", "tid": 35568, "ts": 9563949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9564122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6d60", "tid": 35568, "ts": 9564251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9564423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de70a0", "tid": 35568, "ts": 9564552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9564725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de91f0", "tid": 35568, "ts": 9564854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8aa0", "tid": 35568, "ts": 9565156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7b30", "tid": 35568, "ts": 9565457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6e30", "tid": 35568, "ts": 9565757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de92c0", "tid": 35568, "ts": 9566121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9566294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8b70", "tid": 35568, "ts": 9566422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9566594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6af0", "tid": 35568, "ts": 9566723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9566896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8c40", "tid": 35568, "ts": 9567025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9567197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7990", "tid": 35568, "ts": 9567326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9567498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8d10", "tid": 35568, "ts": 9567627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9567800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de74b0", "tid": 35568, "ts": 9567929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9568101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6c90", "tid": 35568, "ts": 9568230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9568402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6f00", "tid": 35568, "ts": 9568534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9568707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7170", "tid": 35568, "ts": 9568836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7240", "tid": 35568, "ts": 9569137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7c00", "tid": 35568, "ts": 9569438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de73e0", "tid": 35568, "ts": 9569740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7580", "tid": 35568, "ts": 9570042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9570216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de78c0", "tid": 35568, "ts": 9570344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9570518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7650", "tid": 35568, "ts": 9570646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9570819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7cd0", "tid": 35568, "ts": 9570948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9571120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debd00", "tid": 35568, "ts": 9571249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9571422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9c80", "tid": 35568, "ts": 9571551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9571723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea570", "tid": 35568, "ts": 9571853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deacc0", "tid": 35568, "ts": 9572155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb750", "tid": 35568, "ts": 9572457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debc30", "tid": 35568, "ts": 9572759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb680", "tid": 35568, "ts": 9573059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9573232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea7e0", "tid": 35568, "ts": 9573361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9573534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deae60", "tid": 35568, "ts": 9573663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9573835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb0d0", "tid": 35568, "ts": 9573964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9574137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea8b0", "tid": 35568, "ts": 9574266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9574439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9e20", "tid": 35568, "ts": 9574568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9574741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec860", "tid": 35568, "ts": 9574871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb4e0", "tid": 35568, "ts": 9575172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea980", "tid": 35568, "ts": 9575476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb820", "tid": 35568, "ts": 9575777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea3d0", "tid": 35568, "ts": 9576078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9576250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb8f0", "tid": 35568, "ts": 9576379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9576552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb1a0", "tid": 35568, "ts": 9576681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9576853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deaa50", "tid": 35568, "ts": 9576982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9577154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9ef0", "tid": 35568, "ts": 9577283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9577455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debf70", "tid": 35568, "ts": 9577584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9577757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deabf0", "tid": 35568, "ts": 9577886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb5b0", "tid": 35568, "ts": 9578188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb9c0", "tid": 35568, "ts": 9578491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debdd0", "tid": 35568, "ts": 9578792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deba90", "tid": 35568, "ts": 9579095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9579267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea4a0", "tid": 35568, "ts": 9579397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9579570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deab20", "tid": 35568, "ts": 9579699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9579872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec930", "tid": 35568, "ts": 9580001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9580173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debb60", "tid": 35568, "ts": 9580302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9580476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea640", "tid": 35568, "ts": 9580607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9580778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea710", "tid": 35568, "ts": 9580909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9581081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debea0", "tid": 35568, "ts": 9581211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9581384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb270", "tid": 35568, "ts": 9581513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9581722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb340", "tid": 35568, "ts": 9581852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dead90", "tid": 35568, "ts": 9582154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec040", "tid": 35568, "ts": 9582457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deaf30", "tid": 35568, "ts": 9582758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb410", "tid": 35568, "ts": 9583059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9583231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec110", "tid": 35568, "ts": 9583360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9583534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec1e0", "tid": 35568, "ts": 9583664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9583837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec2b0", "tid": 35568, "ts": 9583966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9584139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb000", "tid": 35568, "ts": 9584268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9584441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec380", "tid": 35568, "ts": 9584570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9584742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9940", "tid": 35568, "ts": 9584872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec450", "tid": 35568, "ts": 9585174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9fc0", "tid": 35568, "ts": 9585475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea090", "tid": 35568, "ts": 9585777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea160", "tid": 35568, "ts": 9586077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9586249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec520", "tid": 35568, "ts": 9586378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9586549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec5f0", "tid": 35568, "ts": 9586678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9586850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9ae0", "tid": 35568, "ts": 9586980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9587152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec6c0", "tid": 35568, "ts": 9587282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9587454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec790", "tid": 35568, "ts": 9587584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9587756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deca00", "tid": 35568, "ts": 9587886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decad0", "tid": 35568, "ts": 9588187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decba0", "tid": 35568, "ts": 9588489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea230", "tid": 35568, "ts": 9588790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decc70", "tid": 35568, "ts": 9589092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9589264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9a10", "tid": 35568, "ts": 9589393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9589565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9bb0", "tid": 35568, "ts": 9589695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9589867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9d50", "tid": 35568, "ts": 9589996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9590169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea300", "tid": 35568, "ts": 9590298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9590472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee810", "tid": 35568, "ts": 9590601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9590774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee8e0", "tid": 35568, "ts": 9590903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9591076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedff0", "tid": 35568, "ts": 9591205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9591377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deee90", "tid": 35568, "ts": 9591506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9591678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def030", "tid": 35568, "ts": 9591827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee260", "tid": 35568, "ts": 9592129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dede50", "tid": 35568, "ts": 9592431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee330", "tid": 35568, "ts": 9592732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedf20", "tid": 35568, "ts": 9593033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9593205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded2f0", "tid": 35568, "ts": 9593334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9593506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded080", "tid": 35568, "ts": 9593635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9593807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decee0", "tid": 35568, "ts": 9593936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9594108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def100", "tid": 35568, "ts": 9594237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9594408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded630", "tid": 35568, "ts": 9594537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9594733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded700", "tid": 35568, "ts": 9594862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deedc0", "tid": 35568, "ts": 9595164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deecf0", "tid": 35568, "ts": 9595465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deeb50", "tid": 35568, "ts": 9595766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee9b0", "tid": 35568, "ts": 9596067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9596258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded150", "tid": 35568, "ts": 9596407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9596580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded970", "tid": 35568, "ts": 9596709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9596882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0070", "tid": 35568, "ts": 9597011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9597185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee0c0", "tid": 35568, "ts": 9597409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9597584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded560", "tid": 35568, "ts": 9597715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9597887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded3c0", "tid": 35568, "ts": 9598017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9598189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee190", "tid": 35568, "ts": 9598319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9598492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def440", "tid": 35568, "ts": 9598621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9598794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deea80", "tid": 35568, "ts": 9598923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9599096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded220", "tid": 35568, "ts": 9599225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9599398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee400", "tid": 35568, "ts": 9599528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9599701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def1d0", "tid": 35568, "ts": 9599831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee670", "tid": 35568, "ts": 9600133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded490", "tid": 35568, "ts": 9600434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deffa0", "tid": 35568, "ts": 9600737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee5a0", "tid": 35568, "ts": 9601040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9601213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedcb0", "tid": 35568, "ts": 9601343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9601515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def2a0", "tid": 35568, "ts": 9601644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9601817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deef60", "tid": 35568, "ts": 9601946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9602117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defd30", "tid": 35568, "ts": 9602247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9602419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deec20", "tid": 35568, "ts": 9602549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9602723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defe00", "tid": 35568, "ts": 9602853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def370", "tid": 35568, "ts": 9603156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee4d0", "tid": 35568, "ts": 9603458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee740", "tid": 35568, "ts": 9603760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def510", "tid": 35568, "ts": 9604063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9604235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def5e0", "tid": 35568, "ts": 9604364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9604537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defed0", "tid": 35568, "ts": 9604666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9604839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def9f0", "tid": 35568, "ts": 9604969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9605141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded7d0", "tid": 35568, "ts": 9605271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9605444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def6b0", "tid": 35568, "ts": 9605573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9605745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded8a0", "tid": 35568, "ts": 9605874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def780", "tid": 35568, "ts": 9606176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def850", "tid": 35568, "ts": 9606478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def920", "tid": 35568, "ts": 9606779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defac0", "tid": 35568, "ts": 9607081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9607254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deda40", "tid": 35568, "ts": 9607384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9607557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defb90", "tid": 35568, "ts": 9607686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9607859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedb10", "tid": 35568, "ts": 9607988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9608160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defc60", "tid": 35568, "ts": 9608289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9608461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedd80", "tid": 35568, "ts": 9608590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9608763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decd40", "tid": 35568, "ts": 9608899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dece10", "tid": 35568, "ts": 9609201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decfb0", "tid": 35568, "ts": 9609502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedbe0", "tid": 35568, "ts": 9609805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1660", "tid": 35568, "ts": 9610107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9610280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1590", "tid": 35568, "ts": 9610410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9610583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1800", "tid": 35568, "ts": 9610712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9610885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2f90", "tid": 35568, "ts": 9611014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9611188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1730", "tid": 35568, "ts": 9611317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9611489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df03b0", "tid": 35568, "ts": 9611619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9611791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df10b0", "tid": 35568, "ts": 9611920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9612092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3470", "tid": 35568, "ts": 9612221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9612394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1320", "tid": 35568, "ts": 9612523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9612696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df21c0", "tid": 35568, "ts": 9612833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df13f0", "tid": 35568, "ts": 9613135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2290", "tid": 35568, "ts": 9613436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0bd0", "tid": 35568, "ts": 9613738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df14c0", "tid": 35568, "ts": 9614040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9614212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0e40", "tid": 35568, "ts": 9614341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9614539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1180", "tid": 35568, "ts": 9614668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9614841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2ab0", "tid": 35568, "ts": 9614971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9615143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df18d0", "tid": 35568, "ts": 9615273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9615445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0f10", "tid": 35568, "ts": 9615574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9615746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0890", "tid": 35568, "ts": 9615875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3060", "tid": 35568, "ts": 9616177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1ce0", "tid": 35568, "ts": 9616480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2770", "tid": 35568, "ts": 9616782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df29e0", "tid": 35568, "ts": 9617084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9617256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2360", "tid": 35568, "ts": 9617385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9617557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1250", "tid": 35568, "ts": 9617686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9617858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df32d0", "tid": 35568, "ts": 9617987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9618160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2df0", "tid": 35568, "ts": 9618289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9618461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0b00", "tid": 35568, "ts": 9618591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9618764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2430", "tid": 35568, "ts": 9618893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0fe0", "tid": 35568, "ts": 9619194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0550", "tid": 35568, "ts": 9619498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1e80", "tid": 35568, "ts": 9619799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df19a0", "tid": 35568, "ts": 9620101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9620274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0210", "tid": 35568, "ts": 9620403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9620575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df02e0", "tid": 35568, "ts": 9620705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9620878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2020", "tid": 35568, "ts": 9621008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9621180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0960", "tid": 35568, "ts": 9621309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9621482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2840", "tid": 35568, "ts": 9621612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9621785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df07c0", "tid": 35568, "ts": 9621914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9622086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1c10", "tid": 35568, "ts": 9622216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9622388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0d70", "tid": 35568, "ts": 9622519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9622691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0480", "tid": 35568, "ts": 9622821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df25d0", "tid": 35568, "ts": 9623135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0a30", "tid": 35568, "ts": 9623442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1a70", "tid": 35568, "ts": 9623763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df26a0", "tid": 35568, "ts": 9624065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9624237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1b40", "tid": 35568, "ts": 9624367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9624539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2910", "tid": 35568, "ts": 9624669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9624841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1db0", "tid": 35568, "ts": 9624971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9625162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1f50", "tid": 35568, "ts": 9625292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9625464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3200", "tid": 35568, "ts": 9625593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9625766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0620", "tid": 35568, "ts": 9625894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9626067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df06f0", "tid": 35568, "ts": 9626196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9626368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df20f0", "tid": 35568, "ts": 9626524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9626697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2500", "tid": 35568, "ts": 9626827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0ca0", "tid": 35568, "ts": 9627129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3130", "tid": 35568, "ts": 9627430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2b80", "tid": 35568, "ts": 9627733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2c50", "tid": 35568, "ts": 9628034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9628206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0140", "tid": 35568, "ts": 9628336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9628573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df33a0", "tid": 35568, "ts": 9628703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9628875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2d20", "tid": 35568, "ts": 9629005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9629178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2ec0", "tid": 35568, "ts": 9629308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9629479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3fd0", "tid": 35568, "ts": 9629608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9629780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5420", "tid": 35568, "ts": 9629909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5690", "tid": 35568, "ts": 9630210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3e30", "tid": 35568, "ts": 9630513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3bc0", "tid": 35568, "ts": 9630816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df36e0", "tid": 35568, "ts": 9631119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9631291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5830", "tid": 35568, "ts": 9631420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9631594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3c90", "tid": 35568, "ts": 9631723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9631895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4cd0", "tid": 35568, "ts": 9632024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9632196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df62c0", "tid": 35568, "ts": 9632326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9632498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3540", "tid": 35568, "ts": 9632627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9632800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3d60", "tid": 35568, "ts": 9632930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9633102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df43e0", "tid": 35568, "ts": 9633233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9633404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df44b0", "tid": 35568, "ts": 9633534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9633706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5900", "tid": 35568, "ts": 9633835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6870", "tid": 35568, "ts": 9634136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df48c0", "tid": 35568, "ts": 9634437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6390", "tid": 35568, "ts": 9634738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6530", "tid": 35568, "ts": 9635040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9635213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df54f0", "tid": 35568, "ts": 9635342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9635514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3a20", "tid": 35568, "ts": 9635644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9635817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3f00", "tid": 35568, "ts": 9635946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9636118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3950", "tid": 35568, "ts": 9636247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9636420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3880", "tid": 35568, "ts": 9636550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9636723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3610", "tid": 35568, "ts": 9636853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4170", "tid": 35568, "ts": 9637156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df59d0", "tid": 35568, "ts": 9637461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df50e0", "tid": 35568, "ts": 9637764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4310", "tid": 35568, "ts": 9638065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9638237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4720", "tid": 35568, "ts": 9638367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9638540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6460", "tid": 35568, "ts": 9638669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9638842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df51b0", "tid": 35568, "ts": 9638971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9639143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df40a0", "tid": 35568, "ts": 9639273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9639446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5eb0", "tid": 35568, "ts": 9639575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9639747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6600", "tid": 35568, "ts": 9639877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df66d0", "tid": 35568, "ts": 9640179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4da0", "tid": 35568, "ts": 9640479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4580", "tid": 35568, "ts": 9640782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5aa0", "tid": 35568, "ts": 9641083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9641256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3af0", "tid": 35568, "ts": 9641385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9641557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4240", "tid": 35568, "ts": 9641686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9641858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4650", "tid": 35568, "ts": 9641988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9642160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df47f0", "tid": 35568, "ts": 9642289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9642462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4a60", "tid": 35568, "ts": 9642591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9642763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4990", "tid": 35568, "ts": 9642892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df55c0", "tid": 35568, "ts": 9643194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4b30", "tid": 35568, "ts": 9643497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5350", "tid": 35568, "ts": 9643800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4c00", "tid": 35568, "ts": 9644169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9644396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5f80", "tid": 35568, "ts": 9644529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9644702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df37b0", "tid": 35568, "ts": 9644833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5b70", "tid": 35568, "ts": 9645136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4e70", "tid": 35568, "ts": 9645439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4f40", "tid": 35568, "ts": 9645742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5760", "tid": 35568, "ts": 9646045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9646218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5010", "tid": 35568, "ts": 9646348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9646520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5280", "tid": 35568, "ts": 9646650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9646823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5c40", "tid": 35568, "ts": 9646953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9647126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5d10", "tid": 35568, "ts": 9647255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9647429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5de0", "tid": 35568, "ts": 9647559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9647731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6050", "tid": 35568, "ts": 9647861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6120", "tid": 35568, "ts": 9648163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df61f0", "tid": 35568, "ts": 9648467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df67a0", "tid": 35568, "ts": 9648768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9c70", "tid": 35568, "ts": 9649071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9649244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df73d0", "tid": 35568, "ts": 9649373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9649545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6c80", "tid": 35568, "ts": 9649675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9649847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df74a0", "tid": 35568, "ts": 9649976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9650148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6d50", "tid": 35568, "ts": 9650278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9650451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6e20", "tid": 35568, "ts": 9650580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9650754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9790", "tid": 35568, "ts": 9650883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df88f0", "tid": 35568, "ts": 9651185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df89c0", "tid": 35568, "ts": 9651487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9ba0", "tid": 35568, "ts": 9651788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9520", "tid": 35568, "ts": 9652090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9652262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df91e0", "tid": 35568, "ts": 9652392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9652564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8a90", "tid": 35568, "ts": 9652694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9652865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8b60", "tid": 35568, "ts": 9652994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9653167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9930", "tid": 35568, "ts": 9653297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9653470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7090", "tid": 35568, "ts": 9653600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9653773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7230", "tid": 35568, "ts": 9653902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6ef0", "tid": 35568, "ts": 9654205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6a10", "tid": 35568, "ts": 9654506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9ad0", "tid": 35568, "ts": 9654809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7f30", "tid": 35568, "ts": 9655112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9655284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8dd0", "tid": 35568, "ts": 9655413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9655586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6940", "tid": 35568, "ts": 9655716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9655890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df95f0", "tid": 35568, "ts": 9656020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9656193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7b20", "tid": 35568, "ts": 9656323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9656496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7e60", "tid": 35568, "ts": 9656625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9656797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7570", "tid": 35568, "ts": 9656927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9657100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8000", "tid": 35568, "ts": 9657229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9657402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7640", "tid": 35568, "ts": 9657533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9657706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8c30", "tid": 35568, "ts": 9657835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8ea0", "tid": 35568, "ts": 9658136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7710", "tid": 35568, "ts": 9658460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8750", "tid": 35568, "ts": 9658761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8d00", "tid": 35568, "ts": 9659062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9659235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8f70", "tid": 35568, "ts": 9659364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9659538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9040", "tid": 35568, "ts": 9659667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9659958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df96c0", "tid": 35568, "ts": 9660128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9660377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df77e0", "tid": 35568, "ts": 9660568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9660807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9110", "tid": 35568, "ts": 9660937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9661110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df78b0", "tid": 35568, "ts": 9661239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9661412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6fc0", "tid": 35568, "ts": 9661541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9661715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6ae0", "tid": 35568, "ts": 9661844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df92b0", "tid": 35568, "ts": 9662146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df84e0", "tid": 35568, "ts": 9662448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7980", "tid": 35568, "ts": 9662750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7a50", "tid": 35568, "ts": 9663052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9663225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df80d0", "tid": 35568, "ts": 9663354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9663526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7bf0", "tid": 35568, "ts": 9663655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9663828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7cc0", "tid": 35568, "ts": 9663958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9664131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7d90", "tid": 35568, "ts": 9664261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9664432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6bb0", "tid": 35568, "ts": 9664561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9664734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7160", "tid": 35568, "ts": 9664864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7300", "tid": 35568, "ts": 9665167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9380", "tid": 35568, "ts": 9665469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df81a0", "tid": 35568, "ts": 9665770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9450", "tid": 35568, "ts": 9666072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9666243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8270", "tid": 35568, "ts": 9666373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9666547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8340", "tid": 35568, "ts": 9666676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9666849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8410", "tid": 35568, "ts": 9666979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9667152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df85b0", "tid": 35568, "ts": 9667281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9667453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8680", "tid": 35568, "ts": 9667582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9667772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9860", "tid": 35568, "ts": 9667904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8820", "tid": 35568, "ts": 9668206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9a00", "tid": 35568, "ts": 9668508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc920", "tid": 35568, "ts": 9668810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfaff0", "tid": 35568, "ts": 9669112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9669285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcac0", "tid": 35568, "ts": 9669414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9669586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb740", "tid": 35568, "ts": 9669717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9669889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9d40", "tid": 35568, "ts": 9670018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9670191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc9f0", "tid": 35568, "ts": 9670321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9670495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcc60", "tid": 35568, "ts": 9670625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9670797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfacb0", "tid": 35568, "ts": 9670926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9671100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc5e0", "tid": 35568, "ts": 9671229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9671401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb0c0", "tid": 35568, "ts": 9671531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9671703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc1d0", "tid": 35568, "ts": 9671833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfce00", "tid": 35568, "ts": 9672134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb330", "tid": 35568, "ts": 9672435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcb90", "tid": 35568, "ts": 9672736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcd30", "tid": 35568, "ts": 9673038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9673211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfaf20", "tid": 35568, "ts": 9673341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9673514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfba80", "tid": 35568, "ts": 9673643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9673816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbc20", "tid": 35568, "ts": 9673946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9674118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbb50", "tid": 35568, "ts": 9674248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9674420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbcf0", "tid": 35568, "ts": 9674549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9674722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb810", "tid": 35568, "ts": 9674852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbdc0", "tid": 35568, "ts": 9675155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfab10", "tid": 35568, "ts": 9675490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfced0", "tid": 35568, "ts": 9675793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbe90", "tid": 35568, "ts": 9676094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9676266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc370", "tid": 35568, "ts": 9676396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9676569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9e10", "tid": 35568, "ts": 9676698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9676871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbf60", "tid": 35568, "ts": 9677000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9677173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfabe0", "tid": 35568, "ts": 9677302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9677476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa7d0", "tid": 35568, "ts": 9677605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9677777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9ee0", "tid": 35568, "ts": 9677907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc030", "tid": 35568, "ts": 9678209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc100", "tid": 35568, "ts": 9678512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb260", "tid": 35568, "ts": 9678814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc2a0", "tid": 35568, "ts": 9679116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9679289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa150", "tid": 35568, "ts": 9679418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9679592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfae50", "tid": 35568, "ts": 9679723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9679896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb190", "tid": 35568, "ts": 9680026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9680198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb9b0", "tid": 35568, "ts": 9680329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9680501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb400", "tid": 35568, "ts": 9680631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9680804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc440", "tid": 35568, "ts": 9680933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9681105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb4d0", "tid": 35568, "ts": 9681235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9681408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfad80", "tid": 35568, "ts": 9681537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9681709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc780", "tid": 35568, "ts": 9681839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc850", "tid": 35568, "ts": 9682142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb5a0", "tid": 35568, "ts": 9682458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc510", "tid": 35568, "ts": 9682761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa8a0", "tid": 35568, "ts": 9683065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9683237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb670", "tid": 35568, "ts": 9683367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9683539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9fb0", "tid": 35568, "ts": 9683668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9683840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa080", "tid": 35568, "ts": 9683969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9684142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfaa40", "tid": 35568, "ts": 9684272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9684444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa220", "tid": 35568, "ts": 9684573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9684746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa2f0", "tid": 35568, "ts": 9684876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc6b0", "tid": 35568, "ts": 9685178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa970", "tid": 35568, "ts": 9685481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb8e0", "tid": 35568, "ts": 9685782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa3c0", "tid": 35568, "ts": 9686084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9686257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa490", "tid": 35568, "ts": 9686386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9686559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa560", "tid": 35568, "ts": 9686688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9686860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa630", "tid": 35568, "ts": 9686990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9687164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa700", "tid": 35568, "ts": 9687294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9687466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd180", "tid": 35568, "ts": 9687596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9687768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbeab0", "tid": 35568, "ts": 9687898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbeec0", "tid": 35568, "ts": 9688201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcfe0", "tid": 35568, "ts": 9688503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe500", "tid": 35568, "ts": 9688806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd800", "tid": 35568, "ts": 9689109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9689282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbec50", "tid": 35568, "ts": 9689412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9689586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd320", "tid": 35568, "ts": 9689716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9689888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc2e0", "tid": 35568, "ts": 9690018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9690191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc480", "tid": 35568, "ts": 9690320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9690493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbde80", "tid": 35568, "ts": 9690622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9690794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd3f0", "tid": 35568, "ts": 9690923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9691163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe1c0", "tid": 35568, "ts": 9691294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9691466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe6a0", "tid": 35568, "ts": 9691596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9691768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbedf0", "tid": 35568, "ts": 9691897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc3b0", "tid": 35568, "ts": 9692218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbef90", "tid": 35568, "ts": 9692520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc550", "tid": 35568, "ts": 9692823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf130", "tid": 35568, "ts": 9693124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9693296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe770", "tid": 35568, "ts": 9693426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9693598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc6f0", "tid": 35568, "ts": 9693727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9693900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcd70", "tid": 35568, "ts": 9694029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9694201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc620", "tid": 35568, "ts": 9694331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9694504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf200", "tid": 35568, "ts": 9694656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9694830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcf10", "tid": 35568, "ts": 9694959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9695131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd4c0", "tid": 35568, "ts": 9695260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9695433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdf50", "tid": 35568, "ts": 9695563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9695735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf2d0", "tid": 35568, "ts": 9695863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe020", "tid": 35568, "ts": 9696172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd0b0", "tid": 35568, "ts": 9696475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbeb80", "tid": 35568, "ts": 9696777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf060", "tid": 35568, "ts": 9697080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9697253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd250", "tid": 35568, "ts": 9697383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9697557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe5d0", "tid": 35568, "ts": 9697687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9697859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe9e0", "tid": 35568, "ts": 9697989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9698160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd590", "tid": 35568, "ts": 9698290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9698464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe840", "tid": 35568, "ts": 9698594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9698766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe910", "tid": 35568, "ts": 9698896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd660", "tid": 35568, "ts": 9699198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe360", "tid": 35568, "ts": 9699501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdc10", "tid": 35568, "ts": 9699802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd730", "tid": 35568, "ts": 9700105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9700278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf470", "tid": 35568, "ts": 9700407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9700579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc7c0", "tid": 35568, "ts": 9700709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9700881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf3a0", "tid": 35568, "ts": 9701010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9701183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd8d0", "tid": 35568, "ts": 9701312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9701485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe430", "tid": 35568, "ts": 9701613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9701787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe0f0", "tid": 35568, "ts": 9701916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc140", "tid": 35568, "ts": 9702218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd9a0", "tid": 35568, "ts": 9702520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc210", "tid": 35568, "ts": 9702823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbda70", "tid": 35568, "ts": 9703126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9703299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdce0", "tid": 35568, "ts": 9703429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9703602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc890", "tid": 35568, "ts": 9703732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9703904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc960", "tid": 35568, "ts": 9704034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9704207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbca30", "tid": 35568, "ts": 9704337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9704509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe290", "tid": 35568, "ts": 9704640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9704812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcb00", "tid": 35568, "ts": 9704942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9705114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbed20", "tid": 35568, "ts": 9705244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9705417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdb40", "tid": 35568, "ts": 9705547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9705720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcbd0", "tid": 35568, "ts": 9705850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcca0", "tid": 35568, "ts": 9706151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbddb0", "tid": 35568, "ts": 9706466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbce40", "tid": 35568, "ts": 9706782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7660", "tid": 35568, "ts": 9707086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9707260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7800", "tid": 35568, "ts": 9707389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9707562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7a70", "tid": 35568, "ts": 9707691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9707863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6140", "tid": 35568, "ts": 9707992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9708166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7f50", "tid": 35568, "ts": 9708296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9708469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8770", "tid": 35568, "ts": 9708599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9708771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8020", "tid": 35568, "ts": 9708901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8360", "tid": 35568, "ts": 9709203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9130", "tid": 35568, "ts": 9709506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a92d0", "tid": 35568, "ts": 9709808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abeb0", "tid": 35568, "ts": 9710110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9710283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2669d0", "tid": 35568, "ts": 9710413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9710586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67550", "tid": 35568, "ts": 9710716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9710889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129410", "tid": 35568, "ts": 9711032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9711206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128230", "tid": 35568, "ts": 9711335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9711509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1284a0", "tid": 35568, "ts": 9711639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9711812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127ef0", "tid": 35568, "ts": 9711942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9712115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129270", "tid": 35568, "ts": 9712244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9712418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a860", "tid": 35568, "ts": 9712547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9712720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1276d0", "tid": 35568, "ts": 9712850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a6c0", "tid": 35568, "ts": 9713152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128b20", "tid": 35568, "ts": 9713454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1294e0", "tid": 35568, "ts": 9713756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128e60", "tid": 35568, "ts": 9714059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9714231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129d00", "tid": 35568, "ts": 9714360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9714533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1290d0", "tid": 35568, "ts": 9714662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9714833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129dd0", "tid": 35568, "ts": 9714963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9715135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1288b0", "tid": 35568, "ts": 9715265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9715437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129340", "tid": 35568, "ts": 9715567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9715741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a380", "tid": 35568, "ts": 9715871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1295b0", "tid": 35568, "ts": 9716172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128980", "tid": 35568, "ts": 9716475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129750", "tid": 35568, "ts": 9716778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128300", "tid": 35568, "ts": 9717081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9717253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129ea0", "tid": 35568, "ts": 9717383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9717556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128a50", "tid": 35568, "ts": 9717686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9717858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128bf0", "tid": 35568, "ts": 9718005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9718177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129680", "tid": 35568, "ts": 9718307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9718480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1283d0", "tid": 35568, "ts": 9718610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9718783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127d50", "tid": 35568, "ts": 9718914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129f70", "tid": 35568, "ts": 9719216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129820", "tid": 35568, "ts": 9719519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1298f0", "tid": 35568, "ts": 9719821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127e20", "tid": 35568, "ts": 9720124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9720297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128cc0", "tid": 35568, "ts": 9720428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9720601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1299c0", "tid": 35568, "ts": 9720731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9720905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129a90", "tid": 35568, "ts": 9721034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9721206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128570", "tid": 35568, "ts": 9721336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9721508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128d90", "tid": 35568, "ts": 9721639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9721812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a040", "tid": 35568, "ts": 9721958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9722131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1291a0", "tid": 35568, "ts": 9722329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9722503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128640", "tid": 35568, "ts": 9722633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9722805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129b60", "tid": 35568, "ts": 9722935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9723108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129c30", "tid": 35568, "ts": 9723238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9723411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a110", "tid": 35568, "ts": 9723541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9723713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127bb0", "tid": 35568, "ts": 9723842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a790", "tid": 35568, "ts": 9724144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a1e0", "tid": 35568, "ts": 9724447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128160", "tid": 35568, "ts": 9724750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a450", "tid": 35568, "ts": 9725191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9725364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128710", "tid": 35568, "ts": 9725514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9725686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127fc0", "tid": 35568, "ts": 9725816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9725988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1287e0", "tid": 35568, "ts": 9726118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9726291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128f30", "tid": 35568, "ts": 9726421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9726595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127a10", "tid": 35568, "ts": 9726725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9726897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129000", "tid": 35568, "ts": 9727027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9727200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a2b0", "tid": 35568, "ts": 9727329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9727502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a520", "tid": 35568, "ts": 9727632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9727804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127530", "tid": 35568, "ts": 9727934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9728106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a5f0", "tid": 35568, "ts": 9728235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9728408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127600", "tid": 35568, "ts": 9728537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9728708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1277a0", "tid": 35568, "ts": 9728836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128090", "tid": 35568, "ts": 9729139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127870", "tid": 35568, "ts": 9729441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127940", "tid": 35568, "ts": 9729744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127ae0", "tid": 35568, "ts": 9730047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9730219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127c80", "tid": 35568, "ts": 9730349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9730521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bb10", "tid": 35568, "ts": 9730650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9730823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ac70", "tid": 35568, "ts": 9730953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9731125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cc20", "tid": 35568, "ts": 9731255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9731428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bcb0", "tid": 35568, "ts": 9731558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9731730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c9b0", "tid": 35568, "ts": 9731859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dc60", "tid": 35568, "ts": 9732161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b2f0", "tid": 35568, "ts": 9732464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d780", "tid": 35568, "ts": 9732766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ad40", "tid": 35568, "ts": 9733070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9733242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d850", "tid": 35568, "ts": 9733371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9733545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d100", "tid": 35568, "ts": 9733674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9733848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c400", "tid": 35568, "ts": 9733977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9734149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b490", "tid": 35568, "ts": 9734279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9734451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d030", "tid": 35568, "ts": 9734581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9734753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ccf0", "tid": 35568, "ts": 9734882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c4d0", "tid": 35568, "ts": 9735184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b3c0", "tid": 35568, "ts": 9735487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12db90", "tid": 35568, "ts": 9735789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cf60", "tid": 35568, "ts": 9736091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9736263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ce90", "tid": 35568, "ts": 9736394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9736567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c5a0", "tid": 35568, "ts": 9736697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9736870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b560", "tid": 35568, "ts": 9737000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9737173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cdc0", "tid": 35568, "ts": 9737302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9737475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b220", "tid": 35568, "ts": 9737605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9737778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bbe0", "tid": 35568, "ts": 9738025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9738201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d1d0", "tid": 35568, "ts": 9738332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9738505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aee0", "tid": 35568, "ts": 9738635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9738809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b630", "tid": 35568, "ts": 9738938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9739112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d920", "tid": 35568, "ts": 9739241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9739431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ae10", "tid": 35568, "ts": 9739561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9739734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bd80", "tid": 35568, "ts": 9739863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d440", "tid": 35568, "ts": 9740166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c740", "tid": 35568, "ts": 9740468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c810", "tid": 35568, "ts": 9740770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b700", "tid": 35568, "ts": 9741073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9741245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b7d0", "tid": 35568, "ts": 9741375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9741548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12be50", "tid": 35568, "ts": 9741677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9741850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a930", "tid": 35568, "ts": 9741979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9742153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d9f0", "tid": 35568, "ts": 9742282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9742455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dac0", "tid": 35568, "ts": 9742584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9742757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c8e0", "tid": 35568, "ts": 9742887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d6b0", "tid": 35568, "ts": 9743190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aa00", "tid": 35568, "ts": 9743491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c0c0", "tid": 35568, "ts": 9743794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d370", "tid": 35568, "ts": 9744097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9744270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aad0", "tid": 35568, "ts": 9744399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9744572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aba0", "tid": 35568, "ts": 9744700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9744872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12afb0", "tid": 35568, "ts": 9745002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9745174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b8a0", "tid": 35568, "ts": 9745303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9745475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b970", "tid": 35568, "ts": 9745604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9745775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d2a0", "tid": 35568, "ts": 9745905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bf20", "tid": 35568, "ts": 9746206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b080", "tid": 35568, "ts": 9746509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b150", "tid": 35568, "ts": 9746810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ba40", "tid": 35568, "ts": 9747111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9747285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bff0", "tid": 35568, "ts": 9747414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9747586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ca80", "tid": 35568, "ts": 9747715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9747888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c190", "tid": 35568, "ts": 9748017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9748188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c260", "tid": 35568, "ts": 9748318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9748490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c330", "tid": 35568, "ts": 9748619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9748792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cb50", "tid": 35568, "ts": 9748922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c670", "tid": 35568, "ts": 9749223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d510", "tid": 35568, "ts": 9749524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d5e0", "tid": 35568, "ts": 9749824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ee40", "tid": 35568, "ts": 9750124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9750297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f730", "tid": 35568, "ts": 9750427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9750599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e960", "tid": 35568, "ts": 9750730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9750901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130ab0", "tid": 35568, "ts": 9751031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9751205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f800", "tid": 35568, "ts": 9751334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9751508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130290", "tid": 35568, "ts": 9751637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9751810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e2e0", "tid": 35568, "ts": 9751939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9752111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130b80", "tid": 35568, "ts": 9752241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9752413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fdb0", "tid": 35568, "ts": 9752543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9752716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ea30", "tid": 35568, "ts": 9752846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9753018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131060", "tid": 35568, "ts": 9753148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9753321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ded0", "tid": 35568, "ts": 9753496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9753767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f4c0", "tid": 35568, "ts": 9753901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f8d0", "tid": 35568, "ts": 9754205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12eca0", "tid": 35568, "ts": 9754507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f9a0", "tid": 35568, "ts": 9754811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fce0", "tid": 35568, "ts": 9755113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9755286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e070", "tid": 35568, "ts": 9755416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9755587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ebd0", "tid": 35568, "ts": 9755717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9755891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ed70", "tid": 35568, "ts": 9756020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9756194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e140", "tid": 35568, "ts": 9756324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9756497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130360", "tid": 35568, "ts": 9756627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9756800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130430", "tid": 35568, "ts": 9756929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9757102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dd30", "tid": 35568, "ts": 9757232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9757403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fb40", "tid": 35568, "ts": 9757533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9757707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12eb00", "tid": 35568, "ts": 9757837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1300f0", "tid": 35568, "ts": 9758137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ef10", "tid": 35568, "ts": 9758438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f0b0", "tid": 35568, "ts": 9758760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12efe0", "tid": 35568, "ts": 9759065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9759237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e480", "tid": 35568, "ts": 9759367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9759539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130f90", "tid": 35568, "ts": 9759669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9759841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f590", "tid": 35568, "ts": 9759970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9760142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f180", "tid": 35568, "ts": 9760271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9760443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fe80", "tid": 35568, "ts": 9760573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9760745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dfa0", "tid": 35568, "ts": 9760876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e210", "tid": 35568, "ts": 9761178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f660", "tid": 35568, "ts": 9761479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130500", "tid": 35568, "ts": 9761781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ff50", "tid": 35568, "ts": 9762084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9762257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1301c0", "tid": 35568, "ts": 9762386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9762558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f250", "tid": 35568, "ts": 9762688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9762860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1306a0", "tid": 35568, "ts": 9762990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9763162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f320", "tid": 35568, "ts": 9763291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9763464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1305d0", "tid": 35568, "ts": 9763594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9763766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e7c0", "tid": 35568, "ts": 9763895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130770", "tid": 35568, "ts": 9764196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f3f0", "tid": 35568, "ts": 9764497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fa70", "tid": 35568, "ts": 9764799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130840", "tid": 35568, "ts": 9765100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9765273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fc10", "tid": 35568, "ts": 9765403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9765575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e550", "tid": 35568, "ts": 9765704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9765877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130020", "tid": 35568, "ts": 9766007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9766180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130910", "tid": 35568, "ts": 9766309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9766481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1309e0", "tid": 35568, "ts": 9766610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9766784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130c50", "tid": 35568, "ts": 9766913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130d20", "tid": 35568, "ts": 9767217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130df0", "tid": 35568, "ts": 9767518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130ec0", "tid": 35568, "ts": 9767821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12de00", "tid": 35568, "ts": 9768122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9768294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e3b0", "tid": 35568, "ts": 9768423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9768595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e620", "tid": 35568, "ts": 9768725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9768897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e6f0", "tid": 35568, "ts": 9769028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9769357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e890", "tid": 35568, "ts": 9769565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9769786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134120", "tid": 35568, "ts": 9770009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9770182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131200", "tid": 35568, "ts": 9770313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9770486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133eb0", "tid": 35568, "ts": 9770617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9770789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1324b0", "tid": 35568, "ts": 9770920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9771093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1342c0", "tid": 35568, "ts": 9771223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9771396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134390", "tid": 35568, "ts": 9771526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9771699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131fd0", "tid": 35568, "ts": 9771830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131130", "tid": 35568, "ts": 9772132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131af0", "tid": 35568, "ts": 9772434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131c90", "tid": 35568, "ts": 9772738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132f40", "tid": 35568, "ts": 9773041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9773213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132a60", "tid": 35568, "ts": 9773343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9773516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133900", "tid": 35568, "ts": 9773646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9773820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132240", "tid": 35568, "ts": 9773950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9774122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133830", "tid": 35568, "ts": 9774252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9774424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132cd0", "tid": 35568, "ts": 9774554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9774727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1339d0", "tid": 35568, "ts": 9774857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132b30", "tid": 35568, "ts": 9775160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133d10", "tid": 35568, "ts": 9775464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132580", "tid": 35568, "ts": 9775767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1334f0", "tid": 35568, "ts": 9776070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9776243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133f80", "tid": 35568, "ts": 9776435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9776608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131950", "tid": 35568, "ts": 9776738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9776911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133aa0", "tid": 35568, "ts": 9777042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9777215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131a20", "tid": 35568, "ts": 9777344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9777516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132170", "tid": 35568, "ts": 9777646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9777819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133b70", "tid": 35568, "ts": 9777948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9778121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133420", "tid": 35568, "ts": 9778251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9778424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132c00", "tid": 35568, "ts": 9778553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9778725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1323e0", "tid": 35568, "ts": 9778855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133690", "tid": 35568, "ts": 9779156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133c40", "tid": 35568, "ts": 9779460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131e30", "tid": 35568, "ts": 9779762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1320a0", "tid": 35568, "ts": 9780063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9780236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133760", "tid": 35568, "ts": 9780365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9780537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131d60", "tid": 35568, "ts": 9780667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9780840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133de0", "tid": 35568, "ts": 9780971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9781144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131540", "tid": 35568, "ts": 9781274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9781446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134050", "tid": 35568, "ts": 9781575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9781746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132da0", "tid": 35568, "ts": 9781877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132310", "tid": 35568, "ts": 9782179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132e70", "tid": 35568, "ts": 9782481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132650", "tid": 35568, "ts": 9782784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132720", "tid": 35568, "ts": 9783087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9783259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131f00", "tid": 35568, "ts": 9783389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9783561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133010", "tid": 35568, "ts": 9783757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9783929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1327f0", "tid": 35568, "ts": 9784059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9784231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1341f0", "tid": 35568, "ts": 9784361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9784534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1328c0", "tid": 35568, "ts": 9784663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9784931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132990", "tid": 35568, "ts": 9785061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9785233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1330e0", "tid": 35568, "ts": 9785363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9785536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134460", "tid": 35568, "ts": 9785665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9785837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131880", "tid": 35568, "ts": 9785967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9786140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1331b0", "tid": 35568, "ts": 9786269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9786440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133280", "tid": 35568, "ts": 9786569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9786741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1335c0", "tid": 35568, "ts": 9786870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133350", "tid": 35568, "ts": 9787173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1312d0", "tid": 35568, "ts": 9787475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1313a0", "tid": 35568, "ts": 9787776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131470", "tid": 35568, "ts": 9788079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9788251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131610", "tid": 35568, "ts": 9788381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9788555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1316e0", "tid": 35568, "ts": 9788685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9788858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1317b0", "tid": 35568, "ts": 9788987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9789159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131bc0", "tid": 35568, "ts": 9789289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9789462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1346d0", "tid": 35568, "ts": 9789592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9789765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136b60", "tid": 35568, "ts": 9789894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1369c0", "tid": 35568, "ts": 9790198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135e60", "tid": 35568, "ts": 9790500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136410", "tid": 35568, "ts": 9790804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1360d0", "tid": 35568, "ts": 9791105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9791278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136340", "tid": 35568, "ts": 9791408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9791580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1365b0", "tid": 35568, "ts": 9791711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9791884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1358b0", "tid": 35568, "ts": 9792014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9792186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1372b0", "tid": 35568, "ts": 9792316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9792489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134600", "tid": 35568, "ts": 9792638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9792811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137520", "tid": 35568, "ts": 9792940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9793113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1354a0", "tid": 35568, "ts": 9793242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9793414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1368f0", "tid": 35568, "ts": 9793544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9793716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1364e0", "tid": 35568, "ts": 9793846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135230", "tid": 35568, "ts": 9794149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1375f0", "tid": 35568, "ts": 9794452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134d50", "tid": 35568, "ts": 9794777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136ea0", "tid": 35568, "ts": 9795079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9795252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134530", "tid": 35568, "ts": 9795382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9795553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135160", "tid": 35568, "ts": 9795682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9795854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136680", "tid": 35568, "ts": 9795983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9796156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136820", "tid": 35568, "ts": 9796285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9796459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136a90", "tid": 35568, "ts": 9796589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9796760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135570", "tid": 35568, "ts": 9796890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136750", "tid": 35568, "ts": 9797192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137380", "tid": 35568, "ts": 9797495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1353d0", "tid": 35568, "ts": 9797798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1361a0", "tid": 35568, "ts": 9798099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9798272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136c30", "tid": 35568, "ts": 9798401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9798573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135710", "tid": 35568, "ts": 9798703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9798876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135a50", "tid": 35568, "ts": 9799005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9799177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1376c0", "tid": 35568, "ts": 9799306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9799479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137450", "tid": 35568, "ts": 9799608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9799780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137790", "tid": 35568, "ts": 9799910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9800084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137860", "tid": 35568, "ts": 9800214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9800490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134e20", "tid": 35568, "ts": 9800757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9801055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136d00", "tid": 35568, "ts": 9801274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9801473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135980", "tid": 35568, "ts": 9801652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9801833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136dd0", "tid": 35568, "ts": 9801970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9802213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1347a0", "tid": 35568, "ts": 9802349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9802543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134870", "tid": 35568, "ts": 9802683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9802927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134940", "tid": 35568, "ts": 9803073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9803259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136f70", "tid": 35568, "ts": 9803483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9803714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1357e0", "tid": 35568, "ts": 9803859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137040", "tid": 35568, "ts": 9804165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134ae0", "tid": 35568, "ts": 9804469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135300", "tid": 35568, "ts": 9804798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134a10", "tid": 35568, "ts": 9805102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9805278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134bb0", "tid": 35568, "ts": 9805410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9805584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134c80", "tid": 35568, "ts": 9805715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9805891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134ef0", "tid": 35568, "ts": 9806024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9806200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135640", "tid": 35568, "ts": 9806331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9806508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134fc0", "tid": 35568, "ts": 9806639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9806815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135090", "tid": 35568, "ts": 9806947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9807122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137110", "tid": 35568, "ts": 9807254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9807428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1371e0", "tid": 35568, "ts": 9807561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9807737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135b20", "tid": 35568, "ts": 9807869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135bf0", "tid": 35568, "ts": 9808177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135cc0", "tid": 35568, "ts": 9808485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135d90", "tid": 35568, "ts": 9808794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135f30", "tid": 35568, "ts": 9809101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9809276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136270", "tid": 35568, "ts": 9809407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9809584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136000", "tid": 35568, "ts": 9809715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9809915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138be0", "tid": 35568, "ts": 9810045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9810219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139cf0", "tid": 35568, "ts": 9810350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9810523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a1d0", "tid": 35568, "ts": 9810653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9810826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a920", "tid": 35568, "ts": 9811002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9811199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1398e0", "tid": 35568, "ts": 9811353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9811525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137ba0", "tid": 35568, "ts": 9811655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9811828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139330", "tid": 35568, "ts": 9811959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9812182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138cb0", "tid": 35568, "ts": 9812313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9812486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a510", "tid": 35568, "ts": 9812617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9812788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138d80", "tid": 35568, "ts": 9812918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9813092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138a40", "tid": 35568, "ts": 9813223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9813397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138700", "tid": 35568, "ts": 9813527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9813700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138490", "tid": 35568, "ts": 9813831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1395a0", "tid": 35568, "ts": 9814134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139c20", "tid": 35568, "ts": 9814437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a2a0", "tid": 35568, "ts": 9814740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1390c0", "tid": 35568, "ts": 9815044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9815217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a6b0", "tid": 35568, "ts": 9815346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9815519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1387d0", "tid": 35568, "ts": 9815649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9815823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137930", "tid": 35568, "ts": 9816005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9816194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138e50", "tid": 35568, "ts": 9816325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9816497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139400", "tid": 35568, "ts": 9816627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9816800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138970", "tid": 35568, "ts": 9816931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9817103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1399b0", "tid": 35568, "ts": 9817234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9817406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139dc0", "tid": 35568, "ts": 9817536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9817708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138080", "tid": 35568, "ts": 9817838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ab90", "tid": 35568, "ts": 9818141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a030", "tid": 35568, "ts": 9818469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138ff0", "tid": 35568, "ts": 9818774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139190", "tid": 35568, "ts": 9819077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9819250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a5e0", "tid": 35568, "ts": 9819379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9819551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139b50", "tid": 35568, "ts": 9819681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9819854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a370", "tid": 35568, "ts": 9819983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9820155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139260", "tid": 35568, "ts": 9820285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9820458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139a80", "tid": 35568, "ts": 9820588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9820762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139e90", "tid": 35568, "ts": 9820892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139670", "tid": 35568, "ts": 9821195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139f60", "tid": 35568, "ts": 9821496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137d40", "tid": 35568, "ts": 9821798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138f20", "tid": 35568, "ts": 9822100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9822272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a100", "tid": 35568, "ts": 9822403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9822576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1382f0", "tid": 35568, "ts": 9822706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9822878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1394d0", "tid": 35568, "ts": 9823009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9823181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137a00", "tid": 35568, "ts": 9823311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9823484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1388a0", "tid": 35568, "ts": 9823614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9823787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139740", "tid": 35568, "ts": 9823918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139810", "tid": 35568, "ts": 9824220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138b10", "tid": 35568, "ts": 9824523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138560", "tid": 35568, "ts": 9824826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ac60", "tid": 35568, "ts": 9825129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9825301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137c70", "tid": 35568, "ts": 9825431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9825604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137ad0", "tid": 35568, "ts": 9825734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9825907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a440", "tid": 35568, "ts": 9826036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9826209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13aac0", "tid": 35568, "ts": 9826338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9826535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a780", "tid": 35568, "ts": 9826665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9826837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a9f0", "tid": 35568, "ts": 9827007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9827179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a850", "tid": 35568, "ts": 9827311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9827482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137e10", "tid": 35568, "ts": 9827612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9827784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137ee0", "tid": 35568, "ts": 9827915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137fb0", "tid": 35568, "ts": 9828216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138150", "tid": 35568, "ts": 9828518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138220", "tid": 35568, "ts": 9828819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1383c0", "tid": 35568, "ts": 9829119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9829293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138630", "tid": 35568, "ts": 9829422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9829594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bf10", "tid": 35568, "ts": 9829724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9829897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d6a0", "tid": 35568, "ts": 9830026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9830199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13df90", "tid": 35568, "ts": 9830329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9830500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d360", "tid": 35568, "ts": 9830629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9830801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d290", "tid": 35568, "ts": 9830931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9831103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cc10", "tid": 35568, "ts": 9831232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9831404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c660", "tid": 35568, "ts": 9831533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9831771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b960", "tid": 35568, "ts": 9831902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d5d0", "tid": 35568, "ts": 9832205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cdb0", "tid": 35568, "ts": 9832507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13db80", "tid": 35568, "ts": 9832810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dc50", "tid": 35568, "ts": 9833113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9833287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cb40", "tid": 35568, "ts": 9833416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9833588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b3b0", "tid": 35568, "ts": 9833718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9833889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ad30", "tid": 35568, "ts": 9834018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9834191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ba30", "tid": 35568, "ts": 9834321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9834492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b070", "tid": 35568, "ts": 9834622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9834794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e060", "tid": 35568, "ts": 9834924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9835095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d500", "tid": 35568, "ts": 9835224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9835397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dd20", "tid": 35568, "ts": 9835526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9835697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13afa0", "tid": 35568, "ts": 9835828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b890", "tid": 35568, "ts": 9836129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d840", "tid": 35568, "ts": 9836432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d430", "tid": 35568, "ts": 9836734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b2e0", "tid": 35568, "ts": 9837036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9837209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b620", "tid": 35568, "ts": 9837339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9837512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ddf0", "tid": 35568, "ts": 9837641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9837813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bca0", "tid": 35568, "ts": 9837943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9838115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dec0", "tid": 35568, "ts": 9838245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9838418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b6f0", "tid": 35568, "ts": 9838547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9838719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c0b0", "tid": 35568, "ts": 9838850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ae00", "tid": 35568, "ts": 9839151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13aed0", "tid": 35568, "ts": 9839453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d770", "tid": 35568, "ts": 9839755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b140", "tid": 35568, "ts": 9840058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9840230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b210", "tid": 35568, "ts": 9840361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9840535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b480", "tid": 35568, "ts": 9840665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9840837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b550", "tid": 35568, "ts": 9840966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9841138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b7c0", "tid": 35568, "ts": 9841267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9841440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ce80", "tid": 35568, "ts": 9841571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9841744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d910", "tid": 35568, "ts": 9841874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bb00", "tid": 35568, "ts": 9842176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d9e0", "tid": 35568, "ts": 9842478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bbd0", "tid": 35568, "ts": 9842780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bd70", "tid": 35568, "ts": 9843083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9843256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d020", "tid": 35568, "ts": 9843386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9843558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dab0", "tid": 35568, "ts": 9843688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9843861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13be40", "tid": 35568, "ts": 9843991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9844163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bfe0", "tid": 35568, "ts": 9844293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9844466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cf50", "tid": 35568, "ts": 9844596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9844768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c180", "tid": 35568, "ts": 9844898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c250", "tid": 35568, "ts": 9845201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d0f0", "tid": 35568, "ts": 9845504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c320", "tid": 35568, "ts": 9845806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c3f0", "tid": 35568, "ts": 9846107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9846280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c4c0", "tid": 35568, "ts": 9846410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9846581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c590", "tid": 35568, "ts": 9846770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9846945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c730", "tid": 35568, "ts": 9847075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9847314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c800", "tid": 35568, "ts": 9847444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9847617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c8d0", "tid": 35568, "ts": 9847747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9847919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c9a0", "tid": 35568, "ts": 9848049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9848221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ca70", "tid": 35568, "ts": 9848351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9848523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cce0", "tid": 35568, "ts": 9848653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9848825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d1c0", "tid": 35568, "ts": 9848984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9849226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ff40", "tid": 35568, "ts": 9849362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9849536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140010", "tid": 35568, "ts": 9849666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9849839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e880", "tid": 35568, "ts": 9849969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9850141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e540", "tid": 35568, "ts": 9850271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9850444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1412c0", "tid": 35568, "ts": 9850573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9850746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141390", "tid": 35568, "ts": 9850875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fcd0", "tid": 35568, "ts": 9851176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ee30", "tid": 35568, "ts": 9851479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f3e0", "tid": 35568, "ts": 9851780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140690", "tid": 35568, "ts": 9852081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9852253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1400e0", "tid": 35568, "ts": 9852383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9852555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140900", "tid": 35568, "ts": 9852685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9852857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140280", "tid": 35568, "ts": 9852986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9853159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1401b0", "tid": 35568, "ts": 9853289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9853462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141460", "tid": 35568, "ts": 9853592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9853765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f4b0", "tid": 35568, "ts": 9853895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1405c0", "tid": 35568, "ts": 9854198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e130", "tid": 35568, "ts": 9854501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e7b0", "tid": 35568, "ts": 9854804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e200", "tid": 35568, "ts": 9855106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9855279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ef00", "tid": 35568, "ts": 9855409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9855581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140760", "tid": 35568, "ts": 9855711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9855883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e2d0", "tid": 35568, "ts": 9856012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9856183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ed60", "tid": 35568, "ts": 9856312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9856485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141050", "tid": 35568, "ts": 9856615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9856786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140f80", "tid": 35568, "ts": 9856916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e3a0", "tid": 35568, "ts": 9857217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1404f0", "tid": 35568, "ts": 9857519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1409d0", "tid": 35568, "ts": 9857820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f8c0", "tid": 35568, "ts": 9858122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9858295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140d10", "tid": 35568, "ts": 9858426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9858597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140350", "tid": 35568, "ts": 9858727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9858899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140aa0", "tid": 35568, "ts": 9859028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9859200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140420", "tid": 35568, "ts": 9859330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9859502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e470", "tid": 35568, "ts": 9859631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9859804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fda0", "tid": 35568, "ts": 9859933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9860106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140eb0", "tid": 35568, "ts": 9860236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9860448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140830", "tid": 35568, "ts": 9860585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9860758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140b70", "tid": 35568, "ts": 9860887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140c40", "tid": 35568, "ts": 9861189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f0a0", "tid": 35568, "ts": 9861492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e610", "tid": 35568, "ts": 9861795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140de0", "tid": 35568, "ts": 9862097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9862268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f650", "tid": 35568, "ts": 9862398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9862570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141120", "tid": 35568, "ts": 9862699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9862990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13efd0", "tid": 35568, "ts": 9863167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9863413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f990", "tid": 35568, "ts": 9863545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9863718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1411f0", "tid": 35568, "ts": 9863848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e6e0", "tid": 35568, "ts": 9864151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e950", "tid": 35568, "ts": 9864454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ea20", "tid": 35568, "ts": 9864756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fe70", "tid": 35568, "ts": 9865058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9865230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13eaf0", "tid": 35568, "ts": 9865360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9865534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ebc0", "tid": 35568, "ts": 9865663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9865835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f240", "tid": 35568, "ts": 9865965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9866137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ec90", "tid": 35568, "ts": 9866267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9866440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f170", "tid": 35568, "ts": 9866570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9866743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f310", "tid": 35568, "ts": 9866873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f580", "tid": 35568, "ts": 9867176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f720", "tid": 35568, "ts": 9867477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f7f0", "tid": 35568, "ts": 9867779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fa60", "tid": 35568, "ts": 9868081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9868254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fb30", "tid": 35568, "ts": 9868383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9868555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fc00", "tid": 35568, "ts": 9868686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9868859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144450", "tid": 35568, "ts": 9868990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9869162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144520", "tid": 35568, "ts": 9869292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9869464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142160", "tid": 35568, "ts": 9869594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9869767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142a50", "tid": 35568, "ts": 9869897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9870070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141530", "tid": 35568, "ts": 9870199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9870372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1435b0", "tid": 35568, "ts": 9870502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9870673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141c80", "tid": 35568, "ts": 9870829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142b20", "tid": 35568, "ts": 9871132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1438f0", "tid": 35568, "ts": 9871436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141600", "tid": 35568, "ts": 9871739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1430d0", "tid": 35568, "ts": 9872040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9872211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144040", "tid": 35568, "ts": 9872403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9872575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143340", "tid": 35568, "ts": 9872705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9872877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141d50", "tid": 35568, "ts": 9873007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9873180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144380", "tid": 35568, "ts": 9873310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9873482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1417a0", "tid": 35568, "ts": 9873612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9873783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141870", "tid": 35568, "ts": 9873913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1441e0", "tid": 35568, "ts": 9874215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143680", "tid": 35568, "ts": 9874516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1424a0", "tid": 35568, "ts": 9874818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142570", "tid": 35568, "ts": 9875120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9875292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141940", "tid": 35568, "ts": 9875422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9875594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1434e0", "tid": 35568, "ts": 9875724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9875896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141e20", "tid": 35568, "ts": 9876027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9876199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144110", "tid": 35568, "ts": 9876328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9876501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142cc0", "tid": 35568, "ts": 9876631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9876803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1427e0", "tid": 35568, "ts": 9876932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9877105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142230", "tid": 35568, "ts": 9877235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9877408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143820", "tid": 35568, "ts": 9877537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9877709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142e60", "tid": 35568, "ts": 9877838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9878011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143b60", "tid": 35568, "ts": 9878141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9878313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142300", "tid": 35568, "ts": 9878482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9878765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1423d0", "tid": 35568, "ts": 9878964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9879172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143410", "tid": 35568, "ts": 9879395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9879583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142640", "tid": 35568, "ts": 9879714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9879887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143750", "tid": 35568, "ts": 9880018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9880191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141a10", "tid": 35568, "ts": 9880321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9880493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142710", "tid": 35568, "ts": 9880673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9880846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141ef0", "tid": 35568, "ts": 9880981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9881155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1428b0", "tid": 35568, "ts": 9881284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9881456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144790", "tid": 35568, "ts": 9881586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9881759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1442b0", "tid": 35568, "ts": 9881888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1445f0", "tid": 35568, "ts": 9882191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142980", "tid": 35568, "ts": 9882493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142bf0", "tid": 35568, "ts": 9882798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1446c0", "tid": 35568, "ts": 9883099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9883271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142d90", "tid": 35568, "ts": 9883402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9883575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142f30", "tid": 35568, "ts": 9883704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9883877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144860", "tid": 35568, "ts": 9884007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9884221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1439c0", "tid": 35568, "ts": 9884352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9884524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143000", "tid": 35568, "ts": 9884654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9884827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143f70", "tid": 35568, "ts": 9884956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9885129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1416d0", "tid": 35568, "ts": 9885258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9885430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143a90", "tid": 35568, "ts": 9885559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9885733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141fc0", "tid": 35568, "ts": 9885862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141ae0", "tid": 35568, "ts": 9886165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1431a0", "tid": 35568, "ts": 9886467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141bb0", "tid": 35568, "ts": 9886769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143c30", "tid": 35568, "ts": 9887071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9887243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143270", "tid": 35568, "ts": 9887372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9887545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143d00", "tid": 35568, "ts": 9887675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9887847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143dd0", "tid": 35568, "ts": 9887977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9888148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143ea0", "tid": 35568, "ts": 9888278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9888451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142090", "tid": 35568, "ts": 9888580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9888753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145080", "tid": 35568, "ts": 9888883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146670", "tid": 35568, "ts": 9889185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147ac0", "tid": 35568, "ts": 9889485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145560", "tid": 35568, "ts": 9889786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1460c0", "tid": 35568, "ts": 9890089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9890262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146f60", "tid": 35568, "ts": 9890392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9890564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1472a0", "tid": 35568, "ts": 9890694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9890866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147c60", "tid": 35568, "ts": 9890995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9891167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145cb0", "tid": 35568, "ts": 9891297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9891470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147850", "tid": 35568, "ts": 9891600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9891772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145f20", "tid": 35568, "ts": 9891901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145ff0", "tid": 35568, "ts": 9892203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144ee0", "tid": 35568, "ts": 9892505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146a80", "tid": 35568, "ts": 9892808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145700", "tid": 35568, "ts": 9893110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9893283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147510", "tid": 35568, "ts": 9893413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9893586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146e90", "tid": 35568, "ts": 9893716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9893888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147920", "tid": 35568, "ts": 9894018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9894202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145e50", "tid": 35568, "ts": 9894373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9894546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1468e0", "tid": 35568, "ts": 9894699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9894872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146740", "tid": 35568, "ts": 9895002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9895174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145490", "tid": 35568, "ts": 9895304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9895476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1475e0", "tid": 35568, "ts": 9895605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9895778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146190", "tid": 35568, "ts": 9895907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145630", "tid": 35568, "ts": 9896209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147440", "tid": 35568, "ts": 9896511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146260", "tid": 35568, "ts": 9896814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144c70", "tid": 35568, "ts": 9897116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9897289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146c20", "tid": 35568, "ts": 9897420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9897593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144ad0", "tid": 35568, "ts": 9897723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9897895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145d80", "tid": 35568, "ts": 9898024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9898197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146cf0", "tid": 35568, "ts": 9898327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9898501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146330", "tid": 35568, "ts": 9898630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9898802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147370", "tid": 35568, "ts": 9898931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9899104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1469b0", "tid": 35568, "ts": 9899234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9899407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144d40", "tid": 35568, "ts": 9899536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9899711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146810", "tid": 35568, "ts": 9899840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147030", "tid": 35568, "ts": 9900143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144e10", "tid": 35568, "ts": 9900446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145be0", "tid": 35568, "ts": 9900748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147100", "tid": 35568, "ts": 9901050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9901223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146b50", "tid": 35568, "ts": 9901352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9901524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1471d0", "tid": 35568, "ts": 9901655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9901828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145220", "tid": 35568, "ts": 9901957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9902130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1458a0", "tid": 35568, "ts": 9902260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9902432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1452f0", "tid": 35568, "ts": 9902562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9902735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1476b0", "tid": 35568, "ts": 9902864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1479f0", "tid": 35568, "ts": 9903166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147780", "tid": 35568, "ts": 9903468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147b90", "tid": 35568, "ts": 9903770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144930", "tid": 35568, "ts": 9904072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9904245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146dc0", "tid": 35568, "ts": 9904374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9904547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146400", "tid": 35568, "ts": 9904677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9904849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144a00", "tid": 35568, "ts": 9904979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9905151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144ba0", "tid": 35568, "ts": 9905330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9905503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1464d0", "tid": 35568, "ts": 9905634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9905806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144fb0", "tid": 35568, "ts": 9905936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9906108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145150", "tid": 35568, "ts": 9906238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9906410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1453c0", "tid": 35568, "ts": 9906539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9906712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1465a0", "tid": 35568, "ts": 9906842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1457d0", "tid": 35568, "ts": 9907144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145970", "tid": 35568, "ts": 9907446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145a40", "tid": 35568, "ts": 9907748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145b10", "tid": 35568, "ts": 9908050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9908223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148890", "tid": 35568, "ts": 9908352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9908524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147ed0", "tid": 35568, "ts": 9908653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9908826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148a30", "tid": 35568, "ts": 9908956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9909128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149c10", "tid": 35568, "ts": 9909256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9909428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148fe0", "tid": 35568, "ts": 9909558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9909778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14af90", "tid": 35568, "ts": 9909908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148480", "tid": 35568, "ts": 9910209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149660", "tid": 35568, "ts": 9910512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1487c0", "tid": 35568, "ts": 9910814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148070", "tid": 35568, "ts": 9911116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9911288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148bd0", "tid": 35568, "ts": 9911417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9911589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1486f0", "tid": 35568, "ts": 9911719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9911891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149320", "tid": 35568, "ts": 9912021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9912192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a020", "tid": 35568, "ts": 9912322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9912494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148ca0", "tid": 35568, "ts": 9912624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9912796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148550", "tid": 35568, "ts": 9912926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9913099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148140", "tid": 35568, "ts": 9913228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9913401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b060", "tid": 35568, "ts": 9913531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9913703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a0f0", "tid": 35568, "ts": 9913833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149730", "tid": 35568, "ts": 9914136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a6a0", "tid": 35568, "ts": 9914438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148e40", "tid": 35568, "ts": 9914739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148210", "tid": 35568, "ts": 9915041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9915212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148620", "tid": 35568, "ts": 9915342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9915514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a500", "tid": 35568, "ts": 9915644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9915817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a910", "tid": 35568, "ts": 9915946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9916118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147fa0", "tid": 35568, "ts": 9916247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9916419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1482e0", "tid": 35568, "ts": 9916614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9916787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1493f0", "tid": 35568, "ts": 9916918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9917092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1494c0", "tid": 35568, "ts": 9917222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9917396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a5d0", "tid": 35568, "ts": 9917526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9917698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148f10", "tid": 35568, "ts": 9917829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a9e0", "tid": 35568, "ts": 9918133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1483b0", "tid": 35568, "ts": 9918436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ac50", "tid": 35568, "ts": 9918738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148960", "tid": 35568, "ts": 9919041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9919214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ad20", "tid": 35568, "ts": 9919343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9919516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147e00", "tid": 35568, "ts": 9919646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9919818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14adf0", "tid": 35568, "ts": 9919947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9920120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148b00", "tid": 35568, "ts": 9920250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9920422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ab80", "tid": 35568, "ts": 9920552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9920725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148d70", "tid": 35568, "ts": 9920854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1490b0", "tid": 35568, "ts": 9921157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149180", "tid": 35568, "ts": 9921459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14aab0", "tid": 35568, "ts": 9921761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14aec0", "tid": 35568, "ts": 9922065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9922237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a1c0", "tid": 35568, "ts": 9922367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9922540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149250", "tid": 35568, "ts": 9922671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9922843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149590", "tid": 35568, "ts": 9922972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9923145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a290", "tid": 35568, "ts": 9923275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9923448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149800", "tid": 35568, "ts": 9923578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9923751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149ce0", "tid": 35568, "ts": 9923880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a770", "tid": 35568, "ts": 9924183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a360", "tid": 35568, "ts": 9924485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149e80", "tid": 35568, "ts": 9924787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1498d0", "tid": 35568, "ts": 9925088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9925262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a840", "tid": 35568, "ts": 9925403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9925574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149f50", "tid": 35568, "ts": 9925704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9925877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1499a0", "tid": 35568, "ts": 9926006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9926179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149a70", "tid": 35568, "ts": 9926309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9926481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147d30", "tid": 35568, "ts": 9926611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9926784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149b40", "tid": 35568, "ts": 9926914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9927087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a430", "tid": 35568, "ts": 9927216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9927388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149db0", "tid": 35568, "ts": 9927518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9927705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cda0", "tid": 35568, "ts": 9927842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d900", "tid": 35568, "ts": 9928144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d280", "tid": 35568, "ts": 9928446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c0a0", "tid": 35568, "ts": 9928749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b880", "tid": 35568, "ts": 9929075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9929247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c170", "tid": 35568, "ts": 9929378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9929551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d4f0", "tid": 35568, "ts": 9929682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9929855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c990", "tid": 35568, "ts": 9929985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9930157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d760", "tid": 35568, "ts": 9930288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9930460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cb30", "tid": 35568, "ts": 9930589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9930760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d420", "tid": 35568, "ts": 9930890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bbc0", "tid": 35568, "ts": 9931192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e390", "tid": 35568, "ts": 9931494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c3e0", "tid": 35568, "ts": 9931797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e050", "tid": 35568, "ts": 9932099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9932271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b200", "tid": 35568, "ts": 9932401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9932572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d830", "tid": 35568, "ts": 9932703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9932876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bc90", "tid": 35568, "ts": 9933006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9933178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c240", "tid": 35568, "ts": 9933308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9933481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b2d0", "tid": 35568, "ts": 9933610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9933783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c4b0", "tid": 35568, "ts": 9933914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14dd10", "tid": 35568, "ts": 9934215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c580", "tid": 35568, "ts": 9934519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e460", "tid": 35568, "ts": 9934822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d9d0", "tid": 35568, "ts": 9935188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9935360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bd60", "tid": 35568, "ts": 9935490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9935662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e120", "tid": 35568, "ts": 9935792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9935966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c8c0", "tid": 35568, "ts": 9936095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9936268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14daa0", "tid": 35568, "ts": 9936398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9936570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ca60", "tid": 35568, "ts": 9936700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9936872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d5c0", "tid": 35568, "ts": 9937002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9937175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cc00", "tid": 35568, "ts": 9937305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9937476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14df80", "tid": 35568, "ts": 9937606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9937778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e1f0", "tid": 35568, "ts": 9937908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c310", "tid": 35568, "ts": 9938209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c650", "tid": 35568, "ts": 9938511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c720", "tid": 35568, "ts": 9938813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d690", "tid": 35568, "ts": 9939116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9939288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b130", "tid": 35568, "ts": 9939417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9939589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d0e0", "tid": 35568, "ts": 9939719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9939890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c7f0", "tid": 35568, "ts": 9940020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9940192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ccd0", "tid": 35568, "ts": 9940321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9940495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14deb0", "tid": 35568, "ts": 9940625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9940797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d1b0", "tid": 35568, "ts": 9940946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9941154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bfd0", "tid": 35568, "ts": 9941284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9941456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ce70", "tid": 35568, "ts": 9941587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9941760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d350", "tid": 35568, "ts": 9941890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9942125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14db70", "tid": 35568, "ts": 9942259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9942435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cf40", "tid": 35568, "ts": 9942567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9942748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d010", "tid": 35568, "ts": 9942889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b610", "tid": 35568, "ts": 9943193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14dc40", "tid": 35568, "ts": 9943495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14dde0", "tid": 35568, "ts": 9943798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e2c0", "tid": 35568, "ts": 9944100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9944272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14be30", "tid": 35568, "ts": 9944403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9944575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b6e0", "tid": 35568, "ts": 9944705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9944878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b950", "tid": 35568, "ts": 9945008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9945180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bf00", "tid": 35568, "ts": 9945309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9945481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b3a0", "tid": 35568, "ts": 9945611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9945784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b470", "tid": 35568, "ts": 9945914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b540", "tid": 35568, "ts": 9946217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b7b0", "tid": 35568, "ts": 9946519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ba20", "tid": 35568, "ts": 9946822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14baf0", "tid": 35568, "ts": 9947123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9947296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fb20", "tid": 35568, "ts": 9947425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9947597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1508f0", "tid": 35568, "ts": 9947727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9947900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f160", "tid": 35568, "ts": 9948030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9948201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fcc0", "tid": 35568, "ts": 9948331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9948504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f090", "tid": 35568, "ts": 9948634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9948806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150d00", "tid": 35568, "ts": 9948935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9949108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150410", "tid": 35568, "ts": 9949238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9949411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e600", "tid": 35568, "ts": 9949540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9949713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150b60", "tid": 35568, "ts": 9949842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ed50", "tid": 35568, "ts": 9950145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14efc0", "tid": 35568, "ts": 9950447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150f70", "tid": 35568, "ts": 9950750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150340", "tid": 35568, "ts": 9951051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9951224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1516c0", "tid": 35568, "ts": 9951354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9951526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1515f0", "tid": 35568, "ts": 9951656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9951829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150000", "tid": 35568, "ts": 9951958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9952130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ec80", "tid": 35568, "ts": 9952260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9952433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150dd0", "tid": 35568, "ts": 9952563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9952736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150680", "tid": 35568, "ts": 9952866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e530", "tid": 35568, "ts": 9953168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f230", "tid": 35568, "ts": 9953470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f300", "tid": 35568, "ts": 9953772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f570", "tid": 35568, "ts": 9954074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9954246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150820", "tid": 35568, "ts": 9954376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9954549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f7e0", "tid": 35568, "ts": 9954679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9954852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1501a0", "tid": 35568, "ts": 9954982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9955156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f4a0", "tid": 35568, "ts": 9955285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9955499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f8b0", "tid": 35568, "ts": 9955629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9955802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ebb0", "tid": 35568, "ts": 9955932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9956104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f3d0", "tid": 35568, "ts": 9956234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9956406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1509c0", "tid": 35568, "ts": 9956537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9956832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150270", "tid": 35568, "ts": 9956962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9957182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e6d0", "tid": 35568, "ts": 9957369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9957541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150c30", "tid": 35568, "ts": 9957671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9957844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1504e0", "tid": 35568, "ts": 9957973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9958146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1505b0", "tid": 35568, "ts": 9958276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9958449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e940", "tid": 35568, "ts": 9958579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9958751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150a90", "tid": 35568, "ts": 9958881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151040", "tid": 35568, "ts": 9959182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151790", "tid": 35568, "ts": 9959484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f640", "tid": 35568, "ts": 9959786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ee20", "tid": 35568, "ts": 9960151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9960323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fd90", "tid": 35568, "ts": 9960452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9960625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fe60", "tid": 35568, "ts": 9960755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9960927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e870", "tid": 35568, "ts": 9961057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9961229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fbf0", "tid": 35568, "ts": 9961402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9961574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151860", "tid": 35568, "ts": 9961704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9961877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150ea0", "tid": 35568, "ts": 9962007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9962178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f710", "tid": 35568, "ts": 9962307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9962480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150750", "tid": 35568, "ts": 9962609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9962782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151110", "tid": 35568, "ts": 9962911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f980", "tid": 35568, "ts": 9963213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1511e0", "tid": 35568, "ts": 9963515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1512b0", "tid": 35568, "ts": 9963818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fa50", "tid": 35568, "ts": 9964119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9964291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14eae0", "tid": 35568, "ts": 9964421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9964593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ff30", "tid": 35568, "ts": 9964723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9964895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1500d0", "tid": 35568, "ts": 9965024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9965196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151380", "tid": 35568, "ts": 9965326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9965498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151450", "tid": 35568, "ts": 9965628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9965801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151520", "tid": 35568, "ts": 9965931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9966103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e7a0", "tid": 35568, "ts": 9966233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9966404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ea10", "tid": 35568, "ts": 9966534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9966706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14eef0", "tid": 35568, "ts": 9966836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154440", "tid": 35568, "ts": 9967137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153f60", "tid": 35568, "ts": 9967440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152630", "tid": 35568, "ts": 9967742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152560", "tid": 35568, "ts": 9968045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9968218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1549f0", "tid": 35568, "ts": 9968349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9968521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1546b0", "tid": 35568, "ts": 9968651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9968823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152be0", "tid": 35568, "ts": 9968953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9969126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153e90", "tid": 35568, "ts": 9969255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9969428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154ac0", "tid": 35568, "ts": 9969558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9969730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152700", "tid": 35568, "ts": 9969860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154510", "tid": 35568, "ts": 9970163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1538e0", "tid": 35568, "ts": 9970466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152490", "tid": 35568, "ts": 9970768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154370", "tid": 35568, "ts": 9971070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9971242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154100", "tid": 35568, "ts": 9971372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9971544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154780", "tid": 35568, "ts": 9971673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9971846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152cb0", "tid": 35568, "ts": 9971977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9972149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154920", "tid": 35568, "ts": 9972334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9972507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152f20", "tid": 35568, "ts": 9972636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9972808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154030", "tid": 35568, "ts": 9972938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9973111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1528a0", "tid": 35568, "ts": 9973242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9973414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153cf0", "tid": 35568, "ts": 9973543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9973715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1522f0", "tid": 35568, "ts": 9973845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154850", "tid": 35568, "ts": 9974147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152d80", "tid": 35568, "ts": 9974450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1541d0", "tid": 35568, "ts": 9974751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1542a0", "tid": 35568, "ts": 9975053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9975224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153330", "tid": 35568, "ts": 9975354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9975526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154b90", "tid": 35568, "ts": 9975657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9975829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1527d0", "tid": 35568, "ts": 9975959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9976131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152970", "tid": 35568, "ts": 9976261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9976431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154c60", "tid": 35568, "ts": 9976561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9976734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1545e0", "tid": 35568, "ts": 9976863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9977035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1523c0", "tid": 35568, "ts": 9977165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9977448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151930", "tid": 35568, "ts": 9977603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9977802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152a40", "tid": 35568, "ts": 9977932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9978106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153c20", "tid": 35568, "ts": 9978236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9978409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153670", "tid": 35568, "ts": 9978538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9978710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152ff0", "tid": 35568, "ts": 9978840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151a00", "tid": 35568, "ts": 9979143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151ad0", "tid": 35568, "ts": 9979444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151ba0", "tid": 35568, "ts": 9979747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153740", "tid": 35568, "ts": 9980049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9980222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152b10", "tid": 35568, "ts": 9980352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9980524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153dc0", "tid": 35568, "ts": 9980654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9980825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1539b0", "tid": 35568, "ts": 9980955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9981125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153260", "tid": 35568, "ts": 9981255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9981429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152e50", "tid": 35568, "ts": 9981559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9981732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1530c0", "tid": 35568, "ts": 9981862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153400", "tid": 35568, "ts": 9982164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153190", "tid": 35568, "ts": 9982467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151c70", "tid": 35568, "ts": 9982770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151d40", "tid": 35568, "ts": 9983073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9983245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153810", "tid": 35568, "ts": 9983375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9983548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1534d0", "tid": 35568, "ts": 9983678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9983850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151e10", "tid": 35568, "ts": 9983979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9984153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151ee0", "tid": 35568, "ts": 9984282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9984455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1535a0", "tid": 35568, "ts": 9984586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9984758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151fb0", "tid": 35568, "ts": 9984888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152080", "tid": 35568, "ts": 9985191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153a80", "tid": 35568, "ts": 9985492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152150", "tid": 35568, "ts": 9985795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153b50", "tid": 35568, "ts": 9986154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9986326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152220", "tid": 35568, "ts": 9986456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9986629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155ca0", "tid": 35568, "ts": 9986759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9986931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156e80", "tid": 35568, "ts": 9987061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9987234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155d70", "tid": 35568, "ts": 9987364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9987536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154fa0", "tid": 35568, "ts": 9987666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9987885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157360", "tid": 35568, "ts": 9988117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9988338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1575d0", "tid": 35568, "ts": 9988492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9988754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1568d0", "tid": 35568, "ts": 9988922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9989095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157b80", "tid": 35568, "ts": 9989225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9989397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1552e0", "tid": 35568, "ts": 9989528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9989700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156c10", "tid": 35568, "ts": 9989830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157910", "tid": 35568, "ts": 9990131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1576a0", "tid": 35568, "ts": 9990434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158060", "tid": 35568, "ts": 9990735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157f90", "tid": 35568, "ts": 9991038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9991210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157c50", "tid": 35568, "ts": 9991341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9991513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1569a0", "tid": 35568, "ts": 9991643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9991816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157df0", "tid": 35568, "ts": 9991947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9992120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157430", "tid": 35568, "ts": 9992250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9992423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155480", "tid": 35568, "ts": 9992553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9992726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1570f0", "tid": 35568, "ts": 9992856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156590", "tid": 35568, "ts": 9993159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157d20", "tid": 35568, "ts": 9993461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1560b0", "tid": 35568, "ts": 9993764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157020", "tid": 35568, "ts": 9994067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9994240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156a70", "tid": 35568, "ts": 9994370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9994542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155e40", "tid": 35568, "ts": 9994695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9994867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157500", "tid": 35568, "ts": 9994998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9995217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154d30", "tid": 35568, "ts": 9995349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9995522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155070", "tid": 35568, "ts": 9995653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9995825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157290", "tid": 35568, "ts": 9995954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9996127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157770", "tid": 35568, "ts": 9996258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9996430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155140", "tid": 35568, "ts": 9996559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9996732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154e00", "tid": 35568, "ts": 9996863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154ed0", "tid": 35568, "ts": 9997164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156b40", "tid": 35568, "ts": 9997466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156180", "tid": 35568, "ts": 9997769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155550", "tid": 35568, "ts": 9998072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9998245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1557c0", "tid": 35568, "ts": 9998375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9998548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156250", "tid": 35568, "ts": 9998678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9998851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155210", "tid": 35568, "ts": 9998982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9999155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157ec0", "tid": 35568, "ts": 9999285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9999458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1553b0", "tid": 35568, "ts": 9999588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9999761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155960", "tid": 35568, "ts": 9999891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155620", "tid": 35568, "ts": 10000195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1556f0", "tid": 35568, "ts": 10000497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155890", "tid": 35568, "ts": 10000800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155a30", "tid": 35568, "ts": 10001102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10001275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155b00", "tid": 35568, "ts": 10001405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10001577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156f50", "tid": 35568, "ts": 10001707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10001880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155bd0", "tid": 35568, "ts": 10002011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10002183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157ab0", "tid": 35568, "ts": 10002313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10002485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155f10", "tid": 35568, "ts": 10002615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10002788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157840", "tid": 35568, "ts": 10002919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10003091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156ce0", "tid": 35568, "ts": 10003221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10003394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155fe0", "tid": 35568, "ts": 10003589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10003761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156320", "tid": 35568, "ts": 10003891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1563f0", "tid": 35568, "ts": 10004194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1564c0", "tid": 35568, "ts": 10004496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156660", "tid": 35568, "ts": 10004798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156730", "tid": 35568, "ts": 10005100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10005273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156800", "tid": 35568, "ts": 10005403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10005575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1579e0", "tid": 35568, "ts": 10005705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10005877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156db0", "tid": 35568, "ts": 10006007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10006179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1571c0", "tid": 35568, "ts": 10006308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10006481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a9d0", "tid": 35568, "ts": 10006612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10006784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159720", "tid": 35568, "ts": 10006915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a280", "tid": 35568, "ts": 10007217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a690", "tid": 35568, "ts": 10007520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1598c0", "tid": 35568, "ts": 10007823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a010", "tid": 35568, "ts": 10008125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10008298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a0e0", "tid": 35568, "ts": 10008428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10008600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159a60", "tid": 35568, "ts": 10008729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10008902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a350", "tid": 35568, "ts": 10009032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10009205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1590a0", "tid": 35568, "ts": 10009335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10009506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b390", "tid": 35568, "ts": 10009636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10009810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1583a0", "tid": 35568, "ts": 10009940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10010114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158470", "tid": 35568, "ts": 10010244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10010417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a760", "tid": 35568, "ts": 10010547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10010719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158200", "tid": 35568, "ts": 10010848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a420", "tid": 35568, "ts": 10011151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158bc0", "tid": 35568, "ts": 10011453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b2c0", "tid": 35568, "ts": 10011757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b460", "tid": 35568, "ts": 10012061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10012234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a830", "tid": 35568, "ts": 10012364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10012536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159b30", "tid": 35568, "ts": 10012667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10012839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15af80", "tid": 35568, "ts": 10012969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10013142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1582d0", "tid": 35568, "ts": 10013273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10013446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158880", "tid": 35568, "ts": 10013577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10013749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a4f0", "tid": 35568, "ts": 10013880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ad10", "tid": 35568, "ts": 10014183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1594b0", "tid": 35568, "ts": 10014486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158a20", "tid": 35568, "ts": 10014790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158c90", "tid": 35568, "ts": 10015119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10015292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158540", "tid": 35568, "ts": 10015422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10015595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b1f0", "tid": 35568, "ts": 10015727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10015899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158610", "tid": 35568, "ts": 10016029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10016201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159580", "tid": 35568, "ts": 10016331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10016503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158130", "tid": 35568, "ts": 10016634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10016806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a900", "tid": 35568, "ts": 10016936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10017108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15aaa0", "tid": 35568, "ts": 10017237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10017410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a5c0", "tid": 35568, "ts": 10017541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10017713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158f00", "tid": 35568, "ts": 10017843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158d60", "tid": 35568, "ts": 10018146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ac40", "tid": 35568, "ts": 10018449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158af0", "tid": 35568, "ts": 10018751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b050", "tid": 35568, "ts": 10019076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10019287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ade0", "tid": 35568, "ts": 10019419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10019592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158e30", "tid": 35568, "ts": 10019721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10019894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1586e0", "tid": 35568, "ts": 10020024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10020196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159650", "tid": 35568, "ts": 10020326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10020499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1587b0", "tid": 35568, "ts": 10020629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10020802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158fd0", "tid": 35568, "ts": 10020932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10021105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ab70", "tid": 35568, "ts": 10021234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10021407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159990", "tid": 35568, "ts": 10021537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10021710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15aeb0", "tid": 35568, "ts": 10021840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b120", "tid": 35568, "ts": 10022142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158950", "tid": 35568, "ts": 10022445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159170", "tid": 35568, "ts": 10022746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159240", "tid": 35568, "ts": 10023049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10023221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a1b0", "tid": 35568, "ts": 10023351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10023522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159310", "tid": 35568, "ts": 10023653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10023825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1593e0", "tid": 35568, "ts": 10023956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10024128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1597f0", "tid": 35568, "ts": 10024258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10024430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159c00", "tid": 35568, "ts": 10024559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10024732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159cd0", "tid": 35568, "ts": 10024861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159da0", "tid": 35568, "ts": 10025164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159e70", "tid": 35568, "ts": 10025467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159f40", "tid": 35568, "ts": 10025770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e860", "tid": 35568, "ts": 10026072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10026245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c4a0", "tid": 35568, "ts": 10026375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10026574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d0d0", "tid": 35568, "ts": 10026704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10026877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c980", "tid": 35568, "ts": 10027006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10027179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c7e0", "tid": 35568, "ts": 10027310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10027528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e380", "tid": 35568, "ts": 10027659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10027832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c8b0", "tid": 35568, "ts": 10027962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10028135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d270", "tid": 35568, "ts": 10028264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10028437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e6c0", "tid": 35568, "ts": 10028610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10028783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bc80", "tid": 35568, "ts": 10028913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d1a0", "tid": 35568, "ts": 10029215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ca50", "tid": 35568, "ts": 10029518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d5b0", "tid": 35568, "ts": 10029820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d340", "tid": 35568, "ts": 10030123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10030296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c640", "tid": 35568, "ts": 10030426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10030599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cb20", "tid": 35568, "ts": 10030728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10030901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c710", "tid": 35568, "ts": 10031031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10031203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ddd0", "tid": 35568, "ts": 10031333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10031506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b7a0", "tid": 35568, "ts": 10031636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10031809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15dd00", "tid": 35568, "ts": 10031938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10032110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e5f0", "tid": 35568, "ts": 10032240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10032412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b600", "tid": 35568, "ts": 10032542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10032714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b870", "tid": 35568, "ts": 10032844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e790", "tid": 35568, "ts": 10033146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15db60", "tid": 35568, "ts": 10033448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b940", "tid": 35568, "ts": 10033751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15be20", "tid": 35568, "ts": 10034054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10034227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d410", "tid": 35568, "ts": 10034356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10034529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b530", "tid": 35568, "ts": 10034679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10034895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b6d0", "tid": 35568, "ts": 10035025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10035197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d4e0", "tid": 35568, "ts": 10035327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10035500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e110", "tid": 35568, "ts": 10035630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10035802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cbf0", "tid": 35568, "ts": 10035932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10036104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d8f0", "tid": 35568, "ts": 10036234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10036408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bd50", "tid": 35568, "ts": 10036537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10036709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c230", "tid": 35568, "ts": 10036839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ba10", "tid": 35568, "ts": 10037142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c160", "tid": 35568, "ts": 10037445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ccc0", "tid": 35568, "ts": 10037746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d680", "tid": 35568, "ts": 10038051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10038224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c300", "tid": 35568, "ts": 10038353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10038525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15dea0", "tid": 35568, "ts": 10038655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10038828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d750", "tid": 35568, "ts": 10038958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10039130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d820", "tid": 35568, "ts": 10039259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10039432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cd90", "tid": 35568, "ts": 10039562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10039734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e1e0", "tid": 35568, "ts": 10039889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15df70", "tid": 35568, "ts": 10040192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bae0", "tid": 35568, "ts": 10040493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ce60", "tid": 35568, "ts": 10040795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e040", "tid": 35568, "ts": 10041099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10041271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bbb0", "tid": 35568, "ts": 10041401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10041574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cf30", "tid": 35568, "ts": 10041703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10041876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e2b0", "tid": 35568, "ts": 10042047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10042220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d9c0", "tid": 35568, "ts": 10042350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10042522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d000", "tid": 35568, "ts": 10042651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10042823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15da90", "tid": 35568, "ts": 10042952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10043125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15dc30", "tid": 35568, "ts": 10043255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10043427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bef0", "tid": 35568, "ts": 10043557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10043730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e450", "tid": 35568, "ts": 10043860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e520", "tid": 35568, "ts": 10044161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bfc0", "tid": 35568, "ts": 10044463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c090", "tid": 35568, "ts": 10044765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c3d0", "tid": 35568, "ts": 10045067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10045240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c570", "tid": 35568, "ts": 10045370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10045542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161780", "tid": 35568, "ts": 10045672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10045845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1619f0", "tid": 35568, "ts": 10045974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10046147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f8a0", "tid": 35568, "ts": 10046277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10046450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1600c0", "tid": 35568, "ts": 10046579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10046753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160e90", "tid": 35568, "ts": 10046882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10047054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160190", "tid": 35568, "ts": 10047183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10047355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fff0", "tid": 35568, "ts": 10047485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10047657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160f60", "tid": 35568, "ts": 10047849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160260", "tid": 35568, "ts": 10048151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161100", "tid": 35568, "ts": 10048452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fcb0", "tid": 35568, "ts": 10048755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f220", "tid": 35568, "ts": 10049057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10049229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f970", "tid": 35568, "ts": 10049359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10049531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160a80", "tid": 35568, "ts": 10049660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10049832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161ac0", "tid": 35568, "ts": 10049961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10050134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15efb0", "tid": 35568, "ts": 10050264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10050505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161b90", "tid": 35568, "ts": 10050635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10050807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161370", "tid": 35568, "ts": 10050937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10051109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1605a0", "tid": 35568, "ts": 10051238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10051411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f490", "tid": 35568, "ts": 10051541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10051714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1615e0", "tid": 35568, "ts": 10051844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ea00", "tid": 35568, "ts": 10052146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160cf0", "tid": 35568, "ts": 10052448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ead0", "tid": 35568, "ts": 10052750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161850", "tid": 35568, "ts": 10053053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10053224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15eee0", "tid": 35568, "ts": 10053354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10053526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ff20", "tid": 35568, "ts": 10053657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10053829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161c60", "tid": 35568, "ts": 10053959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10054130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fa40", "tid": 35568, "ts": 10054260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10054432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f080", "tid": 35568, "ts": 10054562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10054734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160dc0", "tid": 35568, "ts": 10054864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10055037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160b50", "tid": 35568, "ts": 10055167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10055339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161920", "tid": 35568, "ts": 10055469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10055641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161030", "tid": 35568, "ts": 10055828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1611d0", "tid": 35568, "ts": 10056131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161440", "tid": 35568, "ts": 10056433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e930", "tid": 35568, "ts": 10056733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161510", "tid": 35568, "ts": 10057035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10057206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15eba0", "tid": 35568, "ts": 10057336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10057508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f630", "tid": 35568, "ts": 10057637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10057809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160670", "tid": 35568, "ts": 10057938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10058110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160740", "tid": 35568, "ts": 10058239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10058412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1616b0", "tid": 35568, "ts": 10058541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10058713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1612a0", "tid": 35568, "ts": 10058842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ec70", "tid": 35568, "ts": 10059143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160810", "tid": 35568, "ts": 10059445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ed40", "tid": 35568, "ts": 10059746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160330", "tid": 35568, "ts": 10060048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10060221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f150", "tid": 35568, "ts": 10060351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10060524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1609b0", "tid": 35568, "ts": 10060654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10060828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f560", "tid": 35568, "ts": 10060957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10061131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ee10", "tid": 35568, "ts": 10061260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10061434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f2f0", "tid": 35568, "ts": 10061564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10061736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f3c0", "tid": 35568, "ts": 10061866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f700", "tid": 35568, "ts": 10062211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fd80", "tid": 35568, "ts": 10062515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160400", "tid": 35568, "ts": 10062816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160c20", "tid": 35568, "ts": 10063118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10063291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f7d0", "tid": 35568, "ts": 10063420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10063593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1604d0", "tid": 35568, "ts": 10063722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10063895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fb10", "tid": 35568, "ts": 10064024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10064197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fbe0", "tid": 35568, "ts": 10064327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10064499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fe50", "tid": 35568, "ts": 10064629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10064802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1608e0", "tid": 35568, "ts": 10064932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10065105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163590", "tid": 35568, "ts": 10065235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10065408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162960", "tid": 35568, "ts": 10065538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10065711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161e00", "tid": 35568, "ts": 10065840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10066130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1646a0", "tid": 35568, "ts": 10066312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10066486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1649e0", "tid": 35568, "ts": 10066617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10066791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162fe0", "tid": 35568, "ts": 10066921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10067095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161ed0", "tid": 35568, "ts": 10067225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10067399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161d30", "tid": 35568, "ts": 10067529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10067703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164b80", "tid": 35568, "ts": 10067834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1645d0", "tid": 35568, "ts": 10068136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164ec0", "tid": 35568, "ts": 10068438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162070", "tid": 35568, "ts": 10068741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164d20", "tid": 35568, "ts": 10069043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10069216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161fa0", "tid": 35568, "ts": 10069345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10069519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164c50", "tid": 35568, "ts": 10069648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10069821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162210", "tid": 35568, "ts": 10069950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10070124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162d70", "tid": 35568, "ts": 10070254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10070426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163660", "tid": 35568, "ts": 10070556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10070730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162e40", "tid": 35568, "ts": 10070860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10071062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162140", "tid": 35568, "ts": 10071217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10071461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164020", "tid": 35568, "ts": 10071634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10071806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162f10", "tid": 35568, "ts": 10071936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10072109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164910", "tid": 35568, "ts": 10072239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10072412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162550", "tid": 35568, "ts": 10072543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10072716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162620", "tid": 35568, "ts": 10072846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1622e0", "tid": 35568, "ts": 10073149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164ab0", "tid": 35568, "ts": 10073451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164770", "tid": 35568, "ts": 10073754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1630b0", "tid": 35568, "ts": 10074057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10074230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163320", "tid": 35568, "ts": 10074360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10074533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1623b0", "tid": 35568, "ts": 10074663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10074835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163730", "tid": 35568, "ts": 10074965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10075137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162480", "tid": 35568, "ts": 10075268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10075440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163250", "tid": 35568, "ts": 10075570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10075742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164430", "tid": 35568, "ts": 10075872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164840", "tid": 35568, "ts": 10076174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163f50", "tid": 35568, "ts": 10076477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162890", "tid": 35568, "ts": 10076780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164df0", "tid": 35568, "ts": 10077082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10077254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1626f0", "tid": 35568, "ts": 10077384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10077556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1641c0", "tid": 35568, "ts": 10077686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10077858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163800", "tid": 35568, "ts": 10077987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10078160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163c10", "tid": 35568, "ts": 10078291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10078463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1627c0", "tid": 35568, "ts": 10078593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10078766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1633f0", "tid": 35568, "ts": 10078896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162a30", "tid": 35568, "ts": 10079199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162b00", "tid": 35568, "ts": 10079503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162bd0", "tid": 35568, "ts": 10079804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163a70", "tid": 35568, "ts": 10080108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10080281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163b40", "tid": 35568, "ts": 10080411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10080583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162ca0", "tid": 35568, "ts": 10080713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10080885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163e80", "tid": 35568, "ts": 10081015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10081187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163180", "tid": 35568, "ts": 10081347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10081518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163db0", "tid": 35568, "ts": 10081772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10081954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1634c0", "tid": 35568, "ts": 10082099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10082272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1638d0", "tid": 35568, "ts": 10082404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10082577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164500", "tid": 35568, "ts": 10082708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10082881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1639a0", "tid": 35568, "ts": 10083011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10083184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163ce0", "tid": 35568, "ts": 10083357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10083669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1640f0", "tid": 35568, "ts": 10083851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10084249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164290", "tid": 35568, "ts": 10084475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10084809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164360", "tid": 35568, "ts": 10085075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10085406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126010", "tid": 35568, "ts": 10085623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10085797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124e30", "tid": 35568, "ts": 10085928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10086102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126900", "tid": 35568, "ts": 10086233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10086406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124610", "tid": 35568, "ts": 10086537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10086710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124f00", "tid": 35568, "ts": 10086870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124d60", "tid": 35568, "ts": 10087173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125650", "tid": 35568, "ts": 10087478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124bc0", "tid": 35568, "ts": 10087780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124fd0", "tid": 35568, "ts": 10088083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10088258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127050", "tid": 35568, "ts": 10088389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10088561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126c40", "tid": 35568, "ts": 10088692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10088866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1260e0", "tid": 35568, "ts": 10088995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10089169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124470", "tid": 35568, "ts": 10089299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10089472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124a20", "tid": 35568, "ts": 10089601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10089773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126830", "tid": 35568, "ts": 10089904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124c90", "tid": 35568, "ts": 10090208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1247b0", "tid": 35568, "ts": 10090510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1261b0", "tid": 35568, "ts": 10090814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125a60", "tid": 35568, "ts": 10091116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10091288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1264f0", "tid": 35568, "ts": 10091418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10091590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125990", "tid": 35568, "ts": 10091720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10091892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1250a0", "tid": 35568, "ts": 10092022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10092196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125170", "tid": 35568, "ts": 10092327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10092501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1272c0", "tid": 35568, "ts": 10092631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10092804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1265c0", "tid": 35568, "ts": 10092934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10093108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127390", "tid": 35568, "ts": 10093238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10093411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126d10", "tid": 35568, "ts": 10093541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10093714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125240", "tid": 35568, "ts": 10093844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126de0", "tid": 35568, "ts": 10094147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125310", "tid": 35568, "ts": 10094450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1253e0", "tid": 35568, "ts": 10094776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1254b0", "tid": 35568, "ts": 10095079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10095252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1243a0", "tid": 35568, "ts": 10095382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10095555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125cd0", "tid": 35568, "ts": 10095686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10095859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124540", "tid": 35568, "ts": 10095988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10096161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124af0", "tid": 35568, "ts": 10096291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10096465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125f40", "tid": 35568, "ts": 10096595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10096768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125580", "tid": 35568, "ts": 10096950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10097123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1246e0", "tid": 35568, "ts": 10097315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10097571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125720", "tid": 35568, "ts": 10097746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10098032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127460", "tid": 35568, "ts": 10098229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10098402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126eb0", "tid": 35568, "ts": 10098582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10098822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124880", "tid": 35568, "ts": 10099005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10099273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126350", "tid": 35568, "ts": 10099405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10099577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127120", "tid": 35568, "ts": 10099708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10099882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1257f0", "tid": 35568, "ts": 10100013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10100187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124130", "tid": 35568, "ts": 10100317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10100490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1269d0", "tid": 35568, "ts": 10100622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10100795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126280", "tid": 35568, "ts": 10100927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10101145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124950", "tid": 35568, "ts": 10101279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10101453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125b30", "tid": 35568, "ts": 10101583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10101755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1258c0", "tid": 35568, "ts": 10101956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10102199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125c00", "tid": 35568, "ts": 10102328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10102501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124200", "tid": 35568, "ts": 10102631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10102804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126f80", "tid": 35568, "ts": 10102934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10103107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1242d0", "tid": 35568, "ts": 10103238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10103409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125da0", "tid": 35568, "ts": 10103540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10103713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125e70", "tid": 35568, "ts": 10103843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1271f0", "tid": 35568, "ts": 10104144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126420", "tid": 35568, "ts": 10104447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126690", "tid": 35568, "ts": 10104752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126760", "tid": 35568, "ts": 10105056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10105228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126aa0", "tid": 35568, "ts": 10105359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10105532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126b70", "tid": 35568, "ts": 10105663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10105835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03775b0", "tid": 35568, "ts": 10106030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10106205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377dd0", "tid": 35568, "ts": 10106335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10106507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03779c0", "tid": 35568, "ts": 10106638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10106810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377b60", "tid": 35568, "ts": 10106940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10107113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376090", "tid": 35568, "ts": 10107243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10107416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376d90", "tid": 35568, "ts": 10107546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10107719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375bb0", "tid": 35568, "ts": 10107849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03786c0", "tid": 35568, "ts": 10108151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376230", "tid": 35568, "ts": 10108453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03764a0", "tid": 35568, "ts": 10108758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03757a0", "tid": 35568, "ts": 10109060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10109233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03770d0", "tid": 35568, "ts": 10109363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10109536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376640", "tid": 35568, "ts": 10109665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10109838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375ef0", "tid": 35568, "ts": 10109968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10110141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376e60", "tid": 35568, "ts": 10110272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10110445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378450", "tid": 35568, "ts": 10110576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10110748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377410", "tid": 35568, "ts": 10110878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378110", "tid": 35568, "ts": 10111180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375e20", "tid": 35568, "ts": 10111482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376f30", "tid": 35568, "ts": 10111784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377270", "tid": 35568, "ts": 10112087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10112259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03771a0", "tid": 35568, "ts": 10112389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10112562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03763d0", "tid": 35568, "ts": 10112693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10112864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03781e0", "tid": 35568, "ts": 10112995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10113168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378790", "tid": 35568, "ts": 10113297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10113470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376570", "tid": 35568, "ts": 10113601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10113773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377000", "tid": 35568, "ts": 10113904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377340", "tid": 35568, "ts": 10114208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03774e0", "tid": 35568, "ts": 10114511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03782b0", "tid": 35568, "ts": 10114813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03756d0", "tid": 35568, "ts": 10115116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10115290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378380", "tid": 35568, "ts": 10115421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10115594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375fc0", "tid": 35568, "ts": 10115724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10115896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377680", "tid": 35568, "ts": 10116026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10116199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378860", "tid": 35568, "ts": 10116329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10116503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377a90", "tid": 35568, "ts": 10116633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10116804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375530", "tid": 35568, "ts": 10116934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10117106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376300", "tid": 35568, "ts": 10117237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10117408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377750", "tid": 35568, "ts": 10117540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10117833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376710", "tid": 35568, "ts": 10117964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10118171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378520", "tid": 35568, "ts": 10118317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10118490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375d50", "tid": 35568, "ts": 10118621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10118793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03785f0", "tid": 35568, "ts": 10118923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10119096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377c30", "tid": 35568, "ts": 10119271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10119514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377820", "tid": 35568, "ts": 10119643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10119815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377d00", "tid": 35568, "ts": 10119946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10120119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375600", "tid": 35568, "ts": 10120248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10120421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377ea0", "tid": 35568, "ts": 10120552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10120724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377f70", "tid": 35568, "ts": 10120854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10121027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03778f0", "tid": 35568, "ts": 10121158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10121394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378040", "tid": 35568, "ts": 10121551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10121735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375870", "tid": 35568, "ts": 10121865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10122097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375940", "tid": 35568, "ts": 10122242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10122416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375a10", "tid": 35568, "ts": 10122546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10122719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375ae0", "tid": 35568, "ts": 10122849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375c80", "tid": 35568, "ts": 10123153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376160", "tid": 35568, "ts": 10123457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03767e0", "tid": 35568, "ts": 10123759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03768b0", "tid": 35568, "ts": 10124063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10124235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376980", "tid": 35568, "ts": 10124366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10124539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376a50", "tid": 35568, "ts": 10124670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10124845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376b20", "tid": 35568, "ts": 10124978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10125153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376bf0", "tid": 35568, "ts": 10125285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10125458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376cc0", "tid": 35568, "ts": 10125588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10125762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03792f0", "tid": 35568, "ts": 10125894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a0c0", "tid": 35568, "ts": 10126196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379ff0", "tid": 35568, "ts": 10126500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379490", "tid": 35568, "ts": 10126804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a260", "tid": 35568, "ts": 10127107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10127281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a190", "tid": 35568, "ts": 10127411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10127585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037acf0", "tid": 35568, "ts": 10127782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10127956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378e10", "tid": 35568, "ts": 10128088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10128261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379700", "tid": 35568, "ts": 10128392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10128565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b510", "tid": 35568, "ts": 10128696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10128871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a810", "tid": 35568, "ts": 10129002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10129175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bc60", "tid": 35568, "ts": 10129306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10129480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379cb0", "tid": 35568, "ts": 10129610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10129783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378fb0", "tid": 35568, "ts": 10129913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10130087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bb90", "tid": 35568, "ts": 10130218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10130392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037af60", "tid": 35568, "ts": 10130523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10130696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379150", "tid": 35568, "ts": 10130827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b440", "tid": 35568, "ts": 10131130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03797d0", "tid": 35568, "ts": 10131480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b100", "tid": 35568, "ts": 10131786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a330", "tid": 35568, "ts": 10132090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10132263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378ad0", "tid": 35568, "ts": 10132393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10132567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b850", "tid": 35568, "ts": 10132697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10132870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378930", "tid": 35568, "ts": 10133001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10133175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03798a0", "tid": 35568, "ts": 10133305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10133478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037aa80", "tid": 35568, "ts": 10133609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10133783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378a00", "tid": 35568, "ts": 10133913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10134086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b6b0", "tid": 35568, "ts": 10134216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10134389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bac0", "tid": 35568, "ts": 10134520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10134694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379630", "tid": 35568, "ts": 10134839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378ee0", "tid": 35568, "ts": 10135196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b780", "tid": 35568, "ts": 10135501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b1d0", "tid": 35568, "ts": 10135805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a400", "tid": 35568, "ts": 10136109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10136282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379080", "tid": 35568, "ts": 10136412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10136585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379220", "tid": 35568, "ts": 10136716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10136887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379970", "tid": 35568, "ts": 10137018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10137191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b5e0", "tid": 35568, "ts": 10137322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10137496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378c70", "tid": 35568, "ts": 10137627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10137800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379a40", "tid": 35568, "ts": 10137990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10138164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379f20", "tid": 35568, "ts": 10138295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10138468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037adc0", "tid": 35568, "ts": 10138598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10138772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03793c0", "tid": 35568, "ts": 10138904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b920", "tid": 35568, "ts": 10139209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b2a0", "tid": 35568, "ts": 10139513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ae90", "tid": 35568, "ts": 10139815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379b10", "tid": 35568, "ts": 10140118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10140290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b9f0", "tid": 35568, "ts": 10140421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10140595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a4d0", "tid": 35568, "ts": 10140725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10140898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a8e0", "tid": 35568, "ts": 10141030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10141204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378ba0", "tid": 35568, "ts": 10141334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10141508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ac20", "tid": 35568, "ts": 10141638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10141811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b370", "tid": 35568, "ts": 10141941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10142115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378d40", "tid": 35568, "ts": 10142245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10142418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379560", "tid": 35568, "ts": 10142549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10142722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a9b0", "tid": 35568, "ts": 10142852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379be0", "tid": 35568, "ts": 10143155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379d80", "tid": 35568, "ts": 10143457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b030", "tid": 35568, "ts": 10143759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a5a0", "tid": 35568, "ts": 10144064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10144239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ab50", "tid": 35568, "ts": 10144372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10144547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379e50", "tid": 35568, "ts": 10144678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10144851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a670", "tid": 35568, "ts": 10144982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10145155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a740", "tid": 35568, "ts": 10145285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10145459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d590", "tid": 35568, "ts": 10145589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10145762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e770", "tid": 35568, "ts": 10145893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e500", "tid": 35568, "ts": 10146197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037db40", "tid": 35568, "ts": 10146500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e020", "tid": 35568, "ts": 10146803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c550", "tid": 35568, "ts": 10147105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10147279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e5d0", "tid": 35568, "ts": 10147410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10147583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e6a0", "tid": 35568, "ts": 10147714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10147887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cf10", "tid": 35568, "ts": 10148018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10148190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ca30", "tid": 35568, "ts": 10148320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10148493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c3b0", "tid": 35568, "ts": 10148664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10148843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d800", "tid": 35568, "ts": 10149014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10149211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e840", "tid": 35568, "ts": 10149342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10149515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ef90", "tid": 35568, "ts": 10149646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10149820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d8d0", "tid": 35568, "ts": 10150016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10150188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c480", "tid": 35568, "ts": 10150319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10150568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e910", "tid": 35568, "ts": 10150744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10150918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e9e0", "tid": 35568, "ts": 10151050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10151225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f060", "tid": 35568, "ts": 10151356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10151530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037da70", "tid": 35568, "ts": 10151661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10151881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d4c0", "tid": 35568, "ts": 10152013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10152186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d3f0", "tid": 35568, "ts": 10152317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10152490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c620", "tid": 35568, "ts": 10152621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10152793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bed0", "tid": 35568, "ts": 10152952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10153196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037eab0", "tid": 35568, "ts": 10153354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10153527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037eb80", "tid": 35568, "ts": 10153659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10153832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037dc10", "tid": 35568, "ts": 10153962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10154134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ec50", "tid": 35568, "ts": 10154264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10154438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e0f0", "tid": 35568, "ts": 10154569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10154742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e1c0", "tid": 35568, "ts": 10154873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c960", "tid": 35568, "ts": 10155176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cd70", "tid": 35568, "ts": 10155479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037dce0", "tid": 35568, "ts": 10155781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ed20", "tid": 35568, "ts": 10156084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10156256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037edf0", "tid": 35568, "ts": 10156386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10156559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037eec0", "tid": 35568, "ts": 10156689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10156862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bd30", "tid": 35568, "ts": 10156993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10157165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037de80", "tid": 35568, "ts": 10157296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10157469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c6f0", "tid": 35568, "ts": 10157599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10157773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cbd0", "tid": 35568, "ts": 10157903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d660", "tid": 35568, "ts": 10158207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cb00", "tid": 35568, "ts": 10158512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037be00", "tid": 35568, "ts": 10158815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cca0", "tid": 35568, "ts": 10159119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10159292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e290", "tid": 35568, "ts": 10159423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10159595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d320", "tid": 35568, "ts": 10159725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10159898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e360", "tid": 35568, "ts": 10160028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10160201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ce40", "tid": 35568, "ts": 10160331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10160504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bfa0", "tid": 35568, "ts": 10160635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10160807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c070", "tid": 35568, "ts": 10160937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10161110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ddb0", "tid": 35568, "ts": 10161240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10161412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c140", "tid": 35568, "ts": 10161543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10161716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c210", "tid": 35568, "ts": 10161845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cfe0", "tid": 35568, "ts": 10162149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d730", "tid": 35568, "ts": 10162452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d9a0", "tid": 35568, "ts": 10162756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d180", "tid": 35568, "ts": 10163060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10163232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c2e0", "tid": 35568, "ts": 10163362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10163535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037df50", "tid": 35568, "ts": 10163666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10163839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d0b0", "tid": 35568, "ts": 10163969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10164143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e430", "tid": 35568, "ts": 10164273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10164446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c7c0", "tid": 35568, "ts": 10164577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10164751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d250", "tid": 35568, "ts": 10164881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10165054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c890", "tid": 35568, "ts": 10165184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10165356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381b70", "tid": 35568, "ts": 10165528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10165701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380da0", "tid": 35568, "ts": 10165831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381c40", "tid": 35568, "ts": 10166134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381830", "tid": 35568, "ts": 10166436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03814f0", "tid": 35568, "ts": 10166739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f130", "tid": 35568, "ts": 10167042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10167215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381eb0", "tid": 35568, "ts": 10167345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10167518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381690", "tid": 35568, "ts": 10167649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10167821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03808c0", "tid": 35568, "ts": 10167952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10168125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380c00", "tid": 35568, "ts": 10168256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10168428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03811b0", "tid": 35568, "ts": 10168558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10168793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f470", "tid": 35568, "ts": 10168923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10169096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03800a0", "tid": 35568, "ts": 10169226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10169398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381280", "tid": 35568, "ts": 10169530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10169704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03810e0", "tid": 35568, "ts": 10169833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03803e0", "tid": 35568, "ts": 10170136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380cd0", "tid": 35568, "ts": 10170439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03815c0", "tid": 35568, "ts": 10170744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382390", "tid": 35568, "ts": 10171047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10171219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380f40", "tid": 35568, "ts": 10171350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10171523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380990", "tid": 35568, "ts": 10171653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10171825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03819d0", "tid": 35568, "ts": 10171955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10172128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382120", "tid": 35568, "ts": 10172258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10172431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03804b0", "tid": 35568, "ts": 10172561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10172734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380240", "tid": 35568, "ts": 10172865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380170", "tid": 35568, "ts": 10173167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380a60", "tid": 35568, "ts": 10173469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381f80", "tid": 35568, "ts": 10173773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f200", "tid": 35568, "ts": 10174117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10174292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382050", "tid": 35568, "ts": 10174423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10174595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381760", "tid": 35568, "ts": 10174725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10174898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380580", "tid": 35568, "ts": 10175028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10175200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380e70", "tid": 35568, "ts": 10175331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10175503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381010", "tid": 35568, "ts": 10175633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10175807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381d10", "tid": 35568, "ts": 10175937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10176110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f2d0", "tid": 35568, "ts": 10176240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10176412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380310", "tid": 35568, "ts": 10176543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10176717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380650", "tid": 35568, "ts": 10176847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380720", "tid": 35568, "ts": 10177151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381350", "tid": 35568, "ts": 10177455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380b30", "tid": 35568, "ts": 10177758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f7b0", "tid": 35568, "ts": 10178060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10178233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381420", "tid": 35568, "ts": 10178363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10178536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381900", "tid": 35568, "ts": 10178667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10178839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03807f0", "tid": 35568, "ts": 10178970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10179142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381aa0", "tid": 35568, "ts": 10179272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10179445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381de0", "tid": 35568, "ts": 10179576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10179748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03821f0", "tid": 35568, "ts": 10179879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03822c0", "tid": 35568, "ts": 10180182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382460", "tid": 35568, "ts": 10180484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f3a0", "tid": 35568, "ts": 10180788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f540", "tid": 35568, "ts": 10181091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10181264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fbc0", "tid": 35568, "ts": 10181394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10181568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f610", "tid": 35568, "ts": 10181698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10181871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f880", "tid": 35568, "ts": 10182001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10182174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f6e0", "tid": 35568, "ts": 10182304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10182476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f950", "tid": 35568, "ts": 10182606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10182777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fa20", "tid": 35568, "ts": 10182907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10183079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037faf0", "tid": 35568, "ts": 10183210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10183383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fc90", "tid": 35568, "ts": 10183538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10183712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fd60", "tid": 35568, "ts": 10183843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fe30", "tid": 35568, "ts": 10184146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ff00", "tid": 35568, "ts": 10184520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ffd0", "tid": 35568, "ts": 10184824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382ae0", "tid": 35568, "ts": 10185126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10185298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383d90", "tid": 35568, "ts": 10185429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10185601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384d00", "tid": 35568, "ts": 10185731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10185903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383b20", "tid": 35568, "ts": 10186033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10186207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385380", "tid": 35568, "ts": 10186337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10186510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384820", "tid": 35568, "ts": 10186639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10186813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385040", "tid": 35568, "ts": 10186943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10187117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03848f0", "tid": 35568, "ts": 10187247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10187420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03852b0", "tid": 35568, "ts": 10187552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10187725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385450", "tid": 35568, "ts": 10187855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383160", "tid": 35568, "ts": 10188159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384f70", "tid": 35568, "ts": 10188461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385520", "tid": 35568, "ts": 10188763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383570", "tid": 35568, "ts": 10189066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10189238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03838b0", "tid": 35568, "ts": 10189368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10189541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03849c0", "tid": 35568, "ts": 10189671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10189843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03851e0", "tid": 35568, "ts": 10189973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10190146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03840d0", "tid": 35568, "ts": 10190276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10190450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03833d0", "tid": 35568, "ts": 10190580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10190752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383e60", "tid": 35568, "ts": 10190882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382e20", "tid": 35568, "ts": 10191186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385790", "tid": 35568, "ts": 10191488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382ef0", "tid": 35568, "ts": 10191790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383f30", "tid": 35568, "ts": 10192093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10192266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383bf0", "tid": 35568, "ts": 10192396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10192568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384000", "tid": 35568, "ts": 10192698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10192871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03855f0", "tid": 35568, "ts": 10193002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10193174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384680", "tid": 35568, "ts": 10193305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10193477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382fc0", "tid": 35568, "ts": 10193608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10193782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03841a0", "tid": 35568, "ts": 10193912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10194084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385110", "tid": 35568, "ts": 10194215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10194387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385860", "tid": 35568, "ts": 10194517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10194714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03856c0", "tid": 35568, "ts": 10194844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383090", "tid": 35568, "ts": 10195147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382530", "tid": 35568, "ts": 10195449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382600", "tid": 35568, "ts": 10195754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383cc0", "tid": 35568, "ts": 10196057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10196230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03845b0", "tid": 35568, "ts": 10196360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10196533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383230", "tid": 35568, "ts": 10196663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10196837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03826d0", "tid": 35568, "ts": 10196967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10197141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03827a0", "tid": 35568, "ts": 10197272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10197444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383300", "tid": 35568, "ts": 10197633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10197806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382c80", "tid": 35568, "ts": 10197938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10198110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383980", "tid": 35568, "ts": 10198241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10198414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384750", "tid": 35568, "ts": 10198545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10198717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383640", "tid": 35568, "ts": 10198888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10199060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382bb0", "tid": 35568, "ts": 10199191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10199363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382870", "tid": 35568, "ts": 10199495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10199667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382940", "tid": 35568, "ts": 10199797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10200160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382a10", "tid": 35568, "ts": 10200402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10200681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384a90", "tid": 35568, "ts": 10200863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10201172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384b60", "tid": 35568, "ts": 10201303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10201475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383a50", "tid": 35568, "ts": 10201606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10201779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382d50", "tid": 35568, "ts": 10201909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384270", "tid": 35568, "ts": 10202213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03834a0", "tid": 35568, "ts": 10202516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383710", "tid": 35568, "ts": 10202819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03837e0", "tid": 35568, "ts": 10203122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10203294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384340", "tid": 35568, "ts": 10203425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10203600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384410", "tid": 35568, "ts": 10203731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10203905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03844e0", "tid": 35568, "ts": 10204035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10204207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384c30", "tid": 35568, "ts": 10204337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10204510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384dd0", "tid": 35568, "ts": 10204640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10204813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384ea0", "tid": 35568, "ts": 10204943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10205116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386be0", "tid": 35568, "ts": 10205246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10205420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385fb0", "tid": 35568, "ts": 10205549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10205721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386d80", "tid": 35568, "ts": 10205851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386cb0", "tid": 35568, "ts": 10206151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03881d0", "tid": 35568, "ts": 10206505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388920", "tid": 35568, "ts": 10206815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03862f0", "tid": 35568, "ts": 10207119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10207290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387810", "tid": 35568, "ts": 10207420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10207593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03868a0", "tid": 35568, "ts": 10207724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10207897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387740", "tid": 35568, "ts": 10208027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10208200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388850", "tid": 35568, "ts": 10208330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10208503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388100", "tid": 35568, "ts": 10208633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10208805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385c70", "tid": 35568, "ts": 10208935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10209108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385ad0", "tid": 35568, "ts": 10209239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10209410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386700", "tid": 35568, "ts": 10209540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10209712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388510", "tid": 35568, "ts": 10209843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385d40", "tid": 35568, "ts": 10210146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03863c0", "tid": 35568, "ts": 10210448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385ba0", "tid": 35568, "ts": 10210750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03875a0", "tid": 35568, "ts": 10211052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10211224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387c20", "tid": 35568, "ts": 10211354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10211526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385a00", "tid": 35568, "ts": 10211656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10211829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387670", "tid": 35568, "ts": 10211960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10212133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385ee0", "tid": 35568, "ts": 10212263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10212435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03882a0", "tid": 35568, "ts": 10212565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10212737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03885e0", "tid": 35568, "ts": 10212867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03878e0", "tid": 35568, "ts": 10213170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386f20", "tid": 35568, "ts": 10213473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386490", "tid": 35568, "ts": 10213776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386970", "tid": 35568, "ts": 10214080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10214252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385e10", "tid": 35568, "ts": 10214383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10214554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386a40", "tid": 35568, "ts": 10214684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10214856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386e50", "tid": 35568, "ts": 10214986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10215158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388440", "tid": 35568, "ts": 10215287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10215484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387cf0", "tid": 35568, "ts": 10215648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10215821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03879b0", "tid": 35568, "ts": 10215951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10216124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386080", "tid": 35568, "ts": 10216254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10216425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386220", "tid": 35568, "ts": 10216555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10216728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388b90", "tid": 35568, "ts": 10216858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387330", "tid": 35568, "ts": 10217161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388370", "tid": 35568, "ts": 10217465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386630", "tid": 35568, "ts": 10217768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387a80", "tid": 35568, "ts": 10218071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10218243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386150", "tid": 35568, "ts": 10218374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10218548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388ac0", "tid": 35568, "ts": 10218678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10218849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388030", "tid": 35568, "ts": 10218979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10219153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387dc0", "tid": 35568, "ts": 10219284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10219457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03886b0", "tid": 35568, "ts": 10219587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10219759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387b50", "tid": 35568, "ts": 10219889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387190", "tid": 35568, "ts": 10220193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388780", "tid": 35568, "ts": 10220495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03889f0", "tid": 35568, "ts": 10220798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387f60", "tid": 35568, "ts": 10221101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10221274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387e90", "tid": 35568, "ts": 10221405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10221579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388c60", "tid": 35568, "ts": 10221709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10221882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386560", "tid": 35568, "ts": 10222012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10222184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385930", "tid": 35568, "ts": 10222315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10222488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03867d0", "tid": 35568, "ts": 10222618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10222790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387260", "tid": 35568, "ts": 10222921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10223094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386b10", "tid": 35568, "ts": 10223224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10223397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386ff0", "tid": 35568, "ts": 10223527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10223700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03870c0", "tid": 35568, "ts": 10223830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387400", "tid": 35568, "ts": 10224133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03874d0", "tid": 35568, "ts": 10224436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a590", "tid": 35568, "ts": 10224737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a3f0", "tid": 35568, "ts": 10225040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10225213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b840", "tid": 35568, "ts": 10225343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10225516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b0f0", "tid": 35568, "ts": 10225645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10225818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a730", "tid": 35568, "ts": 10225947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10226120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a800", "tid": 35568, "ts": 10226312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10226486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b5d0", "tid": 35568, "ts": 10226640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10226814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bd20", "tid": 35568, "ts": 10226944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10227118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389550", "tid": 35568, "ts": 10227249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10227421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b1c0", "tid": 35568, "ts": 10227551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10227724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ab40", "tid": 35568, "ts": 10227854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a320", "tid": 35568, "ts": 10228158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389620", "tid": 35568, "ts": 10228461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b020", "tid": 35568, "ts": 10228763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038aa70", "tid": 35568, "ts": 10229066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10229238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bf90", "tid": 35568, "ts": 10229368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10229540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a8d0", "tid": 35568, "ts": 10229671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10229844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038af50", "tid": 35568, "ts": 10229974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10230147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a250", "tid": 35568, "ts": 10230277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10230450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b500", "tid": 35568, "ts": 10230580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10230753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389a30", "tid": 35568, "ts": 10230883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10231056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b6a0", "tid": 35568, "ts": 10231226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10231399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389ca0", "tid": 35568, "ts": 10231529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10231702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389210", "tid": 35568, "ts": 10231833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389b00", "tid": 35568, "ts": 10232135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03896f0", "tid": 35568, "ts": 10232439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b770", "tid": 35568, "ts": 10232741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03897c0", "tid": 35568, "ts": 10233093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10233266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389d70", "tid": 35568, "ts": 10233397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10233570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c060", "tid": 35568, "ts": 10233701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10233873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389890", "tid": 35568, "ts": 10234003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10234176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b290", "tid": 35568, "ts": 10234306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10234478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bab0", "tid": 35568, "ts": 10234608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10234781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bec0", "tid": 35568, "ts": 10234911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ace0", "tid": 35568, "ts": 10235215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b360", "tid": 35568, "ts": 10235517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bb80", "tid": 35568, "ts": 10235821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038adb0", "tid": 35568, "ts": 10236125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10236298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b910", "tid": 35568, "ts": 10236429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10236602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389fe0", "tid": 35568, "ts": 10236732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10236905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b9e0", "tid": 35568, "ts": 10237036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10237208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a9a0", "tid": 35568, "ts": 10237339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10237512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389960", "tid": 35568, "ts": 10237642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10237815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bc50", "tid": 35568, "ts": 10237945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10238117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389e40", "tid": 35568, "ts": 10238247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10238420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ac10", "tid": 35568, "ts": 10238550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10238724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bdf0", "tid": 35568, "ts": 10238855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a0b0", "tid": 35568, "ts": 10239157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ae80", "tid": 35568, "ts": 10239461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388d30", "tid": 35568, "ts": 10239764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b430", "tid": 35568, "ts": 10240068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10240241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388e00", "tid": 35568, "ts": 10240371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10240543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388ed0", "tid": 35568, "ts": 10240674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10240846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a4c0", "tid": 35568, "ts": 10240976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10241149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388fa0", "tid": 35568, "ts": 10241280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10241452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389f10", "tid": 35568, "ts": 10241583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10241756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a660", "tid": 35568, "ts": 10241887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389070", "tid": 35568, "ts": 10242190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389bd0", "tid": 35568, "ts": 10242493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389140", "tid": 35568, "ts": 10242796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a180", "tid": 35568, "ts": 10243100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10243272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03892e0", "tid": 35568, "ts": 10243402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10243576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03893b0", "tid": 35568, "ts": 10243707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10243879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389480", "tid": 35568, "ts": 10244009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10244182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038caf0", "tid": 35568, "ts": 10244312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10244485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d3e0", "tid": 35568, "ts": 10244615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10244787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e5c0", "tid": 35568, "ts": 10244917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10245089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038da60", "tid": 35568, "ts": 10245219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10245391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e900", "tid": 35568, "ts": 10245521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10245694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038eaa0", "tid": 35568, "ts": 10245824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e420", "tid": 35568, "ts": 10246174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cc90", "tid": 35568, "ts": 10246476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e010", "tid": 35568, "ts": 10246820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ce30", "tid": 35568, "ts": 10247122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10247295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c7b0", "tid": 35568, "ts": 10247425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10247598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cd60", "tid": 35568, "ts": 10247728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10247902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d990", "tid": 35568, "ts": 10248033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10248206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d7f0", "tid": 35568, "ts": 10248336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10248509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ed10", "tid": 35568, "ts": 10248640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10248812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cbc0", "tid": 35568, "ts": 10248942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10249116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ef80", "tid": 35568, "ts": 10249247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10249418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038dda0", "tid": 35568, "ts": 10249549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10249721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038de70", "tid": 35568, "ts": 10249852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c950", "tid": 35568, "ts": 10250154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c6e0", "tid": 35568, "ts": 10250456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ede0", "tid": 35568, "ts": 10250759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d0a0", "tid": 35568, "ts": 10251061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10251234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ca20", "tid": 35568, "ts": 10251363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10251535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038db30", "tid": 35568, "ts": 10251666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10251838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d720", "tid": 35568, "ts": 10251969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10252141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038dc00", "tid": 35568, "ts": 10252271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10252443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ec40", "tid": 35568, "ts": 10252573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10252744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e690", "tid": 35568, "ts": 10252875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d4b0", "tid": 35568, "ts": 10253177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d580", "tid": 35568, "ts": 10253481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e9d0", "tid": 35568, "ts": 10253784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038df40", "tid": 35568, "ts": 10254086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10254258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c470", "tid": 35568, "ts": 10254388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10254560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e0e0", "tid": 35568, "ts": 10254690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10254863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f050", "tid": 35568, "ts": 10254993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10255165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cf00", "tid": 35568, "ts": 10255296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10255467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e1b0", "tid": 35568, "ts": 10255596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10255769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e280", "tid": 35568, "ts": 10255899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f120", "tid": 35568, "ts": 10256200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cfd0", "tid": 35568, "ts": 10256504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f1f0", "tid": 35568, "ts": 10256806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c880", "tid": 35568, "ts": 10257109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10257281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038eeb0", "tid": 35568, "ts": 10257411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10257584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d170", "tid": 35568, "ts": 10257715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10257886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d650", "tid": 35568, "ts": 10258017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10258188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038eb70", "tid": 35568, "ts": 10258318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10258491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e760", "tid": 35568, "ts": 10258621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10258794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038dcd0", "tid": 35568, "ts": 10258924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10259097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e350", "tid": 35568, "ts": 10259228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10259400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d240", "tid": 35568, "ts": 10259531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10259704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f2c0", "tid": 35568, "ts": 10259834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f390", "tid": 35568, "ts": 10260136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f460", "tid": 35568, "ts": 10260439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c130", "tid": 35568, "ts": 10260742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c200", "tid": 35568, "ts": 10261044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10261216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d310", "tid": 35568, "ts": 10261347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10261518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d8c0", "tid": 35568, "ts": 10261649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10261822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c2d0", "tid": 35568, "ts": 10261952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10262127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e4f0", "tid": 35568, "ts": 10262257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10262490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c3a0", "tid": 35568, "ts": 10262622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10262794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c540", "tid": 35568, "ts": 10262925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10263098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e830", "tid": 35568, "ts": 10263228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10263400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c610", "tid": 35568, "ts": 10263530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10263767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391ea0", "tid": 35568, "ts": 10263900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10264078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390f30", "tid": 35568, "ts": 10264235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10264416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03925f0", "tid": 35568, "ts": 10264558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10264730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390d90", "tid": 35568, "ts": 10264861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390640", "tid": 35568, "ts": 10265164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fd50", "tid": 35568, "ts": 10265467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03910d0", "tid": 35568, "ts": 10265770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390980", "tid": 35568, "ts": 10266074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10266247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391000", "tid": 35568, "ts": 10266420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10266593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392040", "tid": 35568, "ts": 10266724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10266897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392790", "tid": 35568, "ts": 10267027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10267200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391b60", "tid": 35568, "ts": 10267330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10267502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f7a0", "tid": 35568, "ts": 10267688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10267862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03908b0", "tid": 35568, "ts": 10267993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10268167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fbb0", "tid": 35568, "ts": 10268297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10268469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391d00", "tid": 35568, "ts": 10268600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10268773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03911a0", "tid": 35568, "ts": 10268903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391270", "tid": 35568, "ts": 10269206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f870", "tid": 35568, "ts": 10269509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391820", "tid": 35568, "ts": 10269811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391340", "tid": 35568, "ts": 10270114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10270286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391750", "tid": 35568, "ts": 10270417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10270590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390300", "tid": 35568, "ts": 10270721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10270893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f6d0", "tid": 35568, "ts": 10271023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10271195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392380", "tid": 35568, "ts": 10271326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10271498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392110", "tid": 35568, "ts": 10271628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10271801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391680", "tid": 35568, "ts": 10271931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10272105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391410", "tid": 35568, "ts": 10272236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10272408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03926c0", "tid": 35568, "ts": 10272538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10272710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390a50", "tid": 35568, "ts": 10272841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10273015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03903d0", "tid": 35568, "ts": 10273145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10273318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392860", "tid": 35568, "ts": 10273448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10273620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390e60", "tid": 35568, "ts": 10274946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10275126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03922b0", "tid": 35568, "ts": 10275262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10275436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391f70", "tid": 35568, "ts": 10275566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10275740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03914e0", "tid": 35568, "ts": 10275871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03904a0", "tid": 35568, "ts": 10276174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f530", "tid": 35568, "ts": 10276477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03919c0", "tid": 35568, "ts": 10276782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03915b0", "tid": 35568, "ts": 10277085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10277257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391dd0", "tid": 35568, "ts": 10277388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10277560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391a90", "tid": 35568, "ts": 10277691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10277864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03918f0", "tid": 35568, "ts": 10278057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10278289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fe20", "tid": 35568, "ts": 10278425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10278599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390b20", "tid": 35568, "ts": 10278732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10278905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390710", "tid": 35568, "ts": 10279064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10279237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fef0", "tid": 35568, "ts": 10279370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10279545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391c30", "tid": 35568, "ts": 10279676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10279849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03921e0", "tid": 35568, "ts": 10280007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10280183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392450", "tid": 35568, "ts": 10280315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10280488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03907e0", "tid": 35568, "ts": 10280620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10280796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f600", "tid": 35568, "ts": 10280928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10281103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392520", "tid": 35568, "ts": 10281234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10281408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390230", "tid": 35568, "ts": 10281538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10281711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390bf0", "tid": 35568, "ts": 10281842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10282060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390cc0", "tid": 35568, "ts": 10282192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10282367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f940", "tid": 35568, "ts": 10282501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10282675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fae0", "tid": 35568, "ts": 10282821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fa10", "tid": 35568, "ts": 10283142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fc80", "tid": 35568, "ts": 10283446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390160", "tid": 35568, "ts": 10283751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ffc0", "tid": 35568, "ts": 10284059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10284233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390090", "tid": 35568, "ts": 10284364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10284538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390570", "tid": 35568, "ts": 10284670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10284842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395b90", "tid": 35568, "ts": 10284974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10285147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393490", "tid": 35568, "ts": 10285278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10285453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394670", "tid": 35568, "ts": 10285585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10285770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03944d0", "tid": 35568, "ts": 10285945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10286117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395850", "tid": 35568, "ts": 10286248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10286421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395370", "tid": 35568, "ts": 10286553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10286726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393a40", "tid": 35568, "ts": 10286858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03940c0", "tid": 35568, "ts": 10287162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03951d0", "tid": 35568, "ts": 10287466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395440", "tid": 35568, "ts": 10287770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393b10", "tid": 35568, "ts": 10288073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10288246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394190", "tid": 35568, "ts": 10288376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10288549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395510", "tid": 35568, "ts": 10288680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10288854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394a80", "tid": 35568, "ts": 10288984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10289157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394b50", "tid": 35568, "ts": 10289289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10289462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394330", "tid": 35568, "ts": 10289593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10289766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393be0", "tid": 35568, "ts": 10289897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394e90", "tid": 35568, "ts": 10290202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393150", "tid": 35568, "ts": 10290505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394810", "tid": 35568, "ts": 10290809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393700", "tid": 35568, "ts": 10291113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10291286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395100", "tid": 35568, "ts": 10291418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10291591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393cb0", "tid": 35568, "ts": 10291721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10291894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394260", "tid": 35568, "ts": 10292025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10292197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393d80", "tid": 35568, "ts": 10292328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10292501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393560", "tid": 35568, "ts": 10292632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10292804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392ad0", "tid": 35568, "ts": 10292936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10293108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395920", "tid": 35568, "ts": 10293239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10293412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392fb0", "tid": 35568, "ts": 10293543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10293868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393630", "tid": 35568, "ts": 10294002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10294176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392e10", "tid": 35568, "ts": 10294307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10294481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03937d0", "tid": 35568, "ts": 10294738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10294911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394400", "tid": 35568, "ts": 10295043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10295217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392ee0", "tid": 35568, "ts": 10295348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10295522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03948e0", "tid": 35568, "ts": 10295652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10295825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394740", "tid": 35568, "ts": 10295957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10296130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03932f0", "tid": 35568, "ts": 10296261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10296433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03945a0", "tid": 35568, "ts": 10296565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10296739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03949b0", "tid": 35568, "ts": 10296870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03933c0", "tid": 35568, "ts": 10297175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394c20", "tid": 35568, "ts": 10297479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393e50", "tid": 35568, "ts": 10297783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393f20", "tid": 35568, "ts": 10298087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10298259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03955e0", "tid": 35568, "ts": 10298390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10298564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393970", "tid": 35568, "ts": 10298696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10298869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394cf0", "tid": 35568, "ts": 10299000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10299173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03938a0", "tid": 35568, "ts": 10299303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10299476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394dc0", "tid": 35568, "ts": 10299607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10299780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392c70", "tid": 35568, "ts": 10299910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393ff0", "tid": 35568, "ts": 10300215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394f60", "tid": 35568, "ts": 10300519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395030", "tid": 35568, "ts": 10300822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392ba0", "tid": 35568, "ts": 10301125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10301297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395780", "tid": 35568, "ts": 10301427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10301623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03952a0", "tid": 35568, "ts": 10301758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10301931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03956b0", "tid": 35568, "ts": 10302061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10302234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03959f0", "tid": 35568, "ts": 10302364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10302536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395ac0", "tid": 35568, "ts": 10302666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10302840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395c60", "tid": 35568, "ts": 10302970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10303142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392930", "tid": 35568, "ts": 10303273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10303445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392a00", "tid": 35568, "ts": 10303576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10303749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392d40", "tid": 35568, "ts": 10303879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393080", "tid": 35568, "ts": 10304182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393220", "tid": 35568, "ts": 10304485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397b40", "tid": 35568, "ts": 10304787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396ca0", "tid": 35568, "ts": 10305090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10305264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397e80", "tid": 35568, "ts": 10305395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10305568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395e00", "tid": 35568, "ts": 10305699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10305871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397c10", "tid": 35568, "ts": 10306002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10306175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03966f0", "tid": 35568, "ts": 10306305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10306479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03985d0", "tid": 35568, "ts": 10306610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10306784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398d20", "tid": 35568, "ts": 10306915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396210", "tid": 35568, "ts": 10307218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396b00", "tid": 35568, "ts": 10307521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397730", "tid": 35568, "ts": 10307824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397ce0", "tid": 35568, "ts": 10308126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10308297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395ed0", "tid": 35568, "ts": 10308429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10308601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398840", "tid": 35568, "ts": 10308732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10308905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398f90", "tid": 35568, "ts": 10309036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10309244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03980f0", "tid": 35568, "ts": 10309388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10309675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396a30", "tid": 35568, "ts": 10309832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10310100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397250", "tid": 35568, "ts": 10310232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10310405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397f50", "tid": 35568, "ts": 10310536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10310708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03967c0", "tid": 35568, "ts": 10310840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03974c0", "tid": 35568, "ts": 10311144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398910", "tid": 35568, "ts": 10311448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398430", "tid": 35568, "ts": 10311752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397db0", "tid": 35568, "ts": 10312055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10312227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396890", "tid": 35568, "ts": 10312358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10312530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395fa0", "tid": 35568, "ts": 10312661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10312833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396960", "tid": 35568, "ts": 10312963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10313137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397660", "tid": 35568, "ts": 10313267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10313440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398c50", "tid": 35568, "ts": 10313570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10313743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396bd0", "tid": 35568, "ts": 10313873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397320", "tid": 35568, "ts": 10314177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03973f0", "tid": 35568, "ts": 10314479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397590", "tid": 35568, "ts": 10314782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396d70", "tid": 35568, "ts": 10315084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10315257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396e40", "tid": 35568, "ts": 10315388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10315560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398df0", "tid": 35568, "ts": 10315706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10315879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397800", "tid": 35568, "ts": 10316010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10316182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398500", "tid": 35568, "ts": 10316313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10316486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03989e0", "tid": 35568, "ts": 10316616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10316789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398ec0", "tid": 35568, "ts": 10316920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10317092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396f10", "tid": 35568, "ts": 10317222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10317395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398ab0", "tid": 35568, "ts": 10317525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10317698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03978d0", "tid": 35568, "ts": 10317829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396550", "tid": 35568, "ts": 10318132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399060", "tid": 35568, "ts": 10318435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03979a0", "tid": 35568, "ts": 10318767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398770", "tid": 35568, "ts": 10319072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10319245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396fe0", "tid": 35568, "ts": 10319375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10319592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398b80", "tid": 35568, "ts": 10319724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10319897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397a70", "tid": 35568, "ts": 10320028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10320201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03986a0", "tid": 35568, "ts": 10320332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10320505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398020", "tid": 35568, "ts": 10320636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10320808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03981c0", "tid": 35568, "ts": 10320939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10321111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03970b0", "tid": 35568, "ts": 10321241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10321413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396070", "tid": 35568, "ts": 10321544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10321717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397180", "tid": 35568, "ts": 10321848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398290", "tid": 35568, "ts": 10322151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398360", "tid": 35568, "ts": 10322453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395d30", "tid": 35568, "ts": 10322756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396140", "tid": 35568, "ts": 10323059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10323233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03962e0", "tid": 35568, "ts": 10323364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10323536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03963b0", "tid": 35568, "ts": 10323667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10323841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396620", "tid": 35568, "ts": 10323971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10324144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396480", "tid": 35568, "ts": 10324275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10324446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c2c0", "tid": 35568, "ts": 10324576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10324750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b4f0", "tid": 35568, "ts": 10325017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10325190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a0a0", "tid": 35568, "ts": 10325321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10325494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399130", "tid": 35568, "ts": 10325624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10325796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039acd0", "tid": 35568, "ts": 10325927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10326100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a580", "tid": 35568, "ts": 10326231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10326404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a240", "tid": 35568, "ts": 10326534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10326706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a720", "tid": 35568, "ts": 10326837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a170", "tid": 35568, "ts": 10327141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399d60", "tid": 35568, "ts": 10327445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c1f0", "tid": 35568, "ts": 10327747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399e30", "tid": 35568, "ts": 10328050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10328223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039af40", "tid": 35568, "ts": 10328354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10328526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b010", "tid": 35568, "ts": 10328657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10328830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ada0", "tid": 35568, "ts": 10328962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10329133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c050", "tid": 35568, "ts": 10329266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10329439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a310", "tid": 35568, "ts": 10329569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10329741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a3e0", "tid": 35568, "ts": 10329872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a4b0", "tid": 35568, "ts": 10330175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a7f0", "tid": 35568, "ts": 10330478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b0e0", "tid": 35568, "ts": 10330781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399f00", "tid": 35568, "ts": 10331085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10331258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ae70", "tid": 35568, "ts": 10331389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10331561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b900", "tid": 35568, "ts": 10331692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10331864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a650", "tid": 35568, "ts": 10331994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10332166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399fd0", "tid": 35568, "ts": 10332298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10332471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a8c0", "tid": 35568, "ts": 10332602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10332775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b1b0", "tid": 35568, "ts": 10332905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a990", "tid": 35568, "ts": 10333209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039aa60", "tid": 35568, "ts": 10333511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ab30", "tid": 35568, "ts": 10333815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ac00", "tid": 35568, "ts": 10334117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10334290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bd10", "tid": 35568, "ts": 10334421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10334594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b5c0", "tid": 35568, "ts": 10334725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10334897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c390", "tid": 35568, "ts": 10335028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10335200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b280", "tid": 35568, "ts": 10335374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10335546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c460", "tid": 35568, "ts": 10335677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10335849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c120", "tid": 35568, "ts": 10335980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10336152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399c90", "tid": 35568, "ts": 10336283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10336454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b350", "tid": 35568, "ts": 10336585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10336757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b830", "tid": 35568, "ts": 10336887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b690", "tid": 35568, "ts": 10337189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b420", "tid": 35568, "ts": 10337492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399200", "tid": 35568, "ts": 10337796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03992d0", "tid": 35568, "ts": 10338100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10338273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b760", "tid": 35568, "ts": 10338403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10338576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399a20", "tid": 35568, "ts": 10338707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10338879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b9d0", "tid": 35568, "ts": 10339067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10339239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039beb0", "tid": 35568, "ts": 10339370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10339542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039baa0", "tid": 35568, "ts": 10339672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10339845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bb70", "tid": 35568, "ts": 10339975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10340148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399af0", "tid": 35568, "ts": 10340278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10340501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03993a0", "tid": 35568, "ts": 10340648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10340822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bc40", "tid": 35568, "ts": 10340953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10341126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bde0", "tid": 35568, "ts": 10341257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10341429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bf80", "tid": 35568, "ts": 10341561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10341734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03996e0", "tid": 35568, "ts": 10341864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399470", "tid": 35568, "ts": 10342166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399bc0", "tid": 35568, "ts": 10342470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399540", "tid": 35568, "ts": 10342773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399610", "tid": 35568, "ts": 10343076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10343249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03997b0", "tid": 35568, "ts": 10343379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10343552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399880", "tid": 35568, "ts": 10343683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10343854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399950", "tid": 35568, "ts": 10343985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10344158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d8b0", "tid": 35568, "ts": 10344289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10344461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c600", "tid": 35568, "ts": 10344592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10344765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d230", "tid": 35568, "ts": 10344896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e750", "tid": 35568, "ts": 10345199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f380", "tid": 35568, "ts": 10345502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039df30", "tid": 35568, "ts": 10345805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039da50", "tid": 35568, "ts": 10346111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10346283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e410", "tid": 35568, "ts": 10346414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10346587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039db20", "tid": 35568, "ts": 10346717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10346889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039dcc0", "tid": 35568, "ts": 10347020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10347193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d160", "tid": 35568, "ts": 10347324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10347496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ce20", "tid": 35568, "ts": 10347626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10347800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e5b0", "tid": 35568, "ts": 10347930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10348104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ca10", "tid": 35568, "ts": 10348235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10348407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d300", "tid": 35568, "ts": 10348537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10348710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f1e0", "tid": 35568, "ts": 10348840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f450", "tid": 35568, "ts": 10349143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f520", "tid": 35568, "ts": 10349446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e000", "tid": 35568, "ts": 10349749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f110", "tid": 35568, "ts": 10350053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10350225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cef0", "tid": 35568, "ts": 10350355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10350527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ef70", "tid": 35568, "ts": 10350658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10350830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e0d0", "tid": 35568, "ts": 10350961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10351133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ed00", "tid": 35568, "ts": 10351263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10351434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e1a0", "tid": 35568, "ts": 10351589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10351762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039edd0", "tid": 35568, "ts": 10351894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039dd90", "tid": 35568, "ts": 10352197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cfc0", "tid": 35568, "ts": 10352501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ea90", "tid": 35568, "ts": 10352805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e4e0", "tid": 35568, "ts": 10353109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10353282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d710", "tid": 35568, "ts": 10353413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10353586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e680", "tid": 35568, "ts": 10353716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10353889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d3d0", "tid": 35568, "ts": 10354019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10354191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c6d0", "tid": 35568, "ts": 10354322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10354494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039eb60", "tid": 35568, "ts": 10354625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10354796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ec30", "tid": 35568, "ts": 10354927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10355099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f860", "tid": 35568, "ts": 10355230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10355402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e270", "tid": 35568, "ts": 10355533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10355706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d570", "tid": 35568, "ts": 10355837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10356008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f6c0", "tid": 35568, "ts": 10356224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10356398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e8f0", "tid": 35568, "ts": 10356531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10356705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039eea0", "tid": 35568, "ts": 10356837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f2b0", "tid": 35568, "ts": 10357141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f040", "tid": 35568, "ts": 10357446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c530", "tid": 35568, "ts": 10357748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cbb0", "tid": 35568, "ts": 10358053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10358225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c7a0", "tid": 35568, "ts": 10358356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10358528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f5f0", "tid": 35568, "ts": 10358659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10358831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e340", "tid": 35568, "ts": 10358961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10359133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e820", "tid": 35568, "ts": 10359264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10359437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e9c0", "tid": 35568, "ts": 10359567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10359740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c870", "tid": 35568, "ts": 10359871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d640", "tid": 35568, "ts": 10360174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f790", "tid": 35568, "ts": 10360477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d090", "tid": 35568, "ts": 10360781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d4a0", "tid": 35568, "ts": 10361083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10361255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d7e0", "tid": 35568, "ts": 10361386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10361559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d980", "tid": 35568, "ts": 10361690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10361862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c940", "tid": 35568, "ts": 10361993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10362167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039dbf0", "tid": 35568, "ts": 10362297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10362469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cae0", "tid": 35568, "ts": 10362599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10362772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039de60", "tid": 35568, "ts": 10362902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cc80", "tid": 35568, "ts": 10363204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cd50", "tid": 35568, "ts": 10363507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0700", "tid": 35568, "ts": 10363811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a26b0", "tid": 35568, "ts": 10364114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10364287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a19b0", "tid": 35568, "ts": 10364481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10364654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a21d0", "tid": 35568, "ts": 10364785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10364958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2b90", "tid": 35568, "ts": 10365088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10365261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1670", "tid": 35568, "ts": 10365391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10365565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a15a0", "tid": 35568, "ts": 10365696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10365869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1e90", "tid": 35568, "ts": 10365999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10366172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0e50", "tid": 35568, "ts": 10366304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10366476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2780", "tid": 35568, "ts": 10366607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10366779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1810", "tid": 35568, "ts": 10366910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1740", "tid": 35568, "ts": 10367213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1a80", "tid": 35568, "ts": 10367516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fa00", "tid": 35568, "ts": 10367819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2510", "tid": 35568, "ts": 10368123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10368296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fad0", "tid": 35568, "ts": 10368427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10368599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2c60", "tid": 35568, "ts": 10368730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10368945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0630", "tid": 35568, "ts": 10369076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10369248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ffb0", "tid": 35568, "ts": 10369378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10369550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2920", "tid": 35568, "ts": 10369722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10369895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1f60", "tid": 35568, "ts": 10370025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10370199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2030", "tid": 35568, "ts": 10370328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10370500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0080", "tid": 35568, "ts": 10370631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10370803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a25e0", "tid": 35568, "ts": 10370934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10371105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0560", "tid": 35568, "ts": 10371235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10371408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1400", "tid": 35568, "ts": 10371538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10371778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a29f0", "tid": 35568, "ts": 10371998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10372171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0cb0", "tid": 35568, "ts": 10372301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10372475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a18e0", "tid": 35568, "ts": 10372606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10372779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a02f0", "tid": 35568, "ts": 10372909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f930", "tid": 35568, "ts": 10373211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1b50", "tid": 35568, "ts": 10373514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2ac0", "tid": 35568, "ts": 10373817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fba0", "tid": 35568, "ts": 10374120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10374293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2850", "tid": 35568, "ts": 10374423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10374595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2100", "tid": 35568, "ts": 10374726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10374899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2440", "tid": 35568, "ts": 10375029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10375201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fc70", "tid": 35568, "ts": 10375331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10375505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1c20", "tid": 35568, "ts": 10375635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10375808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a22a0", "tid": 35568, "ts": 10375938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10376111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fd40", "tid": 35568, "ts": 10376242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10376415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0b10", "tid": 35568, "ts": 10376545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10376718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fe10", "tid": 35568, "ts": 10376862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1cf0", "tid": 35568, "ts": 10377165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0be0", "tid": 35568, "ts": 10377468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2370", "tid": 35568, "ts": 10377771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0f20", "tid": 35568, "ts": 10378073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10378246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1dc0", "tid": 35568, "ts": 10378376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10378548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fee0", "tid": 35568, "ts": 10378678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10378851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0150", "tid": 35568, "ts": 10378981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10379152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0a40", "tid": 35568, "ts": 10379282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10379454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a07d0", "tid": 35568, "ts": 10379584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10379756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a08a0", "tid": 35568, "ts": 10379886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0220", "tid": 35568, "ts": 10380189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a03c0", "tid": 35568, "ts": 10380491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0970", "tid": 35568, "ts": 10380794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0490", "tid": 35568, "ts": 10381096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10381268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0d80", "tid": 35568, "ts": 10381397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10381571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0ff0", "tid": 35568, "ts": 10381701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10381873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a10c0", "tid": 35568, "ts": 10382003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10382176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1190", "tid": 35568, "ts": 10382306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10382479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1260", "tid": 35568, "ts": 10382609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10382781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1330", "tid": 35568, "ts": 10382911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a14d0", "tid": 35568, "ts": 10383214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3fe0", "tid": 35568, "ts": 10383515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5770", "tid": 35568, "ts": 10383818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a36f0", "tid": 35568, "ts": 10384122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10384294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5500", "tid": 35568, "ts": 10384425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10384597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5ab0", "tid": 35568, "ts": 10384727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10384899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a50f0", "tid": 35568, "ts": 10385029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10385202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3960", "tid": 35568, "ts": 10385332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10385504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5df0", "tid": 35568, "ts": 10385634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10385807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5d20", "tid": 35568, "ts": 10385938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10386111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a40b0", "tid": 35568, "ts": 10386240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10386412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a37c0", "tid": 35568, "ts": 10386542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10386715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a44c0", "tid": 35568, "ts": 10386846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a55d0", "tid": 35568, "ts": 10387149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5020", "tid": 35568, "ts": 10387461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a51c0", "tid": 35568, "ts": 10387763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a56a0", "tid": 35568, "ts": 10388065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10388238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5f90", "tid": 35568, "ts": 10388368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10388541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2d30", "tid": 35568, "ts": 10388670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10388843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4800", "tid": 35568, "ts": 10388974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10389146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4590", "tid": 35568, "ts": 10389275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10389447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4f50", "tid": 35568, "ts": 10389577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10389749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a48d0", "tid": 35568, "ts": 10389879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3890", "tid": 35568, "ts": 10390180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4660", "tid": 35568, "ts": 10390483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5840", "tid": 35568, "ts": 10390787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6060", "tid": 35568, "ts": 10391090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10391310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5430", "tid": 35568, "ts": 10391441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10391614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3a30", "tid": 35568, "ts": 10391744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10391917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4c10", "tid": 35568, "ts": 10392047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10392219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5910", "tid": 35568, "ts": 10392349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10392521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2e00", "tid": 35568, "ts": 10392651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10392822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2ed0", "tid": 35568, "ts": 10392953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10393124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5b80", "tid": 35568, "ts": 10393254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10393426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4ce0", "tid": 35568, "ts": 10393555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10393728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4db0", "tid": 35568, "ts": 10393858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5ec0", "tid": 35568, "ts": 10394161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3620", "tid": 35568, "ts": 10394463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4e80", "tid": 35568, "ts": 10394789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4730", "tid": 35568, "ts": 10395093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10395266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3f10", "tid": 35568, "ts": 10395396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10395568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4250", "tid": 35568, "ts": 10395698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10395871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a59e0", "tid": 35568, "ts": 10396001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10396174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5290", "tid": 35568, "ts": 10396304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10396477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3bd0", "tid": 35568, "ts": 10396607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10396779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2fa0", "tid": 35568, "ts": 10396909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4a70", "tid": 35568, "ts": 10397212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a49a0", "tid": 35568, "ts": 10397515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5c50", "tid": 35568, "ts": 10397817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5360", "tid": 35568, "ts": 10398120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10398293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3070", "tid": 35568, "ts": 10398423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10398595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3b00", "tid": 35568, "ts": 10398725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10398898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3140", "tid": 35568, "ts": 10399028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10399201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3e40", "tid": 35568, "ts": 10399331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10399504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4180", "tid": 35568, "ts": 10399634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10399806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4320", "tid": 35568, "ts": 10399936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10400108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4b40", "tid": 35568, "ts": 10400238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10400410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3210", "tid": 35568, "ts": 10400540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10400712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a32e0", "tid": 35568, "ts": 10400842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a33b0", "tid": 35568, "ts": 10401145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a43f0", "tid": 35568, "ts": 10401447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3480", "tid": 35568, "ts": 10401750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3ca0", "tid": 35568, "ts": 10402053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10402227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3550", "tid": 35568, "ts": 10402401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10402574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3d70", "tid": 35568, "ts": 10402704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10402877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6e30", "tid": 35568, "ts": 10403069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10403242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7240", "tid": 35568, "ts": 10403434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10403607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8760", "tid": 35568, "ts": 10403738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10403911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7990", "tid": 35568, "ts": 10404042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10404214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8de0", "tid": 35568, "ts": 10404344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10404517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a62d0", "tid": 35568, "ts": 10404648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10404821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8d10", "tid": 35568, "ts": 10404952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10405125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a74b0", "tid": 35568, "ts": 10405255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10405427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8010", "tid": 35568, "ts": 10405557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10405730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7f40", "tid": 35568, "ts": 10405860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7cd0", "tid": 35568, "ts": 10406164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a91f0", "tid": 35568, "ts": 10406468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9050", "tid": 35568, "ts": 10406769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8b70", "tid": 35568, "ts": 10407073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10407245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8420", "tid": 35568, "ts": 10407376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10407548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a84f0", "tid": 35568, "ts": 10407679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10407852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6d60", "tid": 35568, "ts": 10407983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10408155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8aa0", "tid": 35568, "ts": 10408285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10408459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6f00", "tid": 35568, "ts": 10408646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10408819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9120", "tid": 35568, "ts": 10408949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10409121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8690", "tid": 35568, "ts": 10409251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10409424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9390", "tid": 35568, "ts": 10409554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10409728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8830", "tid": 35568, "ts": 10409859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6130", "tid": 35568, "ts": 10410162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8900", "tid": 35568, "ts": 10410464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a78c0", "tid": 35568, "ts": 10410767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6fd0", "tid": 35568, "ts": 10411071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10411243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a80e0", "tid": 35568, "ts": 10411373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10411546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a92c0", "tid": 35568, "ts": 10411677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10411848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6200", "tid": 35568, "ts": 10411979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10412151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a67b0", "tid": 35568, "ts": 10412282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10412454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a89d0", "tid": 35568, "ts": 10412584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10412757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6610", "tid": 35568, "ts": 10412887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a70a0", "tid": 35568, "ts": 10413189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7310", "tid": 35568, "ts": 10413492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a63a0", "tid": 35568, "ts": 10413794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8c40", "tid": 35568, "ts": 10414096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10414269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6470", "tid": 35568, "ts": 10414399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10414572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7170", "tid": 35568, "ts": 10414703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10414876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6af0", "tid": 35568, "ts": 10415006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10415179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8eb0", "tid": 35568, "ts": 10415310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10415483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8f80", "tid": 35568, "ts": 10415613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10415786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7a60", "tid": 35568, "ts": 10415917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10416091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a73e0", "tid": 35568, "ts": 10416222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10416394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8350", "tid": 35568, "ts": 10416525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10416698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a85c0", "tid": 35568, "ts": 10416828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a81b0", "tid": 35568, "ts": 10417131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9460", "tid": 35568, "ts": 10417432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6540", "tid": 35568, "ts": 10417734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8280", "tid": 35568, "ts": 10418037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10418209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6bc0", "tid": 35568, "ts": 10418340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10418512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a66e0", "tid": 35568, "ts": 10418759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10419083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6880", "tid": 35568, "ts": 10419376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10419576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7da0", "tid": 35568, "ts": 10419882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10420089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6c90", "tid": 35568, "ts": 10420220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10420392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6950", "tid": 35568, "ts": 10420522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10420768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6a20", "tid": 35568, "ts": 10420906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7580", "tid": 35568, "ts": 10421209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7650", "tid": 35568, "ts": 10421514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7720", "tid": 35568, "ts": 10421816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7b30", "tid": 35568, "ts": 10422119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10422291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a77f0", "tid": 35568, "ts": 10422421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10422593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7c00", "tid": 35568, "ts": 10422723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10422896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7e70", "tid": 35568, "ts": 10423026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10423198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9530", "tid": 35568, "ts": 10423328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10423501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa8b0", "tid": 35568, "ts": 10423631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10423804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aae60", "tid": 35568, "ts": 10423933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10424106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac6c0", "tid": 35568, "ts": 10424236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10424408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac380", "tid": 35568, "ts": 10424539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10424711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aaa50", "tid": 35568, "ts": 10424841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab270", "tid": 35568, "ts": 10425145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab1a0", "tid": 35568, "ts": 10425447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab340", "tid": 35568, "ts": 10425750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa4a0", "tid": 35568, "ts": 10426053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10426226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa980", "tid": 35568, "ts": 10426357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10426529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aaf30", "tid": 35568, "ts": 10426684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10426856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abc30", "tid": 35568, "ts": 10426986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10427159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aba90", "tid": 35568, "ts": 10427290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10427463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab0d0", "tid": 35568, "ts": 10427594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10427766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abb60", "tid": 35568, "ts": 10427896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa7e0", "tid": 35568, "ts": 10428199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9ef0", "tid": 35568, "ts": 10428502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abf70", "tid": 35568, "ts": 10428805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abea0", "tid": 35568, "ts": 10429108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10429281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab410", "tid": 35568, "ts": 10429412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10429585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab4e0", "tid": 35568, "ts": 10429716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10429888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aab20", "tid": 35568, "ts": 10430019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10430190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac040", "tid": 35568, "ts": 10430320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10430492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab5b0", "tid": 35568, "ts": 10430623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10430796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac790", "tid": 35568, "ts": 10430926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10431098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa570", "tid": 35568, "ts": 10431229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10431402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac860", "tid": 35568, "ts": 10431533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10431706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa640", "tid": 35568, "ts": 10431836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9600", "tid": 35568, "ts": 10432140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab680", "tid": 35568, "ts": 10432444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab750", "tid": 35568, "ts": 10432746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac520", "tid": 35568, "ts": 10433047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10433219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abd00", "tid": 35568, "ts": 10433351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10433525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa230", "tid": 35568, "ts": 10433656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10433828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9940", "tid": 35568, "ts": 10433959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10434132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab820", "tid": 35568, "ts": 10434330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10434504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9e20", "tid": 35568, "ts": 10434634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10434808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aad90", "tid": 35568, "ts": 10434939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10435112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac2b0", "tid": 35568, "ts": 10435243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10435415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a96d0", "tid": 35568, "ts": 10435545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10435718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9ae0", "tid": 35568, "ts": 10435848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac1e0", "tid": 35568, "ts": 10436151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa300", "tid": 35568, "ts": 10436494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aabf0", "tid": 35568, "ts": 10436799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa090", "tid": 35568, "ts": 10437101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10437274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abdd0", "tid": 35568, "ts": 10437405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10437577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac450", "tid": 35568, "ts": 10437708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10437881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab000", "tid": 35568, "ts": 10438011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10438183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac110", "tid": 35568, "ts": 10438313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10438487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab8f0", "tid": 35568, "ts": 10438617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10438789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab9c0", "tid": 35568, "ts": 10438920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10439092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac5f0", "tid": 35568, "ts": 10439223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10439396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9fc0", "tid": 35568, "ts": 10439526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10439697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a97a0", "tid": 35568, "ts": 10439827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9870", "tid": 35568, "ts": 10440132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9a10", "tid": 35568, "ts": 10440434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9bb0", "tid": 35568, "ts": 10440735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9c80", "tid": 35568, "ts": 10441039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10441211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa160", "tid": 35568, "ts": 10441342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10441514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aacc0", "tid": 35568, "ts": 10441645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10441817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa710", "tid": 35568, "ts": 10441948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10442120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9d50", "tid": 35568, "ts": 10442252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10442424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa3d0", "tid": 35568, "ts": 10442554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10442727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03afb90", "tid": 35568, "ts": 10442857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ada40", "tid": 35568, "ts": 10443159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af780", "tid": 35568, "ts": 10443463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ade50", "tid": 35568, "ts": 10443767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af100", "tid": 35568, "ts": 10444070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10444245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae260", "tid": 35568, "ts": 10444376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10444549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad630", "tid": 35568, "ts": 10444681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10444853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad700", "tid": 35568, "ts": 10444984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10445157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03add80", "tid": 35568, "ts": 10445288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10445461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad7d0", "tid": 35568, "ts": 10445592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10445763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aef60", "tid": 35568, "ts": 10445894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adf20", "tid": 35568, "ts": 10446197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad8a0", "tid": 35568, "ts": 10446499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af030", "tid": 35568, "ts": 10446803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af1d0", "tid": 35568, "ts": 10447105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10447278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03afc60", "tid": 35568, "ts": 10447408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10447581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af6b0", "tid": 35568, "ts": 10447711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10447883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aecf0", "tid": 35568, "ts": 10448014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10448186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad560", "tid": 35568, "ts": 10448317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10448489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad220", "tid": 35568, "ts": 10448619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10448791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae9b0", "tid": 35568, "ts": 10448922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10449095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af9f0", "tid": 35568, "ts": 10449226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10449398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acc70", "tid": 35568, "ts": 10449528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10449701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acd40", "tid": 35568, "ts": 10449885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aea80", "tid": 35568, "ts": 10450199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af2a0", "tid": 35568, "ts": 10450503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae190", "tid": 35568, "ts": 10450806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad970", "tid": 35568, "ts": 10451109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10451282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aee90", "tid": 35568, "ts": 10451413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10451586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adbe0", "tid": 35568, "ts": 10451716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10451889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adb10", "tid": 35568, "ts": 10452020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10452192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aeb50", "tid": 35568, "ts": 10452322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10452494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae330", "tid": 35568, "ts": 10452625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10452798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adcb0", "tid": 35568, "ts": 10452929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10453102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adff0", "tid": 35568, "ts": 10453233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10453406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae740", "tid": 35568, "ts": 10453537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10453709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad2f0", "tid": 35568, "ts": 10453840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aec20", "tid": 35568, "ts": 10454143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae0c0", "tid": 35568, "ts": 10454445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ace10", "tid": 35568, "ts": 10454748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad3c0", "tid": 35568, "ts": 10455051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10455224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae400", "tid": 35568, "ts": 10455354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10455527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae4d0", "tid": 35568, "ts": 10455657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10455830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af370", "tid": 35568, "ts": 10455960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10456132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad490", "tid": 35568, "ts": 10456263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10456435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af440", "tid": 35568, "ts": 10456565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10456737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae5a0", "tid": 35568, "ts": 10456867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae670", "tid": 35568, "ts": 10457170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae810", "tid": 35568, "ts": 10457471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae8e0", "tid": 35568, "ts": 10457773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af510", "tid": 35568, "ts": 10458077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10458251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aedc0", "tid": 35568, "ts": 10458382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10458554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af5e0", "tid": 35568, "ts": 10458685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10458857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af850", "tid": 35568, "ts": 10458988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10459162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af920", "tid": 35568, "ts": 10459293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10459466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03afac0", "tid": 35568, "ts": 10459597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10459770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac930", "tid": 35568, "ts": 10459901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acad0", "tid": 35568, "ts": 10460205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aca00", "tid": 35568, "ts": 10460510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acba0", "tid": 35568, "ts": 10460813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acee0", "tid": 35568, "ts": 10461116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10461288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acfb0", "tid": 35568, "ts": 10461419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10461591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad080", "tid": 35568, "ts": 10461721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10461894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad150", "tid": 35568, "ts": 10462025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10462198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0bd0", "tid": 35568, "ts": 10462328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10462500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1a70", "tid": 35568, "ts": 10462631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10462803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b2b80", "tid": 35568, "ts": 10462934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10463108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b02e0", "tid": 35568, "ts": 10463240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10463456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b10b0", "tid": 35568, "ts": 10463588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10463763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1b40", "tid": 35568, "ts": 10463894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03affa0", "tid": 35568, "ts": 10464198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0f10", "tid": 35568, "ts": 10464501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1660", "tid": 35568, "ts": 10464804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b13f0", "tid": 35568, "ts": 10465108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10465281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1180", "tid": 35568, "ts": 10465413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10465594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0b00", "tid": 35568, "ts": 10465726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10465898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b2290", "tid": 35568, "ts": 10466029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10466202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0620", "tid": 35568, "ts": 10466333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10466504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1250", "tid": 35568, "ts": 10466635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10466808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b03b0", "tid": 35568, "ts": 10466939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 10467138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 10467238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 10467328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 10467415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac760", "tid": 35568, "ts": 10467502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac420", "tid": 35568, "ts": 10467590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abe70", "tid": 35568, "ts": 10467677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 10467803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac0e0", "tid": 35568, "ts": 10467932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 10468018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac010", "tid": 35568, "ts": 10468105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 10468191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab720", "tid": 35568, "ts": 10468277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 10468363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac5c0", "tid": 35568, "ts": 10468449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 10468536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac900", "tid": 35568, "ts": 10468622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 10468708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 10468795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818aceb0", "tid": 35568, "ts": 10468881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab7f0", "tid": 35568, "ts": 10468967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abc00", "tid": 35568, "ts": 10469053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acc40", "tid": 35568, "ts": 10469139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac690", "tid": 35568, "ts": 10469225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab240", "tid": 35568, "ts": 10469312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab4b0", "tid": 35568, "ts": 10469398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab3e0", "tid": 35568, "ts": 10469484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acf80", "tid": 35568, "ts": 10469570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acb70", "tid": 35568, "ts": 10469656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acde0", "tid": 35568, "ts": 10469741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818aba60", "tid": 35568, "ts": 10469826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab650", "tid": 35568, "ts": 10469912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac280", "tid": 35568, "ts": 10470000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 10470128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 10470217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 10470303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d804f0", "tid": 35568, "ts": 10470389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 10470475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d800", "tid": 35568, "ts": 10470561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 10470647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 10470733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 10470818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157df50", "tid": 35568, "ts": 10470904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 10470990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 10471076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d0b0", "tid": 35568, "ts": 10471162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ec50", "tid": 35568, "ts": 10471247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 10471333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d180", "tid": 35568, "ts": 10471419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ef90", "tid": 35568, "ts": 10471504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e910", "tid": 35568, "ts": 10471590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ed20", "tid": 35568, "ts": 10471675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e840", "tid": 35568, "ts": 10471761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eec0", "tid": 35568, "ts": 10471846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e9e0", "tid": 35568, "ts": 10471931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e430", "tid": 35568, "ts": 10472017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d250", "tid": 35568, "ts": 10472103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eab0", "tid": 35568, "ts": 10472188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e020", "tid": 35568, "ts": 10472273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157edf0", "tid": 35568, "ts": 10472359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d660", "tid": 35568, "ts": 10472444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157da70", "tid": 35568, "ts": 10472530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e290", "tid": 35568, "ts": 10472615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d320", "tid": 35568, "ts": 10472701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e500", "tid": 35568, "ts": 10472785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e6a0", "tid": 35568, "ts": 10472871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f580", "tid": 35568, "ts": 10472957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f4b0", "tid": 35568, "ts": 10473042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 10473128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 10473213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 10473298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 10473384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 10473469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 10473555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958310", "tid": 35568, "ts": 10473640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 10473726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 10473811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869595c0", "tid": 35568, "ts": 10473896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 10473982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 10474067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958170", "tid": 35568, "ts": 10474152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 10474238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958580", "tid": 35568, "ts": 10474323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869587f0", "tid": 35568, "ts": 10474408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 10474494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 10474579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959830", "tid": 35568, "ts": 10474677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958cd0", "tid": 35568, "ts": 10474763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869594f0", "tid": 35568, "ts": 10474849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869588c0", "tid": 35568, "ts": 10474936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959010", "tid": 35568, "ts": 10475022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959350", "tid": 35568, "ts": 10475107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959280", "tid": 35568, "ts": 10475208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869599d0", "tid": 35568, "ts": 10475294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958a60", "tid": 35568, "ts": 10475379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869583e0", "tid": 35568, "ts": 10475465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959b70", "tid": 35568, "ts": 10475550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959de0", "tid": 35568, "ts": 10475636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959420", "tid": 35568, "ts": 10475721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958b30", "tid": 35568, "ts": 10475806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869590e0", "tid": 35568, "ts": 10475891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958990", "tid": 35568, "ts": 10475976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959d10", "tid": 35568, "ts": 10476061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7ff40", "tid": 35568, "ts": 10476147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80de0", "tid": 35568, "ts": 10476232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80900", "tid": 35568, "ts": 10476318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80b70", "tid": 35568, "ts": 10476403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80760", "tid": 35568, "ts": 10476503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80280", "tid": 35568, "ts": 10476590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38170", "tid": 35568, "ts": 10476692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f990", "tid": 35568, "ts": 10476788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 10476891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 10476987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 10477090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80f80", "tid": 35568, "ts": 10477232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80eb0", "tid": 35568, "ts": 10477353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d805c0", "tid": 35568, "ts": 10477474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f650", "tid": 35568, "ts": 10477593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03affa0", "tid": 35568, "ts": 10477681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b02e0", "tid": 35568, "ts": 10477767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1250", "tid": 35568, "ts": 10477852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f8c0", "tid": 35568, "ts": 10477937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b10b0", "tid": 35568, "ts": 10478025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38da0", "tid": 35568, "ts": 10478110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39c40", "tid": 35568, "ts": 10478198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39f80", "tid": 35568, "ts": 10478284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1a70", "tid": 35568, "ts": 10478369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1180", "tid": 35568, "ts": 10478455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 10478540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 10478627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 10478713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad150", "tid": 35568, "ts": 10478799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0620", "tid": 35568, "ts": 10478884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39900", "tid": 35568, "ts": 10478969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39d10", "tid": 35568, "ts": 10479056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d391b0", "tid": 35568, "ts": 10479142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acfb0", "tid": 35568, "ts": 10479227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acba0", "tid": 35568, "ts": 10479311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b2290", "tid": 35568, "ts": 10479396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38b30", "tid": 35568, "ts": 10479482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38240", "tid": 35568, "ts": 10479568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38720", "tid": 35568, "ts": 10479654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acad0", "tid": 35568, "ts": 10479740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03afac0", "tid": 35568, "ts": 10479825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0b00", "tid": 35568, "ts": 10479909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39de0", "tid": 35568, "ts": 10479994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38580", "tid": 35568, "ts": 10480081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39010", "tid": 35568, "ts": 10480167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af850", "tid": 35568, "ts": 10480253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aedc0", "tid": 35568, "ts": 10480337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae8e0", "tid": 35568, "ts": 10480422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae670", "tid": 35568, "ts": 10480507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af440", "tid": 35568, "ts": 10480592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af370", "tid": 35568, "ts": 10480677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae400", "tid": 35568, "ts": 10480762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ace10", "tid": 35568, "ts": 10480846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aec20", "tid": 35568, "ts": 10480931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae740", "tid": 35568, "ts": 10481016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adcb0", "tid": 35568, "ts": 10481182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aeb50", "tid": 35568, "ts": 10481271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adbe0", "tid": 35568, "ts": 10481357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad970", "tid": 35568, "ts": 10481443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af2a0", "tid": 35568, "ts": 10481529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acd40", "tid": 35568, "ts": 10481615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af9f0", "tid": 35568, "ts": 10481700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad220", "tid": 35568, "ts": 10481786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aecf0", "tid": 35568, "ts": 10481872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03afc60", "tid": 35568, "ts": 10481957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af030", "tid": 35568, "ts": 10482043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adf20", "tid": 35568, "ts": 10482129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad7d0", "tid": 35568, "ts": 10482215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad700", "tid": 35568, "ts": 10482301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae260", "tid": 35568, "ts": 10482386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ade50", "tid": 35568, "ts": 10482471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ada40", "tid": 35568, "ts": 10482557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa3d0", "tid": 35568, "ts": 10482643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa710", "tid": 35568, "ts": 10482728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa160", "tid": 35568, "ts": 10482813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9bb0", "tid": 35568, "ts": 10482899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9870", "tid": 35568, "ts": 10482984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9fc0", "tid": 35568, "ts": 10483069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab9c0", "tid": 35568, "ts": 10483155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac110", "tid": 35568, "ts": 10483241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac450", "tid": 35568, "ts": 10483326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa090", "tid": 35568, "ts": 10483411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa300", "tid": 35568, "ts": 10483496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9ae0", "tid": 35568, "ts": 10483582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac2b0", "tid": 35568, "ts": 10483667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9e20", "tid": 35568, "ts": 10483753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9940", "tid": 35568, "ts": 10483838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abd00", "tid": 35568, "ts": 10483924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab750", "tid": 35568, "ts": 10484009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9600", "tid": 35568, "ts": 10484095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac860", "tid": 35568, "ts": 10484180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac790", "tid": 35568, "ts": 10484264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac040", "tid": 35568, "ts": 10484350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab4e0", "tid": 35568, "ts": 10484435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abea0", "tid": 35568, "ts": 10484521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9ef0", "tid": 35568, "ts": 10484606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abb60", "tid": 35568, "ts": 10484691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aba90", "tid": 35568, "ts": 10484776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aaf30", "tid": 35568, "ts": 10484862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa4a0", "tid": 35568, "ts": 10484947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab1a0", "tid": 35568, "ts": 10485033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aaa50", "tid": 35568, "ts": 10485120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac6c0", "tid": 35568, "ts": 10485205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa8b0", "tid": 35568, "ts": 10485292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7e70", "tid": 35568, "ts": 10485377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a77f0", "tid": 35568, "ts": 10485463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7720", "tid": 35568, "ts": 10485549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7580", "tid": 35568, "ts": 10485635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6950", "tid": 35568, "ts": 10485721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7da0", "tid": 35568, "ts": 10485807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a66e0", "tid": 35568, "ts": 10485893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8280", "tid": 35568, "ts": 10485979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9460", "tid": 35568, "ts": 10486065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a85c0", "tid": 35568, "ts": 10486150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a73e0", "tid": 35568, "ts": 10486236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8f80", "tid": 35568, "ts": 10486323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6af0", "tid": 35568, "ts": 10486408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6470", "tid": 35568, "ts": 10486494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a63a0", "tid": 35568, "ts": 10486580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a70a0", "tid": 35568, "ts": 10486666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a89d0", "tid": 35568, "ts": 10486752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6200", "tid": 35568, "ts": 10486838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a80e0", "tid": 35568, "ts": 10486924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a78c0", "tid": 35568, "ts": 10487010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6130", "tid": 35568, "ts": 10487096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9390", "tid": 35568, "ts": 10487182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9120", "tid": 35568, "ts": 10487267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8aa0", "tid": 35568, "ts": 10487353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a84f0", "tid": 35568, "ts": 10487440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8b70", "tid": 35568, "ts": 10487526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a91f0", "tid": 35568, "ts": 10487612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7f40", "tid": 35568, "ts": 10487698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a74b0", "tid": 35568, "ts": 10487784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a62d0", "tid": 35568, "ts": 10487870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7990", "tid": 35568, "ts": 10487955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7240", "tid": 35568, "ts": 10488042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3d70", "tid": 35568, "ts": 10488128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3ca0", "tid": 35568, "ts": 10488214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a43f0", "tid": 35568, "ts": 10488300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a32e0", "tid": 35568, "ts": 10488386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4b40", "tid": 35568, "ts": 10488472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4180", "tid": 35568, "ts": 10488558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3140", "tid": 35568, "ts": 10488644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3070", "tid": 35568, "ts": 10488730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5c50", "tid": 35568, "ts": 10488816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4a70", "tid": 35568, "ts": 10488901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3bd0", "tid": 35568, "ts": 10488987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a59e0", "tid": 35568, "ts": 10489074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3f10", "tid": 35568, "ts": 10489160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4e80", "tid": 35568, "ts": 10489246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5ec0", "tid": 35568, "ts": 10489332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4ce0", "tid": 35568, "ts": 10489418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2ed0", "tid": 35568, "ts": 10489504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5910", "tid": 35568, "ts": 10489590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3a30", "tid": 35568, "ts": 10489676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6060", "tid": 35568, "ts": 10489762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4660", "tid": 35568, "ts": 10489848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a48d0", "tid": 35568, "ts": 10489934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4590", "tid": 35568, "ts": 10490020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2d30", "tid": 35568, "ts": 10490106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a56a0", "tid": 35568, "ts": 10490193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5020", "tid": 35568, "ts": 10490278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a44c0", "tid": 35568, "ts": 10490364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a40b0", "tid": 35568, "ts": 10490450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5df0", "tid": 35568, "ts": 10490535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a50f0", "tid": 35568, "ts": 10490621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5500", "tid": 35568, "ts": 10490707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5770", "tid": 35568, "ts": 10490793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a14d0", "tid": 35568, "ts": 10490879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1260", "tid": 35568, "ts": 10490965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a10c0", "tid": 35568, "ts": 10491051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0d80", "tid": 35568, "ts": 10491137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0970", "tid": 35568, "ts": 10491222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0220", "tid": 35568, "ts": 10491308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a07d0", "tid": 35568, "ts": 10491393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0150", "tid": 35568, "ts": 10491479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1dc0", "tid": 35568, "ts": 10491566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2370", "tid": 35568, "ts": 10491651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1cf0", "tid": 35568, "ts": 10491738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0b10", "tid": 35568, "ts": 10491825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a22a0", "tid": 35568, "ts": 10491911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fc70", "tid": 35568, "ts": 10491998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2100", "tid": 35568, "ts": 10492084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fba0", "tid": 35568, "ts": 10492170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1b50", "tid": 35568, "ts": 10492256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a02f0", "tid": 35568, "ts": 10492342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0cb0", "tid": 35568, "ts": 10492428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1400", "tid": 35568, "ts": 10492515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a25e0", "tid": 35568, "ts": 10492600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2030", "tid": 35568, "ts": 10492686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2920", "tid": 35568, "ts": 10492773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0630", "tid": 35568, "ts": 10492859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fad0", "tid": 35568, "ts": 10492945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fa00", "tid": 35568, "ts": 10493031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1740", "tid": 35568, "ts": 10493118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2780", "tid": 35568, "ts": 10493204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1e90", "tid": 35568, "ts": 10493291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1670", "tid": 35568, "ts": 10493377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a21d0", "tid": 35568, "ts": 10493464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a26b0", "tid": 35568, "ts": 10493549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cd50", "tid": 35568, "ts": 10493635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039de60", "tid": 35568, "ts": 10493722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039dbf0", "tid": 35568, "ts": 10493807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d980", "tid": 35568, "ts": 10493893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d4a0", "tid": 35568, "ts": 10493979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f790", "tid": 35568, "ts": 10494066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c870", "tid": 35568, "ts": 10494152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e820", "tid": 35568, "ts": 10494238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f5f0", "tid": 35568, "ts": 10494326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cbb0", "tid": 35568, "ts": 10494411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f040", "tid": 35568, "ts": 10494497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039eea0", "tid": 35568, "ts": 10494595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f6c0", "tid": 35568, "ts": 10494684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e270", "tid": 35568, "ts": 10494782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ec30", "tid": 35568, "ts": 10494867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c6d0", "tid": 35568, "ts": 10494953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e680", "tid": 35568, "ts": 10495040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e4e0", "tid": 35568, "ts": 10495126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cfc0", "tid": 35568, "ts": 10495212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039edd0", "tid": 35568, "ts": 10495298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ed00", "tid": 35568, "ts": 10495385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ef70", "tid": 35568, "ts": 10495470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f110", "tid": 35568, "ts": 10495557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f520", "tid": 35568, "ts": 10495643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f1e0", "tid": 35568, "ts": 10495729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ca10", "tid": 35568, "ts": 10495815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ce20", "tid": 35568, "ts": 10495902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039dcc0", "tid": 35568, "ts": 10495988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e410", "tid": 35568, "ts": 10496074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039df30", "tid": 35568, "ts": 10496160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e750", "tid": 35568, "ts": 10496245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c600", "tid": 35568, "ts": 10496331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399950", "tid": 35568, "ts": 10496418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03997b0", "tid": 35568, "ts": 10496503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399540", "tid": 35568, "ts": 10496589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399470", "tid": 35568, "ts": 10496684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bf80", "tid": 35568, "ts": 10496774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bc40", "tid": 35568, "ts": 10496860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399af0", "tid": 35568, "ts": 10496946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039baa0", "tid": 35568, "ts": 10497032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b9d0", "tid": 35568, "ts": 10497119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b760", "tid": 35568, "ts": 10497205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399200", "tid": 35568, "ts": 10497292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b690", "tid": 35568, "ts": 10497378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b350", "tid": 35568, "ts": 10497464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c120", "tid": 35568, "ts": 10497551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b280", "tid": 35568, "ts": 10497637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b5c0", "tid": 35568, "ts": 10497723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ac00", "tid": 35568, "ts": 10497810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039aa60", "tid": 35568, "ts": 10497896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b1b0", "tid": 35568, "ts": 10497982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399fd0", "tid": 35568, "ts": 10498068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b900", "tid": 35568, "ts": 10498155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399f00", "tid": 35568, "ts": 10498241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a7f0", "tid": 35568, "ts": 10498327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a3e0", "tid": 35568, "ts": 10498413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c050", "tid": 35568, "ts": 10498499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b010", "tid": 35568, "ts": 10498585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399e30", "tid": 35568, "ts": 10498671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399d60", "tid": 35568, "ts": 10498758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a720", "tid": 35568, "ts": 10498844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a580", "tid": 35568, "ts": 10498930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399130", "tid": 35568, "ts": 10499016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b4f0", "tid": 35568, "ts": 10499103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396480", "tid": 35568, "ts": 10499188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03963b0", "tid": 35568, "ts": 10499274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396140", "tid": 35568, "ts": 10499360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398360", "tid": 35568, "ts": 10499447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397180", "tid": 35568, "ts": 10499533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03970b0", "tid": 35568, "ts": 10499619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398020", "tid": 35568, "ts": 10499704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397a70", "tid": 35568, "ts": 10499791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396fe0", "tid": 35568, "ts": 10499877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03979a0", "tid": 35568, "ts": 10499963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396550", "tid": 35568, "ts": 10500049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398ab0", "tid": 35568, "ts": 10500137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398ec0", "tid": 35568, "ts": 10500224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398500", "tid": 35568, "ts": 10500311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398df0", "tid": 35568, "ts": 10500398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396d70", "tid": 35568, "ts": 10500484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03973f0", "tid": 35568, "ts": 10500571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396bd0", "tid": 35568, "ts": 10500658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397660", "tid": 35568, "ts": 10500744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395fa0", "tid": 35568, "ts": 10500831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397db0", "tid": 35568, "ts": 10500917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398910", "tid": 35568, "ts": 10501003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03967c0", "tid": 35568, "ts": 10501089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397250", "tid": 35568, "ts": 10501175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03980f0", "tid": 35568, "ts": 10501262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398840", "tid": 35568, "ts": 10501348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397ce0", "tid": 35568, "ts": 10501434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396b00", "tid": 35568, "ts": 10501521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398d20", "tid": 35568, "ts": 10501607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03966f0", "tid": 35568, "ts": 10501693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395e00", "tid": 35568, "ts": 10501780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396ca0", "tid": 35568, "ts": 10501866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393220", "tid": 35568, "ts": 10501952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392d40", "tid": 35568, "ts": 10502038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392930", "tid": 35568, "ts": 10502124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395ac0", "tid": 35568, "ts": 10502210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03956b0", "tid": 35568, "ts": 10502297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395780", "tid": 35568, "ts": 10502383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395030", "tid": 35568, "ts": 10502470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393ff0", "tid": 35568, "ts": 10502556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394dc0", "tid": 35568, "ts": 10502643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394cf0", "tid": 35568, "ts": 10502729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03955e0", "tid": 35568, "ts": 10502816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393e50", "tid": 35568, "ts": 10502903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03933c0", "tid": 35568, "ts": 10502990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03945a0", "tid": 35568, "ts": 10503075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394740", "tid": 35568, "ts": 10503162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392ee0", "tid": 35568, "ts": 10503248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03937d0", "tid": 35568, "ts": 10503335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393630", "tid": 35568, "ts": 10503421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395920", "tid": 35568, "ts": 10503508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393560", "tid": 35568, "ts": 10503595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394260", "tid": 35568, "ts": 10503681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395100", "tid": 35568, "ts": 10503767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394810", "tid": 35568, "ts": 10503853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394e90", "tid": 35568, "ts": 10503941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394330", "tid": 35568, "ts": 10504028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394a80", "tid": 35568, "ts": 10504114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394190", "tid": 35568, "ts": 10504201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395440", "tid": 35568, "ts": 10504289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03940c0", "tid": 35568, "ts": 10504377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395370", "tid": 35568, "ts": 10504464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03944d0", "tid": 35568, "ts": 10504555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393490", "tid": 35568, "ts": 10504642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390570", "tid": 35568, "ts": 10504728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ffc0", "tid": 35568, "ts": 10504813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fc80", "tid": 35568, "ts": 10504900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fae0", "tid": 35568, "ts": 10504986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390cc0", "tid": 35568, "ts": 10505072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390230", "tid": 35568, "ts": 10505158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f600", "tid": 35568, "ts": 10505244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392450", "tid": 35568, "ts": 10505330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391c30", "tid": 35568, "ts": 10505416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390710", "tid": 35568, "ts": 10505502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fe20", "tid": 35568, "ts": 10505587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391a90", "tid": 35568, "ts": 10505674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03915b0", "tid": 35568, "ts": 10505760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f530", "tid": 35568, "ts": 10505846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03914e0", "tid": 35568, "ts": 10505932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03922b0", "tid": 35568, "ts": 10506018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392860", "tid": 35568, "ts": 10506104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390a50", "tid": 35568, "ts": 10506190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391410", "tid": 35568, "ts": 10506276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392110", "tid": 35568, "ts": 10506362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f6d0", "tid": 35568, "ts": 10506448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391750", "tid": 35568, "ts": 10506533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391820", "tid": 35568, "ts": 10506619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391270", "tid": 35568, "ts": 10506705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391d00", "tid": 35568, "ts": 10506791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03908b0", "tid": 35568, "ts": 10506877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391b60", "tid": 35568, "ts": 10506963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392040", "tid": 35568, "ts": 10507049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390980", "tid": 35568, "ts": 10507135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fd50", "tid": 35568, "ts": 10507221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390d90", "tid": 35568, "ts": 10507307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390f30", "tid": 35568, "ts": 10507394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c610", "tid": 35568, "ts": 10507480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c540", "tid": 35568, "ts": 10507567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e4f0", "tid": 35568, "ts": 10507652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d8c0", "tid": 35568, "ts": 10507739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c200", "tid": 35568, "ts": 10507825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f460", "tid": 35568, "ts": 10507911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f2c0", "tid": 35568, "ts": 10507997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e350", "tid": 35568, "ts": 10508083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e760", "tid": 35568, "ts": 10508170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d650", "tid": 35568, "ts": 10508256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038eeb0", "tid": 35568, "ts": 10508342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f1f0", "tid": 35568, "ts": 10508428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f120", "tid": 35568, "ts": 10508514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e1b0", "tid": 35568, "ts": 10508601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f050", "tid": 35568, "ts": 10508686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c470", "tid": 35568, "ts": 10508772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e9d0", "tid": 35568, "ts": 10508859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d4b0", "tid": 35568, "ts": 10508945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ec40", "tid": 35568, "ts": 10509031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d720", "tid": 35568, "ts": 10509117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ca20", "tid": 35568, "ts": 10509203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ede0", "tid": 35568, "ts": 10509290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c950", "tid": 35568, "ts": 10509375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038dda0", "tid": 35568, "ts": 10509461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cbc0", "tid": 35568, "ts": 10509548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d7f0", "tid": 35568, "ts": 10509634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cd60", "tid": 35568, "ts": 10509719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ce30", "tid": 35568, "ts": 10509806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cc90", "tid": 35568, "ts": 10509892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038eaa0", "tid": 35568, "ts": 10509978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038da60", "tid": 35568, "ts": 10510064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d3e0", "tid": 35568, "ts": 10510150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389480", "tid": 35568, "ts": 10510236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03892e0", "tid": 35568, "ts": 10510321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389140", "tid": 35568, "ts": 10510407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389070", "tid": 35568, "ts": 10510493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389f10", "tid": 35568, "ts": 10510579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a4c0", "tid": 35568, "ts": 10510666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388e00", "tid": 35568, "ts": 10510751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388d30", "tid": 35568, "ts": 10510838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a0b0", "tid": 35568, "ts": 10510924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ac10", "tid": 35568, "ts": 10511010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bc50", "tid": 35568, "ts": 10511095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a9a0", "tid": 35568, "ts": 10511182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389fe0", "tid": 35568, "ts": 10511268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038adb0", "tid": 35568, "ts": 10511354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b360", "tid": 35568, "ts": 10511440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bec0", "tid": 35568, "ts": 10511525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b290", "tid": 35568, "ts": 10511612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c060", "tid": 35568, "ts": 10511698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03897c0", "tid": 35568, "ts": 10511783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03896f0", "tid": 35568, "ts": 10511869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389210", "tid": 35568, "ts": 10511956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b6a0", "tid": 35568, "ts": 10512042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b500", "tid": 35568, "ts": 10512128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038af50", "tid": 35568, "ts": 10512214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bf90", "tid": 35568, "ts": 10512342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b020", "tid": 35568, "ts": 10512494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a320", "tid": 35568, "ts": 10512581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b1c0", "tid": 35568, "ts": 10512668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bd20", "tid": 35568, "ts": 10512754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a800", "tid": 35568, "ts": 10512840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b0f0", "tid": 35568, "ts": 10512927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a3f0", "tid": 35568, "ts": 10513014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03874d0", "tid": 35568, "ts": 10513101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03870c0", "tid": 35568, "ts": 10513186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386b10", "tid": 35568, "ts": 10513273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03867d0", "tid": 35568, "ts": 10513359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386560", "tid": 35568, "ts": 10513445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387e90", "tid": 35568, "ts": 10513531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03889f0", "tid": 35568, "ts": 10513616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387190", "tid": 35568, "ts": 10513703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03886b0", "tid": 35568, "ts": 10513789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388030", "tid": 35568, "ts": 10513875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386150", "tid": 35568, "ts": 10513961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386630", "tid": 35568, "ts": 10514048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387330", "tid": 35568, "ts": 10514133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386220", "tid": 35568, "ts": 10514219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03879b0", "tid": 35568, "ts": 10514305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388440", "tid": 35568, "ts": 10514391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386a40", "tid": 35568, "ts": 10514477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386970", "tid": 35568, "ts": 10514563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386f20", "tid": 35568, "ts": 10514648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03885e0", "tid": 35568, "ts": 10514734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385ee0", "tid": 35568, "ts": 10514819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385a00", "tid": 35568, "ts": 10514905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03875a0", "tid": 35568, "ts": 10514990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03863c0", "tid": 35568, "ts": 10515076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388510", "tid": 35568, "ts": 10515162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385ad0", "tid": 35568, "ts": 10515248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388100", "tid": 35568, "ts": 10515335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387740", "tid": 35568, "ts": 10515421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387810", "tid": 35568, "ts": 10515508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388920", "tid": 35568, "ts": 10515594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386cb0", "tid": 35568, "ts": 10515681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385fb0", "tid": 35568, "ts": 10515767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384ea0", "tid": 35568, "ts": 10515853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384c30", "tid": 35568, "ts": 10515939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384410", "tid": 35568, "ts": 10516025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03837e0", "tid": 35568, "ts": 10516111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03834a0", "tid": 35568, "ts": 10516196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382d50", "tid": 35568, "ts": 10516283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384b60", "tid": 35568, "ts": 10516369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382a10", "tid": 35568, "ts": 10516455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382870", "tid": 35568, "ts": 10516541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383640", "tid": 35568, "ts": 10516627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383980", "tid": 35568, "ts": 10516713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383300", "tid": 35568, "ts": 10516800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03826d0", "tid": 35568, "ts": 10516886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03845b0", "tid": 35568, "ts": 10516973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382600", "tid": 35568, "ts": 10517059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383090", "tid": 35568, "ts": 10517146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385860", "tid": 35568, "ts": 10517232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03841a0", "tid": 35568, "ts": 10517317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384680", "tid": 35568, "ts": 10517403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384000", "tid": 35568, "ts": 10517489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383f30", "tid": 35568, "ts": 10517575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385790", "tid": 35568, "ts": 10517661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383e60", "tid": 35568, "ts": 10517747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03840d0", "tid": 35568, "ts": 10517833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03849c0", "tid": 35568, "ts": 10517919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383570", "tid": 35568, "ts": 10518005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384f70", "tid": 35568, "ts": 10518091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385450", "tid": 35568, "ts": 10518177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03848f0", "tid": 35568, "ts": 10518263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384820", "tid": 35568, "ts": 10518350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383b20", "tid": 35568, "ts": 10518435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383d90", "tid": 35568, "ts": 10518521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ffd0", "tid": 35568, "ts": 10518607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fe30", "tid": 35568, "ts": 10518693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fc90", "tid": 35568, "ts": 10518779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fa20", "tid": 35568, "ts": 10518865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f6e0", "tid": 35568, "ts": 10518952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f610", "tid": 35568, "ts": 10519038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f540", "tid": 35568, "ts": 10519124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382460", "tid": 35568, "ts": 10519210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03821f0", "tid": 35568, "ts": 10519296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381aa0", "tid": 35568, "ts": 10519382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381900", "tid": 35568, "ts": 10519469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f7b0", "tid": 35568, "ts": 10519556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381350", "tid": 35568, "ts": 10519641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380650", "tid": 35568, "ts": 10519728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f2d0", "tid": 35568, "ts": 10519813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381010", "tid": 35568, "ts": 10519899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380580", "tid": 35568, "ts": 10519986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382050", "tid": 35568, "ts": 10520072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381f80", "tid": 35568, "ts": 10520158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380170", "tid": 35568, "ts": 10520244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03804b0", "tid": 35568, "ts": 10520331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03819d0", "tid": 35568, "ts": 10520416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380f40", "tid": 35568, "ts": 10520502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03815c0", "tid": 35568, "ts": 10520589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03803e0", "tid": 35568, "ts": 10520675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381280", "tid": 35568, "ts": 10520761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f470", "tid": 35568, "ts": 10520847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380c00", "tid": 35568, "ts": 10520933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381690", "tid": 35568, "ts": 10521019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f130", "tid": 35568, "ts": 10521105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381830", "tid": 35568, "ts": 10521192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380da0", "tid": 35568, "ts": 10521279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c890", "tid": 35568, "ts": 10521411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c7c0", "tid": 35568, "ts": 10521500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d0b0", "tid": 35568, "ts": 10521587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c2e0", "tid": 35568, "ts": 10521673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d9a0", "tid": 35568, "ts": 10521759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cfe0", "tid": 35568, "ts": 10521846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c140", "tid": 35568, "ts": 10521933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c070", "tid": 35568, "ts": 10522019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ce40", "tid": 35568, "ts": 10522105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d320", "tid": 35568, "ts": 10522191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cca0", "tid": 35568, "ts": 10522277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cb00", "tid": 35568, "ts": 10522364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cbd0", "tid": 35568, "ts": 10522450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037de80", "tid": 35568, "ts": 10522536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037eec0", "tid": 35568, "ts": 10522623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ed20", "tid": 35568, "ts": 10522709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cd70", "tid": 35568, "ts": 10522795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e1c0", "tid": 35568, "ts": 10522880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ec50", "tid": 35568, "ts": 10522966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037eb80", "tid": 35568, "ts": 10523052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bed0", "tid": 35568, "ts": 10523138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d3f0", "tid": 35568, "ts": 10523224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037da70", "tid": 35568, "ts": 10523309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e9e0", "tid": 35568, "ts": 10523396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c480", "tid": 35568, "ts": 10523482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ef90", "tid": 35568, "ts": 10523568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d800", "tid": 35568, "ts": 10523653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ca30", "tid": 35568, "ts": 10523739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e6a0", "tid": 35568, "ts": 10523825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c550", "tid": 35568, "ts": 10523912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037db40", "tid": 35568, "ts": 10523997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b03b0", "tid": 35568, "ts": 10524083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e770", "tid": 35568, "ts": 10524169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a740", "tid": 35568, "ts": 10524255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379e50", "tid": 35568, "ts": 10524341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a5a0", "tid": 35568, "ts": 10524428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379d80", "tid": 35568, "ts": 10524514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a9b0", "tid": 35568, "ts": 10524601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378d40", "tid": 35568, "ts": 10524686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ac20", "tid": 35568, "ts": 10524772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a8e0", "tid": 35568, "ts": 10524859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b9f0", "tid": 35568, "ts": 10524944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ae90", "tid": 35568, "ts": 10525030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b920", "tid": 35568, "ts": 10525117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037adc0", "tid": 35568, "ts": 10525204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379a40", "tid": 35568, "ts": 10525291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b5e0", "tid": 35568, "ts": 10525377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379220", "tid": 35568, "ts": 10525464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a400", "tid": 35568, "ts": 10525551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b780", "tid": 35568, "ts": 10525637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379630", "tid": 35568, "ts": 10525723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b6b0", "tid": 35568, "ts": 10525809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037aa80", "tid": 35568, "ts": 10525896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378930", "tid": 35568, "ts": 10525982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378ad0", "tid": 35568, "ts": 10526068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b100", "tid": 35568, "ts": 10526154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b440", "tid": 35568, "ts": 10526241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037af60", "tid": 35568, "ts": 10526327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378fb0", "tid": 35568, "ts": 10526413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bc60", "tid": 35568, "ts": 10526499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b510", "tid": 35568, "ts": 10526586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378e10", "tid": 35568, "ts": 10526672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a190", "tid": 35568, "ts": 10526758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379490", "tid": 35568, "ts": 10526845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a0c0", "tid": 35568, "ts": 10526932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376cc0", "tid": 35568, "ts": 10527018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376b20", "tid": 35568, "ts": 10527104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376980", "tid": 35568, "ts": 10527191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03767e0", "tid": 35568, "ts": 10527277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375c80", "tid": 35568, "ts": 10527362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375a10", "tid": 35568, "ts": 10527449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375870", "tid": 35568, "ts": 10527535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03778f0", "tid": 35568, "ts": 10527621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377ea0", "tid": 35568, "ts": 10527707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377d00", "tid": 35568, "ts": 10527793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377c30", "tid": 35568, "ts": 10527879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375d50", "tid": 35568, "ts": 10528035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376710", "tid": 35568, "ts": 10528196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376300", "tid": 35568, "ts": 10528338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377a90", "tid": 35568, "ts": 10528495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377680", "tid": 35568, "ts": 10528620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378380", "tid": 35568, "ts": 10528717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03782b0", "tid": 35568, "ts": 10528836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377340", "tid": 35568, "ts": 10528992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376570", "tid": 35568, "ts": 10529101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03781e0", "tid": 35568, "ts": 10529187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03771a0", "tid": 35568, "ts": 10529273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376f30", "tid": 35568, "ts": 10529358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378110", "tid": 35568, "ts": 10529445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378450", "tid": 35568, "ts": 10529531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375ef0", "tid": 35568, "ts": 10529616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03770d0", "tid": 35568, "ts": 10529702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03764a0", "tid": 35568, "ts": 10529788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03786c0", "tid": 35568, "ts": 10529874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376d90", "tid": 35568, "ts": 10529960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377b60", "tid": 35568, "ts": 10530046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377dd0", "tid": 35568, "ts": 10530132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126b70", "tid": 35568, "ts": 10530218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126760", "tid": 35568, "ts": 10530304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126420", "tid": 35568, "ts": 10530390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125e70", "tid": 35568, "ts": 10530477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1242d0", "tid": 35568, "ts": 10530562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124200", "tid": 35568, "ts": 10530648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1258c0", "tid": 35568, "ts": 10530734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124950", "tid": 35568, "ts": 10530820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1269d0", "tid": 35568, "ts": 10530907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1257f0", "tid": 35568, "ts": 10530993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126350", "tid": 35568, "ts": 10531079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126eb0", "tid": 35568, "ts": 10531166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125720", "tid": 35568, "ts": 10531252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125580", "tid": 35568, "ts": 10531338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124af0", "tid": 35568, "ts": 10531423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125cd0", "tid": 35568, "ts": 10531511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1254b0", "tid": 35568, "ts": 10531597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125310", "tid": 35568, "ts": 10531682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125240", "tid": 35568, "ts": 10531768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127390", "tid": 35568, "ts": 10531854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1272c0", "tid": 35568, "ts": 10531939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1250a0", "tid": 35568, "ts": 10532025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1264f0", "tid": 35568, "ts": 10532112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1261b0", "tid": 35568, "ts": 10532198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124c90", "tid": 35568, "ts": 10532284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124a20", "tid": 35568, "ts": 10532369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1260e0", "tid": 35568, "ts": 10532455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127050", "tid": 35568, "ts": 10532542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124bc0", "tid": 35568, "ts": 10532628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124d60", "tid": 35568, "ts": 10532714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124610", "tid": 35568, "ts": 10532800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124e30", "tid": 35568, "ts": 10532887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164360", "tid": 35568, "ts": 10532973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1640f0", "tid": 35568, "ts": 10533058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1639a0", "tid": 35568, "ts": 10533144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1638d0", "tid": 35568, "ts": 10533230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163db0", "tid": 35568, "ts": 10533317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163e80", "tid": 35568, "ts": 10533403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163b40", "tid": 35568, "ts": 10533489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162bd0", "tid": 35568, "ts": 10533576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162a30", "tid": 35568, "ts": 10533662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1627c0", "tid": 35568, "ts": 10533748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163800", "tid": 35568, "ts": 10533836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1626f0", "tid": 35568, "ts": 10533922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162890", "tid": 35568, "ts": 10534008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164840", "tid": 35568, "ts": 10534095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163250", "tid": 35568, "ts": 10534180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163730", "tid": 35568, "ts": 10534267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163320", "tid": 35568, "ts": 10534353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164770", "tid": 35568, "ts": 10534439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1622e0", "tid": 35568, "ts": 10534524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162550", "tid": 35568, "ts": 10534610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162f10", "tid": 35568, "ts": 10534696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162140", "tid": 35568, "ts": 10534782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163660", "tid": 35568, "ts": 10534867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162210", "tid": 35568, "ts": 10534954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161fa0", "tid": 35568, "ts": 10535040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162070", "tid": 35568, "ts": 10535125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1645d0", "tid": 35568, "ts": 10535212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161d30", "tid": 35568, "ts": 10535299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162fe0", "tid": 35568, "ts": 10535384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1646a0", "tid": 35568, "ts": 10535471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162960", "tid": 35568, "ts": 10535556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1608e0", "tid": 35568, "ts": 10535643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fbe0", "tid": 35568, "ts": 10535728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1604d0", "tid": 35568, "ts": 10535814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160c20", "tid": 35568, "ts": 10535900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fd80", "tid": 35568, "ts": 10535987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f3c0", "tid": 35568, "ts": 10536073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ee10", "tid": 35568, "ts": 10536159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1609b0", "tid": 35568, "ts": 10536245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160330", "tid": 35568, "ts": 10536330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160810", "tid": 35568, "ts": 10536416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1612a0", "tid": 35568, "ts": 10536501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160740", "tid": 35568, "ts": 10536588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f630", "tid": 35568, "ts": 10536674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161510", "tid": 35568, "ts": 10536760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161440", "tid": 35568, "ts": 10536847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161030", "tid": 35568, "ts": 10536933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160b50", "tid": 35568, "ts": 10537019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f080", "tid": 35568, "ts": 10537105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161c60", "tid": 35568, "ts": 10537190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15eee0", "tid": 35568, "ts": 10537276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ead0", "tid": 35568, "ts": 10537362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ea00", "tid": 35568, "ts": 10537448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f490", "tid": 35568, "ts": 10537534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161370", "tid": 35568, "ts": 10537620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15efb0", "tid": 35568, "ts": 10537706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160a80", "tid": 35568, "ts": 10537791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f220", "tid": 35568, "ts": 10537877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161100", "tid": 35568, "ts": 10537962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160f60", "tid": 35568, "ts": 10538049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160190", "tid": 35568, "ts": 10538135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1600c0", "tid": 35568, "ts": 10538222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1619f0", "tid": 35568, "ts": 10538308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c570", "tid": 35568, "ts": 10538394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c090", "tid": 35568, "ts": 10538480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e520", "tid": 35568, "ts": 10538566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bef0", "tid": 35568, "ts": 10538652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15da90", "tid": 35568, "ts": 10538738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d9c0", "tid": 35568, "ts": 10538823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cf30", "tid": 35568, "ts": 10538909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e040", "tid": 35568, "ts": 10538995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bae0", "tid": 35568, "ts": 10539080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e1e0", "tid": 35568, "ts": 10539166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d820", "tid": 35568, "ts": 10539252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15dea0", "tid": 35568, "ts": 10539339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d680", "tid": 35568, "ts": 10539426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c160", "tid": 35568, "ts": 10539512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c230", "tid": 35568, "ts": 10539598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d8f0", "tid": 35568, "ts": 10539684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e110", "tid": 35568, "ts": 10539771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b6d0", "tid": 35568, "ts": 10539857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d410", "tid": 35568, "ts": 10539943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b940", "tid": 35568, "ts": 10540029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e790", "tid": 35568, "ts": 10540116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b600", "tid": 35568, "ts": 10540202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15dd00", "tid": 35568, "ts": 10540288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ddd0", "tid": 35568, "ts": 10540373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cb20", "tid": 35568, "ts": 10540460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d340", "tid": 35568, "ts": 10540547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ca50", "tid": 35568, "ts": 10540633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bc80", "tid": 35568, "ts": 10540719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d270", "tid": 35568, "ts": 10540806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e380", "tid": 35568, "ts": 10540892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c980", "tid": 35568, "ts": 10540977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c4a0", "tid": 35568, "ts": 10541064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159f40", "tid": 35568, "ts": 10541150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159da0", "tid": 35568, "ts": 10541236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159c00", "tid": 35568, "ts": 10541323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1593e0", "tid": 35568, "ts": 10541410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a1b0", "tid": 35568, "ts": 10541497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159170", "tid": 35568, "ts": 10541583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b120", "tid": 35568, "ts": 10541669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159990", "tid": 35568, "ts": 10541755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158fd0", "tid": 35568, "ts": 10541841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159650", "tid": 35568, "ts": 10541927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158e30", "tid": 35568, "ts": 10542013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b050", "tid": 35568, "ts": 10542098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ac40", "tid": 35568, "ts": 10542186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158f00", "tid": 35568, "ts": 10542272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15aaa0", "tid": 35568, "ts": 10542358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158130", "tid": 35568, "ts": 10542444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158610", "tid": 35568, "ts": 10542530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158540", "tid": 35568, "ts": 10542616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158a20", "tid": 35568, "ts": 10542702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ad10", "tid": 35568, "ts": 10542788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158880", "tid": 35568, "ts": 10542874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15af80", "tid": 35568, "ts": 10542960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a830", "tid": 35568, "ts": 10543046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b2c0", "tid": 35568, "ts": 10543132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a420", "tid": 35568, "ts": 10543218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a760", "tid": 35568, "ts": 10543305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1583a0", "tid": 35568, "ts": 10543390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1590a0", "tid": 35568, "ts": 10543476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159a60", "tid": 35568, "ts": 10543599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a010", "tid": 35568, "ts": 10543725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a690", "tid": 35568, "ts": 10543823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159720", "tid": 35568, "ts": 10543908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1571c0", "tid": 35568, "ts": 10543995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1579e0", "tid": 35568, "ts": 10544081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156730", "tid": 35568, "ts": 10544168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1564c0", "tid": 35568, "ts": 10544254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156320", "tid": 35568, "ts": 10544341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156ce0", "tid": 35568, "ts": 10544426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155f10", "tid": 35568, "ts": 10544512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155bd0", "tid": 35568, "ts": 10544598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155b00", "tid": 35568, "ts": 10544684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155890", "tid": 35568, "ts": 10544770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155620", "tid": 35568, "ts": 10544856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1553b0", "tid": 35568, "ts": 10544942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155210", "tid": 35568, "ts": 10545028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1557c0", "tid": 35568, "ts": 10545114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156180", "tid": 35568, "ts": 10545200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154ed0", "tid": 35568, "ts": 10545286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155140", "tid": 35568, "ts": 10545372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157290", "tid": 35568, "ts": 10545459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154d30", "tid": 35568, "ts": 10545545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155e40", "tid": 35568, "ts": 10545631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157020", "tid": 35568, "ts": 10545718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157d20", "tid": 35568, "ts": 10545804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1570f0", "tid": 35568, "ts": 10545890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157430", "tid": 35568, "ts": 10545975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1569a0", "tid": 35568, "ts": 10546061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157f90", "tid": 35568, "ts": 10546148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1576a0", "tid": 35568, "ts": 10546234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156c10", "tid": 35568, "ts": 10546319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157b80", "tid": 35568, "ts": 10546406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1575d0", "tid": 35568, "ts": 10546491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154fa0", "tid": 35568, "ts": 10546577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156e80", "tid": 35568, "ts": 10546663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152220", "tid": 35568, "ts": 10546749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152150", "tid": 35568, "ts": 10546836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152080", "tid": 35568, "ts": 10546922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1535a0", "tid": 35568, "ts": 10547009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151e10", "tid": 35568, "ts": 10547096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153810", "tid": 35568, "ts": 10547182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151c70", "tid": 35568, "ts": 10547268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153400", "tid": 35568, "ts": 10547353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152e50", "tid": 35568, "ts": 10547440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1539b0", "tid": 35568, "ts": 10547526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152b10", "tid": 35568, "ts": 10547611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151ba0", "tid": 35568, "ts": 10547697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151a00", "tid": 35568, "ts": 10547783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153670", "tid": 35568, "ts": 10547869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152a40", "tid": 35568, "ts": 10547956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1523c0", "tid": 35568, "ts": 10548043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154c60", "tid": 35568, "ts": 10548129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1527d0", "tid": 35568, "ts": 10548215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153330", "tid": 35568, "ts": 10548301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1541d0", "tid": 35568, "ts": 10548387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154850", "tid": 35568, "ts": 10548474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153cf0", "tid": 35568, "ts": 10548560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154030", "tid": 35568, "ts": 10548646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154920", "tid": 35568, "ts": 10548732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154780", "tid": 35568, "ts": 10548819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154370", "tid": 35568, "ts": 10548905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1538e0", "tid": 35568, "ts": 10548992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152700", "tid": 35568, "ts": 10549077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153e90", "tid": 35568, "ts": 10549164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1546b0", "tid": 35568, "ts": 10549250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152560", "tid": 35568, "ts": 10549337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153f60", "tid": 35568, "ts": 10549424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14eef0", "tid": 35568, "ts": 10549510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e7a0", "tid": 35568, "ts": 10549597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151450", "tid": 35568, "ts": 10549684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1500d0", "tid": 35568, "ts": 10549770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14eae0", "tid": 35568, "ts": 10549856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1512b0", "tid": 35568, "ts": 10549942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f980", "tid": 35568, "ts": 10550028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150750", "tid": 35568, "ts": 10550115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150ea0", "tid": 35568, "ts": 10550202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fbf0", "tid": 35568, "ts": 10550287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fe60", "tid": 35568, "ts": 10550374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ee20", "tid": 35568, "ts": 10550461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151790", "tid": 35568, "ts": 10550548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150a90", "tid": 35568, "ts": 10550634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1505b0", "tid": 35568, "ts": 10550720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150c30", "tid": 35568, "ts": 10550807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150270", "tid": 35568, "ts": 10550894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f3d0", "tid": 35568, "ts": 10550980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f8b0", "tid": 35568, "ts": 10551066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1501a0", "tid": 35568, "ts": 10551153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150820", "tid": 35568, "ts": 10551240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f300", "tid": 35568, "ts": 10551326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e530", "tid": 35568, "ts": 10551413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150dd0", "tid": 35568, "ts": 10551499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150000", "tid": 35568, "ts": 10551586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1516c0", "tid": 35568, "ts": 10551672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150f70", "tid": 35568, "ts": 10551758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ed50", "tid": 35568, "ts": 10551845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e600", "tid": 35568, "ts": 10551932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150d00", "tid": 35568, "ts": 10552019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fcc0", "tid": 35568, "ts": 10552104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1508f0", "tid": 35568, "ts": 10552190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14baf0", "tid": 35568, "ts": 10552276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b7b0", "tid": 35568, "ts": 10552363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b470", "tid": 35568, "ts": 10552450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bf00", "tid": 35568, "ts": 10552536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b6e0", "tid": 35568, "ts": 10552623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e2c0", "tid": 35568, "ts": 10552709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14dc40", "tid": 35568, "ts": 10552796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d010", "tid": 35568, "ts": 10552882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14db70", "tid": 35568, "ts": 10552969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ce70", "tid": 35568, "ts": 10553055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d1b0", "tid": 35568, "ts": 10553142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ccd0", "tid": 35568, "ts": 10553229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d0e0", "tid": 35568, "ts": 10553316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d690", "tid": 35568, "ts": 10553402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c650", "tid": 35568, "ts": 10553489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e1f0", "tid": 35568, "ts": 10553576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cc00", "tid": 35568, "ts": 10553663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ca60", "tid": 35568, "ts": 10553749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c8c0", "tid": 35568, "ts": 10553835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bd60", "tid": 35568, "ts": 10553921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e460", "tid": 35568, "ts": 10554008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14dd10", "tid": 35568, "ts": 10554094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b2d0", "tid": 35568, "ts": 10554179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bc90", "tid": 35568, "ts": 10554265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b200", "tid": 35568, "ts": 10554352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c3e0", "tid": 35568, "ts": 10554438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bbc0", "tid": 35568, "ts": 10554523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cb30", "tid": 35568, "ts": 10554609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c990", "tid": 35568, "ts": 10554696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c170", "tid": 35568, "ts": 10554782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c0a0", "tid": 35568, "ts": 10554868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d900", "tid": 35568, "ts": 10554955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149db0", "tid": 35568, "ts": 10555042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149b40", "tid": 35568, "ts": 10555129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149a70", "tid": 35568, "ts": 10555215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149f50", "tid": 35568, "ts": 10555301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1498d0", "tid": 35568, "ts": 10555388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a360", "tid": 35568, "ts": 10555474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149ce0", "tid": 35568, "ts": 10555561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a290", "tid": 35568, "ts": 10555647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149250", "tid": 35568, "ts": 10555733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14aec0", "tid": 35568, "ts": 10555819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149180", "tid": 35568, "ts": 10555905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148d70", "tid": 35568, "ts": 10555991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148b00", "tid": 35568, "ts": 10556079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147e00", "tid": 35568, "ts": 10556165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148960", "tid": 35568, "ts": 10556253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1483b0", "tid": 35568, "ts": 10556340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148f10", "tid": 35568, "ts": 10556428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1494c0", "tid": 35568, "ts": 10556515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1482e0", "tid": 35568, "ts": 10556645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a910", "tid": 35568, "ts": 10556733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148620", "tid": 35568, "ts": 10556820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148e40", "tid": 35568, "ts": 10556906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149730", "tid": 35568, "ts": 10556993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b060", "tid": 35568, "ts": 10557079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148550", "tid": 35568, "ts": 10557165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a020", "tid": 35568, "ts": 10557251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1486f0", "tid": 35568, "ts": 10557337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148070", "tid": 35568, "ts": 10557423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149660", "tid": 35568, "ts": 10557510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14af90", "tid": 35568, "ts": 10557596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149c10", "tid": 35568, "ts": 10557682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147ed0", "tid": 35568, "ts": 10557769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145b10", "tid": 35568, "ts": 10557855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145970", "tid": 35568, "ts": 10557941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1465a0", "tid": 35568, "ts": 10558027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145150", "tid": 35568, "ts": 10558113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1464d0", "tid": 35568, "ts": 10558199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144a00", "tid": 35568, "ts": 10558286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146dc0", "tid": 35568, "ts": 10558372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147b90", "tid": 35568, "ts": 10558458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1479f0", "tid": 35568, "ts": 10558543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1452f0", "tid": 35568, "ts": 10558630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145220", "tid": 35568, "ts": 10558716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146b50", "tid": 35568, "ts": 10558802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145be0", "tid": 35568, "ts": 10558888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147030", "tid": 35568, "ts": 10558974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144d40", "tid": 35568, "ts": 10559061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147370", "tid": 35568, "ts": 10559147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146cf0", "tid": 35568, "ts": 10559277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144ad0", "tid": 35568, "ts": 10559364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144c70", "tid": 35568, "ts": 10559450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147440", "tid": 35568, "ts": 10559536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146190", "tid": 35568, "ts": 10559622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145490", "tid": 35568, "ts": 10559708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1468e0", "tid": 35568, "ts": 10559794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147920", "tid": 35568, "ts": 10559880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147510", "tid": 35568, "ts": 10559967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146a80", "tid": 35568, "ts": 10560052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145ff0", "tid": 35568, "ts": 10560139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147850", "tid": 35568, "ts": 10560224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147c60", "tid": 35568, "ts": 10560312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146f60", "tid": 35568, "ts": 10560398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145560", "tid": 35568, "ts": 10560484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146670", "tid": 35568, "ts": 10560570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142090", "tid": 35568, "ts": 10560656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143dd0", "tid": 35568, "ts": 10560742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143270", "tid": 35568, "ts": 10560829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141bb0", "tid": 35568, "ts": 10560915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141ae0", "tid": 35568, "ts": 10561001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143a90", "tid": 35568, "ts": 10561087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143f70", "tid": 35568, "ts": 10561174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1439c0", "tid": 35568, "ts": 10561259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142f30", "tid": 35568, "ts": 10561346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1446c0", "tid": 35568, "ts": 10561432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142980", "tid": 35568, "ts": 10561519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1442b0", "tid": 35568, "ts": 10561604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1428b0", "tid": 35568, "ts": 10561692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142710", "tid": 35568, "ts": 10561778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143750", "tid": 35568, "ts": 10561865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143410", "tid": 35568, "ts": 10561951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142300", "tid": 35568, "ts": 10562038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142e60", "tid": 35568, "ts": 10562124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142230", "tid": 35568, "ts": 10562210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142cc0", "tid": 35568, "ts": 10562296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141e20", "tid": 35568, "ts": 10562383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141940", "tid": 35568, "ts": 10562470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1424a0", "tid": 35568, "ts": 10562556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1441e0", "tid": 35568, "ts": 10562642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1417a0", "tid": 35568, "ts": 10562728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141d50", "tid": 35568, "ts": 10562814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144040", "tid": 35568, "ts": 10562900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141600", "tid": 35568, "ts": 10562986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142b20", "tid": 35568, "ts": 10563073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1435b0", "tid": 35568, "ts": 10563159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142a50", "tid": 35568, "ts": 10563245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144520", "tid": 35568, "ts": 10563331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fc00", "tid": 35568, "ts": 10563418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fa60", "tid": 35568, "ts": 10563503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f720", "tid": 35568, "ts": 10563589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f310", "tid": 35568, "ts": 10563675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ec90", "tid": 35568, "ts": 10563762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ebc0", "tid": 35568, "ts": 10563848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fe70", "tid": 35568, "ts": 10563935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e950", "tid": 35568, "ts": 10564020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1411f0", "tid": 35568, "ts": 10564106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13efd0", "tid": 35568, "ts": 10564192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f650", "tid": 35568, "ts": 10564278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e610", "tid": 35568, "ts": 10564364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140c40", "tid": 35568, "ts": 10564451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140830", "tid": 35568, "ts": 10564537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fda0", "tid": 35568, "ts": 10564623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140420", "tid": 35568, "ts": 10564709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140350", "tid": 35568, "ts": 10564795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f8c0", "tid": 35568, "ts": 10564881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1404f0", "tid": 35568, "ts": 10564968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140f80", "tid": 35568, "ts": 10565054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ed60", "tid": 35568, "ts": 10565141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140760", "tid": 35568, "ts": 10565226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e200", "tid": 35568, "ts": 10565312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e130", "tid": 35568, "ts": 10565398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f4b0", "tid": 35568, "ts": 10565484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1401b0", "tid": 35568, "ts": 10565570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140900", "tid": 35568, "ts": 10565656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140690", "tid": 35568, "ts": 10565742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ee30", "tid": 35568, "ts": 10565828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141390", "tid": 35568, "ts": 10565914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e540", "tid": 35568, "ts": 10566001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140010", "tid": 35568, "ts": 10566087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d1c0", "tid": 35568, "ts": 10566173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ca70", "tid": 35568, "ts": 10566260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c8d0", "tid": 35568, "ts": 10566346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c730", "tid": 35568, "ts": 10566432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c4c0", "tid": 35568, "ts": 10566518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c320", "tid": 35568, "ts": 10566605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c250", "tid": 35568, "ts": 10566691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cf50", "tid": 35568, "ts": 10566777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13be40", "tid": 35568, "ts": 10566864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d020", "tid": 35568, "ts": 10566951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bbd0", "tid": 35568, "ts": 10567037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bb00", "tid": 35568, "ts": 10567123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ce80", "tid": 35568, "ts": 10567210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b550", "tid": 35568, "ts": 10567296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b210", "tid": 35568, "ts": 10567382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d770", "tid": 35568, "ts": 10567468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ae00", "tid": 35568, "ts": 10567554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b6f0", "tid": 35568, "ts": 10567640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bca0", "tid": 35568, "ts": 10567726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b620", "tid": 35568, "ts": 10567812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d430", "tid": 35568, "ts": 10567898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b890", "tid": 35568, "ts": 10567984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dd20", "tid": 35568, "ts": 10568070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e060", "tid": 35568, "ts": 10568156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ba30", "tid": 35568, "ts": 10568242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b3b0", "tid": 35568, "ts": 10568328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dc50", "tid": 35568, "ts": 10568414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cdb0", "tid": 35568, "ts": 10568499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b960", "tid": 35568, "ts": 10568587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cc10", "tid": 35568, "ts": 10568673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d360", "tid": 35568, "ts": 10568760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d6a0", "tid": 35568, "ts": 10568846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138630", "tid": 35568, "ts": 10568932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138220", "tid": 35568, "ts": 10569019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137fb0", "tid": 35568, "ts": 10569105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137e10", "tid": 35568, "ts": 10569192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a9f0", "tid": 35568, "ts": 10569278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13aac0", "tid": 35568, "ts": 10569365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137ad0", "tid": 35568, "ts": 10569451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ac60", "tid": 35568, "ts": 10569537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138b10", "tid": 35568, "ts": 10569623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139740", "tid": 35568, "ts": 10569709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137a00", "tid": 35568, "ts": 10569795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1382f0", "tid": 35568, "ts": 10569881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138f20", "tid": 35568, "ts": 10569968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139f60", "tid": 35568, "ts": 10570054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139e90", "tid": 35568, "ts": 10570140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139260", "tid": 35568, "ts": 10570225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139b50", "tid": 35568, "ts": 10570312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139190", "tid": 35568, "ts": 10570398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a030", "tid": 35568, "ts": 10570484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138080", "tid": 35568, "ts": 10570570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1399b0", "tid": 35568, "ts": 10570657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139400", "tid": 35568, "ts": 10570742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137930", "tid": 35568, "ts": 10570829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a6b0", "tid": 35568, "ts": 10570915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a2a0", "tid": 35568, "ts": 10571002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1395a0", "tid": 35568, "ts": 10571088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138700", "tid": 35568, "ts": 10571174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138d80", "tid": 35568, "ts": 10571260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138cb0", "tid": 35568, "ts": 10571347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137ba0", "tid": 35568, "ts": 10571433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a920", "tid": 35568, "ts": 10571519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139cf0", "tid": 35568, "ts": 10571606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136000", "tid": 35568, "ts": 10571692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135f30", "tid": 35568, "ts": 10571778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135cc0", "tid": 35568, "ts": 10571864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135b20", "tid": 35568, "ts": 10571950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137110", "tid": 35568, "ts": 10572036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134fc0", "tid": 35568, "ts": 10572122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134ef0", "tid": 35568, "ts": 10572207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134bb0", "tid": 35568, "ts": 10572293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135300", "tid": 35568, "ts": 10572379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137040", "tid": 35568, "ts": 10572465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136f70", "tid": 35568, "ts": 10572552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134870", "tid": 35568, "ts": 10572638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136dd0", "tid": 35568, "ts": 10572725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136d00", "tid": 35568, "ts": 10572826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137860", "tid": 35568, "ts": 10572987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137450", "tid": 35568, "ts": 10573147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135a50", "tid": 35568, "ts": 10573233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136c30", "tid": 35568, "ts": 10573319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1353d0", "tid": 35568, "ts": 10573405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136750", "tid": 35568, "ts": 10573492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136a90", "tid": 35568, "ts": 10573578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136680", "tid": 35568, "ts": 10573664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134530", "tid": 35568, "ts": 10573750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134d50", "tid": 35568, "ts": 10573836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135230", "tid": 35568, "ts": 10573924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1368f0", "tid": 35568, "ts": 10574009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137520", "tid": 35568, "ts": 10574095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1372b0", "tid": 35568, "ts": 10574181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1365b0", "tid": 35568, "ts": 10574268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1360d0", "tid": 35568, "ts": 10574354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135e60", "tid": 35568, "ts": 10574441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136b60", "tid": 35568, "ts": 10574526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131bc0", "tid": 35568, "ts": 10574613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1316e0", "tid": 35568, "ts": 10574699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131470", "tid": 35568, "ts": 10574787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1312d0", "tid": 35568, "ts": 10574904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1335c0", "tid": 35568, "ts": 10574991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1331b0", "tid": 35568, "ts": 10575078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134460", "tid": 35568, "ts": 10575164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132990", "tid": 35568, "ts": 10575250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1341f0", "tid": 35568, "ts": 10575337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133010", "tid": 35568, "ts": 10575423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132720", "tid": 35568, "ts": 10575510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132e70", "tid": 35568, "ts": 10575597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132da0", "tid": 35568, "ts": 10575684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131540", "tid": 35568, "ts": 10575770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131d60", "tid": 35568, "ts": 10575856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1320a0", "tid": 35568, "ts": 10575942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133c40", "tid": 35568, "ts": 10576028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1323e0", "tid": 35568, "ts": 10576115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133420", "tid": 35568, "ts": 10576202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132170", "tid": 35568, "ts": 10576289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133aa0", "tid": 35568, "ts": 10576376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133f80", "tid": 35568, "ts": 10576462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132580", "tid": 35568, "ts": 10576548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132b30", "tid": 35568, "ts": 10576635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132cd0", "tid": 35568, "ts": 10576722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132240", "tid": 35568, "ts": 10576808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132a60", "tid": 35568, "ts": 10576895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131c90", "tid": 35568, "ts": 10576981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131130", "tid": 35568, "ts": 10577067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134390", "tid": 35568, "ts": 10577154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1324b0", "tid": 35568, "ts": 10577241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131200", "tid": 35568, "ts": 10577326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e890", "tid": 35568, "ts": 10577413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e620", "tid": 35568, "ts": 10577499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12de00", "tid": 35568, "ts": 10577586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130df0", "tid": 35568, "ts": 10577672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130c50", "tid": 35568, "ts": 10577759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130910", "tid": 35568, "ts": 10577845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e550", "tid": 35568, "ts": 10577932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130840", "tid": 35568, "ts": 10578018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f3f0", "tid": 35568, "ts": 10578104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e7c0", "tid": 35568, "ts": 10578191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f320", "tid": 35568, "ts": 10578278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f250", "tid": 35568, "ts": 10578364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ff50", "tid": 35568, "ts": 10578451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f660", "tid": 35568, "ts": 10578537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dfa0", "tid": 35568, "ts": 10578623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f180", "tid": 35568, "ts": 10578708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130f90", "tid": 35568, "ts": 10578794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12efe0", "tid": 35568, "ts": 10578880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ef10", "tid": 35568, "ts": 10578966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12eb00", "tid": 35568, "ts": 10579053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dd30", "tid": 35568, "ts": 10579139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130360", "tid": 35568, "ts": 10579226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ed70", "tid": 35568, "ts": 10579312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e070", "tid": 35568, "ts": 10579397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f9a0", "tid": 35568, "ts": 10579483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f8d0", "tid": 35568, "ts": 10579570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ded0", "tid": 35568, "ts": 10579657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ea30", "tid": 35568, "ts": 10579743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130b80", "tid": 35568, "ts": 10579829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130290", "tid": 35568, "ts": 10579915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130ab0", "tid": 35568, "ts": 10580001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f730", "tid": 35568, "ts": 10580087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d5e0", "tid": 35568, "ts": 10580174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c670", "tid": 35568, "ts": 10580260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c330", "tid": 35568, "ts": 10580346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c190", "tid": 35568, "ts": 10580432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bff0", "tid": 35568, "ts": 10580519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b150", "tid": 35568, "ts": 10580605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bf20", "tid": 35568, "ts": 10580692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b970", "tid": 35568, "ts": 10580778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12afb0", "tid": 35568, "ts": 10580865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aad0", "tid": 35568, "ts": 10580952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c0c0", "tid": 35568, "ts": 10581038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d6b0", "tid": 35568, "ts": 10581124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dac0", "tid": 35568, "ts": 10581211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a930", "tid": 35568, "ts": 10581297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b7d0", "tid": 35568, "ts": 10581383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c810", "tid": 35568, "ts": 10581469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d440", "tid": 35568, "ts": 10581556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ae10", "tid": 35568, "ts": 10581642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b630", "tid": 35568, "ts": 10581729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d1d0", "tid": 35568, "ts": 10581816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b220", "tid": 35568, "ts": 10581903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b560", "tid": 35568, "ts": 10581990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ce90", "tid": 35568, "ts": 10582076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12db90", "tid": 35568, "ts": 10582162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c4d0", "tid": 35568, "ts": 10582249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d030", "tid": 35568, "ts": 10582335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c400", "tid": 35568, "ts": 10582422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d850", "tid": 35568, "ts": 10582508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d780", "tid": 35568, "ts": 10582596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dc60", "tid": 35568, "ts": 10582682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bcb0", "tid": 35568, "ts": 10582769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ac70", "tid": 35568, "ts": 10582855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127c80", "tid": 35568, "ts": 10582942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127940", "tid": 35568, "ts": 10583028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128090", "tid": 35568, "ts": 10583114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127600", "tid": 35568, "ts": 10583200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127530", "tid": 35568, "ts": 10583286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a2b0", "tid": 35568, "ts": 10583372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127a10", "tid": 35568, "ts": 10583458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1287e0", "tid": 35568, "ts": 10583544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128710", "tid": 35568, "ts": 10583631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128160", "tid": 35568, "ts": 10583717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a790", "tid": 35568, "ts": 10583804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a110", "tid": 35568, "ts": 10583890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129b60", "tid": 35568, "ts": 10583977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1291a0", "tid": 35568, "ts": 10584063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128d90", "tid": 35568, "ts": 10584149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129a90", "tid": 35568, "ts": 10584235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128cc0", "tid": 35568, "ts": 10584322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1298f0", "tid": 35568, "ts": 10584408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129f70", "tid": 35568, "ts": 10584494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1283d0", "tid": 35568, "ts": 10584581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128bf0", "tid": 35568, "ts": 10584668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129ea0", "tid": 35568, "ts": 10584754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129750", "tid": 35568, "ts": 10584840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1295b0", "tid": 35568, "ts": 10584927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129340", "tid": 35568, "ts": 10585014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129dd0", "tid": 35568, "ts": 10585101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129d00", "tid": 35568, "ts": 10585187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1294e0", "tid": 35568, "ts": 10585274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a6c0", "tid": 35568, "ts": 10585360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a860", "tid": 35568, "ts": 10585447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127ef0", "tid": 35568, "ts": 10585533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128230", "tid": 35568, "ts": 10585619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67550", "tid": 35568, "ts": 10585705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abeb0", "tid": 35568, "ts": 10585792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9130", "tid": 35568, "ts": 10585878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8020", "tid": 35568, "ts": 10585965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7f50", "tid": 35568, "ts": 10586053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7a70", "tid": 35568, "ts": 10586139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7660", "tid": 35568, "ts": 10586226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbddb0", "tid": 35568, "ts": 10586312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcbd0", "tid": 35568, "ts": 10586399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbed20", "tid": 35568, "ts": 10586486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe290", "tid": 35568, "ts": 10586572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc960", "tid": 35568, "ts": 10586658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdce0", "tid": 35568, "ts": 10586745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc210", "tid": 35568, "ts": 10586831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc140", "tid": 35568, "ts": 10586917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe430", "tid": 35568, "ts": 10587003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf3a0", "tid": 35568, "ts": 10587090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf470", "tid": 35568, "ts": 10587176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdc10", "tid": 35568, "ts": 10587262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd660", "tid": 35568, "ts": 10587349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe840", "tid": 35568, "ts": 10587436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe9e0", "tid": 35568, "ts": 10587521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd250", "tid": 35568, "ts": 10587608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbeb80", "tid": 35568, "ts": 10587694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe020", "tid": 35568, "ts": 10587780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdf50", "tid": 35568, "ts": 10587867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcf10", "tid": 35568, "ts": 10587954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc620", "tid": 35568, "ts": 10588040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc6f0", "tid": 35568, "ts": 10588127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf130", "tid": 35568, "ts": 10588213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbef90", "tid": 35568, "ts": 10588299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbedf0", "tid": 35568, "ts": 10588385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe1c0", "tid": 35568, "ts": 10588472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbde80", "tid": 35568, "ts": 10588559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc2e0", "tid": 35568, "ts": 10588644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbec50", "tid": 35568, "ts": 10588731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe500", "tid": 35568, "ts": 10588817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbeec0", "tid": 35568, "ts": 10588903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd180", "tid": 35568, "ts": 10588989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa630", "tid": 35568, "ts": 10589075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa490", "tid": 35568, "ts": 10589161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb8e0", "tid": 35568, "ts": 10589248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc6b0", "tid": 35568, "ts": 10589334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa220", "tid": 35568, "ts": 10589421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa080", "tid": 35568, "ts": 10589508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb670", "tid": 35568, "ts": 10589595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc510", "tid": 35568, "ts": 10589681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc850", "tid": 35568, "ts": 10589767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfad80", "tid": 35568, "ts": 10589854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc440", "tid": 35568, "ts": 10589941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb9b0", "tid": 35568, "ts": 10590027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfae50", "tid": 35568, "ts": 10590113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc2a0", "tid": 35568, "ts": 10590199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc100", "tid": 35568, "ts": 10590286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9ee0", "tid": 35568, "ts": 10590372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfabe0", "tid": 35568, "ts": 10590498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9e10", "tid": 35568, "ts": 10590585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbe90", "tid": 35568, "ts": 10590671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfab10", "tid": 35568, "ts": 10590758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb810", "tid": 35568, "ts": 10590844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbb50", "tid": 35568, "ts": 10590931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfba80", "tid": 35568, "ts": 10591018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcd30", "tid": 35568, "ts": 10591105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb330", "tid": 35568, "ts": 10591192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc1d0", "tid": 35568, "ts": 10591280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc5e0", "tid": 35568, "ts": 10591367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcc60", "tid": 35568, "ts": 10591454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9d40", "tid": 35568, "ts": 10591583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcac0", "tid": 35568, "ts": 10591671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc920", "tid": 35568, "ts": 10591758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8820", "tid": 35568, "ts": 10591844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8680", "tid": 35568, "ts": 10591930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8410", "tid": 35568, "ts": 10592017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8270", "tid": 35568, "ts": 10592104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df81a0", "tid": 35568, "ts": 10592190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7300", "tid": 35568, "ts": 10592276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6bb0", "tid": 35568, "ts": 10592363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7cc0", "tid": 35568, "ts": 10592449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df80d0", "tid": 35568, "ts": 10592534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7980", "tid": 35568, "ts": 10592620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df92b0", "tid": 35568, "ts": 10592707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6fc0", "tid": 35568, "ts": 10592792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9110", "tid": 35568, "ts": 10592878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df96c0", "tid": 35568, "ts": 10592964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8f70", "tid": 35568, "ts": 10593051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8750", "tid": 35568, "ts": 10593137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8ea0", "tid": 35568, "ts": 10593223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7640", "tid": 35568, "ts": 10593308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7570", "tid": 35568, "ts": 10593395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7b20", "tid": 35568, "ts": 10593481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6940", "tid": 35568, "ts": 10593568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7f30", "tid": 35568, "ts": 10593653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6a10", "tid": 35568, "ts": 10593741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7230", "tid": 35568, "ts": 10593827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9930", "tid": 35568, "ts": 10593913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8a90", "tid": 35568, "ts": 10593999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9520", "tid": 35568, "ts": 10594086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df89c0", "tid": 35568, "ts": 10594172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9790", "tid": 35568, "ts": 10594259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6d50", "tid": 35568, "ts": 10594345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6c80", "tid": 35568, "ts": 10594431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9c70", "tid": 35568, "ts": 10594517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df61f0", "tid": 35568, "ts": 10594626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6050", "tid": 35568, "ts": 10594713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5d10", "tid": 35568, "ts": 10594800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5280", "tid": 35568, "ts": 10594886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5760", "tid": 35568, "ts": 10594972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4e70", "tid": 35568, "ts": 10595059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df37b0", "tid": 35568, "ts": 10595146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4c00", "tid": 35568, "ts": 10595232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4b30", "tid": 35568, "ts": 10595318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4990", "tid": 35568, "ts": 10595404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df47f0", "tid": 35568, "ts": 10595490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4240", "tid": 35568, "ts": 10595576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5aa0", "tid": 35568, "ts": 10595661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4da0", "tid": 35568, "ts": 10595747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6600", "tid": 35568, "ts": 10595833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df40a0", "tid": 35568, "ts": 10595919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6460", "tid": 35568, "ts": 10596005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4310", "tid": 35568, "ts": 10596091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df59d0", "tid": 35568, "ts": 10596178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3610", "tid": 35568, "ts": 10596264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3950", "tid": 35568, "ts": 10596350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3a20", "tid": 35568, "ts": 10596437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6530", "tid": 35568, "ts": 10596524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df48c0", "tid": 35568, "ts": 10596610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5900", "tid": 35568, "ts": 10596696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df43e0", "tid": 35568, "ts": 10596782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3540", "tid": 35568, "ts": 10596868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4cd0", "tid": 35568, "ts": 10596953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5830", "tid": 35568, "ts": 10597039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3bc0", "tid": 35568, "ts": 10597125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5690", "tid": 35568, "ts": 10597211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3fd0", "tid": 35568, "ts": 10597297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2d20", "tid": 35568, "ts": 10597384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0140", "tid": 35568, "ts": 10597469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2b80", "tid": 35568, "ts": 10597556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0ca0", "tid": 35568, "ts": 10597642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df20f0", "tid": 35568, "ts": 10597728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0620", "tid": 35568, "ts": 10597815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1f50", "tid": 35568, "ts": 10597902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2910", "tid": 35568, "ts": 10597988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df26a0", "tid": 35568, "ts": 10598075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0a30", "tid": 35568, "ts": 10598161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0480", "tid": 35568, "ts": 10598248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1c10", "tid": 35568, "ts": 10598334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2840", "tid": 35568, "ts": 10598420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2020", "tid": 35568, "ts": 10598506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0210", "tid": 35568, "ts": 10598592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1e80", "tid": 35568, "ts": 10598678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0fe0", "tid": 35568, "ts": 10598764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0b00", "tid": 35568, "ts": 10598851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df32d0", "tid": 35568, "ts": 10598937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2360", "tid": 35568, "ts": 10599024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2770", "tid": 35568, "ts": 10599109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3060", "tid": 35568, "ts": 10599195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0f10", "tid": 35568, "ts": 10599282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2ab0", "tid": 35568, "ts": 10599368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0e40", "tid": 35568, "ts": 10599454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0bd0", "tid": 35568, "ts": 10599540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df13f0", "tid": 35568, "ts": 10599626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1320", "tid": 35568, "ts": 10599711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df10b0", "tid": 35568, "ts": 10599798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1730", "tid": 35568, "ts": 10599883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1800", "tid": 35568, "ts": 10599970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1660", "tid": 35568, "ts": 10600056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decfb0", "tid": 35568, "ts": 10600141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decd40", "tid": 35568, "ts": 10600227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defc60", "tid": 35568, "ts": 10600313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defb90", "tid": 35568, "ts": 10600400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defac0", "tid": 35568, "ts": 10600486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def850", "tid": 35568, "ts": 10600572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded8a0", "tid": 35568, "ts": 10600659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded7d0", "tid": 35568, "ts": 10600745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defed0", "tid": 35568, "ts": 10600831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def510", "tid": 35568, "ts": 10600917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee4d0", "tid": 35568, "ts": 10601003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defe00", "tid": 35568, "ts": 10601089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defd30", "tid": 35568, "ts": 10601175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def2a0", "tid": 35568, "ts": 10601260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee5a0", "tid": 35568, "ts": 10601347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded490", "tid": 35568, "ts": 10601434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def1d0", "tid": 35568, "ts": 10601520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded220", "tid": 35568, "ts": 10601606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def440", "tid": 35568, "ts": 10601692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded3c0", "tid": 35568, "ts": 10601778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee0c0", "tid": 35568, "ts": 10601864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded970", "tid": 35568, "ts": 10601951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee9b0", "tid": 35568, "ts": 10602038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deecf0", "tid": 35568, "ts": 10602125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded700", "tid": 35568, "ts": 10602211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def100", "tid": 35568, "ts": 10602297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded080", "tid": 35568, "ts": 10602384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedf20", "tid": 35568, "ts": 10602470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dede50", "tid": 35568, "ts": 10602557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def030", "tid": 35568, "ts": 10602642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedff0", "tid": 35568, "ts": 10602729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee810", "tid": 35568, "ts": 10602815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9d50", "tid": 35568, "ts": 10602902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9a10", "tid": 35568, "ts": 10602988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea230", "tid": 35568, "ts": 10603074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decad0", "tid": 35568, "ts": 10603160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec790", "tid": 35568, "ts": 10603246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9ae0", "tid": 35568, "ts": 10603333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec520", "tid": 35568, "ts": 10603419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea090", "tid": 35568, "ts": 10603505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec450", "tid": 35568, "ts": 10603591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec380", "tid": 35568, "ts": 10603677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec2b0", "tid": 35568, "ts": 10603765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec110", "tid": 35568, "ts": 10603851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deaf30", "tid": 35568, "ts": 10603937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dead90", "tid": 35568, "ts": 10604023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb270", "tid": 35568, "ts": 10604110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea710", "tid": 35568, "ts": 10604196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debb60", "tid": 35568, "ts": 10604282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deab20", "tid": 35568, "ts": 10604368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deba90", "tid": 35568, "ts": 10604455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb9c0", "tid": 35568, "ts": 10604542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deabf0", "tid": 35568, "ts": 10604628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9ef0", "tid": 35568, "ts": 10604715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb1a0", "tid": 35568, "ts": 10604802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea3d0", "tid": 35568, "ts": 10604888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea980", "tid": 35568, "ts": 10604975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec860", "tid": 35568, "ts": 10605061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea8b0", "tid": 35568, "ts": 10605147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deae60", "tid": 35568, "ts": 10605233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb680", "tid": 35568, "ts": 10605320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb750", "tid": 35568, "ts": 10605406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea570", "tid": 35568, "ts": 10605493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debd00", "tid": 35568, "ts": 10605579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7650", "tid": 35568, "ts": 10605666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7580", "tid": 35568, "ts": 10605752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7c00", "tid": 35568, "ts": 10605839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7170", "tid": 35568, "ts": 10605925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6c90", "tid": 35568, "ts": 10606011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8d10", "tid": 35568, "ts": 10606192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8c40", "tid": 35568, "ts": 10606300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8b70", "tid": 35568, "ts": 10606387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6e30", "tid": 35568, "ts": 10606475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8aa0", "tid": 35568, "ts": 10606562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de70a0", "tid": 35568, "ts": 10606649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9050", "tid": 35568, "ts": 10606735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6950", "tid": 35568, "ts": 10606822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8010", "tid": 35568, "ts": 10606909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de66e0", "tid": 35568, "ts": 10606996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7e70", "tid": 35568, "ts": 10607082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8760", "tid": 35568, "ts": 10607168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6610", "tid": 35568, "ts": 10607254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6540", "tid": 35568, "ts": 10607340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de84f0", "tid": 35568, "ts": 10607425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8420", "tid": 35568, "ts": 10607512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8690", "tid": 35568, "ts": 10607598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de89d0", "tid": 35568, "ts": 10607685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de85c0", "tid": 35568, "ts": 10607771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6bc0", "tid": 35568, "ts": 10607857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9390", "tid": 35568, "ts": 10607943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8830", "tid": 35568, "ts": 10608029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9530", "tid": 35568, "ts": 10608115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de80e0", "tid": 35568, "ts": 10608201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7a60", "tid": 35568, "ts": 10608287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9870", "tid": 35568, "ts": 10608374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9460", "tid": 35568, "ts": 10608460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4800", "tid": 35568, "ts": 10608546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4250", "tid": 35568, "ts": 10608632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3480", "tid": 35568, "ts": 10608718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3140", "tid": 35568, "ts": 10608803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de37c0", "tid": 35568, "ts": 10608889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de40b0", "tid": 35568, "ts": 10608976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6060", "tid": 35568, "ts": 10609062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4660", "tid": 35568, "ts": 10609148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3210", "tid": 35568, "ts": 10609234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3f10", "tid": 35568, "ts": 10609320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5df0", "tid": 35568, "ts": 10609407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3e40", "tid": 35568, "ts": 10609493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3d70", "tid": 35568, "ts": 10609580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de44c0", "tid": 35568, "ts": 10609665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5ab0", "tid": 35568, "ts": 10609751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5840", "tid": 35568, "ts": 10609837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5770", "tid": 35568, "ts": 10609923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3a30", "tid": 35568, "ts": 10610009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de63a0", "tid": 35568, "ts": 10610095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5500", "tid": 35568, "ts": 10610181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5290", "tid": 35568, "ts": 10610267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de51c0", "tid": 35568, "ts": 10610354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4f50", "tid": 35568, "ts": 10610441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de62d0", "tid": 35568, "ts": 10610527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3960", "tid": 35568, "ts": 10610613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de50f0", "tid": 35568, "ts": 10610699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4e80", "tid": 35568, "ts": 10610786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de59e0", "tid": 35568, "ts": 10610872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4db0", "tid": 35568, "ts": 10610958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4ce0", "tid": 35568, "ts": 10611044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3550", "tid": 35568, "ts": 10611130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de48d0", "tid": 35568, "ts": 10611216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1810", "tid": 35568, "ts": 10611302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de10c0", "tid": 35568, "ts": 10611389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0220", "tid": 35568, "ts": 10611475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddffb0", "tid": 35568, "ts": 10611561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0b10", "tid": 35568, "ts": 10611647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfe10", "tid": 35568, "ts": 10611733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1740", "tid": 35568, "ts": 10611820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0490", "tid": 35568, "ts": 10611907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de29f0", "tid": 35568, "ts": 10611993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1670", "tid": 35568, "ts": 10612079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2440", "tid": 35568, "ts": 10612165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2c60", "tid": 35568, "ts": 10612250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0e50", "tid": 35568, "ts": 10612336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1e90", "tid": 35568, "ts": 10612422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0630", "tid": 35568, "ts": 10612509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0150", "tid": 35568, "ts": 10612595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2370", "tid": 35568, "ts": 10612681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2ed0", "tid": 35568, "ts": 10612767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2850", "tid": 35568, "ts": 10612853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2b90", "tid": 35568, "ts": 10612938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de26b0", "tid": 35568, "ts": 10613024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0d80", "tid": 35568, "ts": 10613109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de03c0", "tid": 35568, "ts": 10613196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de19b0", "tid": 35568, "ts": 10613281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0560", "tid": 35568, "ts": 10613368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0a40", "tid": 35568, "ts": 10613454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de15a0", "tid": 35568, "ts": 10613539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1400", "tid": 35568, "ts": 10613625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de07d0", "tid": 35568, "ts": 10613711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1dc0", "tid": 35568, "ts": 10613797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0970", "tid": 35568, "ts": 10613883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de18e0", "tid": 35568, "ts": 10613969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde270", "tid": 35568, "ts": 10614055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde000", "tid": 35568, "ts": 10614141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddda50", "tid": 35568, "ts": 10614227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd980", "tid": 35568, "ts": 10614314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd7e0", "tid": 35568, "ts": 10614399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddb20", "tid": 35568, "ts": 10614485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde410", "tid": 35568, "ts": 10614571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd640", "tid": 35568, "ts": 10614657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc940", "tid": 35568, "ts": 10614743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf6c0", "tid": 35568, "ts": 10614828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddca10", "tid": 35568, "ts": 10614913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd300", "tid": 35568, "ts": 10614999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd570", "tid": 35568, "ts": 10615085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddef70", "tid": 35568, "ts": 10615171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf1e0", "tid": 35568, "ts": 10615257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf520", "tid": 35568, "ts": 10615343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddd90", "tid": 35568, "ts": 10615429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf860", "tid": 35568, "ts": 10615515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddeea0", "tid": 35568, "ts": 10615601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde8f0", "tid": 35568, "ts": 10615687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcc80", "tid": 35568, "ts": 10615773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfad0", "tid": 35568, "ts": 10615859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd090", "tid": 35568, "ts": 10615946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf450", "tid": 35568, "ts": 10616032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde0d0", "tid": 35568, "ts": 10616118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dded00", "tid": 35568, "ts": 10616203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde4e0", "tid": 35568, "ts": 10616290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf930", "tid": 35568, "ts": 10616375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf110", "tid": 35568, "ts": 10616461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde820", "tid": 35568, "ts": 10616547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddce20", "tid": 35568, "ts": 10616634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd3d0", "tid": 35568, "ts": 10616719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda8c0", "tid": 35568, "ts": 10616805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda7f0", "tid": 35568, "ts": 10616891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda0a0", "tid": 35568, "ts": 10616977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9e30", "tid": 35568, "ts": 10617063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbb70", "tid": 35568, "ts": 10617150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9af0", "tid": 35568, "ts": 10617235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb280", "tid": 35568, "ts": 10617322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc1f0", "tid": 35568, "ts": 10617407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddaf40", "tid": 35568, "ts": 10617493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9a20", "tid": 35568, "ts": 10617579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddada0", "tid": 35568, "ts": 10617665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb420", "tid": 35568, "ts": 10617751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb1b0", "tid": 35568, "ts": 10617837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb4f0", "tid": 35568, "ts": 10617922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd96e0", "tid": 35568, "ts": 10618009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9610", "tid": 35568, "ts": 10618094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb350", "tid": 35568, "ts": 10618181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc870", "tid": 35568, "ts": 10618266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc6d0", "tid": 35568, "ts": 10618353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb760", "tid": 35568, "ts": 10618439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb5c0", "tid": 35568, "ts": 10618525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda720", "tid": 35568, "ts": 10618611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9540", "tid": 35568, "ts": 10618697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda580", "tid": 35568, "ts": 10618783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc7a0", "tid": 35568, "ts": 10618869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddac00", "tid": 35568, "ts": 10618955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda4b0", "tid": 35568, "ts": 10619041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddaa60", "tid": 35568, "ts": 10619127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddab30", "tid": 35568, "ts": 10619213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9c90", "tid": 35568, "ts": 10619298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc460", "tid": 35568, "ts": 10619384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda310", "tid": 35568, "ts": 10619470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7250", "tid": 35568, "ts": 10619556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6e40", "tid": 35568, "ts": 10619642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6b00", "tid": 35568, "ts": 10619727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7c10", "tid": 35568, "ts": 10619813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd93a0", "tid": 35568, "ts": 10619899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6fe0", "tid": 35568, "ts": 10619985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7db0", "tid": 35568, "ts": 10620072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd89e0", "tid": 35568, "ts": 10620157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9060", "tid": 35568, "ts": 10620243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6480", "tid": 35568, "ts": 10620329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd63b0", "tid": 35568, "ts": 10620415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8ec0", "tid": 35568, "ts": 10620501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6bd0", "tid": 35568, "ts": 10620588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7320", "tid": 35568, "ts": 10620673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd81c0", "tid": 35568, "ts": 10620759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7800", "tid": 35568, "ts": 10620845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd80f0", "tid": 35568, "ts": 10620931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7f50", "tid": 35568, "ts": 10621017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8770", "tid": 35568, "ts": 10621104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd70b0", "tid": 35568, "ts": 10621189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6890", "tid": 35568, "ts": 10621276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8ab0", "tid": 35568, "ts": 10621361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7730", "tid": 35568, "ts": 10621448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8910", "tid": 35568, "ts": 10621534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6a30", "tid": 35568, "ts": 10621619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8360", "tid": 35568, "ts": 10621736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6210", "tid": 35568, "ts": 10621824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd85d0", "tid": 35568, "ts": 10621910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7e80", "tid": 35568, "ts": 10621996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6140", "tid": 35568, "ts": 10622082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6960", "tid": 35568, "ts": 10622169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8020", "tid": 35568, "ts": 10622255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5ac0", "tid": 35568, "ts": 10622342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5920", "tid": 35568, "ts": 10622429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5370", "tid": 35568, "ts": 10622515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd55e0", "tid": 35568, "ts": 10622601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5510", "tid": 35568, "ts": 10622687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4a80", "tid": 35568, "ts": 10622773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5100", "tid": 35568, "ts": 10622861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5780", "tid": 35568, "ts": 10622946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2e10", "tid": 35568, "ts": 10623032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4670", "tid": 35568, "ts": 10623117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd45a0", "tid": 35568, "ts": 10623204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4e90", "tid": 35568, "ts": 10623290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4cf0", "tid": 35568, "ts": 10623376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3d80", "tid": 35568, "ts": 10623462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3be0", "tid": 35568, "ts": 10623548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2d40", "tid": 35568, "ts": 10623634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3080", "tid": 35568, "ts": 10623721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3630", "tid": 35568, "ts": 10623807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3700", "tid": 35568, "ts": 10623893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3490", "tid": 35568, "ts": 10623978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd32f0", "tid": 35568, "ts": 10624065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4810", "tid": 35568, "ts": 10624151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3b10", "tid": 35568, "ts": 10624237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd51d0", "tid": 35568, "ts": 10624323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd48e0", "tid": 35568, "ts": 10624410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3f20", "tid": 35568, "ts": 10624496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5ed0", "tid": 35568, "ts": 10624583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd56b0", "tid": 35568, "ts": 10624669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4400", "tid": 35568, "ts": 10624756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4190", "tid": 35568, "ts": 10624842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5d30", "tid": 35568, "ts": 10624928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3cb0", "tid": 35568, "ts": 10625014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1d00", "tid": 35568, "ts": 10625100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd14e0", "tid": 35568, "ts": 10625186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2380", "tid": 35568, "ts": 10625272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2520", "tid": 35568, "ts": 10625358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0d90", "tid": 35568, "ts": 10625445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcffc0", "tid": 35568, "ts": 10625531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1270", "tid": 35568, "ts": 10625618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2110", "tid": 35568, "ts": 10625704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfbb0", "tid": 35568, "ts": 10625791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1410", "tid": 35568, "ts": 10625878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0cc0", "tid": 35568, "ts": 10625966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0640", "tid": 35568, "ts": 10626053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1b60", "tid": 35568, "ts": 10626141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0090", "tid": 35568, "ts": 10626229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1680", "tid": 35568, "ts": 10626361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0e60", "tid": 35568, "ts": 10626451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2c70", "tid": 35568, "ts": 10626538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfe20", "tid": 35568, "ts": 10626624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2ba0", "tid": 35568, "ts": 10626734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2ad0", "tid": 35568, "ts": 10626820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1a90", "tid": 35568, "ts": 10626906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd08b0", "tid": 35568, "ts": 10626992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2a00", "tid": 35568, "ts": 10627079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd03d0", "tid": 35568, "ts": 10627164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd10d0", "tid": 35568, "ts": 10627250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfd50", "tid": 35568, "ts": 10627336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd25f0", "tid": 35568, "ts": 10627422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0160", "tid": 35568, "ts": 10627507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd15b0", "tid": 35568, "ts": 10627593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2930", "tid": 35568, "ts": 10627679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfae0", "tid": 35568, "ts": 10627764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd07e0", "tid": 35568, "ts": 10627851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdcd0", "tid": 35568, "ts": 10627938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd580", "tid": 35568, "ts": 10628024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd310", "tid": 35568, "ts": 10628110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf460", "tid": 35568, "ts": 10628196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccbc0", "tid": 35568, "ts": 10628282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce900", "tid": 35568, "ts": 10628367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcca20", "tid": 35568, "ts": 10628454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd990", "tid": 35568, "ts": 10628540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce0e0", "tid": 35568, "ts": 10628626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce420", "tid": 35568, "ts": 10628712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc950", "tid": 35568, "ts": 10628798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce4f0", "tid": 35568, "ts": 10628884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd0a0", "tid": 35568, "ts": 10628970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce5c0", "tid": 35568, "ts": 10629056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf6d0", "tid": 35568, "ts": 10629142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd8c0", "tid": 35568, "ts": 10629227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccfd0", "tid": 35568, "ts": 10629313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc7b0", "tid": 35568, "ts": 10629399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf530", "tid": 35568, "ts": 10629485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccd60", "tid": 35568, "ts": 10629570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcde70", "tid": 35568, "ts": 10629656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcede0", "tid": 35568, "ts": 10629742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dceeb0", "tid": 35568, "ts": 10629828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd4b0", "tid": 35568, "ts": 10629914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf120", "tid": 35568, "ts": 10630001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9e40", "tid": 35568, "ts": 10630086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc93b0", "tid": 35568, "ts": 10630172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc92e0", "tid": 35568, "ts": 10630258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca8d0", "tid": 35568, "ts": 10630344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb840", "tid": 35568, "ts": 10630429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9fe0", "tid": 35568, "ts": 10630516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb0f0", "tid": 35568, "ts": 10630602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca590", "tid": 35568, "ts": 10630688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb500", "tid": 35568, "ts": 10630774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbab0", "tid": 35568, "ts": 10630860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcace0", "tid": 35568, "ts": 10630946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc2d0", "tid": 35568, "ts": 10631031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9b00", "tid": 35568, "ts": 10631118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcab40", "tid": 35568, "ts": 10631204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb770", "tid": 35568, "ts": 10631290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9960", "tid": 35568, "ts": 10631376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc96f0", "tid": 35568, "ts": 10631461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9210", "tid": 35568, "ts": 10631547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb6a0", "tid": 35568, "ts": 10631633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcaf50", "tid": 35568, "ts": 10631718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca660", "tid": 35568, "ts": 10631804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9f10", "tid": 35568, "ts": 10631890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9140", "tid": 35568, "ts": 10631976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9620", "tid": 35568, "ts": 10632062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9480", "tid": 35568, "ts": 10632147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9550", "tid": 35568, "ts": 10632233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbc50", "tid": 35568, "ts": 10632318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbf90", "tid": 35568, "ts": 10632404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb290", "tid": 35568, "ts": 10632489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc97c0", "tid": 35568, "ts": 10632576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbec0", "tid": 35568, "ts": 10632662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9ca0", "tid": 35568, "ts": 10632748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6e50", "tid": 35568, "ts": 10632833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6b10", "tid": 35568, "ts": 10632919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7400", "tid": 35568, "ts": 10633005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6560", "tid": 35568, "ts": 10633091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7810", "tid": 35568, "ts": 10633176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7260", "tid": 35568, "ts": 10633262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6970", "tid": 35568, "ts": 10633347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8e00", "tid": 35568, "ts": 10633433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8c60", "tid": 35568, "ts": 10633519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc75a0", "tid": 35568, "ts": 10633606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8ac0", "tid": 35568, "ts": 10633691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8920", "tid": 35568, "ts": 10633777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc74d0", "tid": 35568, "ts": 10633862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8370", "tid": 35568, "ts": 10633949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8d30", "tid": 35568, "ts": 10634034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8fa0", "tid": 35568, "ts": 10634120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6150", "tid": 35568, "ts": 10634205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8100", "tid": 35568, "ts": 10634290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5ee0", "tid": 35568, "ts": 10634375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7dc0", "tid": 35568, "ts": 10634461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7740", "tid": 35568, "ts": 10634547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc86b0", "tid": 35568, "ts": 10634634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc85e0", "tid": 35568, "ts": 10634720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7c20", "tid": 35568, "ts": 10634805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc79b0", "tid": 35568, "ts": 10634891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8030", "tid": 35568, "ts": 10634977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7b50", "tid": 35568, "ts": 10635063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7e90", "tid": 35568, "ts": 10635148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9070", "tid": 35568, "ts": 10635234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6a40", "tid": 35568, "ts": 10635321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc67d0", "tid": 35568, "ts": 10635407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8780", "tid": 35568, "ts": 10635493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc48f0", "tid": 35568, "ts": 10635578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4750", "tid": 35568, "ts": 10635664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3cc0", "tid": 35568, "ts": 10635749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3710", "tid": 35568, "ts": 10635835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc45b0", "tid": 35568, "ts": 10635922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4270", "tid": 35568, "ts": 10636008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc33d0", "tid": 35568, "ts": 10636094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3bf0", "tid": 35568, "ts": 10636180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3e60", "tid": 35568, "ts": 10636266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3300", "tid": 35568, "ts": 10636352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3b20", "tid": 35568, "ts": 10636438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3090", "tid": 35568, "ts": 10636524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5c70", "tid": 35568, "ts": 10636609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3d90", "tid": 35568, "ts": 10636696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc51e0", "tid": 35568, "ts": 10636782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2fc0", "tid": 35568, "ts": 10636868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5ad0", "tid": 35568, "ts": 10636953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5380", "tid": 35568, "ts": 10637039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5930", "tid": 35568, "ts": 10637124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4c30", "tid": 35568, "ts": 10637210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5860", "tid": 35568, "ts": 10637333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc55f0", "tid": 35568, "ts": 10637491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5110", "tid": 35568, "ts": 10637649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2ef0", "tid": 35568, "ts": 10637789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2e20", "tid": 35568, "ts": 10637910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2d50", "tid": 35568, "ts": 10638067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5450", "tid": 35568, "ts": 10638192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4410", "tid": 35568, "ts": 10638278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4ea0", "tid": 35568, "ts": 10638410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3980", "tid": 35568, "ts": 10638534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4dd0", "tid": 35568, "ts": 10638620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2bb0", "tid": 35568, "ts": 10638706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc08c0", "tid": 35568, "ts": 10638792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0580", "tid": 35568, "ts": 10638878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc04b0", "tid": 35568, "ts": 10638964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc00a0", "tid": 35568, "ts": 10639049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfd60", "tid": 35568, "ts": 10639135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfaf0", "tid": 35568, "ts": 10639222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2600", "tid": 35568, "ts": 10639308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfc90", "tid": 35568, "ts": 10639394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf950", "tid": 35568, "ts": 10639479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf880", "tid": 35568, "ts": 10639566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1f80", "tid": 35568, "ts": 10639651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1eb0", "tid": 35568, "ts": 10639737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1b70", "tid": 35568, "ts": 10639823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc11b0", "tid": 35568, "ts": 10639910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc15c0", "tid": 35568, "ts": 10639996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc10e0", "tid": 35568, "ts": 10640082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbff00", "tid": 35568, "ts": 10640168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2120", "tid": 35568, "ts": 10640253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1d10", "tid": 35568, "ts": 10640339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1830", "tid": 35568, "ts": 10640425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc21f0", "tid": 35568, "ts": 10640510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0cd0", "tid": 35568, "ts": 10640597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1010", "tid": 35568, "ts": 10640683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2870", "tid": 35568, "ts": 10640769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc03e0", "tid": 35568, "ts": 10640854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1350", "tid": 35568, "ts": 10640941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1aa0", "tid": 35568, "ts": 10641027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0c00", "tid": 35568, "ts": 10641112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0720", "tid": 35568, "ts": 10641197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc19d0", "tid": 35568, "ts": 10641283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfbc0", "tid": 35568, "ts": 10641369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0990", "tid": 35568, "ts": 10641456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2701c0", "tid": 35568, "ts": 10641542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fa70", "tid": 35568, "ts": 10641628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ff50", "tid": 35568, "ts": 10641714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f250", "tid": 35568, "ts": 10641800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ea30", "tid": 35568, "ts": 10641885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e7c0", "tid": 35568, "ts": 10641972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f9a0", "tid": 35568, "ts": 10642058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e550", "tid": 35568, "ts": 10642143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e890", "tid": 35568, "ts": 10642229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e2e0", "tid": 35568, "ts": 10642315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e070", "tid": 35568, "ts": 10642401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fce0", "tid": 35568, "ts": 10642487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2705d0", "tid": 35568, "ts": 10642573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dfa0", "tid": 35568, "ts": 10642660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f660", "tid": 35568, "ts": 10642746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26efe0", "tid": 35568, "ts": 10642832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270500", "tid": 35568, "ts": 10642917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270df0", "tid": 35568, "ts": 10643004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f590", "tid": 35568, "ts": 10643091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ded0", "tid": 35568, "ts": 10643176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ed70", "tid": 35568, "ts": 10643262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270430", "tid": 35568, "ts": 10643348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fb40", "tid": 35568, "ts": 10643433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2700f0", "tid": 35568, "ts": 10643520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270840", "tid": 35568, "ts": 10643605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e140", "tid": 35568, "ts": 10643692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26de00", "tid": 35568, "ts": 10643778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ebd0", "tid": 35568, "ts": 10643863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270360", "tid": 35568, "ts": 10643950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2706a0", "tid": 35568, "ts": 10644036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f3f0", "tid": 35568, "ts": 10644122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c8e0", "tid": 35568, "ts": 10644208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c4d0", "tid": 35568, "ts": 10644293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c260", "tid": 35568, "ts": 10644381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d920", "tid": 35568, "ts": 10644466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b3c0", "tid": 35568, "ts": 10644551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b220", "tid": 35568, "ts": 10644638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d850", "tid": 35568, "ts": 10644724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bf20", "tid": 35568, "ts": 10644810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cb50", "tid": 35568, "ts": 10644896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26afb0", "tid": 35568, "ts": 10644982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d780", "tid": 35568, "ts": 10645067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aee0", "tid": 35568, "ts": 10645154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d6b0", "tid": 35568, "ts": 10645239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ad40", "tid": 35568, "ts": 10645325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c670", "tid": 35568, "ts": 10645412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ac70", "tid": 35568, "ts": 10645498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ba40", "tid": 35568, "ts": 10645584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aa00", "tid": 35568, "ts": 10645669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d370", "tid": 35568, "ts": 10645755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d1d0", "tid": 35568, "ts": 10645841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b2f0", "tid": 35568, "ts": 10645927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d510", "tid": 35568, "ts": 10646013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aba0", "tid": 35568, "ts": 10646099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d100", "tid": 35568, "ts": 10646186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aad0", "tid": 35568, "ts": 10646272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b8a0", "tid": 35568, "ts": 10646358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b150", "tid": 35568, "ts": 10646444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26db90", "tid": 35568, "ts": 10646530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d2a0", "tid": 35568, "ts": 10646616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b630", "tid": 35568, "ts": 10646702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d030", "tid": 35568, "ts": 10646789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b560", "tid": 35568, "ts": 10646875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268640", "tid": 35568, "ts": 10646961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267e20", "tid": 35568, "ts": 10647047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267ae0", "tid": 35568, "ts": 10647133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267a10", "tid": 35568, "ts": 10647219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2677a0", "tid": 35568, "ts": 10647305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268710", "tid": 35568, "ts": 10647391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2695b0", "tid": 35568, "ts": 10647477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267c80", "tid": 35568, "ts": 10647563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2676d0", "tid": 35568, "ts": 10647649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a860", "tid": 35568, "ts": 10647735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2687e0", "tid": 35568, "ts": 10647821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a790", "tid": 35568, "ts": 10647907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2690d0", "tid": 35568, "ts": 10647993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268300", "tid": 35568, "ts": 10648079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267600", "tid": 35568, "ts": 10648166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268d90", "tid": 35568, "ts": 10648251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2691a0", "tid": 35568, "ts": 10648337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a2b0", "tid": 35568, "ts": 10648423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269d00", "tid": 35568, "ts": 10648510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a110", "tid": 35568, "ts": 10648596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a380", "tid": 35568, "ts": 10648681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268bf0", "tid": 35568, "ts": 10648767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a450", "tid": 35568, "ts": 10648854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268230", "tid": 35568, "ts": 10648939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269f70", "tid": 35568, "ts": 10649026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269dd0", "tid": 35568, "ts": 10649111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267530", "tid": 35568, "ts": 10649197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268e60", "tid": 35568, "ts": 10649283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268160", "tid": 35568, "ts": 10649369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268090", "tid": 35568, "ts": 10649455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269ea0", "tid": 35568, "ts": 10649542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269b60", "tid": 35568, "ts": 10649628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2665c0", "tid": 35568, "ts": 10649714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266420", "tid": 35568, "ts": 10649799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265f40", "tid": 35568, "ts": 10649886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265cd0", "tid": 35568, "ts": 10649971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265c00", "tid": 35568, "ts": 10650057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265a60", "tid": 35568, "ts": 10650143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2658c0", "tid": 35568, "ts": 10650229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265650", "tid": 35568, "ts": 10650316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266b70", "tid": 35568, "ts": 10650402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264f00", "tid": 35568, "ts": 10650487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2650a0", "tid": 35568, "ts": 10650574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2661b0", "tid": 35568, "ts": 10650660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264c90", "tid": 35568, "ts": 10650746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264bc0", "tid": 35568, "ts": 10650843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264880", "tid": 35568, "ts": 10650931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2643a0", "tid": 35568, "ts": 10651017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2654b0", "tid": 35568, "ts": 10651103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264200", "tid": 35568, "ts": 10651190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2653e0", "tid": 35568, "ts": 10651276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266830", "tid": 35568, "ts": 10651361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2660e0", "tid": 35568, "ts": 10651447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266c40", "tid": 35568, "ts": 10651532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267460", "tid": 35568, "ts": 10651619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2671f0", "tid": 35568, "ts": 10651705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264af0", "tid": 35568, "ts": 10651791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2646e0", "tid": 35568, "ts": 10651877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266350", "tid": 35568, "ts": 10651964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264a20", "tid": 35568, "ts": 10652050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264610", "tid": 35568, "ts": 10652136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2642d0", "tid": 35568, "ts": 10652222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266eb0", "tid": 35568, "ts": 10652308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2630f0", "tid": 35568, "ts": 10652394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262e80", "tid": 35568, "ts": 10652480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261e40", "tid": 35568, "ts": 10652566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263d20", "tid": 35568, "ts": 10652652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261b00", "tid": 35568, "ts": 10652738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262db0", "tid": 35568, "ts": 10652824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262590", "tid": 35568, "ts": 10652912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261480", "tid": 35568, "ts": 10653101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263770", "tid": 35568, "ts": 10653191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2620b0", "tid": 35568, "ts": 10653278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2613b0", "tid": 35568, "ts": 10653364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2612e0", "tid": 35568, "ts": 10653451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2631c0", "tid": 35568, "ts": 10653538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260e00", "tid": 35568, "ts": 10653624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262c10", "tid": 35568, "ts": 10653711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2635d0", "tid": 35568, "ts": 10653799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263910", "tid": 35568, "ts": 10653885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262f50", "tid": 35568, "ts": 10653972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262b40", "tid": 35568, "ts": 10654058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260fa0", "tid": 35568, "ts": 10654145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2617c0", "tid": 35568, "ts": 10654231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261210", "tid": 35568, "ts": 10654318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260ed0", "tid": 35568, "ts": 10654404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264060", "tid": 35568, "ts": 10654490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261ca0", "tid": 35568, "ts": 10654577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2616f0", "tid": 35568, "ts": 10654663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261620", "tid": 35568, "ts": 10654749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263df0", "tid": 35568, "ts": 10654835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261070", "tid": 35568, "ts": 10654921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261140", "tid": 35568, "ts": 10655006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262250", "tid": 35568, "ts": 10655092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2624c0", "tid": 35568, "ts": 10655180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e700", "tid": 35568, "ts": 10655266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e080", "tid": 35568, "ts": 10655352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dc70", "tid": 35568, "ts": 10655438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f190", "tid": 35568, "ts": 10655525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25eff0", "tid": 35568, "ts": 10655611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f400", "tid": 35568, "ts": 10655698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260850", "tid": 35568, "ts": 10655783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ef20", "tid": 35568, "ts": 10655869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260510", "tid": 35568, "ts": 10655956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e630", "tid": 35568, "ts": 10656041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2601d0", "tid": 35568, "ts": 10656127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260030", "tid": 35568, "ts": 10656213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f0c0", "tid": 35568, "ts": 10656300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f8e0", "tid": 35568, "ts": 10656386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e490", "tid": 35568, "ts": 10656472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e3c0", "tid": 35568, "ts": 10656559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260370", "tid": 35568, "ts": 10656644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dad0", "tid": 35568, "ts": 10656730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dee0", "tid": 35568, "ts": 10656816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2605e0", "tid": 35568, "ts": 10656902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ebe0", "tid": 35568, "ts": 10656988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fdc0", "tid": 35568, "ts": 10657074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f740", "tid": 35568, "ts": 10657160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e7d0", "tid": 35568, "ts": 10657246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f9b0", "tid": 35568, "ts": 10657332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e2f0", "tid": 35568, "ts": 10657418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f330", "tid": 35568, "ts": 10657504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25da00", "tid": 35568, "ts": 10657590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e970", "tid": 35568, "ts": 10657676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fb50", "tid": 35568, "ts": 10657762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f670", "tid": 35568, "ts": 10657848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ed80", "tid": 35568, "ts": 10657935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cb60", "tid": 35568, "ts": 10658021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c8f0", "tid": 35568, "ts": 10658106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b7e0", "tid": 35568, "ts": 10658192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d790", "tid": 35568, "ts": 10658278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c750", "tid": 35568, "ts": 10658364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c5b0", "tid": 35568, "ts": 10658450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d6c0", "tid": 35568, "ts": 10658536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d380", "tid": 35568, "ts": 10658622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d1e0", "tid": 35568, "ts": 10658708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a940", "tid": 35568, "ts": 10658794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d2b0", "tid": 35568, "ts": 10658879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cf70", "tid": 35568, "ts": 10658966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b640", "tid": 35568, "ts": 10659052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bf30", "tid": 35568, "ts": 10659137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cea0", "tid": 35568, "ts": 10659223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b300", "tid": 35568, "ts": 10659310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ae20", "tid": 35568, "ts": 10659396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25be60", "tid": 35568, "ts": 10659482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b570", "tid": 35568, "ts": 10659568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bcc0", "tid": 35568, "ts": 10659654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b4a0", "tid": 35568, "ts": 10659740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a870", "tid": 35568, "ts": 10659825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25aae0", "tid": 35568, "ts": 10659912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a600", "tid": 35568, "ts": 10659998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25abb0", "tid": 35568, "ts": 10660083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a6d0", "tid": 35568, "ts": 10660170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d860", "tid": 35568, "ts": 10660256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cd00", "tid": 35568, "ts": 10660342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25aef0", "tid": 35568, "ts": 10660428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ac80", "tid": 35568, "ts": 10660515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25aa10", "tid": 35568, "ts": 10660600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bb20", "tid": 35568, "ts": 10660687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258580", "tid": 35568, "ts": 10660774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259f80", "tid": 35568, "ts": 10660859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2584b0", "tid": 35568, "ts": 10660946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a050", "tid": 35568, "ts": 10661032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a120", "tid": 35568, "ts": 10661119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259900", "tid": 35568, "ts": 10661206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2577b0", "tid": 35568, "ts": 10661293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258170", "tid": 35568, "ts": 10661381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a1f0", "tid": 35568, "ts": 10661468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257610", "tid": 35568, "ts": 10661597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258f40", "tid": 35568, "ts": 10661685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259de0", "tid": 35568, "ts": 10661772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258b30", "tid": 35568, "ts": 10661857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258990", "tid": 35568, "ts": 10661943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258da0", "tid": 35568, "ts": 10662028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257f00", "tid": 35568, "ts": 10662115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257e30", "tid": 35568, "ts": 10662200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257bc0", "tid": 35568, "ts": 10662286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2572d0", "tid": 35568, "ts": 10662373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2590e0", "tid": 35568, "ts": 10662459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2583e0", "tid": 35568, "ts": 10662545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257c90", "tid": 35568, "ts": 10662631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258cd0", "tid": 35568, "ts": 10662717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a2c0", "tid": 35568, "ts": 10662803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258240", "tid": 35568, "ts": 10662888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2587f0", "tid": 35568, "ts": 10662975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2576e0", "tid": 35568, "ts": 10663060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2591b0", "tid": 35568, "ts": 10663146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257200", "tid": 35568, "ts": 10663232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257d60", "tid": 35568, "ts": 10663318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258650", "tid": 35568, "ts": 10663404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257950", "tid": 35568, "ts": 10663491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254550", "tid": 35568, "ts": 10663577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253fa0", "tid": 35568, "ts": 10663663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256840", "tid": 35568, "ts": 10663749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2566a0", "tid": 35568, "ts": 10663835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256360", "tid": 35568, "ts": 10663921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253e00", "tid": 35568, "ts": 10664007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257060", "tid": 35568, "ts": 10664093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255660", "tid": 35568, "ts": 10664179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255590", "tid": 35568, "ts": 10664265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2554c0", "tid": 35568, "ts": 10664351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2546f0", "tid": 35568, "ts": 10664437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256290", "tid": 35568, "ts": 10664523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2565d0", "tid": 35568, "ts": 10664608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254140", "tid": 35568, "ts": 10664694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256770", "tid": 35568, "ts": 10664779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256020", "tid": 35568, "ts": 10664866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255e80", "tid": 35568, "ts": 10664952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255320", "tid": 35568, "ts": 10665038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256c50", "tid": 35568, "ts": 10665123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253d30", "tid": 35568, "ts": 10665209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2560f0", "tid": 35568, "ts": 10665295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255a70", "tid": 35568, "ts": 10665381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254fe0", "tid": 35568, "ts": 10665466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254f10", "tid": 35568, "ts": 10665553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254bd0", "tid": 35568, "ts": 10665639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255db0", "tid": 35568, "ts": 10665724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254b00", "tid": 35568, "ts": 10665811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254ca0", "tid": 35568, "ts": 10665897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254d70", "tid": 35568, "ts": 10665983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255250", "tid": 35568, "ts": 10666068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254e40", "tid": 35568, "ts": 10666153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254890", "tid": 35568, "ts": 10666240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2539f0", "tid": 35568, "ts": 10666326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253510", "tid": 35568, "ts": 10666411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2532a0", "tid": 35568, "ts": 10666496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252c20", "tid": 35568, "ts": 10666582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250c70", "tid": 35568, "ts": 10666668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251630", "tid": 35568, "ts": 10666753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250ba0", "tid": 35568, "ts": 10666839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252a80", "tid": 35568, "ts": 10666925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253ac0", "tid": 35568, "ts": 10667010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251b10", "tid": 35568, "ts": 10667095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250e10", "tid": 35568, "ts": 10667181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251f20", "tid": 35568, "ts": 10667267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253920", "tid": 35568, "ts": 10667352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253030", "tid": 35568, "ts": 10667437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251970", "tid": 35568, "ts": 10667523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251220", "tid": 35568, "ts": 10667611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253370", "tid": 35568, "ts": 10667696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253850", "tid": 35568, "ts": 10667783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2528e0", "tid": 35568, "ts": 10667868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2529b0", "tid": 35568, "ts": 10667954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2525a0", "tid": 35568, "ts": 10668040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2517d0", "tid": 35568, "ts": 10668126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251700", "tid": 35568, "ts": 10668211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2536b0", "tid": 35568, "ts": 10668298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252330", "tid": 35568, "ts": 10668384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2524d0", "tid": 35568, "ts": 10668470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253100", "tid": 35568, "ts": 10668606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251ff0", "tid": 35568, "ts": 10668797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250a00", "tid": 35568, "ts": 10668889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252400", "tid": 35568, "ts": 10668978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252260", "tid": 35568, "ts": 10669064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2520c0", "tid": 35568, "ts": 10669152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ea50", "tid": 35568, "ts": 10669238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e3d0", "tid": 35568, "ts": 10669325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e230", "tid": 35568, "ts": 10669411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24def0", "tid": 35568, "ts": 10669497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dc80", "tid": 35568, "ts": 10669584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dae0", "tid": 35568, "ts": 10669670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d870", "tid": 35568, "ts": 10669757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d600", "tid": 35568, "ts": 10669843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f340", "tid": 35568, "ts": 10669930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2505f0", "tid": 35568, "ts": 10670016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f270", "tid": 35568, "ts": 10670102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250110", "tid": 35568, "ts": 10670189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d530", "tid": 35568, "ts": 10670275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2502b0", "tid": 35568, "ts": 10670361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f680", "tid": 35568, "ts": 10670448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ecc0", "tid": 35568, "ts": 10670535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f4e0", "tid": 35568, "ts": 10670621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ed90", "tid": 35568, "ts": 10670707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250450", "tid": 35568, "ts": 10670793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fea0", "tid": 35568, "ts": 10670879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dfc0", "tid": 35568, "ts": 10670966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fd00", "tid": 35568, "ts": 10671053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e8b0", "tid": 35568, "ts": 10671139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2501e0", "tid": 35568, "ts": 10671226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250040", "tid": 35568, "ts": 10671312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fb60", "tid": 35568, "ts": 10671399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fa90", "tid": 35568, "ts": 10671485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24eb20", "tid": 35568, "ts": 10671571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f9c0", "tid": 35568, "ts": 10671657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f1a0", "tid": 35568, "ts": 10671744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ff70", "tid": 35568, "ts": 10671830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fdd0", "tid": 35568, "ts": 10671916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a880", "tid": 35568, "ts": 10672003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a6e0", "tid": 35568, "ts": 10672089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a540", "tid": 35568, "ts": 10672175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cc40", "tid": 35568, "ts": 10672261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b8c0", "tid": 35568, "ts": 10672347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b170", "tid": 35568, "ts": 10672433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d390", "tid": 35568, "ts": 10672519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c690", "tid": 35568, "ts": 10672605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d2c0", "tid": 35568, "ts": 10672691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c5c0", "tid": 35568, "ts": 10672778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c4f0", "tid": 35568, "ts": 10672864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c420", "tid": 35568, "ts": 10672951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b4b0", "tid": 35568, "ts": 10673037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bb30", "tid": 35568, "ts": 10673123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c0e0", "tid": 35568, "ts": 10673209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c350", "tid": 35568, "ts": 10673297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24aa20", "tid": 35568, "ts": 10673384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c010", "tid": 35568, "ts": 10673470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24afd0", "tid": 35568, "ts": 10673556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bf40", "tid": 35568, "ts": 10673642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24be70", "tid": 35568, "ts": 10673729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a3a0", "tid": 35568, "ts": 10673815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ba60", "tid": 35568, "ts": 10673901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24af00", "tid": 35568, "ts": 10673987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cd10", "tid": 35568, "ts": 10674073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b580", "tid": 35568, "ts": 10674159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a200", "tid": 35568, "ts": 10674246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cf80", "tid": 35568, "ts": 10674332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c280", "tid": 35568, "ts": 10674419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a130", "tid": 35568, "ts": 10674505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bc00", "tid": 35568, "ts": 10674591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a950", "tid": 35568, "ts": 10674678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249360", "tid": 35568, "ts": 10674765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2491c0", "tid": 35568, "ts": 10674851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249020", "tid": 35568, "ts": 10674937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248800", "tid": 35568, "ts": 10675023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248730", "tid": 35568, "ts": 10675108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247fe0", "tid": 35568, "ts": 10675196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247140", "tid": 35568, "ts": 10675282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246fa0", "tid": 35568, "ts": 10675368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247960", "tid": 35568, "ts": 10675454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2472e0", "tid": 35568, "ts": 10675540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247210", "tid": 35568, "ts": 10675626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246ed0", "tid": 35568, "ts": 10675712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248c10", "tid": 35568, "ts": 10675798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2496a0", "tid": 35568, "ts": 10675885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2495d0", "tid": 35568, "ts": 10675971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248590", "tid": 35568, "ts": 10676058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248320", "tid": 35568, "ts": 10676145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248250", "tid": 35568, "ts": 10676231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248180", "tid": 35568, "ts": 10676317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247bd0", "tid": 35568, "ts": 10676403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249f90", "tid": 35568, "ts": 10676489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249df0", "tid": 35568, "ts": 10676574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247890", "tid": 35568, "ts": 10676660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247550", "tid": 35568, "ts": 10676747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249500", "tid": 35568, "ts": 10676832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247ca0", "tid": 35568, "ts": 10676918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249ec0", "tid": 35568, "ts": 10677005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249910", "tid": 35568, "ts": 10677090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249840", "tid": 35568, "ts": 10677176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247b00", "tid": 35568, "ts": 10677263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248f50", "tid": 35568, "ts": 10677349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2483f0", "tid": 35568, "ts": 10677435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243e10", "tid": 35568, "ts": 10677522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243d40", "tid": 35568, "ts": 10677608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2461d0", "tid": 35568, "ts": 10677694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2465e0", "tid": 35568, "ts": 10677781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246030", "tid": 35568, "ts": 10677866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245cf0", "tid": 35568, "ts": 10677953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243ba0", "tid": 35568, "ts": 10678039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244700", "tid": 35568, "ts": 10678125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2469f0", "tid": 35568, "ts": 10678211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244a40", "tid": 35568, "ts": 10678296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245670", "tid": 35568, "ts": 10678382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246850", "tid": 35568, "ts": 10678468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2442f0", "tid": 35568, "ts": 10678554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243a00", "tid": 35568, "ts": 10678640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246510", "tid": 35568, "ts": 10678726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2455a0", "tid": 35568, "ts": 10678814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244f20", "tid": 35568, "ts": 10678899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244080", "tid": 35568, "ts": 10678984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244970", "tid": 35568, "ts": 10679070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246440", "tid": 35568, "ts": 10679156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244220", "tid": 35568, "ts": 10679242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244d80", "tid": 35568, "ts": 10679328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245f60", "tid": 35568, "ts": 10679414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246c60", "tid": 35568, "ts": 10679501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244ff0", "tid": 35568, "ts": 10679586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244630", "tid": 35568, "ts": 10679672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245330", "tid": 35568, "ts": 10679758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245400", "tid": 35568, "ts": 10679844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245e90", "tid": 35568, "ts": 10679930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244b10", "tid": 35568, "ts": 10680016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246780", "tid": 35568, "ts": 10680102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2462a0", "tid": 35568, "ts": 10680188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240ae0", "tid": 35568, "ts": 10680274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242340", "tid": 35568, "ts": 10680360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2406d0", "tid": 35568, "ts": 10680446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2421a0", "tid": 35568, "ts": 10680532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2420d0", "tid": 35568, "ts": 10680618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241710", "tid": 35568, "ts": 10680704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240530", "tid": 35568, "ts": 10680791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243790", "tid": 35568, "ts": 10680877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241640", "tid": 35568, "ts": 10680963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241090", "tid": 35568, "ts": 10681049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240fc0", "tid": 35568, "ts": 10681135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241e60", "tid": 35568, "ts": 10681222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242a90", "tid": 35568, "ts": 10681308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242820", "tid": 35568, "ts": 10681394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241300", "tid": 35568, "ts": 10681480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241d90", "tid": 35568, "ts": 10681566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240a10", "tid": 35568, "ts": 10681652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243110", "tid": 35568, "ts": 10681738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242d00", "tid": 35568, "ts": 10681824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2413d0", "tid": 35568, "ts": 10681910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241cc0", "tid": 35568, "ts": 10681996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243520", "tid": 35568, "ts": 10682083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240c80", "tid": 35568, "ts": 10682169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242680", "tid": 35568, "ts": 10682255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2436c0", "tid": 35568, "ts": 10682340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242ea0", "tid": 35568, "ts": 10682426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2429c0", "tid": 35568, "ts": 10682512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240870", "tid": 35568, "ts": 10682598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241570", "tid": 35568, "ts": 10682684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2417e0", "tid": 35568, "ts": 10682770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243450", "tid": 35568, "ts": 10682857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241b20", "tid": 35568, "ts": 10682944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2401f0", "tid": 35568, "ts": 10683029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f4f0", "tid": 35568, "ts": 10683116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e0a0", "tid": 35568, "ts": 10683202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23eda0", "tid": 35568, "ts": 10683288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d610", "tid": 35568, "ts": 10683374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23faa0", "tid": 35568, "ts": 10683460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23df00", "tid": 35568, "ts": 10683546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ecd0", "tid": 35568, "ts": 10683632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fde0", "tid": 35568, "ts": 10683718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23de30", "tid": 35568, "ts": 10683804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e4b0", "tid": 35568, "ts": 10683890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dc90", "tid": 35568, "ts": 10683976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ff80", "tid": 35568, "ts": 10684062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d880", "tid": 35568, "ts": 10684148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dd60", "tid": 35568, "ts": 10684302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23da20", "tid": 35568, "ts": 10684392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23daf0", "tid": 35568, "ts": 10684478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d200", "tid": 35568, "ts": 10684564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e990", "tid": 35568, "ts": 10684650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f830", "tid": 35568, "ts": 10684737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fc40", "tid": 35568, "ts": 10684822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e8c0", "tid": 35568, "ts": 10684908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fb70", "tid": 35568, "ts": 10684994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dfd0", "tid": 35568, "ts": 10685081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ef40", "tid": 35568, "ts": 10685166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240390", "tid": 35568, "ts": 10685253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d3a0", "tid": 35568, "ts": 10685338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e310", "tid": 35568, "ts": 10685425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e720", "tid": 35568, "ts": 10685512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2402c0", "tid": 35568, "ts": 10685598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f900", "tid": 35568, "ts": 10685683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f760", "tid": 35568, "ts": 10685770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ba70", "tid": 35568, "ts": 10685856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b660", "tid": 35568, "ts": 10685942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a7c0", "tid": 35568, "ts": 10686028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b9a0", "tid": 35568, "ts": 10686114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b4c0", "tid": 35568, "ts": 10686201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a070", "tid": 35568, "ts": 10686287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239ed0", "tid": 35568, "ts": 10686373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239e00", "tid": 35568, "ts": 10686459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239d30", "tid": 35568, "ts": 10686546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b8d0", "tid": 35568, "ts": 10686632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cdf0", "tid": 35568, "ts": 10686718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23af10", "tid": 35568, "ts": 10686804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cab0", "tid": 35568, "ts": 10686890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c0f0", "tid": 35568, "ts": 10686976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b0b0", "tid": 35568, "ts": 10687062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b590", "tid": 35568, "ts": 10687148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c360", "tid": 35568, "ts": 10687234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bb40", "tid": 35568, "ts": 10687319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c840", "tid": 35568, "ts": 10687406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c6a0", "tid": 35568, "ts": 10687493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23be80", "tid": 35568, "ts": 10687579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c770", "tid": 35568, "ts": 10687666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a6f0", "tid": 35568, "ts": 10687752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cd20", "tid": 35568, "ts": 10687838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23aca0", "tid": 35568, "ts": 10687923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23aa30", "tid": 35568, "ts": 10688010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a960", "tid": 35568, "ts": 10688095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a210", "tid": 35568, "ts": 10688182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a140", "tid": 35568, "ts": 10688268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c910", "tid": 35568, "ts": 10688354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c500", "tid": 35568, "ts": 10688440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cb80", "tid": 35568, "ts": 10688527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2392a0", "tid": 35568, "ts": 10688612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238cf0", "tid": 35568, "ts": 10688699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2385a0", "tid": 35568, "ts": 10688786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238dc0", "tid": 35568, "ts": 10688872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236ad0", "tid": 35568, "ts": 10688958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2384d0", "tid": 35568, "ts": 10689046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238400", "tid": 35568, "ts": 10689132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237b10", "tid": 35568, "ts": 10689218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236930", "tid": 35568, "ts": 10689304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238260", "tid": 35568, "ts": 10689390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239c60", "tid": 35568, "ts": 10689476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237490", "tid": 35568, "ts": 10689562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239b90", "tid": 35568, "ts": 10689648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2391d0", "tid": 35568, "ts": 10689734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238f60", "tid": 35568, "ts": 10689820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2380c0", "tid": 35568, "ts": 10689907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2372f0", "tid": 35568, "ts": 10689993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237ff0", "tid": 35568, "ts": 10690080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238810", "tid": 35568, "ts": 10690165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236fb0", "tid": 35568, "ts": 10690252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237be0", "tid": 35568, "ts": 10690337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238e90", "tid": 35568, "ts": 10690423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237970", "tid": 35568, "ts": 10690510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2399f0", "tid": 35568, "ts": 10690596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239100", "tid": 35568, "ts": 10690683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237150", "tid": 35568, "ts": 10690768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238330", "tid": 35568, "ts": 10690855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239920", "tid": 35568, "ts": 10690941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236e10", "tid": 35568, "ts": 10691026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239850", "tid": 35568, "ts": 10691113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236c70", "tid": 35568, "ts": 10691198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236ee0", "tid": 35568, "ts": 10691285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234300", "tid": 35568, "ts": 10691372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236520", "tid": 35568, "ts": 10691457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236380", "tid": 35568, "ts": 10691543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2362b0", "tid": 35568, "ts": 10691630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236110", "tid": 35568, "ts": 10691716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233fc0", "tid": 35568, "ts": 10691802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235410", "tid": 35568, "ts": 10691888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234e60", "tid": 35568, "ts": 10691975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2337a0", "tid": 35568, "ts": 10692061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235f70", "tid": 35568, "ts": 10692146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2344a0", "tid": 35568, "ts": 10692232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236040", "tid": 35568, "ts": 10692319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2348b0", "tid": 35568, "ts": 10692404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2350d0", "tid": 35568, "ts": 10692490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2351a0", "tid": 35568, "ts": 10692576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234a50", "tid": 35568, "ts": 10692663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235a90", "tid": 35568, "ts": 10692748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2359c0", "tid": 35568, "ts": 10692835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235270", "tid": 35568, "ts": 10692920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233ae0", "tid": 35568, "ts": 10693006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234710", "tid": 35568, "ts": 10693092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2361e0", "tid": 35568, "ts": 10693179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235b60", "tid": 35568, "ts": 10693264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234640", "tid": 35568, "ts": 10693351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236860", "tid": 35568, "ts": 10693436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2365f0", "tid": 35568, "ts": 10693522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234b20", "tid": 35568, "ts": 10693608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2343d0", "tid": 35568, "ts": 10693695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233a10", "tid": 35568, "ts": 10693780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235820", "tid": 35568, "ts": 10693867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2336d0", "tid": 35568, "ts": 10693953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2355b0", "tid": 35568, "ts": 10694040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230c90", "tid": 35568, "ts": 10694127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230880", "tid": 35568, "ts": 10694212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2306e0", "tid": 35568, "ts": 10694299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2303a0", "tid": 35568, "ts": 10694386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232c40", "tid": 35568, "ts": 10694472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232aa0", "tid": 35568, "ts": 10694558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232760", "tid": 35568, "ts": 10694667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230af0", "tid": 35568, "ts": 10694754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230130", "tid": 35568, "ts": 10694840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232690", "tid": 35568, "ts": 10694926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231b30", "tid": 35568, "ts": 10695012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2324f0", "tid": 35568, "ts": 10695098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233460", "tid": 35568, "ts": 10695183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232900", "tid": 35568, "ts": 10695270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232420", "tid": 35568, "ts": 10695356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230d60", "tid": 35568, "ts": 10695444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233120", "tid": 35568, "ts": 10695530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2310a0", "tid": 35568, "ts": 10695616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232d10", "tid": 35568, "ts": 10695701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231990", "tid": 35568, "ts": 10695787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231650", "tid": 35568, "ts": 10695873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232de0", "tid": 35568, "ts": 10695961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2318c0", "tid": 35568, "ts": 10696048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2329d0", "tid": 35568, "ts": 10696135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2317f0", "tid": 35568, "ts": 10696222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231310", "tid": 35568, "ts": 10696310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230f00", "tid": 35568, "ts": 10696441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230bc0", "tid": 35568, "ts": 10696531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231cd0", "tid": 35568, "ts": 10696617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2325c0", "tid": 35568, "ts": 10696704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2321b0", "tid": 35568, "ts": 10696790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231240", "tid": 35568, "ts": 10696877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50e30", "tid": 35568, "ts": 10696963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50c90", "tid": 35568, "ts": 10697050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50af0", "tid": 35568, "ts": 10697136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50a20", "tid": 35568, "ts": 10697223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53050", "tid": 35568, "ts": 10697309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb507b0", "tid": 35568, "ts": 10697395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52760", "tid": 35568, "ts": 10697481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52c40", "tid": 35568, "ts": 10697568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52350", "tid": 35568, "ts": 10697655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50540", "tid": 35568, "ts": 10697741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52f80", "tid": 35568, "ts": 10697826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb513e0", "tid": 35568, "ts": 10697913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51990", "tid": 35568, "ts": 10697999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52280", "tid": 35568, "ts": 10698085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53390", "tid": 35568, "ts": 10698171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb517f0", "tid": 35568, "ts": 10698259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51310", "tid": 35568, "ts": 10698345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52010", "tid": 35568, "ts": 10698430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51da0", "tid": 35568, "ts": 10698516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51f40", "tid": 35568, "ts": 10698603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51170", "tid": 35568, "ts": 10698688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50fd0", "tid": 35568, "ts": 10698774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52830", "tid": 35568, "ts": 10698860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb506e0", "tid": 35568, "ts": 10698946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52900", "tid": 35568, "ts": 10699032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb532c0", "tid": 35568, "ts": 10699118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51720", "tid": 35568, "ts": 10699204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb525c0", "tid": 35568, "ts": 10699290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50130", "tid": 35568, "ts": 10699376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb510a0", "tid": 35568, "ts": 10699462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50470", "tid": 35568, "ts": 10699548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51c00", "tid": 35568, "ts": 10699634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ded0", "tid": 35568, "ts": 10699720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90ab0", "tid": 35568, "ts": 10699839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8efe0", "tid": 35568, "ts": 10699942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90770", "tid": 35568, "ts": 10700029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90290", "tid": 35568, "ts": 10700115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90500", "tid": 35568, "ts": 10700202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dd30", "tid": 35568, "ts": 10700288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb901c0", "tid": 35568, "ts": 10700375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fce0", "tid": 35568, "ts": 10700461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90430", "tid": 35568, "ts": 10700547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e890", "tid": 35568, "ts": 10700633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f660", "tid": 35568, "ts": 10700720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e480", "tid": 35568, "ts": 10700806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90c50", "tid": 35568, "ts": 10700892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90df0", "tid": 35568, "ts": 10700978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f590", "tid": 35568, "ts": 10701065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb909e0", "tid": 35568, "ts": 10701151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ed70", "tid": 35568, "ts": 10701238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f9a0", "tid": 35568, "ts": 10701323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90d20", "tid": 35568, "ts": 10701410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e070", "tid": 35568, "ts": 10701496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90b80", "tid": 35568, "ts": 10701582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90020", "tid": 35568, "ts": 10701668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8eca0", "tid": 35568, "ts": 10701755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f4c0", "tid": 35568, "ts": 10701841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e3b0", "tid": 35568, "ts": 10701927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f730", "tid": 35568, "ts": 10702012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fdb0", "tid": 35568, "ts": 10702098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f0b0", "tid": 35568, "ts": 10702184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f320", "tid": 35568, "ts": 10702270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ea30", "tid": 35568, "ts": 10702356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bcb0", "tid": 35568, "ts": 10702442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b970", "tid": 35568, "ts": 10702529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b700", "tid": 35568, "ts": 10702615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b560", "tid": 35568, "ts": 10702700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ce90", "tid": 35568, "ts": 10702787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d030", "tid": 35568, "ts": 10702873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b220", "tid": 35568, "ts": 10702958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b080", "tid": 35568, "ts": 10703045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8afb0", "tid": 35568, "ts": 10703131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aba0", "tid": 35568, "ts": 10703216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cb50", "tid": 35568, "ts": 10703302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bb10", "tid": 35568, "ts": 10703388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b490", "tid": 35568, "ts": 10703475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aa00", "tid": 35568, "ts": 10703561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ca80", "tid": 35568, "ts": 10703648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c740", "tid": 35568, "ts": 10703734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ccf0", "tid": 35568, "ts": 10703821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ac70", "tid": 35568, "ts": 10703906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c330", "tid": 35568, "ts": 10703992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ba40", "tid": 35568, "ts": 10704078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d920", "tid": 35568, "ts": 10704164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b7d0", "tid": 35568, "ts": 10704250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d440", "tid": 35568, "ts": 10704336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c0c0", "tid": 35568, "ts": 10704422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d6b0", "tid": 35568, "ts": 10704508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c8e0", "tid": 35568, "ts": 10704594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b2f0", "tid": 35568, "ts": 10704680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d100", "tid": 35568, "ts": 10704766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bf20", "tid": 35568, "ts": 10704853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c190", "tid": 35568, "ts": 10704940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8be50", "tid": 35568, "ts": 10705027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d5e0", "tid": 35568, "ts": 10705113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a2b0", "tid": 35568, "ts": 10705200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89c30", "tid": 35568, "ts": 10705286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89b60", "tid": 35568, "ts": 10705371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a1e0", "tid": 35568, "ts": 10705457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb876d0", "tid": 35568, "ts": 10705543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89a90", "tid": 35568, "ts": 10705629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89000", "tid": 35568, "ts": 10705716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a6c0", "tid": 35568, "ts": 10705802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb898f0", "tid": 35568, "ts": 10705888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88f30", "tid": 35568, "ts": 10705974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89410", "tid": 35568, "ts": 10706061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88570", "tid": 35568, "ts": 10706146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb899c0", "tid": 35568, "ts": 10706233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb890d0", "tid": 35568, "ts": 10706320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a790", "tid": 35568, "ts": 10706406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88d90", "tid": 35568, "ts": 10706491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88cc0", "tid": 35568, "ts": 10706578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89340", "tid": 35568, "ts": 10706665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88bf0", "tid": 35568, "ts": 10706751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88b20", "tid": 35568, "ts": 10706837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88300", "tid": 35568, "ts": 10706923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88160", "tid": 35568, "ts": 10707010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87bb0", "tid": 35568, "ts": 10707096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88710", "tid": 35568, "ts": 10707182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88640", "tid": 35568, "ts": 10707268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb883d0", "tid": 35568, "ts": 10707354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89f70", "tid": 35568, "ts": 10707440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb891a0", "tid": 35568, "ts": 10707526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb887e0", "tid": 35568, "ts": 10707613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a380", "tid": 35568, "ts": 10707699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87870", "tid": 35568, "ts": 10707785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87fc0", "tid": 35568, "ts": 10707871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb864f0", "tid": 35568, "ts": 10707958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb860e0", "tid": 35568, "ts": 10708045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85c00", "tid": 35568, "ts": 10708131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb858c0", "tid": 35568, "ts": 10708216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86280", "tid": 35568, "ts": 10708303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85cd0", "tid": 35568, "ts": 10708389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb843a0", "tid": 35568, "ts": 10708475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85580", "tid": 35568, "ts": 10708561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85da0", "tid": 35568, "ts": 10708647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85240", "tid": 35568, "ts": 10708734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84c90", "tid": 35568, "ts": 10708820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb871f0", "tid": 35568, "ts": 10708906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb850a0", "tid": 35568, "ts": 10708992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84af0", "tid": 35568, "ts": 10709079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86830", "tid": 35568, "ts": 10709166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84470", "tid": 35568, "ts": 10709252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84950", "tid": 35568, "ts": 10709339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86eb0", "tid": 35568, "ts": 10709425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb847b0", "tid": 35568, "ts": 10709511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85990", "tid": 35568, "ts": 10709597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb854b0", "tid": 35568, "ts": 10709684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87050", "tid": 35568, "ts": 10709770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84130", "tid": 35568, "ts": 10709856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86d10", "tid": 35568, "ts": 10709941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86c40", "tid": 35568, "ts": 10710028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb869d0", "tid": 35568, "ts": 10710114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86350", "tid": 35568, "ts": 10710200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87390", "tid": 35568, "ts": 10710286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85f40", "tid": 35568, "ts": 10710373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb861b0", "tid": 35568, "ts": 10710459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86b70", "tid": 35568, "ts": 10710545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84540", "tid": 35568, "ts": 10710630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81b00", "tid": 35568, "ts": 10710717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81960", "tid": 35568, "ts": 10710803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81620", "tid": 35568, "ts": 10710889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80fa0", "tid": 35568, "ts": 10710975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82c10", "tid": 35568, "ts": 10711062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80e00", "tid": 35568, "ts": 10711148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81210", "tid": 35568, "ts": 10711234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82a70", "tid": 35568, "ts": 10711320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb829a0", "tid": 35568, "ts": 10711406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb839e0", "tid": 35568, "ts": 10711492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80d30", "tid": 35568, "ts": 10711578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83ec0", "tid": 35568, "ts": 10711664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83910", "tid": 35568, "ts": 10711751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb830f0", "tid": 35568, "ts": 10711837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81550", "tid": 35568, "ts": 10711924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81890", "tid": 35568, "ts": 10712009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84060", "tid": 35568, "ts": 10712097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb812e0", "tid": 35568, "ts": 10712182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82320", "tid": 35568, "ts": 10712268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82ce0", "tid": 35568, "ts": 10712355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb831c0", "tid": 35568, "ts": 10712441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83c50", "tid": 35568, "ts": 10712527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb823f0", "tid": 35568, "ts": 10712613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82730", "tid": 35568, "ts": 10712699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82db0", "tid": 35568, "ts": 10712786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82f50", "tid": 35568, "ts": 10712872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81e40", "tid": 35568, "ts": 10712957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81fe0", "tid": 35568, "ts": 10713043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81d70", "tid": 35568, "ts": 10713130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81f10", "tid": 35568, "ts": 10713216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb835d0", "tid": 35568, "ts": 10713302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83df0", "tid": 35568, "ts": 10713388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e8a0", "tid": 35568, "ts": 10713475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e700", "tid": 35568, "ts": 10713561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dfb0", "tid": 35568, "ts": 10713649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e2f0", "tid": 35568, "ts": 10713735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7da00", "tid": 35568, "ts": 10713821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80ac0", "tid": 35568, "ts": 10713907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dba0", "tid": 35568, "ts": 10713994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dee0", "tid": 35568, "ts": 10714080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80b90", "tid": 35568, "ts": 10714167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb802a0", "tid": 35568, "ts": 10714254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80100", "tid": 35568, "ts": 10714340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80030", "tid": 35568, "ts": 10714426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fcf0", "tid": 35568, "ts": 10714513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fa80", "tid": 35568, "ts": 10714599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e150", "tid": 35568, "ts": 10714685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e080", "tid": 35568, "ts": 10714772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80510", "tid": 35568, "ts": 10714859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7de10", "tid": 35568, "ts": 10714945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fdc0", "tid": 35568, "ts": 10715032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fb50", "tid": 35568, "ts": 10715118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e560", "tid": 35568, "ts": 10715204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f5a0", "tid": 35568, "ts": 10715291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ff60", "tid": 35568, "ts": 10715377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dd40", "tid": 35568, "ts": 10715496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80920", "tid": 35568, "ts": 10715583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f330", "tid": 35568, "ts": 10715669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f9b0", "tid": 35568, "ts": 10715756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ee50", "tid": 35568, "ts": 10715843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7eff0", "tid": 35568, "ts": 10715930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f0c0", "tid": 35568, "ts": 10716015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7eb10", "tid": 35568, "ts": 10716102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e3c0", "tid": 35568, "ts": 10716188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b090", "tid": 35568, "ts": 10716276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a870", "tid": 35568, "ts": 10716361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d790", "tid": 35568, "ts": 10716447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ae20", "tid": 35568, "ts": 10716534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cc30", "tid": 35568, "ts": 10716620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c8f0", "tid": 35568, "ts": 10716706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d2b0", "tid": 35568, "ts": 10716792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c4e0", "tid": 35568, "ts": 10716878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c000", "tid": 35568, "ts": 10716964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bf30", "tid": 35568, "ts": 10717050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bd90", "tid": 35568, "ts": 10717138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a600", "tid": 35568, "ts": 10717224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b980", "tid": 35568, "ts": 10717310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d6c0", "tid": 35568, "ts": 10717396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d860", "tid": 35568, "ts": 10717483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b570", "tid": 35568, "ts": 10717568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c680", "tid": 35568, "ts": 10717656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d1e0", "tid": 35568, "ts": 10717743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7aae0", "tid": 35568, "ts": 10717830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7afc0", "tid": 35568, "ts": 10717916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cd00", "tid": 35568, "ts": 10718002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b8b0", "tid": 35568, "ts": 10718088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d040", "tid": 35568, "ts": 10718174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bbf0", "tid": 35568, "ts": 10718260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b4a0", "tid": 35568, "ts": 10718346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b7e0", "tid": 35568, "ts": 10718432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c5b0", "tid": 35568, "ts": 10718519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c820", "tid": 35568, "ts": 10718604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cdd0", "tid": 35568, "ts": 10718691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ac80", "tid": 35568, "ts": 10718778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a6d0", "tid": 35568, "ts": 10718864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a530", "tid": 35568, "ts": 10718950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78170", "tid": 35568, "ts": 10719036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77f00", "tid": 35568, "ts": 10719122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77d60", "tid": 35568, "ts": 10719209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77af0", "tid": 35568, "ts": 10719296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a1f0", "tid": 35568, "ts": 10719383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a120", "tid": 35568, "ts": 10719469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77880", "tid": 35568, "ts": 10719556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79aa0", "tid": 35568, "ts": 10719642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79690", "tid": 35568, "ts": 10719728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78720", "tid": 35568, "ts": 10719815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78e70", "tid": 35568, "ts": 10719901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79de0", "tid": 35568, "ts": 10719986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78650", "tid": 35568, "ts": 10720073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79b70", "tid": 35568, "ts": 10720158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78cd0", "tid": 35568, "ts": 10720244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77fd0", "tid": 35568, "ts": 10720330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78580", "tid": 35568, "ts": 10720417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77bc0", "tid": 35568, "ts": 10720503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77200", "tid": 35568, "ts": 10720588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb790e0", "tid": 35568, "ts": 10720674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb776e0", "tid": 35568, "ts": 10720761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77610", "tid": 35568, "ts": 10720847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78310", "tid": 35568, "ts": 10720933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb795c0", "tid": 35568, "ts": 10721019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79420", "tid": 35568, "ts": 10721106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78990", "tid": 35568, "ts": 10721191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb783e0", "tid": 35568, "ts": 10721277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78240", "tid": 35568, "ts": 10721363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb787f0", "tid": 35568, "ts": 10721450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79010", "tid": 35568, "ts": 10721536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a2c0", "tid": 35568, "ts": 10721622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79900", "tid": 35568, "ts": 10721708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75e80", "tid": 35568, "ts": 10721794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75ce0", "tid": 35568, "ts": 10721880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75c10", "tid": 35568, "ts": 10721966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74bd0", "tid": 35568, "ts": 10722051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74550", "tid": 35568, "ts": 10722139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb743b0", "tid": 35568, "ts": 10722224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb766a0", "tid": 35568, "ts": 10722310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75b40", "tid": 35568, "ts": 10722396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74210", "tid": 35568, "ts": 10722482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75db0", "tid": 35568, "ts": 10722568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb759a0", "tid": 35568, "ts": 10722654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76ab0", "tid": 35568, "ts": 10722740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75590", "tid": 35568, "ts": 10722826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74890", "tid": 35568, "ts": 10722913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb769e0", "tid": 35568, "ts": 10722999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76840", "tid": 35568, "ts": 10723085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74140", "tid": 35568, "ts": 10723171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74e40", "tid": 35568, "ts": 10723258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb754c0", "tid": 35568, "ts": 10723344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73e00", "tid": 35568, "ts": 10723429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76910", "tid": 35568, "ts": 10723516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75730", "tid": 35568, "ts": 10723602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb760f0", "tid": 35568, "ts": 10723688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73ed0", "tid": 35568, "ts": 10723774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73d30", "tid": 35568, "ts": 10723860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75250", "tid": 35568, "ts": 10723945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb753f0", "tid": 35568, "ts": 10724031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76d20", "tid": 35568, "ts": 10724118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76770", "tid": 35568, "ts": 10724204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74960", "tid": 35568, "ts": 10724290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75320", "tid": 35568, "ts": 10724376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77060", "tid": 35568, "ts": 10724462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71490", "tid": 35568, "ts": 10724549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70c70", "tid": 35568, "ts": 10724635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70930", "tid": 35568, "ts": 10724723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb739f0", "tid": 35568, "ts": 10724809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72670", "tid": 35568, "ts": 10724895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71560", "tid": 35568, "ts": 10724981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72810", "tid": 35568, "ts": 10725067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71630", "tid": 35568, "ts": 10725153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72400", "tid": 35568, "ts": 10725239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71220", "tid": 35568, "ts": 10725325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb732a0", "tid": 35568, "ts": 10725411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70ee0", "tid": 35568, "ts": 10725496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73440", "tid": 35568, "ts": 10725583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb720c0", "tid": 35568, "ts": 10725669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70ad0", "tid": 35568, "ts": 10725756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71f20", "tid": 35568, "ts": 10725842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71080", "tid": 35568, "ts": 10725928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73b90", "tid": 35568, "ts": 10726014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71ff0", "tid": 35568, "ts": 10726100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71a40", "tid": 35568, "ts": 10726185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72330", "tid": 35568, "ts": 10726272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70e10", "tid": 35568, "ts": 10726358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72e90", "tid": 35568, "ts": 10726443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73850", "tid": 35568, "ts": 10726529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72dc0", "tid": 35568, "ts": 10726616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72a80", "tid": 35568, "ts": 10726701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb725a0", "tid": 35568, "ts": 10726787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73510", "tid": 35568, "ts": 10726873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72f60", "tid": 35568, "ts": 10726959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb731d0", "tid": 35568, "ts": 10727045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb729b0", "tid": 35568, "ts": 10727131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72c20", "tid": 35568, "ts": 10727217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ee60", "tid": 35568, "ts": 10727303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d870", "tid": 35568, "ts": 10727389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ecc0", "tid": 35568, "ts": 10727476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e570", "tid": 35568, "ts": 10727562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70520", "tid": 35568, "ts": 10727648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e230", "tid": 35568, "ts": 10727734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ff70", "tid": 35568, "ts": 10727820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6eb20", "tid": 35568, "ts": 10727906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f680", "tid": 35568, "ts": 10727992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f1a0", "tid": 35568, "ts": 10728077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dd50", "tid": 35568, "ts": 10728164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ea50", "tid": 35568, "ts": 10728250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dfc0", "tid": 35568, "ts": 10728336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e8b0", "tid": 35568, "ts": 10728422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f340", "tid": 35568, "ts": 10728507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70380", "tid": 35568, "ts": 10728593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fc30", "tid": 35568, "ts": 10728680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dae0", "tid": 35568, "ts": 10728765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e980", "tid": 35568, "ts": 10728851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb702b0", "tid": 35568, "ts": 10728938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e300", "tid": 35568, "ts": 10729024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e710", "tid": 35568, "ts": 10729110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f000", "tid": 35568, "ts": 10729195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e3d0", "tid": 35568, "ts": 10729281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d7a0", "tid": 35568, "ts": 10729367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e4a0", "tid": 35568, "ts": 10729452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e7e0", "tid": 35568, "ts": 10729538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fd00", "tid": 35568, "ts": 10729624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d6d0", "tid": 35568, "ts": 10729711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70110", "tid": 35568, "ts": 10729796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f410", "tid": 35568, "ts": 10729883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d600", "tid": 35568, "ts": 10729968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6aa20", "tid": 35568, "ts": 10730054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a2d0", "tid": 35568, "ts": 10730141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d390", "tid": 35568, "ts": 10730226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d050", "tid": 35568, "ts": 10730311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d2c0", "tid": 35568, "ts": 10730397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c350", "tid": 35568, "ts": 10730483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ceb0", "tid": 35568, "ts": 10730570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cde0", "tid": 35568, "ts": 10730656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c0e0", "tid": 35568, "ts": 10730743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6be70", "tid": 35568, "ts": 10730829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d120", "tid": 35568, "ts": 10730917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6caa0", "tid": 35568, "ts": 10731005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c9d0", "tid": 35568, "ts": 10731196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c900", "tid": 35568, "ts": 10731286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a6e0", "tid": 35568, "ts": 10731372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ba60", "tid": 35568, "ts": 10731458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a540", "tid": 35568, "ts": 10731545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c010", "tid": 35568, "ts": 10731630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a470", "tid": 35568, "ts": 10731717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b8c0", "tid": 35568, "ts": 10731803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ad60", "tid": 35568, "ts": 10731889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c760", "tid": 35568, "ts": 10731976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d460", "tid": 35568, "ts": 10732062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b170", "tid": 35568, "ts": 10732149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6af00", "tid": 35568, "ts": 10732235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d1f0", "tid": 35568, "ts": 10732321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ac90", "tid": 35568, "ts": 10732407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b4b0", "tid": 35568, "ts": 10732493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c5c0", "tid": 35568, "ts": 10732579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bb30", "tid": 35568, "ts": 10732665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b7f0", "tid": 35568, "ts": 10732751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b240", "tid": 35568, "ts": 10732837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68db0", "tid": 35568, "ts": 10732923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68730", "tid": 35568, "ts": 10733009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67e40", "tid": 35568, "ts": 10733095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb676f0", "tid": 35568, "ts": 10733181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67550", "tid": 35568, "ts": 10733267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68660", "tid": 35568, "ts": 10733353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67480", "tid": 35568, "ts": 10733439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68800", "tid": 35568, "ts": 10733524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68ce0", "tid": 35568, "ts": 10733611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69d20", "tid": 35568, "ts": 10733697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb684c0", "tid": 35568, "ts": 10733783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68c10", "tid": 35568, "ts": 10733869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67bd0", "tid": 35568, "ts": 10733955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb695d0", "tid": 35568, "ts": 10734041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68a70", "tid": 35568, "ts": 10734127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69b80", "tid": 35568, "ts": 10734213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66ed0", "tid": 35568, "ts": 10734300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69020", "tid": 35568, "ts": 10734386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69f90", "tid": 35568, "ts": 10734473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb688d0", "tid": 35568, "ts": 10734559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68250", "tid": 35568, "ts": 10734645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69910", "tid": 35568, "ts": 10734731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67a30", "tid": 35568, "ts": 10734817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67140", "tid": 35568, "ts": 10734903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69ab0", "tid": 35568, "ts": 10734990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68b40", "tid": 35568, "ts": 10735075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69df0", "tid": 35568, "ts": 10735161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68320", "tid": 35568, "ts": 10735247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb677c0", "tid": 35568, "ts": 10735334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66e00", "tid": 35568, "ts": 10735419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68f50", "tid": 35568, "ts": 10735505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb699e0", "tid": 35568, "ts": 10735591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65c20", "tid": 35568, "ts": 10735678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65a80", "tid": 35568, "ts": 10735764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb658e0", "tid": 35568, "ts": 10735850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65670", "tid": 35568, "ts": 10735936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66030", "tid": 35568, "ts": 10736022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb648a0", "tid": 35568, "ts": 10736109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65190", "tid": 35568, "ts": 10736194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64700", "tid": 35568, "ts": 10736281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64f20", "tid": 35568, "ts": 10736367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65740", "tid": 35568, "ts": 10736453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb661d0", "tid": 35568, "ts": 10736539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb642f0", "tid": 35568, "ts": 10736625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64220", "tid": 35568, "ts": 10736711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64630", "tid": 35568, "ts": 10736797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64080", "tid": 35568, "ts": 10736884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb654d0", "tid": 35568, "ts": 10736969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63ee0", "tid": 35568, "ts": 10737056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66370", "tid": 35568, "ts": 10737142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66ac0", "tid": 35568, "ts": 10737229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64150", "tid": 35568, "ts": 10737315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64b10", "tid": 35568, "ts": 10737401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64be0", "tid": 35568, "ts": 10737487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66100", "tid": 35568, "ts": 10737573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66920", "tid": 35568, "ts": 10737658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63930", "tid": 35568, "ts": 10737744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb662a0", "tid": 35568, "ts": 10737831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65260", "tid": 35568, "ts": 10737917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63a00", "tid": 35568, "ts": 10738003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65cf0", "tid": 35568, "ts": 10738089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb665e0", "tid": 35568, "ts": 10738175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65330", "tid": 35568, "ts": 10738261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66c60", "tid": 35568, "ts": 10738347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60870", "tid": 35568, "ts": 10738434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63860", "tid": 35568, "ts": 10738520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb632b0", "tid": 35568, "ts": 10738606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63110", "tid": 35568, "ts": 10738693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb628f0", "tid": 35568, "ts": 10738779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62680", "tid": 35568, "ts": 10738865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62c30", "tid": 35568, "ts": 10738951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62410", "tid": 35568, "ts": 10739037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62340", "tid": 35568, "ts": 10739123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62000", "tid": 35568, "ts": 10739210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb635f0", "tid": 35568, "ts": 10739296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62b60", "tid": 35568, "ts": 10739382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60d50", "tid": 35568, "ts": 10739468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62ea0", "tid": 35568, "ts": 10739554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61980", "tid": 35568, "ts": 10739640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb629c0", "tid": 35568, "ts": 10739726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60fc0", "tid": 35568, "ts": 10739814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb621a0", "tid": 35568, "ts": 10739900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60bb0", "tid": 35568, "ts": 10739986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61710", "tid": 35568, "ts": 10740072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60ef0", "tid": 35568, "ts": 10740158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61640", "tid": 35568, "ts": 10740244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60a10", "tid": 35568, "ts": 10740330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61b20", "tid": 35568, "ts": 10740417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62a90", "tid": 35568, "ts": 10740504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb636c0", "tid": 35568, "ts": 10740589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb624e0", "tid": 35568, "ts": 10740675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60530", "tid": 35568, "ts": 10740760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61300", "tid": 35568, "ts": 10740847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61a50", "tid": 35568, "ts": 10740932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62d00", "tid": 35568, "ts": 10741019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61230", "tid": 35568, "ts": 10741104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f1b0", "tid": 35568, "ts": 10741191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f010", "tid": 35568, "ts": 10741277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dc90", "tid": 35568, "ts": 10741363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ee70", "tid": 35568, "ts": 10741450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ec00", "tid": 35568, "ts": 10741536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f280", "tid": 35568, "ts": 10741622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ea60", "tid": 35568, "ts": 10741708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e990", "tid": 35568, "ts": 10741794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e720", "tid": 35568, "ts": 10741880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e7f0", "tid": 35568, "ts": 10741966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60050", "tid": 35568, "ts": 10742052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5eda0", "tid": 35568, "ts": 10742138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fd10", "tid": 35568, "ts": 10742224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fb70", "tid": 35568, "ts": 10742311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d950", "tid": 35568, "ts": 10742397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f420", "tid": 35568, "ts": 10742483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f900", "tid": 35568, "ts": 10742569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d880", "tid": 35568, "ts": 10742656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5faa0", "tid": 35568, "ts": 10742742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60460", "tid": 35568, "ts": 10742828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f760", "tid": 35568, "ts": 10742914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5de30", "tid": 35568, "ts": 10743000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fde0", "tid": 35568, "ts": 10743087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d6e0", "tid": 35568, "ts": 10743172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d7b0", "tid": 35568, "ts": 10743259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5eb30", "tid": 35568, "ts": 10743346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e0a0", "tid": 35568, "ts": 10743432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f350", "tid": 35568, "ts": 10743518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d130", "tid": 35568, "ts": 10743604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5daf0", "tid": 35568, "ts": 10743690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ecd0", "tid": 35568, "ts": 10743776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e170", "tid": 35568, "ts": 10743863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a2e0", "tid": 35568, "ts": 10743949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bf50", "tid": 35568, "ts": 10744036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59ed0", "tid": 35568, "ts": 10744122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a070", "tid": 35568, "ts": 10744208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59e00", "tid": 35568, "ts": 10744294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b8d0", "tid": 35568, "ts": 10744380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b730", "tid": 35568, "ts": 10744466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cec0", "tid": 35568, "ts": 10744551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b4c0", "tid": 35568, "ts": 10744638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cc50", "tid": 35568, "ts": 10744724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a7c0", "tid": 35568, "ts": 10744810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d060", "tid": 35568, "ts": 10744896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a550", "tid": 35568, "ts": 10744983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b3f0", "tid": 35568, "ts": 10745069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a6f0", "tid": 35568, "ts": 10745154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b250", "tid": 35568, "ts": 10745240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59d30", "tid": 35568, "ts": 10745327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5aa30", "tid": 35568, "ts": 10745413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ba70", "tid": 35568, "ts": 10745499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5abd0", "tid": 35568, "ts": 10745585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5afe0", "tid": 35568, "ts": 10745671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a3b0", "tid": 35568, "ts": 10745757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c5d0", "tid": 35568, "ts": 10745844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a620", "tid": 35568, "ts": 10745930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c840", "tid": 35568, "ts": 10746015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c500", "tid": 35568, "ts": 10746102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5be80", "tid": 35568, "ts": 10746187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ab00", "tid": 35568, "ts": 10746274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cd20", "tid": 35568, "ts": 10746360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c020", "tid": 35568, "ts": 10746446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c290", "tid": 35568, "ts": 10746532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c430", "tid": 35568, "ts": 10746618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59510", "tid": 35568, "ts": 10746792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59100", "tid": 35568, "ts": 10746916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58a80", "tid": 35568, "ts": 10747071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58810", "tid": 35568, "ts": 10747186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58740", "tid": 35568, "ts": 10747285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58670", "tid": 35568, "ts": 10747395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58400", "tid": 35568, "ts": 10747549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57b10", "tid": 35568, "ts": 10747693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57220", "tid": 35568, "ts": 10747780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58260", "tid": 35568, "ts": 10747867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb584d0", "tid": 35568, "ts": 10747954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57080", "tid": 35568, "ts": 10748040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58190", "tid": 35568, "ts": 10748128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59ac0", "tid": 35568, "ts": 10748214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb580c0", "tid": 35568, "ts": 10748301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59440", "tid": 35568, "ts": 10748388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58c20", "tid": 35568, "ts": 10748475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57e50", "tid": 35568, "ts": 10748561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57d80", "tid": 35568, "ts": 10748648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57700", "tid": 35568, "ts": 10748734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56fb0", "tid": 35568, "ts": 10748820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb592a0", "tid": 35568, "ts": 10748907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56930", "tid": 35568, "ts": 10748993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57a40", "tid": 35568, "ts": 10749080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59850", "tid": 35568, "ts": 10749166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb588e0", "tid": 35568, "ts": 10749252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59780", "tid": 35568, "ts": 10749339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb577d0", "tid": 35568, "ts": 10749425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57490", "tid": 35568, "ts": 10749512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56ad0", "tid": 35568, "ts": 10749598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56ee0", "tid": 35568, "ts": 10749685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57560", "tid": 35568, "ts": 10749771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55f70", "tid": 35568, "ts": 10749859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55820", "tid": 35568, "ts": 10749946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb555b0", "tid": 35568, "ts": 10750033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb558f0", "tid": 35568, "ts": 10750119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55340", "tid": 35568, "ts": 10750206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb550d0", "tid": 35568, "ts": 10750292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53a10", "tid": 35568, "ts": 10750378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb566c0", "tid": 35568, "ts": 10750465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54090", "tid": 35568, "ts": 10750551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb544a0", "tid": 35568, "ts": 10750637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54e60", "tid": 35568, "ts": 10750723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53870", "tid": 35568, "ts": 10750809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54cc0", "tid": 35568, "ts": 10750895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55dd0", "tid": 35568, "ts": 10750981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55410", "tid": 35568, "ts": 10751068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55680", "tid": 35568, "ts": 10751155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53c80", "tid": 35568, "ts": 10751242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb548b0", "tid": 35568, "ts": 10751328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb537a0", "tid": 35568, "ts": 10751414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54d90", "tid": 35568, "ts": 10751501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53ef0", "tid": 35568, "ts": 10751587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb562b0", "tid": 35568, "ts": 10751673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54710", "tid": 35568, "ts": 10751759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb536d0", "tid": 35568, "ts": 10751845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53ae0", "tid": 35568, "ts": 10751932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56790", "tid": 35568, "ts": 10752018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55d00", "tid": 35568, "ts": 10752105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56110", "tid": 35568, "ts": 10752191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54570", "tid": 35568, "ts": 10752277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53530", "tid": 35568, "ts": 10752364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56860", "tid": 35568, "ts": 10752450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb559c0", "tid": 35568, "ts": 10752536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fe20", "tid": 35568, "ts": 10752622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fd50", "tid": 35568, "ts": 10752709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490cc0", "tid": 35568, "ts": 10752795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48df40", "tid": 35568, "ts": 10752881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f2c0", "tid": 35568, "ts": 10752968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f600", "tid": 35568, "ts": 10753054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f7a0", "tid": 35568, "ts": 10753141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490bf0", "tid": 35568, "ts": 10753227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ef80", "tid": 35568, "ts": 10753313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ed10", "tid": 35568, "ts": 10753399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490f30", "tid": 35568, "ts": 10753484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490640", "tid": 35568, "ts": 10753570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4907e0", "tid": 35568, "ts": 10753656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490300", "tid": 35568, "ts": 10753742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48eb70", "tid": 35568, "ts": 10753828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490570", "tid": 35568, "ts": 10753914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e690", "tid": 35568, "ts": 10754001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e9d0", "tid": 35568, "ts": 10754087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48de70", "tid": 35568, "ts": 10754173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490e60", "tid": 35568, "ts": 10754259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490230", "tid": 35568, "ts": 10754345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490090", "tid": 35568, "ts": 10754431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e420", "tid": 35568, "ts": 10754518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490a50", "tid": 35568, "ts": 10754604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e350", "tid": 35568, "ts": 10754690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e830", "tid": 35568, "ts": 10754777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e0e0", "tid": 35568, "ts": 10754863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fef0", "tid": 35568, "ts": 10754948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4903d0", "tid": 35568, "ts": 10755035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e1b0", "tid": 35568, "ts": 10755121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fae0", "tid": 35568, "ts": 10755208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c950", "tid": 35568, "ts": 10755294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c7b0", "tid": 35568, "ts": 10755381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cd60", "tid": 35568, "ts": 10755468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c470", "tid": 35568, "ts": 10755555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b0f0", "tid": 35568, "ts": 10755642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48adb0", "tid": 35568, "ts": 10755728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a9a0", "tid": 35568, "ts": 10755815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48dc00", "tid": 35568, "ts": 10755901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c130", "tid": 35568, "ts": 10755987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d3e0", "tid": 35568, "ts": 10756074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cf00", "tid": 35568, "ts": 10756160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d990", "tid": 35568, "ts": 10756246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b020", "tid": 35568, "ts": 10756332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bf90", "tid": 35568, "ts": 10756419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b360", "tid": 35568, "ts": 10756505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48af50", "tid": 35568, "ts": 10756591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48db30", "tid": 35568, "ts": 10756677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bdf0", "tid": 35568, "ts": 10756764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ace0", "tid": 35568, "ts": 10756850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b500", "tid": 35568, "ts": 10756936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b6a0", "tid": 35568, "ts": 10757022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cfd0", "tid": 35568, "ts": 10757108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bb80", "tid": 35568, "ts": 10757195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d4b0", "tid": 35568, "ts": 10757281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bd20", "tid": 35568, "ts": 10757367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b290", "tid": 35568, "ts": 10757453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48aa70", "tid": 35568, "ts": 10757540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bab0", "tid": 35568, "ts": 10757626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b9e0", "tid": 35568, "ts": 10757712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b910", "tid": 35568, "ts": 10757798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c3a0", "tid": 35568, "ts": 10757884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bc50", "tid": 35568, "ts": 10757971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4878e0", "tid": 35568, "ts": 10758057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488370", "tid": 35568, "ts": 10758145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488e00", "tid": 35568, "ts": 10758231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488c60", "tid": 35568, "ts": 10758318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a730", "tid": 35568, "ts": 10758404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a660", "tid": 35568, "ts": 10758491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a590", "tid": 35568, "ts": 10758576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489a30", "tid": 35568, "ts": 10758663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489960", "tid": 35568, "ts": 10758750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4897c0", "tid": 35568, "ts": 10758836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a8d0", "tid": 35568, "ts": 10758922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a320", "tid": 35568, "ts": 10759008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a800", "tid": 35568, "ts": 10759093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4892e0", "tid": 35568, "ts": 10759180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a180", "tid": 35568, "ts": 10759267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489210", "tid": 35568, "ts": 10759353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a4c0", "tid": 35568, "ts": 10759439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4896f0", "tid": 35568, "ts": 10759526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487e90", "tid": 35568, "ts": 10759612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489ca0", "tid": 35568, "ts": 10759698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a0b0", "tid": 35568, "ts": 10759784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487dc0", "tid": 35568, "ts": 10759872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4885e0", "tid": 35568, "ts": 10759958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489140", "tid": 35568, "ts": 10760044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a3f0", "tid": 35568, "ts": 10760130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487b50", "tid": 35568, "ts": 10760216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a250", "tid": 35568, "ts": 10760302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489bd0", "tid": 35568, "ts": 10760389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489f10", "tid": 35568, "ts": 10760475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489550", "tid": 35568, "ts": 10760562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488510", "tid": 35568, "ts": 10760648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4889f0", "tid": 35568, "ts": 10760734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486d80", "tid": 35568, "ts": 10760820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486be0", "tid": 35568, "ts": 10760907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486a40", "tid": 35568, "ts": 10760994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485fb0", "tid": 35568, "ts": 10761080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485ee0", "tid": 35568, "ts": 10761167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485e10", "tid": 35568, "ts": 10761254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485930", "tid": 35568, "ts": 10761340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486630", "tid": 35568, "ts": 10761426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485860", "tid": 35568, "ts": 10761512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486560", "tid": 35568, "ts": 10761598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484410", "tid": 35568, "ts": 10761684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485c70", "tid": 35568, "ts": 10761770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4841a0", "tid": 35568, "ts": 10761857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484d00", "tid": 35568, "ts": 10761943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4852b0", "tid": 35568, "ts": 10762029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486490", "tid": 35568, "ts": 10762116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487400", "tid": 35568, "ts": 10762203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487260", "tid": 35568, "ts": 10762311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4867d0", "tid": 35568, "ts": 10762409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484f70", "tid": 35568, "ts": 10762496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4863c0", "tid": 35568, "ts": 10762583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486700", "tid": 35568, "ts": 10762670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4862f0", "tid": 35568, "ts": 10762756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486220", "tid": 35568, "ts": 10762843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4848f0", "tid": 35568, "ts": 10762929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485ad0", "tid": 35568, "ts": 10763015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485520", "tid": 35568, "ts": 10763101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484680", "tid": 35568, "ts": 10763188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485790", "tid": 35568, "ts": 10763274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484750", "tid": 35568, "ts": 10763361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485d40", "tid": 35568, "ts": 10763447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487330", "tid": 35568, "ts": 10763533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482e20", "tid": 35568, "ts": 10763619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482bb0", "tid": 35568, "ts": 10763706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482940", "tid": 35568, "ts": 10763791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482870", "tid": 35568, "ts": 10763878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482530", "tid": 35568, "ts": 10763964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483bf0", "tid": 35568, "ts": 10764050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481f80", "tid": 35568, "ts": 10764136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481690", "tid": 35568, "ts": 10764223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4815c0", "tid": 35568, "ts": 10764309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484000", "tid": 35568, "ts": 10764395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483640", "tid": 35568, "ts": 10764481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483e60", "tid": 35568, "ts": 10764567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483570", "tid": 35568, "ts": 10764652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4834a0", "tid": 35568, "ts": 10764738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483cc0", "tid": 35568, "ts": 10764824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481b70", "tid": 35568, "ts": 10764910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483980", "tid": 35568, "ts": 10764997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4819d0", "tid": 35568, "ts": 10765084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4811b0", "tid": 35568, "ts": 10765170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481350", "tid": 35568, "ts": 10765256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480e70", "tid": 35568, "ts": 10765342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483f30", "tid": 35568, "ts": 10765429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4827a0", "tid": 35568, "ts": 10765515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4822c0", "tid": 35568, "ts": 10765601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481aa0", "tid": 35568, "ts": 10765687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482c80", "tid": 35568, "ts": 10765774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482460", "tid": 35568, "ts": 10765861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481900", "tid": 35568, "ts": 10765948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481eb0", "tid": 35568, "ts": 10766036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481830", "tid": 35568, "ts": 10766124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481010", "tid": 35568, "ts": 10766211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4837e0", "tid": 35568, "ts": 10766345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ed20", "tid": 35568, "ts": 10766433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47eab0", "tid": 35568, "ts": 10766521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e910", "tid": 35568, "ts": 10766607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e360", "tid": 35568, "ts": 10766693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47dc10", "tid": 35568, "ts": 10766779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480cd0", "tid": 35568, "ts": 10766866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480990", "tid": 35568, "ts": 10766951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fe30", "tid": 35568, "ts": 10767038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4808c0", "tid": 35568, "ts": 10767123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f610", "tid": 35568, "ts": 10767209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f540", "tid": 35568, "ts": 10767295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480580", "tid": 35568, "ts": 10767381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480240", "tid": 35568, "ts": 10767466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f2d0", "tid": 35568, "ts": 10767553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47faf0", "tid": 35568, "ts": 10767639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47de80", "tid": 35568, "ts": 10767725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47df50", "tid": 35568, "ts": 10767811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f200", "tid": 35568, "ts": 10767899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ddb0", "tid": 35568, "ts": 10767985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f3a0", "tid": 35568, "ts": 10768072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fa20", "tid": 35568, "ts": 10768159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480170", "tid": 35568, "ts": 10768245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e770", "tid": 35568, "ts": 10768331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e290", "tid": 35568, "ts": 10768417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47edf0", "tid": 35568, "ts": 10768503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480650", "tid": 35568, "ts": 10768590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e0f0", "tid": 35568, "ts": 10768676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e020", "tid": 35568, "ts": 10768763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ef90", "tid": 35568, "ts": 10768849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f060", "tid": 35568, "ts": 10768935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47eb80", "tid": 35568, "ts": 10769021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4804b0", "tid": 35568, "ts": 10769107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d800", "tid": 35568, "ts": 10769194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d660", "tid": 35568, "ts": 10769281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d4c0", "tid": 35568, "ts": 10769367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c140", "tid": 35568, "ts": 10769453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47be00", "tid": 35568, "ts": 10769539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bc60", "tid": 35568, "ts": 10769626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47adc0", "tid": 35568, "ts": 10769713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b5e0", "tid": 35568, "ts": 10769799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d250", "tid": 35568, "ts": 10769885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c7c0", "tid": 35568, "ts": 10769971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ab50", "tid": 35568, "ts": 10770057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bb90", "tid": 35568, "ts": 10770143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b510", "tid": 35568, "ts": 10770229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c620", "tid": 35568, "ts": 10770315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a8e0", "tid": 35568, "ts": 10770401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a810", "tid": 35568, "ts": 10770488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a740", "tid": 35568, "ts": 10770574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d320", "tid": 35568, "ts": 10770661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b9f0", "tid": 35568, "ts": 10770747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b440", "tid": 35568, "ts": 10770833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bed0", "tid": 35568, "ts": 10770919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bac0", "tid": 35568, "ts": 10771005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b2a0", "tid": 35568, "ts": 10771091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b030", "tid": 35568, "ts": 10771177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a670", "tid": 35568, "ts": 10771263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b780", "tid": 35568, "ts": 10771349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a5a0", "tid": 35568, "ts": 10771435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cbd0", "tid": 35568, "ts": 10771522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c6f0", "tid": 35568, "ts": 10771608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a9b0", "tid": 35568, "ts": 10771695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cb00", "tid": 35568, "ts": 10771781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d8d0", "tid": 35568, "ts": 10771867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4793c0", "tid": 35568, "ts": 10771953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478fb0", "tid": 35568, "ts": 10772040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479150", "tid": 35568, "ts": 10772126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478860", "tid": 35568, "ts": 10772213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479560", "tid": 35568, "ts": 10772299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4785f0", "tid": 35568, "ts": 10772386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477a90", "tid": 35568, "ts": 10772472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4778f0", "tid": 35568, "ts": 10772558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477680", "tid": 35568, "ts": 10772644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479be0", "tid": 35568, "ts": 10772730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a330", "tid": 35568, "ts": 10772816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478380", "tid": 35568, "ts": 10772903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477410", "tid": 35568, "ts": 10772989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a400", "tid": 35568, "ts": 10773076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477f70", "tid": 35568, "ts": 10773161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479a40", "tid": 35568, "ts": 10773248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479ff0", "tid": 35568, "ts": 10773333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478790", "tid": 35568, "ts": 10773420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4781e0", "tid": 35568, "ts": 10773506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4798a0", "tid": 35568, "ts": 10773592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4774e0", "tid": 35568, "ts": 10773678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477820", "tid": 35568, "ts": 10773764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478ee0", "tid": 35568, "ts": 10773850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477ea0", "tid": 35568, "ts": 10773937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478110", "tid": 35568, "ts": 10774023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479cb0", "tid": 35568, "ts": 10774110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4775b0", "tid": 35568, "ts": 10774196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479970", "tid": 35568, "ts": 10774282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479080", "tid": 35568, "ts": 10774369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477dd0", "tid": 35568, "ts": 10774455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479220", "tid": 35568, "ts": 10774542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a4d0", "tid": 35568, "ts": 10774628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475120", "tid": 35568, "ts": 10774715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476e60", "tid": 35568, "ts": 10774802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475c80", "tid": 35568, "ts": 10774889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475bb0", "tid": 35568, "ts": 10774975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474280", "tid": 35568, "ts": 10775061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475ae0", "tid": 35568, "ts": 10775147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474eb0", "tid": 35568, "ts": 10775232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476640", "tid": 35568, "ts": 10775318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4745c0", "tid": 35568, "ts": 10775405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476980", "tid": 35568, "ts": 10775491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475870", "tid": 35568, "ts": 10775578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474f80", "tid": 35568, "ts": 10775664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473da0", "tid": 35568, "ts": 10775750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4763d0", "tid": 35568, "ts": 10775836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4757a0", "tid": 35568, "ts": 10775923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474900", "tid": 35568, "ts": 10776010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4767e0", "tid": 35568, "ts": 10776095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4768b0", "tid": 35568, "ts": 10776182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477000", "tid": 35568, "ts": 10776268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476d90", "tid": 35568, "ts": 10776354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474c40", "tid": 35568, "ts": 10776440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476160", "tid": 35568, "ts": 10776527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4740e0", "tid": 35568, "ts": 10776612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475ef0", "tid": 35568, "ts": 10776699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474690", "tid": 35568, "ts": 10776785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474de0", "tid": 35568, "ts": 10776872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474420", "tid": 35568, "ts": 10776958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474aa0", "tid": 35568, "ts": 10777043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4752c0", "tid": 35568, "ts": 10777129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4749d0", "tid": 35568, "ts": 10777214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475d50", "tid": 35568, "ts": 10777301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4751f0", "tid": 35568, "ts": 10777387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473580", "tid": 35568, "ts": 10777472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472bc0", "tid": 35568, "ts": 10777558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472a20", "tid": 35568, "ts": 10777644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472880", "tid": 35568, "ts": 10777730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472130", "tid": 35568, "ts": 10777816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471ab0", "tid": 35568, "ts": 10777911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471b80", "tid": 35568, "ts": 10778000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4726e0", "tid": 35568, "ts": 10778086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471360", "tid": 35568, "ts": 10778173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471840", "tid": 35568, "ts": 10778259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471ec0", "tid": 35568, "ts": 10778345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4715d0", "tid": 35568, "ts": 10778431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472610", "tid": 35568, "ts": 10778518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471c50", "tid": 35568, "ts": 10778604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470a70", "tid": 35568, "ts": 10778690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472540", "tid": 35568, "ts": 10778776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4709a0", "tid": 35568, "ts": 10778862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471910", "tid": 35568, "ts": 10778949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473cd0", "tid": 35568, "ts": 10779036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471430", "tid": 35568, "ts": 10779122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470db0", "tid": 35568, "ts": 10779208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471290", "tid": 35568, "ts": 10779294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471770", "tid": 35568, "ts": 10779380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472fd0", "tid": 35568, "ts": 10779466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470ce0", "tid": 35568, "ts": 10779552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4723a0", "tid": 35568, "ts": 10779638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473990", "tid": 35568, "ts": 10779724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471020", "tid": 35568, "ts": 10779811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473720", "tid": 35568, "ts": 10779897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472e30", "tid": 35568, "ts": 10779983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4734b0", "tid": 35568, "ts": 10780069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472060", "tid": 35568, "ts": 10780156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ffe0", "tid": 35568, "ts": 10780242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4700b0", "tid": 35568, "ts": 10780329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ee00", "tid": 35568, "ts": 10780415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e920", "tid": 35568, "ts": 10780501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fe40", "tid": 35568, "ts": 10780588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46da80", "tid": 35568, "ts": 10780675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f6f0", "tid": 35568, "ts": 10780761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470250", "tid": 35568, "ts": 10780848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fd70", "tid": 35568, "ts": 10780934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e5e0", "tid": 35568, "ts": 10781021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f620", "tid": 35568, "ts": 10781107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e780", "tid": 35568, "ts": 10781193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e030", "tid": 35568, "ts": 10781279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e440", "tid": 35568, "ts": 10781365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46dcf0", "tid": 35568, "ts": 10781451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f890", "tid": 35568, "ts": 10781538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d810", "tid": 35568, "ts": 10781623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fbd0", "tid": 35568, "ts": 10781711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f550", "tid": 35568, "ts": 10781797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e510", "tid": 35568, "ts": 10781884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f210", "tid": 35568, "ts": 10781970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d740", "tid": 35568, "ts": 10782056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f140", "tid": 35568, "ts": 10782143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fca0", "tid": 35568, "ts": 10782229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f960", "tid": 35568, "ts": 10782316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46de90", "tid": 35568, "ts": 10782402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470660", "tid": 35568, "ts": 10782487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46dc20", "tid": 35568, "ts": 10782574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d9b0", "tid": 35568, "ts": 10782659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4704c0", "tid": 35568, "ts": 10782746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4703f0", "tid": 35568, "ts": 10782831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d5a0", "tid": 35568, "ts": 10782918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c220", "tid": 35568, "ts": 10783005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b450", "tid": 35568, "ts": 10783093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bba0", "tid": 35568, "ts": 10783179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ad00", "tid": 35568, "ts": 10783265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a750", "tid": 35568, "ts": 10783351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b6c0", "tid": 35568, "ts": 10783437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a340", "tid": 35568, "ts": 10783523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cf20", "tid": 35568, "ts": 10783609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cb10", "tid": 35568, "ts": 10783695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c150", "tid": 35568, "ts": 10783782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b860", "tid": 35568, "ts": 10783869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a680", "tid": 35568, "ts": 10783956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d330", "tid": 35568, "ts": 10784042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bfb0", "tid": 35568, "ts": 10784129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ce50", "tid": 35568, "ts": 10784215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c8a0", "tid": 35568, "ts": 10784301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a1a0", "tid": 35568, "ts": 10784387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c970", "tid": 35568, "ts": 10784476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cbe0", "tid": 35568, "ts": 10784562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bd40", "tid": 35568, "ts": 10784647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c3c0", "tid": 35568, "ts": 10784733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d400", "tid": 35568, "ts": 10784820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d0c0", "tid": 35568, "ts": 10784906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ab60", "tid": 35568, "ts": 10784992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b930", "tid": 35568, "ts": 10785078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b040", "tid": 35568, "ts": 10785166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cff0", "tid": 35568, "ts": 10785252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a9c0", "tid": 35568, "ts": 10785338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d260", "tid": 35568, "ts": 10785425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46aa90", "tid": 35568, "ts": 10785512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a8f0", "tid": 35568, "ts": 10785598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b2b0", "tid": 35568, "ts": 10785685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468ef0", "tid": 35568, "ts": 10785772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468d50", "tid": 35568, "ts": 10785858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4687a0", "tid": 35568, "ts": 10785945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4681f0", "tid": 35568, "ts": 10786031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469e60", "tid": 35568, "ts": 10786118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468050", "tid": 35568, "ts": 10786205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467d10", "tid": 35568, "ts": 10786291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467c40", "tid": 35568, "ts": 10786378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469a50", "tid": 35568, "ts": 10786464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467aa0", "tid": 35568, "ts": 10786550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467760", "tid": 35568, "ts": 10786637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4675c0", "tid": 35568, "ts": 10786723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468460", "tid": 35568, "ts": 10786809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467de0", "tid": 35568, "ts": 10786895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4679d0", "tid": 35568, "ts": 10786981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4686d0", "tid": 35568, "ts": 10787068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4694a0", "tid": 35568, "ts": 10787155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468c80", "tid": 35568, "ts": 10787241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466f40", "tid": 35568, "ts": 10787327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467900", "tid": 35568, "ts": 10787413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467690", "tid": 35568, "ts": 10787499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468fc0", "tid": 35568, "ts": 10787586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468870", "tid": 35568, "ts": 10787672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a000", "tid": 35568, "ts": 10787759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4682c0", "tid": 35568, "ts": 10787845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469b20", "tid": 35568, "ts": 10787931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469300", "tid": 35568, "ts": 10788017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468940", "tid": 35568, "ts": 10788103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469f30", "tid": 35568, "ts": 10788190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467350", "tid": 35568, "ts": 10788276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469570", "tid": 35568, "ts": 10788362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468a10", "tid": 35568, "ts": 10788449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465d60", "tid": 35568, "ts": 10788535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463ce0", "tid": 35568, "ts": 10788623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4663e0", "tid": 35568, "ts": 10788709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465fd0", "tid": 35568, "ts": 10788796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465bc0", "tid": 35568, "ts": 10788883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465950", "tid": 35568, "ts": 10788970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463a70", "tid": 35568, "ts": 10789056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465200", "tid": 35568, "ts": 10789142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465470", "tid": 35568, "ts": 10789229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463c10", "tid": 35568, "ts": 10789315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466b30", "tid": 35568, "ts": 10789402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466240", "tid": 35568, "ts": 10789487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464df0", "tid": 35568, "ts": 10789574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464d20", "tid": 35568, "ts": 10789660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4649e0", "tid": 35568, "ts": 10789747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465f00", "tid": 35568, "ts": 10789834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465610", "tid": 35568, "ts": 10789920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466a60", "tid": 35568, "ts": 10790008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4656e0", "tid": 35568, "ts": 10790094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464500", "tid": 35568, "ts": 10790180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464770", "tid": 35568, "ts": 10790266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465540", "tid": 35568, "ts": 10790353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464360", "tid": 35568, "ts": 10790438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466650", "tid": 35568, "ts": 10790525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463f50", "tid": 35568, "ts": 10790611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4641c0", "tid": 35568, "ts": 10790698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4668c0", "tid": 35568, "ts": 10790784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464ab0", "tid": 35568, "ts": 10790870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4640f0", "tid": 35568, "ts": 10790957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464020", "tid": 35568, "ts": 10791043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466310", "tid": 35568, "ts": 10791129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466580", "tid": 35568, "ts": 10791216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463730", "tid": 35568, "ts": 10791303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462550", "tid": 35568, "ts": 10791390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462480", "tid": 35568, "ts": 10791476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462d70", "tid": 35568, "ts": 10791562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461fa0", "tid": 35568, "ts": 10791648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461ac0", "tid": 35568, "ts": 10791735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463590", "tid": 35568, "ts": 10791820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461ed0", "tid": 35568, "ts": 10791907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4615e0", "tid": 35568, "ts": 10791994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461510", "tid": 35568, "ts": 10792080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461370", "tid": 35568, "ts": 10792166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461100", "tid": 35568, "ts": 10792252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460a80", "tid": 35568, "ts": 10792338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4627c0", "tid": 35568, "ts": 10792425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462890", "tid": 35568, "ts": 10792511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462070", "tid": 35568, "ts": 10792598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462620", "tid": 35568, "ts": 10792684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461e00", "tid": 35568, "ts": 10792771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462a30", "tid": 35568, "ts": 10792857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460810", "tid": 35568, "ts": 10792944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4611d0", "tid": 35568, "ts": 10793029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460f60", "tid": 35568, "ts": 10793116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460e90", "tid": 35568, "ts": 10793202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462210", "tid": 35568, "ts": 10793289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461850", "tid": 35568, "ts": 10793376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4634c0", "tid": 35568, "ts": 10793463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463800", "tid": 35568, "ts": 10793585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4626f0", "tid": 35568, "ts": 10793754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460670", "tid": 35568, "ts": 10793904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460c20", "tid": 35568, "ts": 10793992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461780", "tid": 35568, "ts": 10794079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460cf0", "tid": 35568, "ts": 10794166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ee10", "tid": 35568, "ts": 10794252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ed40", "tid": 35568, "ts": 10794339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fbe0", "tid": 35568, "ts": 10794425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e1e0", "tid": 35568, "ts": 10794511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e110", "tid": 35568, "ts": 10794620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e930", "tid": 35568, "ts": 10794707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f8a0", "tid": 35568, "ts": 10794794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e860", "tid": 35568, "ts": 10794880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e520", "tid": 35568, "ts": 10794967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45db60", "tid": 35568, "ts": 10795053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e040", "tid": 35568, "ts": 10795140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f700", "tid": 35568, "ts": 10795225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fd80", "tid": 35568, "ts": 10795311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e790", "tid": 35568, "ts": 10795398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d9c0", "tid": 35568, "ts": 10795484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f7d0", "tid": 35568, "ts": 10795569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f150", "tid": 35568, "ts": 10795656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d340", "tid": 35568, "ts": 10795743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45df70", "tid": 35568, "ts": 10795829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f220", "tid": 35568, "ts": 10795915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d820", "tid": 35568, "ts": 10796001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45eee0", "tid": 35568, "ts": 10796087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fa40", "tid": 35568, "ts": 10796173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45efb0", "tid": 35568, "ts": 10796260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4604d0", "tid": 35568, "ts": 10796345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e5f0", "tid": 35568, "ts": 10796431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d680", "tid": 35568, "ts": 10796517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f970", "tid": 35568, "ts": 10796603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d5b0", "tid": 35568, "ts": 10796690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d1a0", "tid": 35568, "ts": 10796777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f2f0", "tid": 35568, "ts": 10796863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460330", "tid": 35568, "ts": 10796949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c710", "tid": 35568, "ts": 10797035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bbb0", "tid": 35568, "ts": 10797121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b940", "tid": 35568, "ts": 10797208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b6d0", "tid": 35568, "ts": 10797294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b870", "tid": 35568, "ts": 10797381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b390", "tid": 35568, "ts": 10797468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ad10", "tid": 35568, "ts": 10797555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ac40", "tid": 35568, "ts": 10797641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a010", "tid": 35568, "ts": 10797727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459e70", "tid": 35568, "ts": 10797814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cd90", "tid": 35568, "ts": 10797899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a0e0", "tid": 35568, "ts": 10797985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ab70", "tid": 35568, "ts": 10798071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a900", "tid": 35568, "ts": 10798158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a830", "tid": 35568, "ts": 10798244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ba10", "tid": 35568, "ts": 10798330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cbf0", "tid": 35568, "ts": 10798416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a5c0", "tid": 35568, "ts": 10798503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cb20", "tid": 35568, "ts": 10798589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d0d0", "tid": 35568, "ts": 10798675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459da0", "tid": 35568, "ts": 10798760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a1b0", "tid": 35568, "ts": 10798847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45af80", "tid": 35568, "ts": 10798933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d000", "tid": 35568, "ts": 10799020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bef0", "tid": 35568, "ts": 10799106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45aaa0", "tid": 35568, "ts": 10799193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c980", "tid": 35568, "ts": 10799279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a420", "tid": 35568, "ts": 10799366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a690", "tid": 35568, "ts": 10799452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45aeb0", "tid": 35568, "ts": 10799539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a280", "tid": 35568, "ts": 10799625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b120", "tid": 35568, "ts": 10799711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459990", "tid": 35568, "ts": 10799798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4594b0", "tid": 35568, "ts": 10799885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459310", "tid": 35568, "ts": 10799971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459c00", "tid": 35568, "ts": 10800058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4582d0", "tid": 35568, "ts": 10800144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457840", "tid": 35568, "ts": 10800231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458fd0", "tid": 35568, "ts": 10800316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458130", "tid": 35568, "ts": 10800403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458bc0", "tid": 35568, "ts": 10800488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458060", "tid": 35568, "ts": 10800575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4583a0", "tid": 35568, "ts": 10800661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459a60", "tid": 35568, "ts": 10800748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4579e0", "tid": 35568, "ts": 10800835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458a20", "tid": 35568, "ts": 10800922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4575d0", "tid": 35568, "ts": 10801010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457ec0", "tid": 35568, "ts": 10801097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457df0", "tid": 35568, "ts": 10801227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456ce0", "tid": 35568, "ts": 10801318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457290", "tid": 35568, "ts": 10801404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456c10", "tid": 35568, "ts": 10801491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457500", "tid": 35568, "ts": 10801577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458610", "tid": 35568, "ts": 10801663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456db0", "tid": 35568, "ts": 10801749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457d20", "tid": 35568, "ts": 10801836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458f00", "tid": 35568, "ts": 10801923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459cd0", "tid": 35568, "ts": 10802010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4597f0", "tid": 35568, "ts": 10802095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457c50", "tid": 35568, "ts": 10802181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4569a0", "tid": 35568, "ts": 10802267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457ab0", "tid": 35568, "ts": 10802353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458470", "tid": 35568, "ts": 10802439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458e30", "tid": 35568, "ts": 10802526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456800", "tid": 35568, "ts": 10802612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4556f0", "tid": 35568, "ts": 10802699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455210", "tid": 35568, "ts": 10802785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454fa0", "tid": 35568, "ts": 10802872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454100", "tid": 35568, "ts": 10802958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455f10", "tid": 35568, "ts": 10803044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455e40", "tid": 35568, "ts": 10803131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455960", "tid": 35568, "ts": 10803217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453e90", "tid": 35568, "ts": 10803304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454510", "tid": 35568, "ts": 10803391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454e00", "tid": 35568, "ts": 10803477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454c60", "tid": 35568, "ts": 10803563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454370", "tid": 35568, "ts": 10803649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456250", "tid": 35568, "ts": 10803736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455070", "tid": 35568, "ts": 10803822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455d70", "tid": 35568, "ts": 10803909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4542a0", "tid": 35568, "ts": 10803996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4549f0", "tid": 35568, "ts": 10804083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4541d0", "tid": 35568, "ts": 10804169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4546b0", "tid": 35568, "ts": 10804255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453670", "tid": 35568, "ts": 10804341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455fe0", "tid": 35568, "ts": 10804428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455bd0", "tid": 35568, "ts": 10804514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454ac0", "tid": 35568, "ts": 10804601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455b00", "tid": 35568, "ts": 10804687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454780", "tid": 35568, "ts": 10804774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456180", "tid": 35568, "ts": 10804861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455a30", "tid": 35568, "ts": 10804947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4564c0", "tid": 35568, "ts": 10805033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4539b0", "tid": 35568, "ts": 10805119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4563f0", "tid": 35568, "ts": 10805205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453cf0", "tid": 35568, "ts": 10805291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4530c0", "tid": 35568, "ts": 10805377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452e50", "tid": 35568, "ts": 10805464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451a00", "tid": 35568, "ts": 10805551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451790", "tid": 35568, "ts": 10805636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452080", "tid": 35568, "ts": 10805723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452be0", "tid": 35568, "ts": 10805809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452f20", "tid": 35568, "ts": 10805896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451ad0", "tid": 35568, "ts": 10805982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451110", "tid": 35568, "ts": 10806068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451520", "tid": 35568, "ts": 10806155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452560", "tid": 35568, "ts": 10806242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4504e0", "tid": 35568, "ts": 10806329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452970", "tid": 35568, "ts": 10806415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4534d0", "tid": 35568, "ts": 10806502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4528a0", "tid": 35568, "ts": 10806588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450410", "tid": 35568, "ts": 10806674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4527d0", "tid": 35568, "ts": 10806760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450a90", "tid": 35568, "ts": 10806847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450750", "tid": 35568, "ts": 10806934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452ff0", "tid": 35568, "ts": 10807020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4512b0", "tid": 35568, "ts": 10807106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452b10", "tid": 35568, "ts": 10807192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451040", "tid": 35568, "ts": 10807280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453330", "tid": 35568, "ts": 10807366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4508f0", "tid": 35568, "ts": 10807452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450820", "tid": 35568, "ts": 10807539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453190", "tid": 35568, "ts": 10807625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451e10", "tid": 35568, "ts": 10807711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451380", "tid": 35568, "ts": 10807797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452220", "tid": 35568, "ts": 10807884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452d80", "tid": 35568, "ts": 10807970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4515f0", "tid": 35568, "ts": 10808056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80ac0", "tid": 35568, "ts": 10808142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80920", "tid": 35568, "ts": 10808229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80510", "tid": 35568, "ts": 10808315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd802a0", "tid": 35568, "ts": 10808402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ff60", "tid": 35568, "ts": 10808488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fe90", "tid": 35568, "ts": 10808574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fc20", "tid": 35568, "ts": 10808661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f9b0", "tid": 35568, "ts": 10808747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f810", "tid": 35568, "ts": 10808833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e560", "tid": 35568, "ts": 10808920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e2f0", "tid": 35568, "ts": 10809006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e630", "tid": 35568, "ts": 10809092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f330", "tid": 35568, "ts": 10809228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f740", "tid": 35568, "ts": 10809337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80b90", "tid": 35568, "ts": 10809449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dfb0", "tid": 35568, "ts": 10809535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80780", "tid": 35568, "ts": 10809622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e080", "tid": 35568, "ts": 10809722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd806b0", "tid": 35568, "ts": 10809831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e8a0", "tid": 35568, "ts": 10809947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7de10", "tid": 35568, "ts": 10810035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80d30", "tid": 35568, "ts": 10810157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7eff0", "tid": 35568, "ts": 10810243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ea40", "tid": 35568, "ts": 10810333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd805e0", "tid": 35568, "ts": 10810420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ef20", "tid": 35568, "ts": 10810507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f190", "tid": 35568, "ts": 10810623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd801d0", "tid": 35568, "ts": 10810735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f5a0", "tid": 35568, "ts": 10810821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80100", "tid": 35568, "ts": 10810908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f0c0", "tid": 35568, "ts": 10810995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cb60", "tid": 35568, "ts": 10811084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c4e0", "tid": 35568, "ts": 10811170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c270", "tid": 35568, "ts": 10811284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c1a0", "tid": 35568, "ts": 10811371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7be60", "tid": 35568, "ts": 10811458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ae20", "tid": 35568, "ts": 10811544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ad50", "tid": 35568, "ts": 10811632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cea0", "tid": 35568, "ts": 10811718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c000", "tid": 35568, "ts": 10811804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ba50", "tid": 35568, "ts": 10811890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b980", "tid": 35568, "ts": 10811977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dad0", "tid": 35568, "ts": 10812063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b8b0", "tid": 35568, "ts": 10812150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bbf0", "tid": 35568, "ts": 10812237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ac80", "tid": 35568, "ts": 10812323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c750", "tid": 35568, "ts": 10812409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d930", "tid": 35568, "ts": 10812495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bb20", "tid": 35568, "ts": 10812581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7da00", "tid": 35568, "ts": 10812668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a940", "tid": 35568, "ts": 10812754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b4a0", "tid": 35568, "ts": 10812841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cc30", "tid": 35568, "ts": 10812927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d450", "tid": 35568, "ts": 10813014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d790", "tid": 35568, "ts": 10813099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b3d0", "tid": 35568, "ts": 10813186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7abb0", "tid": 35568, "ts": 10813272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bf30", "tid": 35568, "ts": 10813358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b300", "tid": 35568, "ts": 10813444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7afc0", "tid": 35568, "ts": 10813531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cd00", "tid": 35568, "ts": 10813617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7aef0", "tid": 35568, "ts": 10813703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7aa10", "tid": 35568, "ts": 10813790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79f80", "tid": 35568, "ts": 10813877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77950", "tid": 35568, "ts": 10813964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77880", "tid": 35568, "ts": 10814051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78b30", "tid": 35568, "ts": 10814137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78a60", "tid": 35568, "ts": 10814224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79de0", "tid": 35568, "ts": 10814310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79c40", "tid": 35568, "ts": 10814397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79420", "tid": 35568, "ts": 10814482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79350", "tid": 35568, "ts": 10814569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77610", "tid": 35568, "ts": 10814655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a530", "tid": 35568, "ts": 10814741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77a20", "tid": 35568, "ts": 10814828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a460", "tid": 35568, "ts": 10814915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78e70", "tid": 35568, "ts": 10815002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79aa0", "tid": 35568, "ts": 10815089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a390", "tid": 35568, "ts": 10815175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78da0", "tid": 35568, "ts": 10815262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78c00", "tid": 35568, "ts": 10815347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78720", "tid": 35568, "ts": 10815434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a870", "tid": 35568, "ts": 10815520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79d10", "tid": 35568, "ts": 10815607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77d60", "tid": 35568, "ts": 10815693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd788c0", "tid": 35568, "ts": 10815780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78310", "tid": 35568, "ts": 10815865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78580", "tid": 35568, "ts": 10815951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79690", "tid": 35568, "ts": 10816037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77c90", "tid": 35568, "ts": 10816123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a120", "tid": 35568, "ts": 10816210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a7a0", "tid": 35568, "ts": 10816295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd784b0", "tid": 35568, "ts": 10816381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79760", "tid": 35568, "ts": 10816467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77540", "tid": 35568, "ts": 10816554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76ab0", "tid": 35568, "ts": 10816640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74b00", "tid": 35568, "ts": 10816726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd766a0", "tid": 35568, "ts": 10816814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76360", "tid": 35568, "ts": 10816900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76500", "tid": 35568, "ts": 10816987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74620", "tid": 35568, "ts": 10817074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74210", "tid": 35568, "ts": 10817160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75730", "tid": 35568, "ts": 10817247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77200", "tid": 35568, "ts": 10817333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75ce0", "tid": 35568, "ts": 10817419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd743b0", "tid": 35568, "ts": 10817506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74140", "tid": 35568, "ts": 10817592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75320", "tid": 35568, "ts": 10817678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74ca0", "tid": 35568, "ts": 10817764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76df0", "tid": 35568, "ts": 10817851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76020", "tid": 35568, "ts": 10817937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74d70", "tid": 35568, "ts": 10818023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75f50", "tid": 35568, "ts": 10818108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd754c0", "tid": 35568, "ts": 10818195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74550", "tid": 35568, "ts": 10818281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75250", "tid": 35568, "ts": 10818368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76c50", "tid": 35568, "ts": 10818454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd750b0", "tid": 35568, "ts": 10818541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd758d0", "tid": 35568, "ts": 10818627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74f10", "tid": 35568, "ts": 10818713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd760f0", "tid": 35568, "ts": 10818799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75a70", "tid": 35568, "ts": 10818886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77130", "tid": 35568, "ts": 10818972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75590", "tid": 35568, "ts": 10819058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76910", "tid": 35568, "ts": 10819144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75e80", "tid": 35568, "ts": 10819231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd769e0", "tid": 35568, "ts": 10819318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71080", "tid": 35568, "ts": 10819405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73c60", "tid": 35568, "ts": 10819491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73920", "tid": 35568, "ts": 10819578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd736b0", "tid": 35568, "ts": 10819665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70ee0", "tid": 35568, "ts": 10819751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73510", "tid": 35568, "ts": 10819838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73370", "tid": 35568, "ts": 10819925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73100", "tid": 35568, "ts": 10820011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72b50", "tid": 35568, "ts": 10820097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72330", "tid": 35568, "ts": 10820184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73ed0", "tid": 35568, "ts": 10820270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72260", "tid": 35568, "ts": 10820357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd728e0", "tid": 35568, "ts": 10820443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72190", "tid": 35568, "ts": 10820529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73e00", "tid": 35568, "ts": 10820616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd720c0", "tid": 35568, "ts": 10820702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71d80", "tid": 35568, "ts": 10820788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd717d0", "tid": 35568, "ts": 10820874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72810", "tid": 35568, "ts": 10820961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd724d0", "tid": 35568, "ts": 10821047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72cf0", "tid": 35568, "ts": 10821134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74070", "tid": 35568, "ts": 10821220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71a40", "tid": 35568, "ts": 10821307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd712f0", "tid": 35568, "ts": 10821393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73d30", "tid": 35568, "ts": 10821480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72a80", "tid": 35568, "ts": 10821566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71cb0", "tid": 35568, "ts": 10821653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71970", "tid": 35568, "ts": 10821738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71f20", "tid": 35568, "ts": 10821824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72c20", "tid": 35568, "ts": 10821911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71be0", "tid": 35568, "ts": 10821998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72400", "tid": 35568, "ts": 10822084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70c70", "tid": 35568, "ts": 10822171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ff70", "tid": 35568, "ts": 10822258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70a00", "tid": 35568, "ts": 10822346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fc30", "tid": 35568, "ts": 10822433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f750", "tid": 35568, "ts": 10822519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f680", "tid": 35568, "ts": 10822605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70860", "tid": 35568, "ts": 10822693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ee60", "tid": 35568, "ts": 10822778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ed90", "tid": 35568, "ts": 10822865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fa90", "tid": 35568, "ts": 10822951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd702b0", "tid": 35568, "ts": 10823038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f5b0", "tid": 35568, "ts": 10823124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dfc0", "tid": 35568, "ts": 10823211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ecc0", "tid": 35568, "ts": 10823297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e8b0", "tid": 35568, "ts": 10823384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f340", "tid": 35568, "ts": 10823471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dc80", "tid": 35568, "ts": 10823557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6eb20", "tid": 35568, "ts": 10823645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e4a0", "tid": 35568, "ts": 10823732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70ad0", "tid": 35568, "ts": 10823819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6def0", "tid": 35568, "ts": 10823905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f000", "tid": 35568, "ts": 10823991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e980", "tid": 35568, "ts": 10824078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ea50", "tid": 35568, "ts": 10824165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70380", "tid": 35568, "ts": 10824251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6da10", "tid": 35568, "ts": 10824337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e090", "tid": 35568, "ts": 10824423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd706c0", "tid": 35568, "ts": 10824510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dae0", "tid": 35568, "ts": 10824597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ebf0", "tid": 35568, "ts": 10824683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f270", "tid": 35568, "ts": 10824771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e300", "tid": 35568, "ts": 10824992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b240", "tid": 35568, "ts": 10825143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6af00", "tid": 35568, "ts": 10825249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c280", "tid": 35568, "ts": 10825345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c0e0", "tid": 35568, "ts": 10825445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d1f0", "tid": 35568, "ts": 10825555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ae30", "tid": 35568, "ts": 10825652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c420", "tid": 35568, "ts": 10825754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ad60", "tid": 35568, "ts": 10825863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bc00", "tid": 35568, "ts": 10825962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d870", "tid": 35568, "ts": 10826060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b720", "tid": 35568, "ts": 10826196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cde0", "tid": 35568, "ts": 10826323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bb30", "tid": 35568, "ts": 10826410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cd10", "tid": 35568, "ts": 10826499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b3e0", "tid": 35568, "ts": 10826587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cf80", "tid": 35568, "ts": 10826695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c9d0", "tid": 35568, "ts": 10826832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d390", "tid": 35568, "ts": 10826973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d120", "tid": 35568, "ts": 10827110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ba60", "tid": 35568, "ts": 10827197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a6e0", "tid": 35568, "ts": 10827311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a7b0", "tid": 35568, "ts": 10827397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d2c0", "tid": 35568, "ts": 10827485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6be70", "tid": 35568, "ts": 10827572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6afd0", "tid": 35568, "ts": 10827659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b990", "tid": 35568, "ts": 10827745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a880", "tid": 35568, "ts": 10827831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6caa0", "tid": 35568, "ts": 10827918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b580", "tid": 35568, "ts": 10828005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a950", "tid": 35568, "ts": 10828092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c830", "tid": 35568, "ts": 10828180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bf40", "tid": 35568, "ts": 10828292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a470", "tid": 35568, "ts": 10828379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd696a0", "tid": 35568, "ts": 10828466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a130", "tid": 35568, "ts": 10828556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68730", "tid": 35568, "ts": 10828643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69430", "tid": 35568, "ts": 10828731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69020", "tid": 35568, "ts": 10828818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67f10", "tid": 35568, "ts": 10828907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68590", "tid": 35568, "ts": 10828996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69360", "tid": 35568, "ts": 10829084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68320", "tid": 35568, "ts": 10829172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67ca0", "tid": 35568, "ts": 10829260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69770", "tid": 35568, "ts": 10829349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67bd0", "tid": 35568, "ts": 10829438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69f90", "tid": 35568, "ts": 10829526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67890", "tid": 35568, "ts": 10829614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69ec0", "tid": 35568, "ts": 10829702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd676f0", "tid": 35568, "ts": 10829790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd677c0", "tid": 35568, "ts": 10829897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68660", "tid": 35568, "ts": 10829987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69500", "tid": 35568, "ts": 10830074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69d20", "tid": 35568, "ts": 10830163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67210", "tid": 35568, "ts": 10830251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67e40", "tid": 35568, "ts": 10830339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a3a0", "tid": 35568, "ts": 10830427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd672e0", "tid": 35568, "ts": 10830518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67140", "tid": 35568, "ts": 10830606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67a30", "tid": 35568, "ts": 10830694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67620", "tid": 35568, "ts": 10830782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68db0", "tid": 35568, "ts": 10830871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd673b0", "tid": 35568, "ts": 10830958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd680b0", "tid": 35568, "ts": 10831047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66b90", "tid": 35568, "ts": 10831135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66ac0", "tid": 35568, "ts": 10831223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd669f0", "tid": 35568, "ts": 10831311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67070", "tid": 35568, "ts": 10831400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66510", "tid": 35568, "ts": 10831488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66e00", "tid": 35568, "ts": 10831575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65cf0", "tid": 35568, "ts": 10831664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65330", "tid": 35568, "ts": 10831752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd643c0", "tid": 35568, "ts": 10831839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63ee0", "tid": 35568, "ts": 10831927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd659b0", "tid": 35568, "ts": 10832016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63e10", "tid": 35568, "ts": 10832105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66100", "tid": 35568, "ts": 10832192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64be0", "tid": 35568, "ts": 10832281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd650c0", "tid": 35568, "ts": 10832369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd665e0", "tid": 35568, "ts": 10832457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64150", "tid": 35568, "ts": 10832545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64ff0", "tid": 35568, "ts": 10832633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65810", "tid": 35568, "ts": 10832722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63fb0", "tid": 35568, "ts": 10832811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64a40", "tid": 35568, "ts": 10832900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66c60", "tid": 35568, "ts": 10832988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd662a0", "tid": 35568, "ts": 10833076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66fa0", "tid": 35568, "ts": 10833165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64e50", "tid": 35568, "ts": 10833253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64560", "tid": 35568, "ts": 10833340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65dc0", "tid": 35568, "ts": 10833427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63d40", "tid": 35568, "ts": 10833540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65740", "tid": 35568, "ts": 10833626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd666b0", "tid": 35568, "ts": 10833714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64b10", "tid": 35568, "ts": 10833802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64700", "tid": 35568, "ts": 10833890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63a00", "tid": 35568, "ts": 10833977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63040", "tid": 35568, "ts": 10834064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62b60", "tid": 35568, "ts": 10834151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62a90", "tid": 35568, "ts": 10834240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd628f0", "tid": 35568, "ts": 10834327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd618b0", "tid": 35568, "ts": 10834425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61b20", "tid": 35568, "ts": 10834545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62dd0", "tid": 35568, "ts": 10834633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62000", "tid": 35568, "ts": 10834755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd636c0", "tid": 35568, "ts": 10834853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd635f0", "tid": 35568, "ts": 10834940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63860", "tid": 35568, "ts": 10835027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60e20", "tid": 35568, "ts": 10835113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd621a0", "tid": 35568, "ts": 10835200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62d00", "tid": 35568, "ts": 10835286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd613d0", "tid": 35568, "ts": 10835373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61d90", "tid": 35568, "ts": 10835460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61640", "tid": 35568, "ts": 10835546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd620d0", "tid": 35568, "ts": 10835633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63ba0", "tid": 35568, "ts": 10835721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60a10", "tid": 35568, "ts": 10835806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61e60", "tid": 35568, "ts": 10835893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd614a0", "tid": 35568, "ts": 10835980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61300", "tid": 35568, "ts": 10836068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61230", "tid": 35568, "ts": 10836155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63450", "tid": 35568, "ts": 10836242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61bf0", "tid": 35568, "ts": 10836329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62c30", "tid": 35568, "ts": 10836416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd631e0", "tid": 35568, "ts": 10836504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61160", "tid": 35568, "ts": 10836590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61090", "tid": 35568, "ts": 10836677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62750", "tid": 35568, "ts": 10836764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5da20", "tid": 35568, "ts": 10836852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd606d0", "tid": 35568, "ts": 10836940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f760", "tid": 35568, "ts": 10837028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f4f0", "tid": 35568, "ts": 10837162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f1b0", "tid": 35568, "ts": 10837252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60600", "tid": 35568, "ts": 10837340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ee70", "tid": 35568, "ts": 10837427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd602c0", "tid": 35568, "ts": 10837514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e580", "tid": 35568, "ts": 10837601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fb70", "tid": 35568, "ts": 10837688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5eb30", "tid": 35568, "ts": 10837776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60120", "tid": 35568, "ts": 10837864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dc90", "tid": 35568, "ts": 10837950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f5c0", "tid": 35568, "ts": 10838037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ea60", "tid": 35568, "ts": 10838123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5df00", "tid": 35568, "ts": 10838209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60460", "tid": 35568, "ts": 10838296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dd60", "tid": 35568, "ts": 10838382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60390", "tid": 35568, "ts": 10838468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e990", "tid": 35568, "ts": 10838556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5daf0", "tid": 35568, "ts": 10838642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dbc0", "tid": 35568, "ts": 10838729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d610", "tid": 35568, "ts": 10838816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ef40", "tid": 35568, "ts": 10838903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5feb0", "tid": 35568, "ts": 10838989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e8c0", "tid": 35568, "ts": 10839076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5de30", "tid": 35568, "ts": 10839162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e720", "tid": 35568, "ts": 10839250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d950", "tid": 35568, "ts": 10839336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d6e0", "tid": 35568, "ts": 10839422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e3e0", "tid": 35568, "ts": 10839508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd607a0", "tid": 35568, "ts": 10839596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c9e0", "tid": 35568, "ts": 10839682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b9a0", "tid": 35568, "ts": 10839769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c500", "tid": 35568, "ts": 10839855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b3f0", "tid": 35568, "ts": 10839943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b320", "tid": 35568, "ts": 10840030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ad70", "tid": 35568, "ts": 10840117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b250", "tid": 35568, "ts": 10840204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cec0", "tid": 35568, "ts": 10840291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a890", "tid": 35568, "ts": 10840378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b660", "tid": 35568, "ts": 10840540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ae40", "tid": 35568, "ts": 10840626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c290", "tid": 35568, "ts": 10840713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a6f0", "tid": 35568, "ts": 10840799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a620", "tid": 35568, "ts": 10840887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bdb0", "tid": 35568, "ts": 10840974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5af10", "tid": 35568, "ts": 10841060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cc50", "tid": 35568, "ts": 10841147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b8d0", "tid": 35568, "ts": 10841233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a3b0", "tid": 35568, "ts": 10841319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a210", "tid": 35568, "ts": 10841407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bc10", "tid": 35568, "ts": 10841494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b590", "tid": 35568, "ts": 10841580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d200", "tid": 35568, "ts": 10841667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c0f0", "tid": 35568, "ts": 10841753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cd20", "tid": 35568, "ts": 10841839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ab00", "tid": 35568, "ts": 10841926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a960", "tid": 35568, "ts": 10842013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cb80", "tid": 35568, "ts": 10842100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bce0", "tid": 35568, "ts": 10842186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d2d0", "tid": 35568, "ts": 10842273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bf50", "tid": 35568, "ts": 10842359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ba70", "tid": 35568, "ts": 10842447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd585a0", "tid": 35568, "ts": 10842534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57e50", "tid": 35568, "ts": 10842621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57cb0", "tid": 35568, "ts": 10842707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57080", "tid": 35568, "ts": 10842794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57700", "tid": 35568, "ts": 10842881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58b50", "tid": 35568, "ts": 10842968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd578a0", "tid": 35568, "ts": 10843054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57be0", "tid": 35568, "ts": 10843141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58400", "tid": 35568, "ts": 10843228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56d40", "tid": 35568, "ts": 10843315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a070", "tid": 35568, "ts": 10843401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57970", "tid": 35568, "ts": 10843489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59850", "tid": 35568, "ts": 10843575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59100", "tid": 35568, "ts": 10843662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59780", "tid": 35568, "ts": 10843749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59ed0", "tid": 35568, "ts": 10843836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57490", "tid": 35568, "ts": 10843922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd591d0", "tid": 35568, "ts": 10844010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd573c0", "tid": 35568, "ts": 10844097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58dc0", "tid": 35568, "ts": 10844184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59c60", "tid": 35568, "ts": 10844271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59b90", "tid": 35568, "ts": 10844358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58a80", "tid": 35568, "ts": 10844445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57f20", "tid": 35568, "ts": 10844532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58670", "tid": 35568, "ts": 10844619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd592a0", "tid": 35568, "ts": 10844706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56ee0", "tid": 35568, "ts": 10844793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59510", "tid": 35568, "ts": 10844879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59e00", "tid": 35568, "ts": 10844965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59d30", "tid": 35568, "ts": 10845053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58cf0", "tid": 35568, "ts": 10845139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57150", "tid": 35568, "ts": 10845226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53d50", "tid": 35568, "ts": 10845312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53ef0", "tid": 35568, "ts": 10845399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53940", "tid": 35568, "ts": 10845485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd566c0", "tid": 35568, "ts": 10845573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55000", "tid": 35568, "ts": 10845659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd543d0", "tid": 35568, "ts": 10845746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56450", "tid": 35568, "ts": 10845833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54f30", "tid": 35568, "ts": 10845920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56520", "tid": 35568, "ts": 10846006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd550d0", "tid": 35568, "ts": 10846092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53fc0", "tid": 35568, "ts": 10846179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55a90", "tid": 35568, "ts": 10846265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd548b0", "tid": 35568, "ts": 10846351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54d90", "tid": 35568, "ts": 10846438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd555b0", "tid": 35568, "ts": 10846524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55dd0", "tid": 35568, "ts": 10846610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54570", "tid": 35568, "ts": 10846697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54640", "tid": 35568, "ts": 10846784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54cc0", "tid": 35568, "ts": 10846870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53bb0", "tid": 35568, "ts": 10846957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54bf0", "tid": 35568, "ts": 10847043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55d00", "tid": 35568, "ts": 10847130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56040", "tid": 35568, "ts": 10847216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56ba0", "tid": 35568, "ts": 10847304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56930", "tid": 35568, "ts": 10847390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55750", "tid": 35568, "ts": 10847477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54e60", "tid": 35568, "ts": 10847563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56c70", "tid": 35568, "ts": 10847650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54090", "tid": 35568, "ts": 10847737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54230", "tid": 35568, "ts": 10847823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53ae0", "tid": 35568, "ts": 10847911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd544a0", "tid": 35568, "ts": 10847997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50610", "tid": 35568, "ts": 10848083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51e70", "tid": 35568, "ts": 10848170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51c00", "tid": 35568, "ts": 10848257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51a60", "tid": 35568, "ts": 10848344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50bc0", "tid": 35568, "ts": 10848431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd524f0", "tid": 35568, "ts": 10848518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52420", "tid": 35568, "ts": 10848605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50e30", "tid": 35568, "ts": 10848692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51990", "tid": 35568, "ts": 10848778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51580", "tid": 35568, "ts": 10848865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52690", "tid": 35568, "ts": 10848951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd514b0", "tid": 35568, "ts": 10849038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50c90", "tid": 35568, "ts": 10849125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd532c0", "tid": 35568, "ts": 10849211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53530", "tid": 35568, "ts": 10849298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53120", "tid": 35568, "ts": 10849385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd518c0", "tid": 35568, "ts": 10849472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52900", "tid": 35568, "ts": 10849559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50540", "tid": 35568, "ts": 10849645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd513e0", "tid": 35568, "ts": 10849732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51170", "tid": 35568, "ts": 10849819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd520e0", "tid": 35568, "ts": 10849906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd525c0", "tid": 35568, "ts": 10849992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd529d0", "tid": 35568, "ts": 10850079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52aa0", "tid": 35568, "ts": 10850166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50a20", "tid": 35568, "ts": 10850253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52de0", "tid": 35568, "ts": 10850340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd517f0", "tid": 35568, "ts": 10850427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd531f0", "tid": 35568, "ts": 10850513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52f80", "tid": 35568, "ts": 10850600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52010", "tid": 35568, "ts": 10850687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd510a0", "tid": 35568, "ts": 10850774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fc50", "tid": 35568, "ts": 10850861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e180", "tid": 35568, "ts": 10850948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4de40", "tid": 35568, "ts": 10851035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f020", "tid": 35568, "ts": 10851122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dfe0", "tid": 35568, "ts": 10851208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f360", "tid": 35568, "ts": 10851295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f910", "tid": 35568, "ts": 10851381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ea70", "tid": 35568, "ts": 10851468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4db00", "tid": 35568, "ts": 10851554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ef50", "tid": 35568, "ts": 10851641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d550", "tid": 35568, "ts": 10851727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d210", "tid": 35568, "ts": 10851814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d620", "tid": 35568, "ts": 10851900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50470", "tid": 35568, "ts": 10851987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fb80", "tid": 35568, "ts": 10852073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d7c0", "tid": 35568, "ts": 10852161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e320", "tid": 35568, "ts": 10852247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f770", "tid": 35568, "ts": 10852333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ee80", "tid": 35568, "ts": 10852420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd503a0", "tid": 35568, "ts": 10852508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50060", "tid": 35568, "ts": 10852594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ff90", "tid": 35568, "ts": 10852682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d6f0", "tid": 35568, "ts": 10852768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d2e0", "tid": 35568, "ts": 10852854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dca0", "tid": 35568, "ts": 10852940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ec10", "tid": 35568, "ts": 10853026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f0f0", "tid": 35568, "ts": 10853113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd502d0", "tid": 35568, "ts": 10853200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50130", "tid": 35568, "ts": 10853286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fab0", "tid": 35568, "ts": 10853372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4df10", "tid": 35568, "ts": 10853458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fdf0", "tid": 35568, "ts": 10853546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b330", "tid": 35568, "ts": 10853632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b190", "tid": 35568, "ts": 10853717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4abe0", "tid": 35568, "ts": 10853803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a970", "tid": 35568, "ts": 10853891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a8a0", "tid": 35568, "ts": 10853978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cfa0", "tid": 35568, "ts": 10854064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a080", "tid": 35568, "ts": 10854151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49fb0", "tid": 35568, "ts": 10854237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ced0", "tid": 35568, "ts": 10854323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c510", "tid": 35568, "ts": 10854410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4af20", "tid": 35568, "ts": 10854496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ae50", "tid": 35568, "ts": 10854583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b8e0", "tid": 35568, "ts": 10854669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ad80", "tid": 35568, "ts": 10854756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a150", "tid": 35568, "ts": 10854842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c1d0", "tid": 35568, "ts": 10854929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a630", "tid": 35568, "ts": 10855015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c9f0", "tid": 35568, "ts": 10855101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b810", "tid": 35568, "ts": 10855188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bdc0", "tid": 35568, "ts": 10855275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c920", "tid": 35568, "ts": 10855362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c5e0", "tid": 35568, "ts": 10855448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c440", "tid": 35568, "ts": 10855534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a2f0", "tid": 35568, "ts": 10855621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a220", "tid": 35568, "ts": 10855707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c780", "tid": 35568, "ts": 10855795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ba80", "tid": 35568, "ts": 10855881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a490", "tid": 35568, "ts": 10855968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49e10", "tid": 35568, "ts": 10856108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c030", "tid": 35568, "ts": 10856239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bcf0", "tid": 35568, "ts": 10856334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b740", "tid": 35568, "ts": 10856448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46ae0", "tid": 35568, "ts": 10856550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd496c0", "tid": 35568, "ts": 10856688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46ef0", "tid": 35568, "ts": 10856830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd495f0", "tid": 35568, "ts": 10856933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd491e0", "tid": 35568, "ts": 10857020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48dd0", "tid": 35568, "ts": 10857107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd473d0", "tid": 35568, "ts": 10857194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd485b0", "tid": 35568, "ts": 10857281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48270", "tid": 35568, "ts": 10857368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47300", "tid": 35568, "ts": 10857455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46e20", "tid": 35568, "ts": 10857541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47cc0", "tid": 35568, "ts": 10857628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49520", "tid": 35568, "ts": 10857715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49790", "tid": 35568, "ts": 10857802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49380", "tid": 35568, "ts": 10857889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48d00", "tid": 35568, "ts": 10857975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49a00", "tid": 35568, "ts": 10858061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48b60", "tid": 35568, "ts": 10858147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd484e0", "tid": 35568, "ts": 10858234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46fc0", "tid": 35568, "ts": 10858323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47980", "tid": 35568, "ts": 10858410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49860", "tid": 35568, "ts": 10858497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46d50", "tid": 35568, "ts": 10858583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47570", "tid": 35568, "ts": 10858670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48f70", "tid": 35568, "ts": 10858757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46c80", "tid": 35568, "ts": 10858843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48340", "tid": 35568, "ts": 10858929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd478b0", "tid": 35568, "ts": 10859015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48750", "tid": 35568, "ts": 10859102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd481a0", "tid": 35568, "ts": 10859188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47710", "tid": 35568, "ts": 10859275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47f30", "tid": 35568, "ts": 10859362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd462c0", "tid": 35568, "ts": 10859448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd448c0", "tid": 35568, "ts": 10859535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43e30", "tid": 35568, "ts": 10859621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd447f0", "tid": 35568, "ts": 10859709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43c90", "tid": 35568, "ts": 10859795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45350", "tid": 35568, "ts": 10859882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43f00", "tid": 35568, "ts": 10859968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44580", "tid": 35568, "ts": 10860056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44a60", "tid": 35568, "ts": 10860142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd437b0", "tid": 35568, "ts": 10860229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45d10", "tid": 35568, "ts": 10860315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd443e0", "tid": 35568, "ts": 10860402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45c40", "tid": 35568, "ts": 10860489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd436e0", "tid": 35568, "ts": 10860576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46870", "tid": 35568, "ts": 10860662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46120", "tid": 35568, "ts": 10860749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44e70", "tid": 35568, "ts": 10860836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43a20", "tid": 35568, "ts": 10860922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43610", "tid": 35568, "ts": 10861009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd466d0", "tid": 35568, "ts": 10861096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46390", "tid": 35568, "ts": 10861182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd440a0", "tid": 35568, "ts": 10861268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44b30", "tid": 35568, "ts": 10861355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43fd0", "tid": 35568, "ts": 10861442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45900", "tid": 35568, "ts": 10861529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43950", "tid": 35568, "ts": 10861615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45760", "tid": 35568, "ts": 10861702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45eb0", "tid": 35568, "ts": 10861790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44240", "tid": 35568, "ts": 10861876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46600", "tid": 35568, "ts": 10861963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46530", "tid": 35568, "ts": 10862049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45aa0", "tid": 35568, "ts": 10862136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40890", "tid": 35568, "ts": 10862222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40620", "tid": 35568, "ts": 10862309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42d20", "tid": 35568, "ts": 10862395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd403b0", "tid": 35568, "ts": 10862483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42b80", "tid": 35568, "ts": 10862569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd429e0", "tid": 35568, "ts": 10862655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40210", "tid": 35568, "ts": 10862742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42840", "tid": 35568, "ts": 10862828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41ce0", "tid": 35568, "ts": 10862915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd413f0", "tid": 35568, "ts": 10863003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42c50", "tid": 35568, "ts": 10863090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd419a0", "tid": 35568, "ts": 10863177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42ab0", "tid": 35568, "ts": 10863263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd432d0", "tid": 35568, "ts": 10863350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43130", "tid": 35568, "ts": 10863437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40a30", "tid": 35568, "ts": 10863524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41b40", "tid": 35568, "ts": 10863611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41250", "tid": 35568, "ts": 10863697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd418d0", "tid": 35568, "ts": 10863783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd433a0", "tid": 35568, "ts": 10863871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43060", "tid": 35568, "ts": 10863957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43200", "tid": 35568, "ts": 10864043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40d70", "tid": 35568, "ts": 10864130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42290", "tid": 35568, "ts": 10864217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41660", "tid": 35568, "ts": 10864304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd425d0", "tid": 35568, "ts": 10864390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40ca0", "tid": 35568, "ts": 10864477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42430", "tid": 35568, "ts": 10864564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41a70", "tid": 35568, "ts": 10864651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40960", "tid": 35568, "ts": 10864738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41590", "tid": 35568, "ts": 10864825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41db0", "tid": 35568, "ts": 10864912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f990", "tid": 35568, "ts": 10864999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f720", "tid": 35568, "ts": 10865086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f580", "tid": 35568, "ts": 10865172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f170", "tid": 35568, "ts": 10865259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ec90", "tid": 35568, "ts": 10865346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6509d0", "tid": 35568, "ts": 10865434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650de0", "tid": 35568, "ts": 10865520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650d10", "tid": 35568, "ts": 10865608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e2d0", "tid": 35568, "ts": 10865694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6505c0", "tid": 35568, "ts": 10865780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e540", "tid": 35568, "ts": 10865867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64efd0", "tid": 35568, "ts": 10865954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f0a0", "tid": 35568, "ts": 10866040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e200", "tid": 35568, "ts": 10866127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651460", "tid": 35568, "ts": 10866213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f8c0", "tid": 35568, "ts": 10866300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f3e0", "tid": 35568, "ts": 10866387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e6e0", "tid": 35568, "ts": 10866473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e3a0", "tid": 35568, "ts": 10866559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ff40", "tid": 35568, "ts": 10866646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6512c0", "tid": 35568, "ts": 10866733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ef00", "tid": 35568, "ts": 10866819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ee30", "tid": 35568, "ts": 10866905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650760", "tid": 35568, "ts": 10866993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6511f0", "tid": 35568, "ts": 10867079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fe70", "tid": 35568, "ts": 10867166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6501b0", "tid": 35568, "ts": 10867253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f4b0", "tid": 35568, "ts": 10867340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fb30", "tid": 35568, "ts": 10867427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6500e0", "tid": 35568, "ts": 10867514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651120", "tid": 35568, "ts": 10867600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650690", "tid": 35568, "ts": 10867687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d4c0", "tid": 35568, "ts": 10867774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cfe0", "tid": 35568, "ts": 10867860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ce40", "tid": 35568, "ts": 10867947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cca0", "tid": 35568, "ts": 10868035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c6f0", "tid": 35568, "ts": 10868122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c480", "tid": 35568, "ts": 10868209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c2e0", "tid": 35568, "ts": 10868296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d590", "tid": 35568, "ts": 10868384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ec50", "tid": 35568, "ts": 10868471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68eab0", "tid": 35568, "ts": 10868557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e770", "tid": 35568, "ts": 10868643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c070", "tid": 35568, "ts": 10868730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e430", "tid": 35568, "ts": 10868816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bfa0", "tid": 35568, "ts": 10868903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e5d0", "tid": 35568, "ts": 10868990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68df50", "tid": 35568, "ts": 10869078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68da70", "tid": 35568, "ts": 10869165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ddb0", "tid": 35568, "ts": 10869251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cbd0", "tid": 35568, "ts": 10869338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e360", "tid": 35568, "ts": 10869425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cb00", "tid": 35568, "ts": 10869511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d8d0", "tid": 35568, "ts": 10869598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e020", "tid": 35568, "ts": 10869684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c620", "tid": 35568, "ts": 10869772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c7c0", "tid": 35568, "ts": 10869858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68edf0", "tid": 35568, "ts": 10869945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d180", "tid": 35568, "ts": 10870031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e290", "tid": 35568, "ts": 10870118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ed20", "tid": 35568, "ts": 10870205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68be00", "tid": 35568, "ts": 10870291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c960", "tid": 35568, "ts": 10870377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689f20", "tid": 35568, "ts": 10870465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689d80", "tid": 35568, "ts": 10870551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6898a0", "tid": 35568, "ts": 10870638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689970", "tid": 35568, "ts": 10870724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689700", "tid": 35568, "ts": 10870812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689220", "tid": 35568, "ts": 10870898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688a00", "tid": 35568, "ts": 10870984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689560", "tid": 35568, "ts": 10871070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689080", "tid": 35568, "ts": 10871158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b440", "tid": 35568, "ts": 10871244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688930", "tid": 35568, "ts": 10871330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a4d0", "tid": 35568, "ts": 10871417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bc60", "tid": 35568, "ts": 10871504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b100", "tid": 35568, "ts": 10871591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a8e0", "tid": 35568, "ts": 10871741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a740", "tid": 35568, "ts": 10871829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688ee0", "tid": 35568, "ts": 10871917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68adc0", "tid": 35568, "ts": 10872005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688e10", "tid": 35568, "ts": 10872092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688c70", "tid": 35568, "ts": 10872180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689a40", "tid": 35568, "ts": 10872268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a330", "tid": 35568, "ts": 10872356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b030", "tid": 35568, "ts": 10872485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68af60", "tid": 35568, "ts": 10872573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b850", "tid": 35568, "ts": 10872660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ac20", "tid": 35568, "ts": 10872747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688d40", "tid": 35568, "ts": 10872833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ab50", "tid": 35568, "ts": 10872919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b1d0", "tid": 35568, "ts": 10873006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a810", "tid": 35568, "ts": 10873093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689ff0", "tid": 35568, "ts": 10873179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bb90", "tid": 35568, "ts": 10873265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685fc0", "tid": 35568, "ts": 10873352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685ef0", "tid": 35568, "ts": 10873439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685bb0", "tid": 35568, "ts": 10873526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687f70", "tid": 35568, "ts": 10873612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6881e0", "tid": 35568, "ts": 10873700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685940", "tid": 35568, "ts": 10873786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687410", "tid": 35568, "ts": 10873873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688860", "tid": 35568, "ts": 10873960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687340", "tid": 35568, "ts": 10874046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687c30", "tid": 35568, "ts": 10874133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6867e0", "tid": 35568, "ts": 10874219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687270", "tid": 35568, "ts": 10874306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686640", "tid": 35568, "ts": 10874392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688450", "tid": 35568, "ts": 10874478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685a10", "tid": 35568, "ts": 10874564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6856d0", "tid": 35568, "ts": 10874650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6878f0", "tid": 35568, "ts": 10874737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688380", "tid": 35568, "ts": 10874823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6857a0", "tid": 35568, "ts": 10874909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6871a0", "tid": 35568, "ts": 10874995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687b60", "tid": 35568, "ts": 10875083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685600", "tid": 35568, "ts": 10875169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687750", "tid": 35568, "ts": 10875255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687820", "tid": 35568, "ts": 10875342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686e60", "tid": 35568, "ts": 10875429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685c80", "tid": 35568, "ts": 10875515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686cc0", "tid": 35568, "ts": 10875602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685870", "tid": 35568, "ts": 10875687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686f30", "tid": 35568, "ts": 10875774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687a90", "tid": 35568, "ts": 10875860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6874e0", "tid": 35568, "ts": 10875947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686bf0", "tid": 35568, "ts": 10876033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683650", "tid": 35568, "ts": 10876119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6834b0", "tid": 35568, "ts": 10876204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683310", "tid": 35568, "ts": 10876291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682d60", "tid": 35568, "ts": 10876376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682c90", "tid": 35568, "ts": 10876462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6827b0", "tid": 35568, "ts": 10876550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684eb0", "tid": 35568, "ts": 10876636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682540", "tid": 35568, "ts": 10876722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683a60", "tid": 35568, "ts": 10876808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684760", "tid": 35568, "ts": 10876895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684350", "tid": 35568, "ts": 10876981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682950", "tid": 35568, "ts": 10877067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684280", "tid": 35568, "ts": 10877154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683e70", "tid": 35568, "ts": 10877240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682130", "tid": 35568, "ts": 10877327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683720", "tid": 35568, "ts": 10877413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682bc0", "tid": 35568, "ts": 10877499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683b30", "tid": 35568, "ts": 10877585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684010", "tid": 35568, "ts": 10877671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685390", "tid": 35568, "ts": 10877758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6844f0", "tid": 35568, "ts": 10877845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6852c0", "tid": 35568, "ts": 10877931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6840e0", "tid": 35568, "ts": 10878018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682470", "tid": 35568, "ts": 10878104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685050", "tid": 35568, "ts": 10878191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682af0", "tid": 35568, "ts": 10878277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6849d0", "tid": 35568, "ts": 10878364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684830", "tid": 35568, "ts": 10878450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684900", "tid": 35568, "ts": 10878537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682fd0", "tid": 35568, "ts": 10878624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6841b0", "tid": 35568, "ts": 10878712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683c00", "tid": 35568, "ts": 10878798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ffe0", "tid": 35568, "ts": 10878885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fe40", "tid": 35568, "ts": 10878971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681ab0", "tid": 35568, "ts": 10879057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fbd0", "tid": 35568, "ts": 10879144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6816a0", "tid": 35568, "ts": 10879232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681020", "tid": 35568, "ts": 10879319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fa30", "tid": 35568, "ts": 10879405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6819e0", "tid": 35568, "ts": 10879492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680730", "tid": 35568, "ts": 10879578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680db0", "tid": 35568, "ts": 10879664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680ce0", "tid": 35568, "ts": 10879751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f480", "tid": 35568, "ts": 10879837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681430", "tid": 35568, "ts": 10879924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680660", "tid": 35568, "ts": 10880010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681290", "tid": 35568, "ts": 10880096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6811c0", "tid": 35568, "ts": 10880183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f960", "tid": 35568, "ts": 10880269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f2e0", "tid": 35568, "ts": 10880355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680a70", "tid": 35568, "ts": 10880442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ed30", "tid": 35568, "ts": 10880528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680250", "tid": 35568, "ts": 10880615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680800", "tid": 35568, "ts": 10880701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f3b0", "tid": 35568, "ts": 10880788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f620", "tid": 35568, "ts": 10880874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f070", "tid": 35568, "ts": 10880960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681ec0", "tid": 35568, "ts": 10881047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f890", "tid": 35568, "ts": 10881133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681b80", "tid": 35568, "ts": 10881220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f210", "tid": 35568, "ts": 10881306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ee00", "tid": 35568, "ts": 10881393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681df0", "tid": 35568, "ts": 10881480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680320", "tid": 35568, "ts": 10881566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c8a0", "tid": 35568, "ts": 10881653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c700", "tid": 35568, "ts": 10881739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c2f0", "tid": 35568, "ts": 10881826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bee0", "tid": 35568, "ts": 10881912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bc70", "tid": 35568, "ts": 10882000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ba00", "tid": 35568, "ts": 10882086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e850", "tid": 35568, "ts": 10882172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e9f0", "tid": 35568, "ts": 10882258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bad0", "tid": 35568, "ts": 10882345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67df60", "tid": 35568, "ts": 10882431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e920", "tid": 35568, "ts": 10882517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cf20", "tid": 35568, "ts": 10882604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e1d0", "tid": 35568, "ts": 10882691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ddc0", "tid": 35568, "ts": 10882778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67dc20", "tid": 35568, "ts": 10882864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e2a0", "tid": 35568, "ts": 10882950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67da80", "tid": 35568, "ts": 10883038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e780", "tid": 35568, "ts": 10883124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d670", "tid": 35568, "ts": 10883211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cbe0", "tid": 35568, "ts": 10883297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d0c0", "tid": 35568, "ts": 10883385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e440", "tid": 35568, "ts": 10883470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ca40", "tid": 35568, "ts": 10883557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d330", "tid": 35568, "ts": 10883643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d8e0", "tid": 35568, "ts": 10883729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ce50", "tid": 35568, "ts": 10883817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e510", "tid": 35568, "ts": 10883903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d400", "tid": 35568, "ts": 10883990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c630", "tid": 35568, "ts": 10884077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67eac0", "tid": 35568, "ts": 10884164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e370", "tid": 35568, "ts": 10884251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cd80", "tid": 35568, "ts": 10884337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679710", "tid": 35568, "ts": 10884424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6794a0", "tid": 35568, "ts": 10884510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679230", "tid": 35568, "ts": 10884597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678fc0", "tid": 35568, "ts": 10884683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678ae0", "tid": 35568, "ts": 10884770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679cc0", "tid": 35568, "ts": 10884856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b860", "tid": 35568, "ts": 10884943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b2b0", "tid": 35568, "ts": 10885029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b6c0", "tid": 35568, "ts": 10885116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679090", "tid": 35568, "ts": 10885202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678ef0", "tid": 35568, "ts": 10885289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a4e0", "tid": 35568, "ts": 10885377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b110", "tid": 35568, "ts": 10885463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b5f0", "tid": 35568, "ts": 10885549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ac30", "tid": 35568, "ts": 10885636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67aea0", "tid": 35568, "ts": 10885723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679570", "tid": 35568, "ts": 10885809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679bf0", "tid": 35568, "ts": 10885895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a270", "tid": 35568, "ts": 10885981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a1a0", "tid": 35568, "ts": 10886067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a820", "tid": 35568, "ts": 10886154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a000", "tid": 35568, "ts": 10886241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6787a0", "tid": 35568, "ts": 10886327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a410", "tid": 35568, "ts": 10886413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679d90", "tid": 35568, "ts": 10886500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67af70", "tid": 35568, "ts": 10886586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679980", "tid": 35568, "ts": 10886673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a750", "tid": 35568, "ts": 10886759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678600", "tid": 35568, "ts": 10886845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67add0", "tid": 35568, "ts": 10886932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a340", "tid": 35568, "ts": 10887018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679a50", "tid": 35568, "ts": 10887104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6764b0", "tid": 35568, "ts": 10887192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676170", "tid": 35568, "ts": 10887315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675fd0", "tid": 35568, "ts": 10887440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675e30", "tid": 35568, "ts": 10887538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675610", "tid": 35568, "ts": 10887625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675540", "tid": 35568, "ts": 10887711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675470", "tid": 35568, "ts": 10887797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678390", "tid": 35568, "ts": 10887884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675bc0", "tid": 35568, "ts": 10887971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677de0", "tid": 35568, "ts": 10888056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675af0", "tid": 35568, "ts": 10888144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677aa0", "tid": 35568, "ts": 10888231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677830", "tid": 35568, "ts": 10888318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676990", "tid": 35568, "ts": 10888405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675950", "tid": 35568, "ts": 10888492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676580", "tid": 35568, "ts": 10888577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677d10", "tid": 35568, "ts": 10888664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6775c0", "tid": 35568, "ts": 10888750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6770e0", "tid": 35568, "ts": 10888837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676c00", "tid": 35568, "ts": 10888924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676f40", "tid": 35568, "ts": 10889011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676720", "tid": 35568, "ts": 10889098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6781f0", "tid": 35568, "ts": 10889185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676650", "tid": 35568, "ts": 10889271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677f80", "tid": 35568, "ts": 10889358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677280", "tid": 35568, "ts": 10889445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676da0", "tid": 35568, "ts": 10889532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678050", "tid": 35568, "ts": 10889618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677c40", "tid": 35568, "ts": 10889705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677900", "tid": 35568, "ts": 10889790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6771b0", "tid": 35568, "ts": 10889877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676e70", "tid": 35568, "ts": 10889964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672ca0", "tid": 35568, "ts": 10890051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672a30", "tid": 35568, "ts": 10890138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672140", "tid": 35568, "ts": 10890224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671ed0", "tid": 35568, "ts": 10890310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674ab0", "tid": 35568, "ts": 10890397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6727c0", "tid": 35568, "ts": 10890483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674df0", "tid": 35568, "ts": 10890570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674500", "tid": 35568, "ts": 10890656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6741c0", "tid": 35568, "ts": 10890743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674360", "tid": 35568, "ts": 10890829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673ce0", "tid": 35568, "ts": 10890916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673c10", "tid": 35568, "ts": 10891002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673590", "tid": 35568, "ts": 10891089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6734c0", "tid": 35568, "ts": 10891176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674770", "tid": 35568, "ts": 10891262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673250", "tid": 35568, "ts": 10891348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6746a0", "tid": 35568, "ts": 10891435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673180", "tid": 35568, "ts": 10891522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673a70", "tid": 35568, "ts": 10891608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674840", "tid": 35568, "ts": 10891695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673e80", "tid": 35568, "ts": 10891782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672480", "tid": 35568, "ts": 10891868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672f10", "tid": 35568, "ts": 10891954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6723b0", "tid": 35568, "ts": 10892040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673660", "tid": 35568, "ts": 10892127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671e00", "tid": 35568, "ts": 10892213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673730", "tid": 35568, "ts": 10892299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672620", "tid": 35568, "ts": 10892386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673800", "tid": 35568, "ts": 10892473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6730b0", "tid": 35568, "ts": 10892560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672e40", "tid": 35568, "ts": 10892646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6739a0", "tid": 35568, "ts": 10892733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fb10", "tid": 35568, "ts": 10892820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f700", "tid": 35568, "ts": 10892906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f560", "tid": 35568, "ts": 10892992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f080", "tid": 35568, "ts": 10893078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66eba0", "tid": 35568, "ts": 10893164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6716b0", "tid": 35568, "ts": 10893250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6715e0", "tid": 35568, "ts": 10893337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671510", "tid": 35568, "ts": 10893423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ea00", "tid": 35568, "ts": 10893509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66efb0", "tid": 35568, "ts": 10893596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6709b0", "tid": 35568, "ts": 10893682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fd80", "tid": 35568, "ts": 10893769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6708e0", "tid": 35568, "ts": 10893856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671440", "tid": 35568, "ts": 10893943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670670", "tid": 35568, "ts": 10894030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670740", "tid": 35568, "ts": 10894115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670400", "tid": 35568, "ts": 10894201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671370", "tid": 35568, "ts": 10894288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671b90", "tid": 35568, "ts": 10894375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f490", "tid": 35568, "ts": 10894461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fa40", "tid": 35568, "ts": 10894548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ed40", "tid": 35568, "ts": 10894658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671c60", "tid": 35568, "ts": 10894745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671920", "tid": 35568, "ts": 10894832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6711d0", "tid": 35568, "ts": 10894919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6712a0", "tid": 35568, "ts": 10895005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671ac0", "tid": 35568, "ts": 10895091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fcb0", "tid": 35568, "ts": 10895178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670260", "tid": 35568, "ts": 10895265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670190", "tid": 35568, "ts": 10895351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670c20", "tid": 35568, "ts": 10895438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fff0", "tid": 35568, "ts": 10895525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bae0", "tid": 35568, "ts": 10895612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c4a0", "tid": 35568, "ts": 10895698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66dea0", "tid": 35568, "ts": 10895785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d410", "tid": 35568, "ts": 10895871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ba10", "tid": 35568, "ts": 10895959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66dd00", "tid": 35568, "ts": 10896046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c8b0", "tid": 35568, "ts": 10896133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d0d0", "tid": 35568, "ts": 10896219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c300", "tid": 35568, "ts": 10896306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66db60", "tid": 35568, "ts": 10896393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bef0", "tid": 35568, "ts": 10896479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e6c0", "tid": 35568, "ts": 10896565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cf30", "tid": 35568, "ts": 10896651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cbf0", "tid": 35568, "ts": 10896738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c230", "tid": 35568, "ts": 10896825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ca50", "tid": 35568, "ts": 10896911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e450", "tid": 35568, "ts": 10896998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b7a0", "tid": 35568, "ts": 10897084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b600", "tid": 35568, "ts": 10897171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d750", "tid": 35568, "ts": 10897257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ccc0", "tid": 35568, "ts": 10897345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b6d0", "tid": 35568, "ts": 10897431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d5b0", "tid": 35568, "ts": 10897518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d680", "tid": 35568, "ts": 10897604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d4e0", "tid": 35568, "ts": 10897691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d8f0", "tid": 35568, "ts": 10897778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c090", "tid": 35568, "ts": 10897865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c3d0", "tid": 35568, "ts": 10897951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c980", "tid": 35568, "ts": 10898037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bbb0", "tid": 35568, "ts": 10898123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b530", "tid": 35568, "ts": 10898210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d820", "tid": 35568, "ts": 10898296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668d60", "tid": 35568, "ts": 10898382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6687b0", "tid": 35568, "ts": 10898468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668610", "tid": 35568, "ts": 10898555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669310", "tid": 35568, "ts": 10898641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66af80", "tid": 35568, "ts": 10898729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a900", "tid": 35568, "ts": 10898815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a010", "tid": 35568, "ts": 10898902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b1f0", "tid": 35568, "ts": 10898988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ac40", "tid": 35568, "ts": 10899074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669f40", "tid": 35568, "ts": 10899161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669cd0", "tid": 35568, "ts": 10899248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669c00", "tid": 35568, "ts": 10899334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a690", "tid": 35568, "ts": 10899421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668470", "tid": 35568, "ts": 10899508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6690a0", "tid": 35568, "ts": 10899594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6694b0", "tid": 35568, "ts": 10899681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668bc0", "tid": 35568, "ts": 10899768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6682d0", "tid": 35568, "ts": 10899854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669240", "tid": 35568, "ts": 10899940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a0e0", "tid": 35568, "ts": 10900027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ab70", "tid": 35568, "ts": 10900115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668880", "tid": 35568, "ts": 10900202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6697f0", "tid": 35568, "ts": 10900288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669a60", "tid": 35568, "ts": 10900374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a350", "tid": 35568, "ts": 10900461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ad10", "tid": 35568, "ts": 10900548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a280", "tid": 35568, "ts": 10900634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669720", "tid": 35568, "ts": 10900721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a5c0", "tid": 35568, "ts": 10900808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668130", "tid": 35568, "ts": 10900894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6683a0", "tid": 35568, "ts": 10900981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a420", "tid": 35568, "ts": 10901068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666a70", "tid": 35568, "ts": 10901154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665b00", "tid": 35568, "ts": 10901241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665960", "tid": 35568, "ts": 10901327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665d70", "tid": 35568, "ts": 10901414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666590", "tid": 35568, "ts": 10901502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665620", "tid": 35568, "ts": 10901588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665480", "tid": 35568, "ts": 10901674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6664c0", "tid": 35568, "ts": 10901760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664ed0", "tid": 35568, "ts": 10901848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667c50", "tid": 35568, "ts": 10901934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667ab0", "tid": 35568, "ts": 10902021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666660", "tid": 35568, "ts": 10902107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667500", "tid": 35568, "ts": 10902194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665210", "tid": 35568, "ts": 10902281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667360", "tid": 35568, "ts": 10902368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668060", "tid": 35568, "ts": 10902454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665fe0", "tid": 35568, "ts": 10902540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665ca0", "tid": 35568, "ts": 10902628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6657c0", "tid": 35568, "ts": 10902714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667770", "tid": 35568, "ts": 10902801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667430", "tid": 35568, "ts": 10902889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665bd0", "tid": 35568, "ts": 10903013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665070", "tid": 35568, "ts": 10903100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666250", "tid": 35568, "ts": 10903187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666ce0", "tid": 35568, "ts": 10903274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666e80", "tid": 35568, "ts": 10903360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6668d0", "tid": 35568, "ts": 10903446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666db0", "tid": 35568, "ts": 10903532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664d30", "tid": 35568, "ts": 10903619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6653b0", "tid": 35568, "ts": 10903706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667840", "tid": 35568, "ts": 10903792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666b40", "tid": 35568, "ts": 10903878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664b90", "tid": 35568, "ts": 10903964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664850", "tid": 35568, "ts": 10904051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664510", "tid": 35568, "ts": 10904137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663400", "tid": 35568, "ts": 10904223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663260", "tid": 35568, "ts": 10904312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662970", "tid": 35568, "ts": 10904397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663190", "tid": 35568, "ts": 10904483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661ad0", "tid": 35568, "ts": 10904569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661a00", "tid": 35568, "ts": 10904656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6646b0", "tid": 35568, "ts": 10904743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662630", "tid": 35568, "ts": 10904829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664030", "tid": 35568, "ts": 10904916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6630c0", "tid": 35568, "ts": 10905002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662560", "tid": 35568, "ts": 10905089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662ff0", "tid": 35568, "ts": 10905175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661930", "tid": 35568, "ts": 10905262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662f20", "tid": 35568, "ts": 10905349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663670", "tid": 35568, "ts": 10905436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6622f0", "tid": 35568, "ts": 10905523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662e50", "tid": 35568, "ts": 10905610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662150", "tid": 35568, "ts": 10905697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661ba0", "tid": 35568, "ts": 10905784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662d80", "tid": 35568, "ts": 10905870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661e10", "tid": 35568, "ts": 10905957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664ac0", "tid": 35568, "ts": 10906043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661d40", "tid": 35568, "ts": 10906129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661ee0", "tid": 35568, "ts": 10906217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664c60", "tid": 35568, "ts": 10906303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664920", "tid": 35568, "ts": 10906390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6645e0", "tid": 35568, "ts": 10906476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662a40", "tid": 35568, "ts": 10906562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6639b0", "tid": 35568, "ts": 10906649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fb20", "tid": 35568, "ts": 10906736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f7e0", "tid": 35568, "ts": 10906822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661380", "tid": 35568, "ts": 10906908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f300", "tid": 35568, "ts": 10906996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6612b0", "tid": 35568, "ts": 10907083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661040", "tid": 35568, "ts": 10907170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f090", "tid": 35568, "ts": 10907257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fcc0", "tid": 35568, "ts": 10907386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661860", "tid": 35568, "ts": 10907475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660dd0", "tid": 35568, "ts": 10907562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65efc0", "tid": 35568, "ts": 10907648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e7a0", "tid": 35568, "ts": 10907735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660d00", "tid": 35568, "ts": 10907822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661450", "tid": 35568, "ts": 10907907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f980", "tid": 35568, "ts": 10907994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e6d0", "tid": 35568, "ts": 10908080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65eae0", "tid": 35568, "ts": 10908167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660b60", "tid": 35568, "ts": 10908253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661790", "tid": 35568, "ts": 10908340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f640", "tid": 35568, "ts": 10908426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6611e0", "tid": 35568, "ts": 10908513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fd90", "tid": 35568, "ts": 10908599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65eef0", "tid": 35568, "ts": 10908686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6601a0", "tid": 35568, "ts": 10908772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6609c0", "tid": 35568, "ts": 10908858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fbf0", "tid": 35568, "ts": 10908945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ed50", "tid": 35568, "ts": 10909031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660680", "tid": 35568, "ts": 10909118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ee20", "tid": 35568, "ts": 10909205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f8b0", "tid": 35568, "ts": 10909292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660a90", "tid": 35568, "ts": 10909378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f230", "tid": 35568, "ts": 10909465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e1f0", "tid": 35568, "ts": 10909552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65dd10", "tid": 35568, "ts": 10909639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65db70", "tid": 35568, "ts": 10909725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e120", "tid": 35568, "ts": 10909812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cf40", "tid": 35568, "ts": 10909899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d760", "tid": 35568, "ts": 10909985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c990", "tid": 35568, "ts": 10910071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c7f0", "tid": 35568, "ts": 10910158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c580", "tid": 35568, "ts": 10910244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cda0", "tid": 35568, "ts": 10910331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c3e0", "tid": 35568, "ts": 10910417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c170", "tid": 35568, "ts": 10910504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d5c0", "tid": 35568, "ts": 10910591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65deb0", "tid": 35568, "ts": 10910678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bf00", "tid": 35568, "ts": 10910764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b7b0", "tid": 35568, "ts": 10910850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b6e0", "tid": 35568, "ts": 10910938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c4b0", "tid": 35568, "ts": 10911024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b610", "tid": 35568, "ts": 10911110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65be30", "tid": 35568, "ts": 10911197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b200", "tid": 35568, "ts": 10911284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ba20", "tid": 35568, "ts": 10911370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d280", "tid": 35568, "ts": 10911457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d900", "tid": 35568, "ts": 10911543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d1b0", "tid": 35568, "ts": 10911630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bbc0", "tid": 35568, "ts": 10911716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d0e0", "tid": 35568, "ts": 10911804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d420", "tid": 35568, "ts": 10911890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b130", "tid": 35568, "ts": 10911977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c240", "tid": 35568, "ts": 10912063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e460", "tid": 35568, "ts": 10912150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c310", "tid": 35568, "ts": 10912236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6586f0", "tid": 35568, "ts": 10912322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658550", "tid": 35568, "ts": 10912409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6583b0", "tid": 35568, "ts": 10912495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657fa0", "tid": 35568, "ts": 10912582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658b00", "tid": 35568, "ts": 10912669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658a30", "tid": 35568, "ts": 10912755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a9e0", "tid": 35568, "ts": 10912842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6587c0", "tid": 35568, "ts": 10912928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b060", "tid": 35568, "ts": 10913014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a0f0", "tid": 35568, "ts": 10913101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659db0", "tid": 35568, "ts": 10913187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a770", "tid": 35568, "ts": 10913274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6598d0", "tid": 35568, "ts": 10913360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a500", "tid": 35568, "ts": 10913446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6582e0", "tid": 35568, "ts": 10913532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659660", "tid": 35568, "ts": 10913618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657ed0", "tid": 35568, "ts": 10913705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a6a0", "tid": 35568, "ts": 10913792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a430", "tid": 35568, "ts": 10913878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6594c0", "tid": 35568, "ts": 10913965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a5d0", "tid": 35568, "ts": 10914052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658d70", "tid": 35568, "ts": 10914138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659180", "tid": 35568, "ts": 10914225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659590", "tid": 35568, "ts": 10914311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6599a0", "tid": 35568, "ts": 10914397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657d30", "tid": 35568, "ts": 10914484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659800", "tid": 35568, "ts": 10914571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659a70", "tid": 35568, "ts": 10914657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6590b0", "tid": 35568, "ts": 10914744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ad20", "tid": 35568, "ts": 10914830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658fe0", "tid": 35568, "ts": 10914917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658f10", "tid": 35568, "ts": 10915004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655080", "tid": 35568, "ts": 10915091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654ba0", "tid": 35568, "ts": 10915177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654930", "tid": 35568, "ts": 10915264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655560", "tid": 35568, "ts": 10915350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657850", "tid": 35568, "ts": 10915437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6576b0", "tid": 35568, "ts": 10915523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656f60", "tid": 35568, "ts": 10915610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655490", "tid": 35568, "ts": 10915697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657b90", "tid": 35568, "ts": 10915784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656260", "tid": 35568, "ts": 10915871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656190", "tid": 35568, "ts": 10915958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654e10", "tid": 35568, "ts": 10916044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656670", "tid": 35568, "ts": 10916131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6560c0", "tid": 35568, "ts": 10916217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6575e0", "tid": 35568, "ts": 10916304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657440", "tid": 35568, "ts": 10916391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6558a0", "tid": 35568, "ts": 10916478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655630", "tid": 35568, "ts": 10916564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6568e0", "tid": 35568, "ts": 10916651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655f20", "tid": 35568, "ts": 10916737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655ff0", "tid": 35568, "ts": 10916823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655d80", "tid": 35568, "ts": 10916910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655220", "tid": 35568, "ts": 10916996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657920", "tid": 35568, "ts": 10917083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655cb0", "tid": 35568, "ts": 10917169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655700", "tid": 35568, "ts": 10917256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656b50", "tid": 35568, "ts": 10917342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654c70", "tid": 35568, "ts": 10917429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655b10", "tid": 35568, "ts": 10917516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656810", "tid": 35568, "ts": 10917603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656a80", "tid": 35568, "ts": 10917690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656c20", "tid": 35568, "ts": 10917776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652160", "tid": 35568, "ts": 10917863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651ef0", "tid": 35568, "ts": 10917949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6517a0", "tid": 35568, "ts": 10918036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653f70", "tid": 35568, "ts": 10918122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653c30", "tid": 35568, "ts": 10918210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653750", "tid": 35568, "ts": 10918296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6535b0", "tid": 35568, "ts": 10918383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6516d0", "tid": 35568, "ts": 10918469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653dd0", "tid": 35568, "ts": 10918604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653340", "tid": 35568, "ts": 10918717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652d90", "tid": 35568, "ts": 10918817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6528b0", "tid": 35568, "ts": 10918915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652300", "tid": 35568, "ts": 10919002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652570", "tid": 35568, "ts": 10919088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652230", "tid": 35568, "ts": 10919175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652980", "tid": 35568, "ts": 10919261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6534e0", "tid": 35568, "ts": 10919347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653000", "tid": 35568, "ts": 10919433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6545f0", "tid": 35568, "ts": 10919520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651bb0", "tid": 35568, "ts": 10919606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654380", "tid": 35568, "ts": 10919695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651ae0", "tid": 35568, "ts": 10919781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653410", "tid": 35568, "ts": 10919867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6542b0", "tid": 35568, "ts": 10919954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651940", "tid": 35568, "ts": 10920040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653820", "tid": 35568, "ts": 10920126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651a10", "tid": 35568, "ts": 10920212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654520", "tid": 35568, "ts": 10920299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652a50", "tid": 35568, "ts": 10920386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6523d0", "tid": 35568, "ts": 10920472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652710", "tid": 35568, "ts": 10920559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6527e0", "tid": 35568, "ts": 10920645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b505d0", "tid": 35568, "ts": 10920731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e6f0", "tid": 35568, "ts": 10920819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e210", "tid": 35568, "ts": 10920906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e070", "tid": 35568, "ts": 10920992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50500", "tid": 35568, "ts": 10921080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50020", "tid": 35568, "ts": 10921166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50c50", "tid": 35568, "ts": 10921253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f320", "tid": 35568, "ts": 10921338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ef10", "tid": 35568, "ts": 10921425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fc10", "tid": 35568, "ts": 10921511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dd30", "tid": 35568, "ts": 10921597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4eb00", "tid": 35568, "ts": 10921684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f180", "tid": 35568, "ts": 10921771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50df0", "tid": 35568, "ts": 10921856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f3f0", "tid": 35568, "ts": 10921943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b509e0", "tid": 35568, "ts": 10922030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e480", "tid": 35568, "ts": 10922116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f800", "tid": 35568, "ts": 10922202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f730", "tid": 35568, "ts": 10922288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4eca0", "tid": 35568, "ts": 10922375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e140", "tid": 35568, "ts": 10922462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fa70", "tid": 35568, "ts": 10922548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50910", "tid": 35568, "ts": 10922635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50430", "tid": 35568, "ts": 10922721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b506a0", "tid": 35568, "ts": 10922807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ee40", "tid": 35568, "ts": 10922894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ded0", "tid": 35568, "ts": 10922981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fdb0", "tid": 35568, "ts": 10923067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e960", "tid": 35568, "ts": 10923154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50840", "tid": 35568, "ts": 10923239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f8d0", "tid": 35568, "ts": 10923326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b080", "tid": 35568, "ts": 10923413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a930", "tid": 35568, "ts": 10923500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4db90", "tid": 35568, "ts": 10923588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dac0", "tid": 35568, "ts": 10923674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ae10", "tid": 35568, "ts": 10923761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cb50", "tid": 35568, "ts": 10923848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ca80", "tid": 35568, "ts": 10923934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c9b0", "tid": 35568, "ts": 10924021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d1d0", "tid": 35568, "ts": 10924107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b7d0", "tid": 35568, "ts": 10924194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aee0", "tid": 35568, "ts": 10924280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d100", "tid": 35568, "ts": 10924366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d370", "tid": 35568, "ts": 10924453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d2a0", "tid": 35568, "ts": 10924539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bff0", "tid": 35568, "ts": 10924626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bf20", "tid": 35568, "ts": 10924713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b3c0", "tid": 35568, "ts": 10924799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c740", "tid": 35568, "ts": 10924885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b700", "tid": 35568, "ts": 10924971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c670", "tid": 35568, "ts": 10925057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c5a0", "tid": 35568, "ts": 10925144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d030", "tid": 35568, "ts": 10925230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bcb0", "tid": 35568, "ts": 10925317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bbe0", "tid": 35568, "ts": 10925404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cf60", "tid": 35568, "ts": 10925490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b560", "tid": 35568, "ts": 10925577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bb10", "tid": 35568, "ts": 10925663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ce90", "tid": 35568, "ts": 10925750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bd80", "tid": 35568, "ts": 10925836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b150", "tid": 35568, "ts": 10925923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4be50", "tid": 35568, "ts": 10926010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b220", "tid": 35568, "ts": 10926096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48160", "tid": 35568, "ts": 10926182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a860", "tid": 35568, "ts": 10926270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47530", "tid": 35568, "ts": 10926356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47fc0", "tid": 35568, "ts": 10926443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a380", "tid": 35568, "ts": 10926530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48980", "tid": 35568, "ts": 10926617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49dd0", "tid": 35568, "ts": 10926704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a2b0", "tid": 35568, "ts": 10926791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49b60", "tid": 35568, "ts": 10926877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47e20", "tid": 35568, "ts": 10926964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b498f0", "tid": 35568, "ts": 10927050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b477a0", "tid": 35568, "ts": 10927137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48cc0", "tid": 35568, "ts": 10927224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b495b0", "tid": 35568, "ts": 10927310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48710", "tid": 35568, "ts": 10927397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b490d0", "tid": 35568, "ts": 10927483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47a10", "tid": 35568, "ts": 10927569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49340", "tid": 35568, "ts": 10927656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b494e0", "tid": 35568, "ts": 10927743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49f70", "tid": 35568, "ts": 10927830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a110", "tid": 35568, "ts": 10927916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b487e0", "tid": 35568, "ts": 10928003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48bf0", "tid": 35568, "ts": 10928090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47ef0", "tid": 35568, "ts": 10928177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48230", "tid": 35568, "ts": 10928263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a1e0", "tid": 35568, "ts": 10928349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47c80", "tid": 35568, "ts": 10928436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49750", "tid": 35568, "ts": 10928522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48570", "tid": 35568, "ts": 10928609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b491a0", "tid": 35568, "ts": 10928695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48a50", "tid": 35568, "ts": 10928781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49410", "tid": 35568, "ts": 10928868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b453e0", "tid": 35568, "ts": 10928955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45240", "tid": 35568, "ts": 10929042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b450a0", "tid": 35568, "ts": 10929129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44f00", "tid": 35568, "ts": 10929215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46de0", "tid": 35568, "ts": 10929301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44e30", "tid": 35568, "ts": 10929388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46c40", "tid": 35568, "ts": 10929475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44c90", "tid": 35568, "ts": 10929561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46830", "tid": 35568, "ts": 10929649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46690", "tid": 35568, "ts": 10929736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44a20", "tid": 35568, "ts": 10929822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46350", "tid": 35568, "ts": 10929908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44880", "tid": 35568, "ts": 10929995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46f80", "tid": 35568, "ts": 10930082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b464f0", "tid": 35568, "ts": 10930168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44540", "tid": 35568, "ts": 10930255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b454b0", "tid": 35568, "ts": 10930340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b442d0", "tid": 35568, "ts": 10930428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45e70", "tid": 35568, "ts": 10930515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44bc0", "tid": 35568, "ts": 10930601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47390", "tid": 35568, "ts": 10930688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45990", "tid": 35568, "ts": 10930775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44200", "tid": 35568, "ts": 10930862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46aa0", "tid": 35568, "ts": 10930948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b471f0", "tid": 35568, "ts": 10931035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b458c0", "tid": 35568, "ts": 10931121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44130", "tid": 35568, "ts": 10931208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45da0", "tid": 35568, "ts": 10931294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46280", "tid": 35568, "ts": 10931380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45c00", "tid": 35568, "ts": 10931467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b472c0", "tid": 35568, "ts": 10931553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45b30", "tid": 35568, "ts": 10931640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41bd0", "tid": 35568, "ts": 10931727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43b80", "tid": 35568, "ts": 10931813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41890", "tid": 35568, "ts": 10931899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b439e0", "tid": 35568, "ts": 10931985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43840", "tid": 35568, "ts": 10932072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b436a0", "tid": 35568, "ts": 10932159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41d70", "tid": 35568, "ts": 10932245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42590", "tid": 35568, "ts": 10932332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41ca0", "tid": 35568, "ts": 10932419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42a70", "tid": 35568, "ts": 10932505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41620", "tid": 35568, "ts": 10932592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40ed0", "tid": 35568, "ts": 10932679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43d20", "tid": 35568, "ts": 10932766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43430", "tid": 35568, "ts": 10932853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b412e0", "tid": 35568, "ts": 10932939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b429a0", "tid": 35568, "ts": 10933026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b431c0", "tid": 35568, "ts": 10933112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41e40", "tid": 35568, "ts": 10933198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41550", "tid": 35568, "ts": 10933284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42e80", "tid": 35568, "ts": 10933371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43020", "tid": 35568, "ts": 10933458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44060", "tid": 35568, "ts": 10933545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b413b0", "tid": 35568, "ts": 10933632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41fe0", "tid": 35568, "ts": 10933719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41210", "tid": 35568, "ts": 10933805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41140", "tid": 35568, "ts": 10933892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b423f0", "tid": 35568, "ts": 10933978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41a30", "tid": 35568, "ts": 10934066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42250", "tid": 35568, "ts": 10934174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b420b0", "tid": 35568, "ts": 10934277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42660", "tid": 35568, "ts": 10934363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42c10", "tid": 35568, "ts": 10934450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e630", "tid": 35568, "ts": 10934536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f740", "tid": 35568, "ts": 10934624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e560", "tid": 35568, "ts": 10934711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40c60", "tid": 35568, "ts": 10934797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40100", "tid": 35568, "ts": 10934883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f4d0", "tid": 35568, "ts": 10934970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f810", "tid": 35568, "ts": 10935057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ff60", "tid": 35568, "ts": 10935143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f5a0", "tid": 35568, "ts": 10935229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e2f0", "tid": 35568, "ts": 10935316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f330", "tid": 35568, "ts": 10935402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fcf0", "tid": 35568, "ts": 10935489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e220", "tid": 35568, "ts": 10935574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3da00", "tid": 35568, "ts": 10935661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dad0", "tid": 35568, "ts": 10935748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f190", "tid": 35568, "ts": 10935834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e970", "tid": 35568, "ts": 10935922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e080", "tid": 35568, "ts": 10936008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fc20", "tid": 35568, "ts": 10936094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f260", "tid": 35568, "ts": 10936181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e8a0", "tid": 35568, "ts": 10936267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40850", "tid": 35568, "ts": 10936354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ecb0", "tid": 35568, "ts": 10936440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40440", "tid": 35568, "ts": 10936527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f0c0", "tid": 35568, "ts": 10936613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e700", "tid": 35568, "ts": 10936699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e7d0", "tid": 35568, "ts": 10936786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dfb0", "tid": 35568, "ts": 10936872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e150", "tid": 35568, "ts": 10936959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dee0", "tid": 35568, "ts": 10937046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dba0", "tid": 35568, "ts": 10937132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f9b0", "tid": 35568, "ts": 10937217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d860", "tid": 35568, "ts": 10937303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d6c0", "tid": 35568, "ts": 10937390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d1e0", "tid": 35568, "ts": 10937477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ac80", "tid": 35568, "ts": 10937564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3abb0", "tid": 35568, "ts": 10937650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bcc0", "tid": 35568, "ts": 10937738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bb20", "tid": 35568, "ts": 10937824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d110", "tid": 35568, "ts": 10937910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b570", "tid": 35568, "ts": 10937997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cb60", "tid": 35568, "ts": 10938084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cf70", "tid": 35568, "ts": 10938171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d520", "tid": 35568, "ts": 10938258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bf30", "tid": 35568, "ts": 10938345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b160", "tid": 35568, "ts": 10938431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d380", "tid": 35568, "ts": 10938517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3be60", "tid": 35568, "ts": 10938604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b090", "tid": 35568, "ts": 10938690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3afc0", "tid": 35568, "ts": 10938778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c750", "tid": 35568, "ts": 10938864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bd90", "tid": 35568, "ts": 10938950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c1a0", "tid": 35568, "ts": 10939036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a600", "tid": 35568, "ts": 10939124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3aef0", "tid": 35568, "ts": 10939212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a530", "tid": 35568, "ts": 10939299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b640", "tid": 35568, "ts": 10939386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cea0", "tid": 35568, "ts": 10939473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b230", "tid": 35568, "ts": 10939560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b300", "tid": 35568, "ts": 10939646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c270", "tid": 35568, "ts": 10939732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a940", "tid": 35568, "ts": 10939819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ba50", "tid": 35568, "ts": 10939906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3aa10", "tid": 35568, "ts": 10939992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37c90", "tid": 35568, "ts": 10940079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b373a0", "tid": 35568, "ts": 10940166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b399d0", "tid": 35568, "ts": 10940252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39900", "tid": 35568, "ts": 10940340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39b70", "tid": 35568, "ts": 10940427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b387f0", "tid": 35568, "ts": 10940515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39690", "tid": 35568, "ts": 10940601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39aa0", "tid": 35568, "ts": 10940688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a050", "tid": 35568, "ts": 10940775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38240", "tid": 35568, "ts": 10940862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39420", "tid": 35568, "ts": 10940948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a460", "tid": 35568, "ts": 10941035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b390e0", "tid": 35568, "ts": 10941122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38580", "tid": 35568, "ts": 10941208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a1f0", "tid": 35568, "ts": 10941295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b383e0", "tid": 35568, "ts": 10941382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39eb0", "tid": 35568, "ts": 10941468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39280", "tid": 35568, "ts": 10941555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38170", "tid": 35568, "ts": 10941642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37f00", "tid": 35568, "ts": 10941729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b388c0", "tid": 35568, "ts": 10941816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38f40", "tid": 35568, "ts": 10941904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38da0", "tid": 35568, "ts": 10941991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37e30", "tid": 35568, "ts": 10942079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37af0", "tid": 35568, "ts": 10942166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37470", "tid": 35568, "ts": 10942294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a120", "tid": 35568, "ts": 10942384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37fd0", "tid": 35568, "ts": 10942471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37a20", "tid": 35568, "ts": 10942557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38a60", "tid": 35568, "ts": 10942644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37950", "tid": 35568, "ts": 10942731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38990", "tid": 35568, "ts": 10942817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b354c0", "tid": 35568, "ts": 10942902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b353f0", "tid": 35568, "ts": 10942989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36d20", "tid": 35568, "ts": 10943076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34e40", "tid": 35568, "ts": 10943163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36b80", "tid": 35568, "ts": 10943249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34bd0", "tid": 35568, "ts": 10943337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34a30", "tid": 35568, "ts": 10943423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b369e0", "tid": 35568, "ts": 10943510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b343b0", "tid": 35568, "ts": 10943596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36840", "tid": 35568, "ts": 10943683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36770", "tid": 35568, "ts": 10943769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b365d0", "tid": 35568, "ts": 10943856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35a70", "tid": 35568, "ts": 10943943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b350b0", "tid": 35568, "ts": 10944030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33e00", "tid": 35568, "ts": 10944116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35e80", "tid": 35568, "ts": 10944202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35b40", "tid": 35568, "ts": 10944288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35660", "tid": 35568, "ts": 10944375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34b00", "tid": 35568, "ts": 10944462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34550", "tid": 35568, "ts": 10944548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b361c0", "tid": 35568, "ts": 10944635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b346f0", "tid": 35568, "ts": 10944722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37060", "tid": 35568, "ts": 10944809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b342e0", "tid": 35568, "ts": 10944895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b359a0", "tid": 35568, "ts": 10944982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b360f0", "tid": 35568, "ts": 10945069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36df0", "tid": 35568, "ts": 10945156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34210", "tid": 35568, "ts": 10945242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34480", "tid": 35568, "ts": 10945328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35800", "tid": 35568, "ts": 10945415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33fa0", "tid": 35568, "ts": 10945501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34d70", "tid": 35568, "ts": 10945587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33ac0", "tid": 35568, "ts": 10945674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33850", "tid": 35568, "ts": 10945760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33780", "tid": 35568, "ts": 10945847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30ad0", "tid": 35568, "ts": 10945933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32f60", "tid": 35568, "ts": 10946019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b320c0", "tid": 35568, "ts": 10946107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b339f0", "tid": 35568, "ts": 10946193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31630", "tid": 35568, "ts": 10946280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31970", "tid": 35568, "ts": 10946367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b313c0", "tid": 35568, "ts": 10946454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b318a0", "tid": 35568, "ts": 10946539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33b90", "tid": 35568, "ts": 10946626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b328e0", "tid": 35568, "ts": 10946712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32e90", "tid": 35568, "ts": 10946799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32400", "tid": 35568, "ts": 10946886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32c20", "tid": 35568, "ts": 10946972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30d40", "tid": 35568, "ts": 10947059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31700", "tid": 35568, "ts": 10947144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30ba0", "tid": 35568, "ts": 10947231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31be0", "tid": 35568, "ts": 10947318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b329b0", "tid": 35568, "ts": 10947405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b335e0", "tid": 35568, "ts": 10947492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31490", "tid": 35568, "ts": 10947578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33c60", "tid": 35568, "ts": 10947665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31150", "tid": 35568, "ts": 10947751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31560", "tid": 35568, "ts": 10947838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31b10", "tid": 35568, "ts": 10947925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33440", "tid": 35568, "ts": 10948011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32330", "tid": 35568, "ts": 10948097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31080", "tid": 35568, "ts": 10948184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30c70", "tid": 35568, "ts": 10948271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30a00", "tid": 35568, "ts": 10948357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dfc0", "tid": 35568, "ts": 10948443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d7a0", "tid": 35568, "ts": 10948530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30110", "tid": 35568, "ts": 10948616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ff70", "tid": 35568, "ts": 10948703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fea0", "tid": 35568, "ts": 10948789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fdd0", "tid": 35568, "ts": 10948875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fb60", "tid": 35568, "ts": 10948961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fa90", "tid": 35568, "ts": 10949048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f9c0", "tid": 35568, "ts": 10949134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dbb0", "tid": 35568, "ts": 10949221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e300", "tid": 35568, "ts": 10949308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dc80", "tid": 35568, "ts": 10949394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30520", "tid": 35568, "ts": 10949481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b302b0", "tid": 35568, "ts": 10949567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f0d0", "tid": 35568, "ts": 10949654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f340", "tid": 35568, "ts": 10949741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ebf0", "tid": 35568, "ts": 10949866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2de20", "tid": 35568, "ts": 10949953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2eb20", "tid": 35568, "ts": 10950041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b301e0", "tid": 35568, "ts": 10950127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30790", "tid": 35568, "ts": 10950214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e160", "tid": 35568, "ts": 10950301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d940", "tid": 35568, "ts": 10950388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f5b0", "tid": 35568, "ts": 10950475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f1a0", "tid": 35568, "ts": 10950562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e710", "tid": 35568, "ts": 10950648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e570", "tid": 35568, "ts": 10950735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30450", "tid": 35568, "ts": 10950821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ef30", "tid": 35568, "ts": 10950907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dae0", "tid": 35568, "ts": 10950994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e640", "tid": 35568, "ts": 10951080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d870", "tid": 35568, "ts": 10951166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b8c0", "tid": 35568, "ts": 10951251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ac90", "tid": 35568, "ts": 10951338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2abc0", "tid": 35568, "ts": 10951424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a7b0", "tid": 35568, "ts": 10951510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d1f0", "tid": 35568, "ts": 10951596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d050", "tid": 35568, "ts": 10951682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c690", "tid": 35568, "ts": 10951769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2caa0", "tid": 35568, "ts": 10951855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a950", "tid": 35568, "ts": 10951942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b650", "tid": 35568, "ts": 10952028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c5c0", "tid": 35568, "ts": 10952115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a880", "tid": 35568, "ts": 10952201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b310", "tid": 35568, "ts": 10952288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a3a0", "tid": 35568, "ts": 10952374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c420", "tid": 35568, "ts": 10952460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c010", "tid": 35568, "ts": 10952547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cd10", "tid": 35568, "ts": 10952633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a200", "tid": 35568, "ts": 10952720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ba60", "tid": 35568, "ts": 10952806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c900", "tid": 35568, "ts": 10952893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bc00", "tid": 35568, "ts": 10952979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c350", "tid": 35568, "ts": 10953066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2aaf0", "tid": 35568, "ts": 10953152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a6e0", "tid": 35568, "ts": 10953238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b580", "tid": 35568, "ts": 10953325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bda0", "tid": 35568, "ts": 10953412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a610", "tid": 35568, "ts": 10953498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b3e0", "tid": 35568, "ts": 10953584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2afd0", "tid": 35568, "ts": 10953670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d390", "tid": 35568, "ts": 10953757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b990", "tid": 35568, "ts": 10953843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b0a0", "tid": 35568, "ts": 10953930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27960", "tid": 35568, "ts": 10954017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27890", "tid": 35568, "ts": 10954104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b276f0", "tid": 35568, "ts": 10954190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b272e0", "tid": 35568, "ts": 10954275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26fa0", "tid": 35568, "ts": 10954361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29df0", "tid": 35568, "ts": 10954448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29c50", "tid": 35568, "ts": 10954535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29ab0", "tid": 35568, "ts": 10954621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29840", "tid": 35568, "ts": 10954708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b296a0", "tid": 35568, "ts": 10954795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29430", "tid": 35568, "ts": 10954881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b291c0", "tid": 35568, "ts": 10954968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b295d0", "tid": 35568, "ts": 10955053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28320", "tid": 35568, "ts": 10955140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27b00", "tid": 35568, "ts": 10955226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b273b0", "tid": 35568, "ts": 10955313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28f50", "tid": 35568, "ts": 10955400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27f10", "tid": 35568, "ts": 10955486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28b40", "tid": 35568, "ts": 10955573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27e40", "tid": 35568, "ts": 10955660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b284c0", "tid": 35568, "ts": 10955746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26d30", "tid": 35568, "ts": 10955833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b299e0", "tid": 35568, "ts": 10955920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28db0", "tid": 35568, "ts": 10956007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b280b0", "tid": 35568, "ts": 10956093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29f90", "tid": 35568, "ts": 10956180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27620", "tid": 35568, "ts": 10956266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28800", "tid": 35568, "ts": 10956353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28730", "tid": 35568, "ts": 10956439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28250", "tid": 35568, "ts": 10956525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27550", "tid": 35568, "ts": 10956611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28590", "tid": 35568, "ts": 10956698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23ad0", "tid": 35568, "ts": 10956785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b269f0", "tid": 35568, "ts": 10956871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24f20", "tid": 35568, "ts": 10956958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26850", "tid": 35568, "ts": 10957044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26100", "tid": 35568, "ts": 10957131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25dc0", "tid": 35568, "ts": 10957218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24970", "tid": 35568, "ts": 10957305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24490", "tid": 35568, "ts": 10957391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25cf0", "tid": 35568, "ts": 10957477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25b50", "tid": 35568, "ts": 10957564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23e10", "tid": 35568, "ts": 10957651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25810", "tid": 35568, "ts": 10957737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23930", "tid": 35568, "ts": 10957823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25670", "tid": 35568, "ts": 10957910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b261d0", "tid": 35568, "ts": 10957997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26c60", "tid": 35568, "ts": 10958083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b254d0", "tid": 35568, "ts": 10958169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26510", "tid": 35568, "ts": 10958257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b242f0", "tid": 35568, "ts": 10958344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24b10", "tid": 35568, "ts": 10958430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b262a0", "tid": 35568, "ts": 10958516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25a80", "tid": 35568, "ts": 10958604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b265e0", "tid": 35568, "ts": 10958691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26030", "tid": 35568, "ts": 10958777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23ba0", "tid": 35568, "ts": 10958863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23c70", "tid": 35568, "ts": 10958949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25f60", "tid": 35568, "ts": 10959035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25330", "tid": 35568, "ts": 10959121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23ee0", "tid": 35568, "ts": 10959207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b259b0", "tid": 35568, "ts": 10959293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b255a0", "tid": 35568, "ts": 10959379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b247d0", "tid": 35568, "ts": 10959465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b213d0", "tid": 35568, "ts": 10959552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20fc0", "tid": 35568, "ts": 10959639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20ae0", "tid": 35568, "ts": 10959725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23860", "tid": 35568, "ts": 10959811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20ef0", "tid": 35568, "ts": 10959897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22b60", "tid": 35568, "ts": 10959984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20e20", "tid": 35568, "ts": 10960070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22f70", "tid": 35568, "ts": 10960157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22a90", "tid": 35568, "ts": 10960244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22820", "tid": 35568, "ts": 10960331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b228f0", "tid": 35568, "ts": 10960418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22750", "tid": 35568, "ts": 10960504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b231e0", "tid": 35568, "ts": 10960590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b220d0", "tid": 35568, "ts": 10960677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b225b0", "tid": 35568, "ts": 10960763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20d50", "tid": 35568, "ts": 10960850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b207a0", "tid": 35568, "ts": 10960936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21b20", "tid": 35568, "ts": 10961023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21f30", "tid": 35568, "ts": 10961109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22d00", "tid": 35568, "ts": 10961196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20600", "tid": 35568, "ts": 10961282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20940", "tid": 35568, "ts": 10961369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22340", "tid": 35568, "ts": 10961455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20530", "tid": 35568, "ts": 10961542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20870", "tid": 35568, "ts": 10961628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23040", "tid": 35568, "ts": 10961715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21640", "tid": 35568, "ts": 10961801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21980", "tid": 35568, "ts": 10961886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22270", "tid": 35568, "ts": 10961973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21160", "tid": 35568, "ts": 10962060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23520", "tid": 35568, "ts": 10962146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21300", "tid": 35568, "ts": 10962232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e3e0", "tid": 35568, "ts": 10962318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1da20", "tid": 35568, "ts": 10962405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d610", "tid": 35568, "ts": 10962490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d3a0", "tid": 35568, "ts": 10962577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d2d0", "tid": 35568, "ts": 10962664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dc90", "tid": 35568, "ts": 10962751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20460", "tid": 35568, "ts": 10962837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dfd0", "tid": 35568, "ts": 10962924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f5c0", "tid": 35568, "ts": 10963010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1feb0", "tid": 35568, "ts": 10963097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f350", "tid": 35568, "ts": 10963184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d130", "tid": 35568, "ts": 10963270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ecd0", "tid": 35568, "ts": 10963356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ec00", "tid": 35568, "ts": 10963444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1eb30", "tid": 35568, "ts": 10963530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f690", "tid": 35568, "ts": 10963617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f830", "tid": 35568, "ts": 10963703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e580", "tid": 35568, "ts": 10963790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f010", "tid": 35568, "ts": 10963876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ea60", "tid": 35568, "ts": 10963962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dd60", "tid": 35568, "ts": 10964048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e7f0", "tid": 35568, "ts": 10964137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fde0", "tid": 35568, "ts": 10964224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dbc0", "tid": 35568, "ts": 10964310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e720", "tid": 35568, "ts": 10964397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ee70", "tid": 35568, "ts": 10964483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20120", "tid": 35568, "ts": 10964570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1daf0", "tid": 35568, "ts": 10964656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f900", "tid": 35568, "ts": 10964743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1df00", "tid": 35568, "ts": 10964830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1de30", "tid": 35568, "ts": 10964917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d880", "tid": 35568, "ts": 10965003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c290", "tid": 35568, "ts": 10965090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bf50", "tid": 35568, "ts": 10965176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c1c0", "tid": 35568, "ts": 10965263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1aca0", "tid": 35568, "ts": 10965349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a6f0", "tid": 35568, "ts": 10965474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b800", "tid": 35568, "ts": 10965682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c020", "tid": 35568, "ts": 10965831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a3b0", "tid": 35568, "ts": 10965956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a140", "tid": 35568, "ts": 10966079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b590", "tid": 35568, "ts": 10966204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19ed0", "tid": 35568, "ts": 10966313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cc50", "tid": 35568, "ts": 10966465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cab0", "tid": 35568, "ts": 10966601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cdf0", "tid": 35568, "ts": 10966688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b9a0", "tid": 35568, "ts": 10966774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a550", "tid": 35568, "ts": 10966861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c0f0", "tid": 35568, "ts": 10966948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a070", "tid": 35568, "ts": 10967035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c840", "tid": 35568, "ts": 10967122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bc10", "tid": 35568, "ts": 10967208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ae40", "tid": 35568, "ts": 10967294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a480", "tid": 35568, "ts": 10967381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ab00", "tid": 35568, "ts": 10967468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c770", "tid": 35568, "ts": 10967554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c9e0", "tid": 35568, "ts": 10967641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a960", "tid": 35568, "ts": 10967727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bb40", "tid": 35568, "ts": 10967814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c360", "tid": 35568, "ts": 10967901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c5d0", "tid": 35568, "ts": 10967987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a210", "tid": 35568, "ts": 10968074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c500", "tid": 35568, "ts": 10968160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c430", "tid": 35568, "ts": 10968246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b196b0", "tid": 35568, "ts": 10968333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18400", "tid": 35568, "ts": 10968419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17cb0", "tid": 35568, "ts": 10968506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17a40", "tid": 35568, "ts": 10968593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17490", "tid": 35568, "ts": 10968678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b189b0", "tid": 35568, "ts": 10968766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17220", "tid": 35568, "ts": 10968852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18260", "tid": 35568, "ts": 10968939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19030", "tid": 35568, "ts": 10969026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17ff0", "tid": 35568, "ts": 10969113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18f60", "tid": 35568, "ts": 10969199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18810", "tid": 35568, "ts": 10969285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b191d0", "tid": 35568, "ts": 10969372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17be0", "tid": 35568, "ts": 10969459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17d80", "tid": 35568, "ts": 10969545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19510", "tid": 35568, "ts": 10969632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18330", "tid": 35568, "ts": 10969718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18a80", "tid": 35568, "ts": 10969805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17b10", "tid": 35568, "ts": 10969891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b199f0", "tid": 35568, "ts": 10969978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16ba0", "tid": 35568, "ts": 10970064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19850", "tid": 35568, "ts": 10970150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b177d0", "tid": 35568, "ts": 10970237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18e90", "tid": 35568, "ts": 10970323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b192a0", "tid": 35568, "ts": 10970409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17630", "tid": 35568, "ts": 10970496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19ac0", "tid": 35568, "ts": 10970582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18b50", "tid": 35568, "ts": 10970669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19c60", "tid": 35568, "ts": 10970755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18670", "tid": 35568, "ts": 10970842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19780", "tid": 35568, "ts": 10970929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b188e0", "tid": 35568, "ts": 10971015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b159c0", "tid": 35568, "ts": 10971101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b158f0", "tid": 35568, "ts": 10971188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15820", "tid": 35568, "ts": 10971274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14bf0", "tid": 35568, "ts": 10971360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15410", "tid": 35568, "ts": 10971446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b137a0", "tid": 35568, "ts": 10971534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15750", "tid": 35568, "ts": 10971619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b136d0", "tid": 35568, "ts": 10971705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15a90", "tid": 35568, "ts": 10971791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15dd0", "tid": 35568, "ts": 10971879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13600", "tid": 35568, "ts": 10971965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15000", "tid": 35568, "ts": 10972051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14a50", "tid": 35568, "ts": 10972137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14570", "tid": 35568, "ts": 10972225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15ea0", "tid": 35568, "ts": 10972311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14230", "tid": 35568, "ts": 10972398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b154e0", "tid": 35568, "ts": 10972485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13ef0", "tid": 35568, "ts": 10972571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16110", "tid": 35568, "ts": 10972658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13d50", "tid": 35568, "ts": 10972744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b165f0", "tid": 35568, "ts": 10972829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16790", "tid": 35568, "ts": 10972916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13c80", "tid": 35568, "ts": 10973003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b144a0", "tid": 35568, "ts": 10973089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15d00", "tid": 35568, "ts": 10973176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b147e0", "tid": 35568, "ts": 10973262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15b60", "tid": 35568, "ts": 10973349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16860", "tid": 35568, "ts": 10973435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16380", "tid": 35568, "ts": 10973522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13ae0", "tid": 35568, "ts": 10973609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14090", "tid": 35568, "ts": 10973695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13940", "tid": 35568, "ts": 10973781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12690", "tid": 35568, "ts": 10973868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12350", "tid": 35568, "ts": 10973955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b114b0", "tid": 35568, "ts": 10974041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b113e0", "tid": 35568, "ts": 10974128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10950", "tid": 35568, "ts": 10974213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b102d0", "tid": 35568, "ts": 10974301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10e30", "tid": 35568, "ts": 10974387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b118c0", "tid": 35568, "ts": 10974474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b132c0", "tid": 35568, "ts": 10974562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10d60", "tid": 35568, "ts": 10974648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11720", "tid": 35568, "ts": 10974734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13120", "tid": 35568, "ts": 10974821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10af0", "tid": 35568, "ts": 10974907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10a20", "tid": 35568, "ts": 10974994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10880", "tid": 35568, "ts": 10975080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b120e0", "tid": 35568, "ts": 10975167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b107b0", "tid": 35568, "ts": 10975252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b103a0", "tid": 35568, "ts": 10975339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b131f0", "tid": 35568, "ts": 10975426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b106e0", "tid": 35568, "ts": 10975513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11a60", "tid": 35568, "ts": 10975598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11240", "tid": 35568, "ts": 10975686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10470", "tid": 35568, "ts": 10975772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12de0", "tid": 35568, "ts": 10975858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12f80", "tid": 35568, "ts": 10975945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10f00", "tid": 35568, "ts": 10976032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12eb0", "tid": 35568, "ts": 10976118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b124f0", "tid": 35568, "ts": 10976205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11650", "tid": 35568, "ts": 10976291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11e70", "tid": 35568, "ts": 10976378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11f40", "tid": 35568, "ts": 10976464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12d10", "tid": 35568, "ts": 10976551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c050", "tid": 35568, "ts": 10976637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dda20", "tid": 35568, "ts": 10976724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcab0", "tid": 35568, "ts": 10976811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09decd0", "tid": 35568, "ts": 10976898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd470", "tid": 35568, "ts": 10976984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ce40", "tid": 35568, "ts": 10977072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cca0", "tid": 35568, "ts": 10977159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c960", "tid": 35568, "ts": 10977246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c890", "tid": 35568, "ts": 10977333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c2e0", "tid": 35568, "ts": 10977421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e5d0", "tid": 35568, "ts": 10977509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48eb80", "tid": 35568, "ts": 10977640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48dce0", "tid": 35568, "ts": 10977728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f200", "tid": 35568, "ts": 10977816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ef90", "tid": 35568, "ts": 10977902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cfe0", "tid": 35568, "ts": 10977989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f130", "tid": 35568, "ts": 10978075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e430", "tid": 35568, "ts": 10978162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48edf0", "tid": 35568, "ts": 10978249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c210", "tid": 35568, "ts": 10978335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c140", "tid": 35568, "ts": 10978422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d8d0", "tid": 35568, "ts": 10978510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e020", "tid": 35568, "ts": 10978596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d730", "tid": 35568, "ts": 10978683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d250", "tid": 35568, "ts": 10978769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c550", "tid": 35568, "ts": 10978855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cbd0", "tid": 35568, "ts": 10978941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d3f0", "tid": 35568, "ts": 10979027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cb00", "tid": 35568, "ts": 10979113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e360", "tid": 35568, "ts": 10979200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f470", "tid": 35568, "ts": 10979287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e0f0", "tid": 35568, "ts": 10979373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d180", "tid": 35568, "ts": 10979459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d320", "tid": 35568, "ts": 10979546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48de80", "tid": 35568, "ts": 10979632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48df50", "tid": 35568, "ts": 10979718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e770", "tid": 35568, "ts": 10979805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca970", "tid": 35568, "ts": 10979891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca630", "tid": 35568, "ts": 10979977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cced0", "tid": 35568, "ts": 10980063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccd30", "tid": 35568, "ts": 10980149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc510", "tid": 35568, "ts": 10980236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca490", "tid": 35568, "ts": 10980323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbdc0", "tid": 35568, "ts": 10980410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cba80", "tid": 35568, "ts": 10980495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc6b0", "tid": 35568, "ts": 10980582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccac0", "tid": 35568, "ts": 10980668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb4d0", "tid": 35568, "ts": 10980754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc370", "tid": 35568, "ts": 10980841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca220", "tid": 35568, "ts": 10980928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cacb0", "tid": 35568, "ts": 10981028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cab10", "tid": 35568, "ts": 10981192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc2a0", "tid": 35568, "ts": 10981279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc030", "tid": 35568, "ts": 10981366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc850", "tid": 35568, "ts": 10981453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc9f0", "tid": 35568, "ts": 10981539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb260", "tid": 35568, "ts": 10981625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9fb0", "tid": 35568, "ts": 10981712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb9b0", "tid": 35568, "ts": 10981798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9e10", "tid": 35568, "ts": 10981885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca2f0", "tid": 35568, "ts": 10981971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbf60", "tid": 35568, "ts": 10982058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc1d0", "tid": 35568, "ts": 10982145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca700", "tid": 35568, "ts": 10982231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb8e0", "tid": 35568, "ts": 10982317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc5e0", "tid": 35568, "ts": 10982404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4caa40", "tid": 35568, "ts": 10982490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb5a0", "tid": 35568, "ts": 10982576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c91e0", "tid": 35568, "ts": 10982662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8c30", "tid": 35568, "ts": 10982749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7bf0", "tid": 35568, "ts": 10982835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c96c0", "tid": 35568, "ts": 10982922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7980", "tid": 35568, "ts": 10983009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7640", "tid": 35568, "ts": 10983096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8b60", "tid": 35568, "ts": 10983183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7f30", "tid": 35568, "ts": 10983269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9110", "tid": 35568, "ts": 10983355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8680", "tid": 35568, "ts": 10983442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7d90", "tid": 35568, "ts": 10983528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6a10", "tid": 35568, "ts": 10983615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c78b0", "tid": 35568, "ts": 10983701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6fc0", "tid": 35568, "ts": 10983788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6bb0", "tid": 35568, "ts": 10983874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7230", "tid": 35568, "ts": 10983961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9520", "tid": 35568, "ts": 10984047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c84e0", "tid": 35568, "ts": 10984134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8ea0", "tid": 35568, "ts": 10984221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6ef0", "tid": 35568, "ts": 10984308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7300", "tid": 35568, "ts": 10984395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c74a0", "tid": 35568, "ts": 10984482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6d50", "tid": 35568, "ts": 10984568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7710", "tid": 35568, "ts": 10984655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8a90", "tid": 35568, "ts": 10984741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9380", "tid": 35568, "ts": 10984827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8dd0", "tid": 35568, "ts": 10984914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8750", "tid": 35568, "ts": 10985001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8d00", "tid": 35568, "ts": 10985086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7cc0", "tid": 35568, "ts": 10985174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9790", "tid": 35568, "ts": 10985260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6c80", "tid": 35568, "ts": 10985348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5010", "tid": 35568, "ts": 10985434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4cd0", "tid": 35568, "ts": 10985522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4c00", "tid": 35568, "ts": 10985608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3bc0", "tid": 35568, "ts": 10985694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c37b0", "tid": 35568, "ts": 10985781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3610", "tid": 35568, "ts": 10985867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6870", "tid": 35568, "ts": 10985954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6460", "tid": 35568, "ts": 10986040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4a60", "tid": 35568, "ts": 10986126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4580", "tid": 35568, "ts": 10986212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c54f0", "tid": 35568, "ts": 10986298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6530", "tid": 35568, "ts": 10986386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c44b0", "tid": 35568, "ts": 10986472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5690", "tid": 35568, "ts": 10986559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4e70", "tid": 35568, "ts": 10986645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c61f0", "tid": 35568, "ts": 10986732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6050", "tid": 35568, "ts": 10986818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5420", "tid": 35568, "ts": 10986906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4da0", "tid": 35568, "ts": 10986992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3c90", "tid": 35568, "ts": 10987079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4990", "tid": 35568, "ts": 10987166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4b30", "tid": 35568, "ts": 10987253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3e30", "tid": 35568, "ts": 10987339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4170", "tid": 35568, "ts": 10987425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3af0", "tid": 35568, "ts": 10987512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5280", "tid": 35568, "ts": 10987598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5d10", "tid": 35568, "ts": 10987684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c51b0", "tid": 35568, "ts": 10987771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c62c0", "tid": 35568, "ts": 10987857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5c40", "tid": 35568, "ts": 10987944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3880", "tid": 35568, "ts": 10988030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c36e0", "tid": 35568, "ts": 10988117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c18d0", "tid": 35568, "ts": 10988203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1730", "tid": 35568, "ts": 10988290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1320", "tid": 35568, "ts": 10988376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0d70", "tid": 35568, "ts": 10988463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c14c0", "tid": 35568, "ts": 10988549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2020", "tid": 35568, "ts": 10988636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0ca0", "tid": 35568, "ts": 10988722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c13f0", "tid": 35568, "ts": 10988809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0210", "tid": 35568, "ts": 10988894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0140", "tid": 35568, "ts": 10988981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2f90", "tid": 35568, "ts": 10989068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c33a0", "tid": 35568, "ts": 10989155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2c50", "tid": 35568, "ts": 10989241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1180", "tid": 35568, "ts": 10989328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0550", "tid": 35568, "ts": 10989415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c10b0", "tid": 35568, "ts": 10989501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0a30", "tid": 35568, "ts": 10989587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2500", "tid": 35568, "ts": 10989674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2b80", "tid": 35568, "ts": 10989760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c25d0", "tid": 35568, "ts": 10989847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3200", "tid": 35568, "ts": 10989933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1250", "tid": 35568, "ts": 10990019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2430", "tid": 35568, "ts": 10990105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2ec0", "tid": 35568, "ts": 10990192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3470", "tid": 35568, "ts": 10990277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c07c0", "tid": 35568, "ts": 10990364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1a70", "tid": 35568, "ts": 10990450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2770", "tid": 35568, "ts": 10990537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1c10", "tid": 35568, "ts": 10990623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2840", "tid": 35568, "ts": 10990710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c32d0", "tid": 35568, "ts": 10990795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c21c0", "tid": 35568, "ts": 10990881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd560", "tid": 35568, "ts": 10990967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd3c0", "tid": 35568, "ts": 10991054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfac0", "tid": 35568, "ts": 10991140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf9f0", "tid": 35568, "ts": 10991228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0070", "tid": 35568, "ts": 10991314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be4d0", "tid": 35568, "ts": 10991401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcfb0", "tid": 35568, "ts": 10991487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf440", "tid": 35568, "ts": 10991573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf780", "tid": 35568, "ts": 10991660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf920", "tid": 35568, "ts": 10991746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd700", "tid": 35568, "ts": 10991832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf510", "tid": 35568, "ts": 10991918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bffa0", "tid": 35568, "ts": 10992004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdb10", "tid": 35568, "ts": 10992090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be810", "tid": 35568, "ts": 10992176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be740", "tid": 35568, "ts": 10992262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfed0", "tid": 35568, "ts": 10992348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bde50", "tid": 35568, "ts": 10992435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfd30", "tid": 35568, "ts": 10992521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be0c0", "tid": 35568, "ts": 10992607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf030", "tid": 35568, "ts": 10992693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdff0", "tid": 35568, "ts": 10992780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bedc0", "tid": 35568, "ts": 10992866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfc60", "tid": 35568, "ts": 10992953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd630", "tid": 35568, "ts": 10993039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd2f0", "tid": 35568, "ts": 10993126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bef60", "tid": 35568, "ts": 10993213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bee90", "tid": 35568, "ts": 10993299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be8e0", "tid": 35568, "ts": 10993387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf2a0", "tid": 35568, "ts": 10993473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf5e0", "tid": 35568, "ts": 10993559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcd40", "tid": 35568, "ts": 10993646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9d50", "tid": 35568, "ts": 10993732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba7e0", "tid": 35568, "ts": 10993819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9bb0", "tid": 35568, "ts": 10993905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9940", "tid": 35568, "ts": 10993991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bca00", "tid": 35568, "ts": 10994077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc930", "tid": 35568, "ts": 10994164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba230", "tid": 35568, "ts": 10994249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba090", "tid": 35568, "ts": 10994336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc040", "tid": 35568, "ts": 10994423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba570", "tid": 35568, "ts": 10994509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc380", "tid": 35568, "ts": 10994607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbdd0", "tid": 35568, "ts": 10994705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4baa50", "tid": 35568, "ts": 10994792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba300", "tid": 35568, "ts": 10994878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb0d0", "tid": 35568, "ts": 10994964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb9c0", "tid": 35568, "ts": 10995051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc1e0", "tid": 35568, "ts": 10995137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc860", "tid": 35568, "ts": 10995225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcba0", "tid": 35568, "ts": 10995311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbf70", "tid": 35568, "ts": 10995397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb270", "tid": 35568, "ts": 10995483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc790", "tid": 35568, "ts": 10995569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb5b0", "tid": 35568, "ts": 10995655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcad0", "tid": 35568, "ts": 10995742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb820", "tid": 35568, "ts": 10995829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba980", "tid": 35568, "ts": 10995916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bab20", "tid": 35568, "ts": 10996002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbea0", "tid": 35568, "ts": 10996088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9e20", "tid": 35568, "ts": 10996175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bae60", "tid": 35568, "ts": 10996263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9ae0", "tid": 35568, "ts": 10996349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bad90", "tid": 35568, "ts": 10996435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b80e0", "tid": 35568, "ts": 10996522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6610", "tid": 35568, "ts": 10996610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b97a0", "tid": 35568, "ts": 10996763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b77f0", "tid": 35568, "ts": 10996921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7720", "tid": 35568, "ts": 10997022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9390", "tid": 35568, "ts": 10997109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b92c0", "tid": 35568, "ts": 10997195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7c00", "tid": 35568, "ts": 10997281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8010", "tid": 35568, "ts": 10997367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8830", "tid": 35568, "ts": 10997453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9870", "tid": 35568, "ts": 10997540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b81b0", "tid": 35568, "ts": 10997628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6f00", "tid": 35568, "ts": 10997713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7f40", "tid": 35568, "ts": 10997800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8de0", "tid": 35568, "ts": 10997887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b91f0", "tid": 35568, "ts": 10997974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7da0", "tid": 35568, "ts": 10998060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6af0", "tid": 35568, "ts": 10998148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6950", "tid": 35568, "ts": 10998234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9120", "tid": 35568, "ts": 10998321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6fd0", "tid": 35568, "ts": 10998407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8760", "tid": 35568, "ts": 10998494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7990", "tid": 35568, "ts": 10998581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8690", "tid": 35568, "ts": 10998667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8c40", "tid": 35568, "ts": 10998753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6880", "tid": 35568, "ts": 10998841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b85c0", "tid": 35568, "ts": 10998928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8f80", "tid": 35568, "ts": 10999014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8b70", "tid": 35568, "ts": 10999101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6bc0", "tid": 35568, "ts": 10999188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6d60", "tid": 35568, "ts": 10999274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8280", "tid": 35568, "ts": 10999360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4730", "tid": 35568, "ts": 10999446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3b00", "tid": 35568, "ts": 10999533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b63a0", "tid": 35568, "ts": 10999620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3960", "tid": 35568, "ts": 10999706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b36f0", "tid": 35568, "ts": 10999793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5840", "tid": 35568, "ts": 10999880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b55d0", "tid": 35568, "ts": 10999965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b37c0", "tid": 35568, "ts": 11000052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4ce0", "tid": 35568, "ts": 11000139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3620", "tid": 35568, "ts": 11000226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4c10", "tid": 35568, "ts": 11000313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4b40", "tid": 35568, "ts": 11000400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4a70", "tid": 35568, "ts": 11000486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5df0", "tid": 35568, "ts": 11000573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b56a0", "tid": 35568, "ts": 11000659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3140", "tid": 35568, "ts": 11000744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4250", "tid": 35568, "ts": 11000830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b44c0", "tid": 35568, "ts": 11000917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5d20", "tid": 35568, "ts": 11001003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3890", "tid": 35568, "ts": 11001089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6470", "tid": 35568, "ts": 11001175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5c50", "tid": 35568, "ts": 11001262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4e80", "tid": 35568, "ts": 11001348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4800", "tid": 35568, "ts": 11001434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5910", "tid": 35568, "ts": 11001521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3f10", "tid": 35568, "ts": 11001608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6060", "tid": 35568, "ts": 11001694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5ec0", "tid": 35568, "ts": 11001781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5290", "tid": 35568, "ts": 11001867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3480", "tid": 35568, "ts": 11001954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3d70", "tid": 35568, "ts": 11002040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4180", "tid": 35568, "ts": 11002126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b15a0", "tid": 35568, "ts": 11002213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1400", "tid": 35568, "ts": 11002300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1330", "tid": 35568, "ts": 11002388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afee0", "tid": 35568, "ts": 11002474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afd40", "tid": 35568, "ts": 11002561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1260", "tid": 35568, "ts": 11002648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2d30", "tid": 35568, "ts": 11002734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0ff0", "tid": 35568, "ts": 11002820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0f20", "tid": 35568, "ts": 11002907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0e50", "tid": 35568, "ts": 11002993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b29f0", "tid": 35568, "ts": 11003080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2780", "tid": 35568, "ts": 11003166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b03c0", "tid": 35568, "ts": 11003253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0d80", "tid": 35568, "ts": 11003339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b26b0", "tid": 35568, "ts": 11003426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0150", "tid": 35568, "ts": 11003512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b02f0", "tid": 35568, "ts": 11003598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1f60", "tid": 35568, "ts": 11003685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0be0", "tid": 35568, "ts": 11003772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b18e0", "tid": 35568, "ts": 11003859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b10c0", "tid": 35568, "ts": 11003946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2100", "tid": 35568, "ts": 11004033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1810", "tid": 35568, "ts": 11004119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2030", "tid": 35568, "ts": 11004206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0a40", "tid": 35568, "ts": 11004292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b08a0", "tid": 35568, "ts": 11004379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b19b0", "tid": 35568, "ts": 11004466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4affb0", "tid": 35568, "ts": 11004552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2510", "tid": 35568, "ts": 11004638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1cf0", "tid": 35568, "ts": 11004725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3070", "tid": 35568, "ts": 11004811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2fa0", "tid": 35568, "ts": 11004897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afa00", "tid": 35568, "ts": 11004983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af790", "tid": 35568, "ts": 11005070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af5f0", "tid": 35568, "ts": 11005157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af450", "tid": 35568, "ts": 11005244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af110", "tid": 35568, "ts": 11005330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae750", "tid": 35568, "ts": 11005416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad640", "tid": 35568, "ts": 11005503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af380", "tid": 35568, "ts": 11005589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adb20", "tid": 35568, "ts": 11005676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aed00", "tid": 35568, "ts": 11005763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae5b0", "tid": 35568, "ts": 11005849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acc80", "tid": 35568, "ts": 11005936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad300", "tid": 35568, "ts": 11006023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad980", "tid": 35568, "ts": 11006110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ade60", "tid": 35568, "ts": 11006197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adcc0", "tid": 35568, "ts": 11006284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ace20", "tid": 35568, "ts": 11006370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae410", "tid": 35568, "ts": 11006457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acfc0", "tid": 35568, "ts": 11006544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aedd0", "tid": 35568, "ts": 11006631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afc70", "tid": 35568, "ts": 11006716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aea90", "tid": 35568, "ts": 11006804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af040", "tid": 35568, "ts": 11006891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aec30", "tid": 35568, "ts": 11006977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad090", "tid": 35568, "ts": 11007065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae000", "tid": 35568, "ts": 11007152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aef70", "tid": 35568, "ts": 11007238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afba0", "tid": 35568, "ts": 11007326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acbb0", "tid": 35568, "ts": 11007412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae1a0", "tid": 35568, "ts": 11007499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad3d0", "tid": 35568, "ts": 11007585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae270", "tid": 35568, "ts": 11007672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac1f0", "tid": 35568, "ts": 11007759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abf80", "tid": 35568, "ts": 11007847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abaa0", "tid": 35568, "ts": 11007932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aac00", "tid": 35568, "ts": 11008018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac530", "tid": 35568, "ts": 11008105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abc40", "tid": 35568, "ts": 11008191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa8c0", "tid": 35568, "ts": 11008277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab830", "tid": 35568, "ts": 11008363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa3e0", "tid": 35568, "ts": 11008449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa310", "tid": 35568, "ts": 11008536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa240", "tid": 35568, "ts": 11008623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab690", "tid": 35568, "ts": 11008710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa650", "tid": 35568, "ts": 11008796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa0a0", "tid": 35568, "ts": 11008883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9c90", "tid": 35568, "ts": 11008970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9bc0", "tid": 35568, "ts": 11009056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac390", "tid": 35568, "ts": 11009154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abde0", "tid": 35568, "ts": 11009243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa990", "tid": 35568, "ts": 11009329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9a20", "tid": 35568, "ts": 11009415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9950", "tid": 35568, "ts": 11009502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa4b0", "tid": 35568, "ts": 11009588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9f00", "tid": 35568, "ts": 11009674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aada0", "tid": 35568, "ts": 11009761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab280", "tid": 35568, "ts": 11009847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac6d0", "tid": 35568, "ts": 11009934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9540", "tid": 35568, "ts": 11010021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9610", "tid": 35568, "ts": 11010107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab0e0", "tid": 35568, "ts": 11010193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab1b0", "tid": 35568, "ts": 11010281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac600", "tid": 35568, "ts": 11010366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6a30", "tid": 35568, "ts": 11010452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a66f0", "tid": 35568, "ts": 11010539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6550", "tid": 35568, "ts": 11010625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8500", "tid": 35568, "ts": 11010712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a63b0", "tid": 35568, "ts": 11010799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a80f0", "tid": 35568, "ts": 11010885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9470", "tid": 35568, "ts": 11010972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6bd0", "tid": 35568, "ts": 11011058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6ca0", "tid": 35568, "ts": 11011144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8430", "tid": 35568, "ts": 11011230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7e80", "tid": 35568, "ts": 11011318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a67c0", "tid": 35568, "ts": 11011404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6b00", "tid": 35568, "ts": 11011491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7db0", "tid": 35568, "ts": 11011578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a74c0", "tid": 35568, "ts": 11011664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7c10", "tid": 35568, "ts": 11011751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a86a0", "tid": 35568, "ts": 11011838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9060", "tid": 35568, "ts": 11011924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8f90", "tid": 35568, "ts": 11012011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a70b0", "tid": 35568, "ts": 11012097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8df0", "tid": 35568, "ts": 11012183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6fe0", "tid": 35568, "ts": 11012309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a89e0", "tid": 35568, "ts": 11012399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8910", "tid": 35568, "ts": 11012487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a81c0", "tid": 35568, "ts": 11012574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7b40", "tid": 35568, "ts": 11012703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7250", "tid": 35568, "ts": 11012791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5fa0", "tid": 35568, "ts": 11012878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3220", "tid": 35568, "ts": 11012965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5ac0", "tid": 35568, "ts": 11013051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a59f0", "tid": 35568, "ts": 11013137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3e50", "tid": 35568, "ts": 11013224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3970", "tid": 35568, "ts": 11013310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4f60", "tid": 35568, "ts": 11013396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5ed0", "tid": 35568, "ts": 11013483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3080", "tid": 35568, "ts": 11013569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4400", "tid": 35568, "ts": 11013654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4c20", "tid": 35568, "ts": 11013740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a33c0", "tid": 35568, "ts": 11013827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4190", "tid": 35568, "ts": 11013913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3150", "tid": 35568, "ts": 11013999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5780", "tid": 35568, "ts": 11014085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a55e0", "tid": 35568, "ts": 11014172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5e00", "tid": 35568, "ts": 11014258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4260", "tid": 35568, "ts": 11014345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a48e0", "tid": 35568, "ts": 11014431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a52a0", "tid": 35568, "ts": 11014517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a49b0", "tid": 35568, "ts": 11014603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a32f0", "tid": 35568, "ts": 11014689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5d30", "tid": 35568, "ts": 11014776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3be0", "tid": 35568, "ts": 11014863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3ff0", "tid": 35568, "ts": 11014949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4330", "tid": 35568, "ts": 11015036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4810", "tid": 35568, "ts": 11015122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a56b0", "tid": 35568, "ts": 11015210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2d40", "tid": 35568, "ts": 11015296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5440", "tid": 35568, "ts": 11015382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5030", "tid": 35568, "ts": 11015468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a45a0", "tid": 35568, "ts": 11015555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0570", "tid": 35568, "ts": 11015642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2c70", "tid": 35568, "ts": 11015728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fd50", "tid": 35568, "ts": 11015814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fa10", "tid": 35568, "ts": 11015900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2520", "tid": 35568, "ts": 11015987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a22b0", "tid": 35568, "ts": 11016073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a25f0", "tid": 35568, "ts": 11016159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0bf0", "tid": 35568, "ts": 11016246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1b60", "tid": 35568, "ts": 11016332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2860", "tid": 35568, "ts": 11016418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0b20", "tid": 35568, "ts": 11016504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0a50", "tid": 35568, "ts": 11016591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1000", "tid": 35568, "ts": 11016677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0230", "tid": 35568, "ts": 11016763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2ad0", "tid": 35568, "ts": 11016849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0160", "tid": 35568, "ts": 11016935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0f30", "tid": 35568, "ts": 11017021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2a00", "tid": 35568, "ts": 11017108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a14e0", "tid": 35568, "ts": 11017194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a10d0", "tid": 35568, "ts": 11017281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2450", "tid": 35568, "ts": 11017367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a21e0", "tid": 35568, "ts": 11017453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a08b0", "tid": 35568, "ts": 11017540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1a90", "tid": 35568, "ts": 11017627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fbb0", "tid": 35568, "ts": 11017712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1750", "tid": 35568, "ts": 11017799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2040", "tid": 35568, "ts": 11017885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0300", "tid": 35568, "ts": 11017971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0cc0", "tid": 35568, "ts": 11018057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2930", "tid": 35568, "ts": 11018143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1410", "tid": 35568, "ts": 11018229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1ea0", "tid": 35568, "ts": 11018316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e830", "tid": 35568, "ts": 11018403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e690", "tid": 35568, "ts": 11018489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d170", "tid": 35568, "ts": 11018575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49dcd0", "tid": 35568, "ts": 11018662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cd60", "tid": 35568, "ts": 11018748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e350", "tid": 35568, "ts": 11018835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e4f0", "tid": 35568, "ts": 11018921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ed10", "tid": 35568, "ts": 11019008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e280", "tid": 35568, "ts": 11019095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d7f0", "tid": 35568, "ts": 11019181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cf00", "tid": 35568, "ts": 11019269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49de70", "tid": 35568, "ts": 11019355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f600", "tid": 35568, "ts": 11019442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49df40", "tid": 35568, "ts": 11019529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c6e0", "tid": 35568, "ts": 11019615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c880", "tid": 35568, "ts": 11019701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49dc00", "tid": 35568, "ts": 11019787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cbc0", "tid": 35568, "ts": 11019874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f460", "tid": 35568, "ts": 11019960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f120", "tid": 35568, "ts": 11020048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e9d0", "tid": 35568, "ts": 11020134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49eb70", "tid": 35568, "ts": 11020220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d3e0", "tid": 35568, "ts": 11020307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f390", "tid": 35568, "ts": 11020394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cfd0", "tid": 35568, "ts": 11020481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d4b0", "tid": 35568, "ts": 11020567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ca20", "tid": 35568, "ts": 11020654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c610", "tid": 35568, "ts": 11020740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f1f0", "tid": 35568, "ts": 11020827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49dda0", "tid": 35568, "ts": 11020913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f6d0", "tid": 35568, "ts": 11020999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49eeb0", "tid": 35568, "ts": 11021086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499620", "tid": 35568, "ts": 11021172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c470", "tid": 35568, "ts": 11021258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c2d0", "tid": 35568, "ts": 11021344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ac10", "tid": 35568, "ts": 11021431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a800", "tid": 35568, "ts": 11021517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499f10", "tid": 35568, "ts": 11021603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a3f0", "tid": 35568, "ts": 11021689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a9a0", "tid": 35568, "ts": 11021776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a730", "tid": 35568, "ts": 11021863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a250", "tid": 35568, "ts": 11021949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a8d0", "tid": 35568, "ts": 11022035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a590", "tid": 35568, "ts": 11022121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b770", "tid": 35568, "ts": 11022208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499d70", "tid": 35568, "ts": 11022295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b0f0", "tid": 35568, "ts": 11022381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499ca0", "tid": 35568, "ts": 11022468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bab0", "tid": 35568, "ts": 11022554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c130", "tid": 35568, "ts": 11022641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a4c0", "tid": 35568, "ts": 11022728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b6a0", "tid": 35568, "ts": 11022814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bdf0", "tid": 35568, "ts": 11022900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a180", "tid": 35568, "ts": 11022986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ae80", "tid": 35568, "ts": 11023073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499960", "tid": 35568, "ts": 11023160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a0b0", "tid": 35568, "ts": 11023246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49adb0", "tid": 35568, "ts": 11023333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b910", "tid": 35568, "ts": 11023419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499140", "tid": 35568, "ts": 11023506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49af50", "tid": 35568, "ts": 11023593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4992e0", "tid": 35568, "ts": 11023679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b1c0", "tid": 35568, "ts": 11023765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499fe0", "tid": 35568, "ts": 11023852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4967d0", "tid": 35568, "ts": 11023938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496560", "tid": 35568, "ts": 11024024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495ee0", "tid": 35568, "ts": 11024110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498fa0", "tid": 35568, "ts": 11024196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498ed0", "tid": 35568, "ts": 11024283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496700", "tid": 35568, "ts": 11024370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4989f0", "tid": 35568, "ts": 11024456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4985e0", "tid": 35568, "ts": 11024543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4962f0", "tid": 35568, "ts": 11024629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497cf0", "tid": 35568, "ts": 11024715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496150", "tid": 35568, "ts": 11024801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497dc0", "tid": 35568, "ts": 11024888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496cb0", "tid": 35568, "ts": 11024975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496be0", "tid": 35568, "ts": 11025061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498370", "tid": 35568, "ts": 11025147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4974d0", "tid": 35568, "ts": 11025234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4979b0", "tid": 35568, "ts": 11025321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497e90", "tid": 35568, "ts": 11025407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4975a0", "tid": 35568, "ts": 11025493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497400", "tid": 35568, "ts": 11025580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496490", "tid": 35568, "ts": 11025666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497330", "tid": 35568, "ts": 11025752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4981d0", "tid": 35568, "ts": 11025838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497740", "tid": 35568, "ts": 11025926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497190", "tid": 35568, "ts": 11026012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499070", "tid": 35568, "ts": 11026098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498030", "tid": 35568, "ts": 11026184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496630", "tid": 35568, "ts": 11026270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496f20", "tid": 35568, "ts": 11026356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4978e0", "tid": 35568, "ts": 11026442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4970c0", "tid": 35568, "ts": 11026528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4982a0", "tid": 35568, "ts": 11026614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492e20", "tid": 35568, "ts": 11026701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495ad0", "tid": 35568, "ts": 11026813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495450", "tid": 35568, "ts": 11026899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495040", "tid": 35568, "ts": 11026986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4952b0", "tid": 35568, "ts": 11027071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495930", "tid": 35568, "ts": 11027157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4945b0", "tid": 35568, "ts": 11027243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494270", "tid": 35568, "ts": 11027330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4934a0", "tid": 35568, "ts": 11027416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495860", "tid": 35568, "ts": 11027502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494dd0", "tid": 35568, "ts": 11027588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493300", "tid": 35568, "ts": 11027674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4938b0", "tid": 35568, "ts": 11027760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4951e0", "tid": 35568, "ts": 11027847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495c70", "tid": 35568, "ts": 11027976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494340", "tid": 35568, "ts": 11028064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4955f0", "tid": 35568, "ts": 11028151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494000", "tid": 35568, "ts": 11028238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4937e0", "tid": 35568, "ts": 11028323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4948f0", "tid": 35568, "ts": 11028410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4933d0", "tid": 35568, "ts": 11028497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492bb0", "tid": 35568, "ts": 11028584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494680", "tid": 35568, "ts": 11028670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495520", "tid": 35568, "ts": 11028757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492a10", "tid": 35568, "ts": 11028844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494820", "tid": 35568, "ts": 11028930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493bf0", "tid": 35568, "ts": 11029016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492ae0", "tid": 35568, "ts": 11029103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494c30", "tid": 35568, "ts": 11029189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493d90", "tid": 35568, "ts": 11029276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492fc0", "tid": 35568, "ts": 11029363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493b20", "tid": 35568, "ts": 11029450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490170", "tid": 35568, "ts": 11029536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490310", "tid": 35568, "ts": 11029622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fbc0", "tid": 35568, "ts": 11029708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f540", "tid": 35568, "ts": 11029795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490650", "tid": 35568, "ts": 11029882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492390", "tid": 35568, "ts": 11029968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492050", "tid": 35568, "ts": 11030054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492870", "tid": 35568, "ts": 11030142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491d10", "tid": 35568, "ts": 11030228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490f40", "tid": 35568, "ts": 11030314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f950", "tid": 35568, "ts": 11030399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490c00", "tid": 35568, "ts": 11030486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f6e0", "tid": 35568, "ts": 11030572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4910e0", "tid": 35568, "ts": 11030658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4900a0", "tid": 35568, "ts": 11030744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491b70", "tid": 35568, "ts": 11030831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491420", "tid": 35568, "ts": 11030916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491760", "tid": 35568, "ts": 11031003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492120", "tid": 35568, "ts": 11031089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490240", "tid": 35568, "ts": 11031176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491aa0", "tid": 35568, "ts": 11031261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490a60", "tid": 35568, "ts": 11031348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4919d0", "tid": 35568, "ts": 11031434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490990", "tid": 35568, "ts": 11031521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4908c0", "tid": 35568, "ts": 11031608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fa20", "tid": 35568, "ts": 11031694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4903e0", "tid": 35568, "ts": 11031780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4914f0", "tid": 35568, "ts": 11031867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490da0", "tid": 35568, "ts": 11031952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491690", "tid": 35568, "ts": 11032039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fe30", "tid": 35568, "ts": 11032126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491830", "tid": 35568, "ts": 11032213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b344a0", "tid": 35568, "ts": 11032299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36ad0", "tid": 35568, "ts": 11032386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b351a0", "tid": 35568, "ts": 11032472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33ef0", "tid": 35568, "ts": 11032559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34f30", "tid": 35568, "ts": 11032645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36110", "tid": 35568, "ts": 11032732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33e20", "tid": 35568, "ts": 11032818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35c30", "tid": 35568, "ts": 11032904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34e60", "tid": 35568, "ts": 11032990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b366c0", "tid": 35568, "ts": 11033077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35750", "tid": 35568, "ts": 11033163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b348b0", "tid": 35568, "ts": 11033250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36d40", "tid": 35568, "ts": 11033336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35f70", "tid": 35568, "ts": 11033423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b358f0", "tid": 35568, "ts": 11033509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b354e0", "tid": 35568, "ts": 11033595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35340", "tid": 35568, "ts": 11033681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35ea0", "tid": 35568, "ts": 11033768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35dd0", "tid": 35568, "ts": 11033854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34980", "tid": 35568, "ts": 11033941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36ee0", "tid": 35568, "ts": 11034027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34300", "tid": 35568, "ts": 11034113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36790", "tid": 35568, "ts": 11034200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34d90", "tid": 35568, "ts": 11034287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34230", "tid": 35568, "ts": 11034374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35000", "tid": 35568, "ts": 11034460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34160", "tid": 35568, "ts": 11034545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b355b0", "tid": 35568, "ts": 11034631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36e10", "tid": 35568, "ts": 11034717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34570", "tid": 35568, "ts": 11034804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35d00", "tid": 35568, "ts": 11034890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32420", "tid": 35568, "ts": 11034976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b321b0", "tid": 35568, "ts": 11035062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30fd0", "tid": 35568, "ts": 11035148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b320e0", "tid": 35568, "ts": 11035235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30bc0", "tid": 35568, "ts": 11035321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33940", "tid": 35568, "ts": 11035407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b337a0", "tid": 35568, "ts": 11035493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31e70", "tid": 35568, "ts": 11035579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30af0", "tid": 35568, "ts": 11035666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32350", "tid": 35568, "ts": 11035752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31c00", "tid": 35568, "ts": 11035838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31650", "tid": 35568, "ts": 11035924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33390", "tid": 35568, "ts": 11036010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b332c0", "tid": 35568, "ts": 11036096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30d60", "tid": 35568, "ts": 11036182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33120", "tid": 35568, "ts": 11036268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32760", "tid": 35568, "ts": 11036355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33050", "tid": 35568, "ts": 11036441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31720", "tid": 35568, "ts": 11036527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30950", "tid": 35568, "ts": 11036613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b325c0", "tid": 35568, "ts": 11036700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32eb0", "tid": 35568, "ts": 11036786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32280", "tid": 35568, "ts": 11036871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32f80", "tid": 35568, "ts": 11036957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b331f0", "tid": 35568, "ts": 11037045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31cd0", "tid": 35568, "ts": 11037131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33ae0", "tid": 35568, "ts": 11037218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31a60", "tid": 35568, "ts": 11037304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31240", "tid": 35568, "ts": 11037390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b318c0", "tid": 35568, "ts": 11037476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32d10", "tid": 35568, "ts": 11037561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32900", "tid": 35568, "ts": 11037647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e250", "tid": 35568, "ts": 11037735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d890", "tid": 35568, "ts": 11037821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b306e0", "tid": 35568, "ts": 11037907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30540", "tid": 35568, "ts": 11037992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b303a0", "tid": 35568, "ts": 11038080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dd70", "tid": 35568, "ts": 11038165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30130", "tid": 35568, "ts": 11038251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f0f0", "tid": 35568, "ts": 11038337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b302d0", "tid": 35568, "ts": 11038424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f020", "tid": 35568, "ts": 11038510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2da30", "tid": 35568, "ts": 11038595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e3f0", "tid": 35568, "ts": 11038681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fc50", "tid": 35568, "ts": 11038768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fb80", "tid": 35568, "ts": 11038855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ef50", "tid": 35568, "ts": 11038942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e4c0", "tid": 35568, "ts": 11039027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ee80", "tid": 35568, "ts": 11039113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d7c0", "tid": 35568, "ts": 11039200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fab0", "tid": 35568, "ts": 11039286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f770", "tid": 35568, "ts": 11039372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e800", "tid": 35568, "ts": 11039459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fec0", "tid": 35568, "ts": 11039544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30060", "tid": 35568, "ts": 11039630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2edb0", "tid": 35568, "ts": 11039717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e660", "tid": 35568, "ts": 11039804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2eb40", "tid": 35568, "ts": 11039891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d550", "tid": 35568, "ts": 11039977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f430", "tid": 35568, "ts": 11040063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e730", "tid": 35568, "ts": 11040149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f290", "tid": 35568, "ts": 11040235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d6f0", "tid": 35568, "ts": 11040321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f360", "tid": 35568, "ts": 11040407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c6b0", "tid": 35568, "ts": 11040494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c5e0", "tid": 35568, "ts": 11040580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a8a0", "tid": 35568, "ts": 11040667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d480", "tid": 35568, "ts": 11040752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d3b0", "tid": 35568, "ts": 11040839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d140", "tid": 35568, "ts": 11040925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a150", "tid": 35568, "ts": 11041012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c100", "tid": 35568, "ts": 11041097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b190", "tid": 35568, "ts": 11041185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b0c0", "tid": 35568, "ts": 11041271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ced0", "tid": 35568, "ts": 11041357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a3c0", "tid": 35568, "ts": 11041443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c440", "tid": 35568, "ts": 11041529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c9f0", "tid": 35568, "ts": 11041615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ce00", "tid": 35568, "ts": 11041701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c030", "tid": 35568, "ts": 11041787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ba80", "tid": 35568, "ts": 11041873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c780", "tid": 35568, "ts": 11041959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c920", "tid": 35568, "ts": 11042046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2af20", "tid": 35568, "ts": 11042132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a2f0", "tid": 35568, "ts": 11042219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b740", "tid": 35568, "ts": 11042306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bc20", "tid": 35568, "ts": 11042393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b670", "tid": 35568, "ts": 11042479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2acb0", "tid": 35568, "ts": 11042566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2abe0", "tid": 35568, "ts": 11042652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cb90", "tid": 35568, "ts": 11042738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b330", "tid": 35568, "ts": 11042824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bb50", "tid": 35568, "ts": 11042910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bf60", "tid": 35568, "ts": 11042997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d210", "tid": 35568, "ts": 11043082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2aa40", "tid": 35568, "ts": 11043169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27d90", "tid": 35568, "ts": 11043255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27b20", "tid": 35568, "ts": 11043342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26fc0", "tid": 35568, "ts": 11043428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b296c0", "tid": 35568, "ts": 11043545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29450", "tid": 35568, "ts": 11043663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28a90", "tid": 35568, "ts": 11043750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b288f0", "tid": 35568, "ts": 11043836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27640", "tid": 35568, "ts": 11043922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b292b0", "tid": 35568, "ts": 11044009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27570", "tid": 35568, "ts": 11044095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29040", "tid": 35568, "ts": 11044181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a080", "tid": 35568, "ts": 11044267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29ba0", "tid": 35568, "ts": 11044353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b274a0", "tid": 35568, "ts": 11044439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28dd0", "tid": 35568, "ts": 11044526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29e10", "tid": 35568, "ts": 11044612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29ad0", "tid": 35568, "ts": 11044699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b284e0", "tid": 35568, "ts": 11044785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28750", "tid": 35568, "ts": 11044871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27e60", "tid": 35568, "ts": 11044957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28680", "tid": 35568, "ts": 11045043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28d00", "tid": 35568, "ts": 11045129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29110", "tid": 35568, "ts": 11045215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27230", "tid": 35568, "ts": 11045302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b278b0", "tid": 35568, "ts": 11045388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b281a0", "tid": 35568, "ts": 11045474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29a00", "tid": 35568, "ts": 11045561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27090", "tid": 35568, "ts": 11045648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28820", "tid": 35568, "ts": 11045735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b280d0", "tid": 35568, "ts": 11045821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29c70", "tid": 35568, "ts": 11045908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b285b0", "tid": 35568, "ts": 11045994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26120", "tid": 35568, "ts": 11046081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b254f0", "tid": 35568, "ts": 11046167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b267a0", "tid": 35568, "ts": 11046253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25eb0", "tid": 35568, "ts": 11046339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b250e0", "tid": 35568, "ts": 11046426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25d10", "tid": 35568, "ts": 11046513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25c40", "tid": 35568, "ts": 11046600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24b30", "tid": 35568, "ts": 11046686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24a60", "tid": 35568, "ts": 11046774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24da0", "tid": 35568, "ts": 11046860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24170", "tid": 35568, "ts": 11046946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b247f0", "tid": 35568, "ts": 11047032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24580", "tid": 35568, "ts": 11047120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b240a0", "tid": 35568, "ts": 11047207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25f80", "tid": 35568, "ts": 11047294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23af0", "tid": 35568, "ts": 11047382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b244b0", "tid": 35568, "ts": 11047510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24650", "tid": 35568, "ts": 11047600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23f00", "tid": 35568, "ts": 11047687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26bb0", "tid": 35568, "ts": 11047774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23d60", "tid": 35568, "ts": 11047860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26a10", "tid": 35568, "ts": 11047947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26460", "tid": 35568, "ts": 11048034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24e70", "tid": 35568, "ts": 11048120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26530", "tid": 35568, "ts": 11048207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26940", "tid": 35568, "ts": 11048293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b261f0", "tid": 35568, "ts": 11048380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b255c0", "tid": 35568, "ts": 11048466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25350", "tid": 35568, "ts": 11048552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b262c0", "tid": 35568, "ts": 11048639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23bc0", "tid": 35568, "ts": 11048725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23e30", "tid": 35568, "ts": 11048811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21c10", "tid": 35568, "ts": 11048898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b218d0", "tid": 35568, "ts": 11048984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21730", "tid": 35568, "ts": 11049070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21250", "tid": 35568, "ts": 11049157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20fe0", "tid": 35568, "ts": 11049243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b220f0", "tid": 35568, "ts": 11049330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20e40", "tid": 35568, "ts": 11049415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21320", "tid": 35568, "ts": 11049502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20550", "tid": 35568, "ts": 11049589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20bd0", "tid": 35568, "ts": 11049675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b214c0", "tid": 35568, "ts": 11049761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22360", "tid": 35568, "ts": 11049847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b229e0", "tid": 35568, "ts": 11049934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22020", "tid": 35568, "ts": 11050019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b233a0", "tid": 35568, "ts": 11050105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22290", "tid": 35568, "ts": 11050191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20f10", "tid": 35568, "ts": 11050278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21f50", "tid": 35568, "ts": 11050365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b232d0", "tid": 35568, "ts": 11050451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22c50", "tid": 35568, "ts": 11050537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b207c0", "tid": 35568, "ts": 11050624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22840", "tid": 35568, "ts": 11050710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b221c0", "tid": 35568, "ts": 11050797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23060", "tid": 35568, "ts": 11050883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b210b0", "tid": 35568, "ts": 11050969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20a30", "tid": 35568, "ts": 11051055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22500", "tid": 35568, "ts": 11051141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23540", "tid": 35568, "ts": 11051227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21a70", "tid": 35568, "ts": 11051314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20890", "tid": 35568, "ts": 11051400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b236e0", "tid": 35568, "ts": 11051487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20d70", "tid": 35568, "ts": 11051573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f850", "tid": 35568, "ts": 11051660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f6b0", "tid": 35568, "ts": 11051746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f370", "tid": 35568, "ts": 11051832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1edc0", "tid": 35568, "ts": 11051917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d2f0", "tid": 35568, "ts": 11052004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20480", "tid": 35568, "ts": 11052091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e5a0", "tid": 35568, "ts": 11052177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ecf0", "tid": 35568, "ts": 11052263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fed0", "tid": 35568, "ts": 11052351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f1d0", "tid": 35568, "ts": 11052438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b203b0", "tid": 35568, "ts": 11052524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d150", "tid": 35568, "ts": 11052610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20070", "tid": 35568, "ts": 11052696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d630", "tid": 35568, "ts": 11052782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fd30", "tid": 35568, "ts": 11052868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f100", "tid": 35568, "ts": 11052955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fb90", "tid": 35568, "ts": 11053041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ffa0", "tid": 35568, "ts": 11053127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e8e0", "tid": 35568, "ts": 11053214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d490", "tid": 35568, "ts": 11053300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d700", "tid": 35568, "ts": 11053387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d8a0", "tid": 35568, "ts": 11053473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d3c0", "tid": 35568, "ts": 11053559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fac0", "tid": 35568, "ts": 11053645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1da40", "tid": 35568, "ts": 11053734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fc60", "tid": 35568, "ts": 11053820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f9f0", "tid": 35568, "ts": 11053907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e260", "tid": 35568, "ts": 11053993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dbe0", "tid": 35568, "ts": 11054080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dcb0", "tid": 35568, "ts": 11054166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ea80", "tid": 35568, "ts": 11054253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fe00", "tid": 35568, "ts": 11054339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ad90", "tid": 35568, "ts": 11054425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1abf0", "tid": 35568, "ts": 11054511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1aa50", "tid": 35568, "ts": 11054597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a4a0", "tid": 35568, "ts": 11054683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19e20", "tid": 35568, "ts": 11054771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c450", "tid": 35568, "ts": 11054857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c2b0", "tid": 35568, "ts": 11054943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b8f0", "tid": 35568, "ts": 11055030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bc30", "tid": 35568, "ts": 11055117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b680", "tid": 35568, "ts": 11055203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cee0", "tid": 35568, "ts": 11055289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b820", "tid": 35568, "ts": 11055376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c1e0", "tid": 35568, "ts": 11055462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cad0", "tid": 35568, "ts": 11055549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ca00", "tid": 35568, "ts": 11055634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a640", "tid": 35568, "ts": 11055721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b000", "tid": 35568, "ts": 11055808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c790", "tid": 35568, "ts": 11055894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c6c0", "tid": 35568, "ts": 11055981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b1a0", "tid": 35568, "ts": 11056067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cd40", "tid": 35568, "ts": 11056154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b270", "tid": 35568, "ts": 11056240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a160", "tid": 35568, "ts": 11056327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a090", "tid": 35568, "ts": 11056414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1af30", "tid": 35568, "ts": 11056501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bf70", "tid": 35568, "ts": 11056587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a3d0", "tid": 35568, "ts": 11056673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ae60", "tid": 35568, "ts": 11056759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19fc0", "tid": 35568, "ts": 11056845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b9c0", "tid": 35568, "ts": 11056932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c860", "tid": 35568, "ts": 11057018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bdd0", "tid": 35568, "ts": 11057104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16950", "tid": 35568, "ts": 11057191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19ae0", "tid": 35568, "ts": 11057278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b197a0", "tid": 35568, "ts": 11057364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19460", "tid": 35568, "ts": 11057451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b191f0", "tid": 35568, "ts": 11057538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18f80", "tid": 35568, "ts": 11057624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17f40", "tid": 35568, "ts": 11057711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b185c0", "tid": 35568, "ts": 11057798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18b70", "tid": 35568, "ts": 11057885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17c00", "tid": 35568, "ts": 11057971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17a60", "tid": 35568, "ts": 11058058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18420", "tid": 35568, "ts": 11058143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17cd0", "tid": 35568, "ts": 11058231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17e70", "tid": 35568, "ts": 11058316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b189d0", "tid": 35568, "ts": 11058403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b196d0", "tid": 35568, "ts": 11058489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17990", "tid": 35568, "ts": 11058575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17650", "tid": 35568, "ts": 11058662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b174b0", "tid": 35568, "ts": 11058748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16f00", "tid": 35568, "ts": 11058834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b173e0", "tid": 35568, "ts": 11058920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16d60", "tid": 35568, "ts": 11059006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16c90", "tid": 35568, "ts": 11059093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16bc0", "tid": 35568, "ts": 11059217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b181b0", "tid": 35568, "ts": 11059306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18830", "tid": 35568, "ts": 11059393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b178c0", "tid": 35568, "ts": 11059479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19120", "tid": 35568, "ts": 11059565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18900", "tid": 35568, "ts": 11059652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16e30", "tid": 35568, "ts": 11059738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19600", "tid": 35568, "ts": 11059824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18de0", "tid": 35568, "ts": 11059911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b136f0", "tid": 35568, "ts": 11059998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13550", "tid": 35568, "ts": 11060085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16540", "tid": 35568, "ts": 11060171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b162d0", "tid": 35568, "ts": 11060258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15430", "tid": 35568, "ts": 11060344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16060", "tid": 35568, "ts": 11060431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15c50", "tid": 35568, "ts": 11060517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15ab0", "tid": 35568, "ts": 11060604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14590", "tid": 35568, "ts": 11060691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b144c0", "tid": 35568, "ts": 11060778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15360", "tid": 35568, "ts": 11060864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b140b0", "tid": 35568, "ts": 11060950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13fe0", "tid": 35568, "ts": 11061037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16610", "tid": 35568, "ts": 11061123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15770", "tid": 35568, "ts": 11061209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b156a0", "tid": 35568, "ts": 11061296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b151c0", "tid": 35568, "ts": 11061383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13f10", "tid": 35568, "ts": 11061470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15df0", "tid": 35568, "ts": 11061556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14e80", "tid": 35568, "ts": 11061642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15020", "tid": 35568, "ts": 11061729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15910", "tid": 35568, "ts": 11061815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14db0", "tid": 35568, "ts": 11061901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15d20", "tid": 35568, "ts": 11061987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13a30", "tid": 35568, "ts": 11062075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13890", "tid": 35568, "ts": 11062161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14ce0", "tid": 35568, "ts": 11062247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15290", "tid": 35568, "ts": 11062333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14b40", "tid": 35568, "ts": 11062420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13e40", "tid": 35568, "ts": 11062506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14730", "tid": 35568, "ts": 11062593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14660", "tid": 35568, "ts": 11062679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b132e0", "tid": 35568, "ts": 11062766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11a80", "tid": 35568, "ts": 11062853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b118e0", "tid": 35568, "ts": 11062940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12ed0", "tid": 35568, "ts": 11063027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12e00", "tid": 35568, "ts": 11063113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12b90", "tid": 35568, "ts": 11063199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12ac0", "tid": 35568, "ts": 11063286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12850", "tid": 35568, "ts": 11063371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13070", "tid": 35568, "ts": 11063459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10b10", "tid": 35568, "ts": 11063546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10970", "tid": 35568, "ts": 11063633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b110c0", "tid": 35568, "ts": 11063719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11740", "tid": 35568, "ts": 11063806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11f60", "tid": 35568, "ts": 11063893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11330", "tid": 35568, "ts": 11063979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11e90", "tid": 35568, "ts": 11064065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b115a0", "tid": 35568, "ts": 11064151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12370", "tid": 35568, "ts": 11064238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12d30", "tid": 35568, "ts": 11064324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10a40", "tid": 35568, "ts": 11064411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b126b0", "tid": 35568, "ts": 11064498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12440", "tid": 35568, "ts": 11064583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12100", "tid": 35568, "ts": 11064669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10be0", "tid": 35568, "ts": 11064756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12920", "tid": 35568, "ts": 11064843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11cf0", "tid": 35568, "ts": 11064930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b107d0", "tid": 35568, "ts": 11065017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10cb0", "tid": 35568, "ts": 11065104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10560", "tid": 35568, "ts": 11065191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10220", "tid": 35568, "ts": 11065277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b125e0", "tid": 35568, "ts": 11065363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b133b0", "tid": 35568, "ts": 11065449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f040", "tid": 35568, "ts": 11065536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ef70", "tid": 35568, "ts": 11065622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0eea0", "tid": 35568, "ts": 11065709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ed00", "tid": 35568, "ts": 11065796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e340", "tid": 35568, "ts": 11065883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e000", "tid": 35568, "ts": 11065969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f1e0", "tid": 35568, "ts": 11066055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ea90", "tid": 35568, "ts": 11066142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d300", "tid": 35568, "ts": 11066228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0de60", "tid": 35568, "ts": 11066315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fa00", "tid": 35568, "ts": 11066401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f380", "tid": 35568, "ts": 11066487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0dbf0", "tid": 35568, "ts": 11066574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fba0", "tid": 35568, "ts": 11066660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d980", "tid": 35568, "ts": 11066746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e1a0", "tid": 35568, "ts": 11066832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fe10", "tid": 35568, "ts": 11066919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f6c0", "tid": 35568, "ts": 11067005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e5b0", "tid": 35568, "ts": 11067092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e0d0", "tid": 35568, "ts": 11067178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cef0", "tid": 35568, "ts": 11067264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ce20", "tid": 35568, "ts": 11067350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f2b0", "tid": 35568, "ts": 11067437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ffb0", "tid": 35568, "ts": 11067524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d8b0", "tid": 35568, "ts": 11067611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f790", "tid": 35568, "ts": 11067697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f520", "tid": 35568, "ts": 11067783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fad0", "tid": 35568, "ts": 11067870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d090", "tid": 35568, "ts": 11067956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e270", "tid": 35568, "ts": 11068042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d160", "tid": 35568, "ts": 11068129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fee0", "tid": 35568, "ts": 11068215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ada0", "tid": 35568, "ts": 11068302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bf80", "tid": 35568, "ts": 11068387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c7a0", "tid": 35568, "ts": 11068473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0beb0", "tid": 35568, "ts": 11068559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ac00", "tid": 35568, "ts": 11068645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b350", "tid": 35568, "ts": 11068732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c050", "tid": 35568, "ts": 11068818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a240", "tid": 35568, "ts": 11068904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b280", "tid": 35568, "ts": 11068992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a170", "tid": 35568, "ts": 11069078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bd10", "tid": 35568, "ts": 11069165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c460", "tid": 35568, "ts": 11069251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a8c0", "tid": 35568, "ts": 11069338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09950", "tid": 35568, "ts": 11069424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b4f0", "tid": 35568, "ts": 11069510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09af0", "tid": 35568, "ts": 11069596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09f00", "tid": 35568, "ts": 11069683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b010", "tid": 35568, "ts": 11069769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a7f0", "tid": 35568, "ts": 11069855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c2c0", "tid": 35568, "ts": 11069941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c530", "tid": 35568, "ts": 11070028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ab30", "tid": 35568, "ts": 11070114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09fd0", "tid": 35568, "ts": 11070201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ca10", "tid": 35568, "ts": 11070287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cae0", "tid": 35568, "ts": 11070374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bb70", "tid": 35568, "ts": 11070460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a650", "tid": 35568, "ts": 11070546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cc80", "tid": 35568, "ts": 11070632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bde0", "tid": 35568, "ts": 11070719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0baa0", "tid": 35568, "ts": 11070805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ae70", "tid": 35568, "ts": 11070892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c1f0", "tid": 35568, "ts": 11070978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07e80", "tid": 35568, "ts": 11071064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07ce0", "tid": 35568, "ts": 11071151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b078d0", "tid": 35568, "ts": 11071238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07590", "tid": 35568, "ts": 11071324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09540", "tid": 35568, "ts": 11071411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b073f0", "tid": 35568, "ts": 11071497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09130", "tid": 35568, "ts": 11071583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07320", "tid": 35568, "ts": 11071669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07180", "tid": 35568, "ts": 11071756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07250", "tid": 35568, "ts": 11071842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06b00", "tid": 35568, "ts": 11071929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07b40", "tid": 35568, "ts": 11072015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08910", "tid": 35568, "ts": 11072102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b089e0", "tid": 35568, "ts": 11072187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06890", "tid": 35568, "ts": 11072273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08840", "tid": 35568, "ts": 11072359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06960", "tid": 35568, "ts": 11072446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b070b0", "tid": 35568, "ts": 11072532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b080f0", "tid": 35568, "ts": 11072619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08770", "tid": 35568, "ts": 11072706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08360", "tid": 35568, "ts": 11072792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09880", "tid": 35568, "ts": 11072878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b097b0", "tid": 35568, "ts": 11072965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b096e0", "tid": 35568, "ts": 11073051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08df0", "tid": 35568, "ts": 11073139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06bd0", "tid": 35568, "ts": 11073225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b085d0", "tid": 35568, "ts": 11073312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07a70", "tid": 35568, "ts": 11073398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b074c0", "tid": 35568, "ts": 11073485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b081c0", "tid": 35568, "ts": 11073572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09200", "tid": 35568, "ts": 11073658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08430", "tid": 35568, "ts": 11073744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b033c0", "tid": 35568, "ts": 11073830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04f60", "tid": 35568, "ts": 11073916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b056b0", "tid": 35568, "ts": 11074003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03150", "tid": 35568, "ts": 11074089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04a80", "tid": 35568, "ts": 11074176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04400", "tid": 35568, "ts": 11074263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04260", "tid": 35568, "ts": 11074349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03220", "tid": 35568, "ts": 11074435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05b90", "tid": 35568, "ts": 11074523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b049b0", "tid": 35568, "ts": 11074609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04330", "tid": 35568, "ts": 11074696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b048e0", "tid": 35568, "ts": 11074820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04810", "tid": 35568, "ts": 11074996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03970", "tid": 35568, "ts": 11075144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03a40", "tid": 35568, "ts": 11075320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04dc0", "tid": 35568, "ts": 11075440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03700", "tid": 35568, "ts": 11075591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03ff0", "tid": 35568, "ts": 11075703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b052a0", "tid": 35568, "ts": 11075790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06070", "tid": 35568, "ts": 11075909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06210", "tid": 35568, "ts": 11076099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05fa0", "tid": 35568, "ts": 11076231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03e50", "tid": 35568, "ts": 11076317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b040c0", "tid": 35568, "ts": 11076402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05920", "tid": 35568, "ts": 11076490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05510", "tid": 35568, "ts": 11076575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b038a0", "tid": 35568, "ts": 11076661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b044d0", "tid": 35568, "ts": 11076747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04740", "tid": 35568, "ts": 11076835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03d80", "tid": 35568, "ts": 11076921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06480", "tid": 35568, "ts": 11077008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03560", "tid": 35568, "ts": 11077093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00570", "tid": 35568, "ts": 11077180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00160", "tid": 35568, "ts": 11077266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affd50", "tid": 35568, "ts": 11077352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01820", "tid": 35568, "ts": 11077439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affef0", "tid": 35568, "ts": 11077525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b015b0", "tid": 35568, "ts": 11077611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b014e0", "tid": 35568, "ts": 11077698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02c70", "tid": 35568, "ts": 11077784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02ba0", "tid": 35568, "ts": 11077870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01a90", "tid": 35568, "ts": 11077956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00bf0", "tid": 35568, "ts": 11078043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00b20", "tid": 35568, "ts": 11078128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01270", "tid": 35568, "ts": 11078214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00d90", "tid": 35568, "ts": 11078301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b004a0", "tid": 35568, "ts": 11078387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b007e0", "tid": 35568, "ts": 11078472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02110", "tid": 35568, "ts": 11078559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02450", "tid": 35568, "ts": 11078644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01f70", "tid": 35568, "ts": 11078730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b018f0", "tid": 35568, "ts": 11078816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b022b0", "tid": 35568, "ts": 11078902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00230", "tid": 35568, "ts": 11078988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02fb0", "tid": 35568, "ts": 11079074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b010d0", "tid": 35568, "ts": 11079160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01340", "tid": 35568, "ts": 11079247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02e10", "tid": 35568, "ts": 11079333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b025f0", "tid": 35568, "ts": 11079418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b011a0", "tid": 35568, "ts": 11079505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00710", "tid": 35568, "ts": 11079591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affe20", "tid": 35568, "ts": 11079677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b021e0", "tid": 35568, "ts": 11079763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00e60", "tid": 35568, "ts": 11079849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcc90", "tid": 35568, "ts": 11079935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff6d0", "tid": 35568, "ts": 11080021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff460", "tid": 35568, "ts": 11080108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff050", "tid": 35568, "ts": 11080194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff2c0", "tid": 35568, "ts": 11080280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd720", "tid": 35568, "ts": 11080367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afeeb0", "tid": 35568, "ts": 11080453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe1b0", "tid": 35568, "ts": 11080540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd4b0", "tid": 35568, "ts": 11080626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afede0", "tid": 35568, "ts": 11080712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afca20", "tid": 35568, "ts": 11080798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afef80", "tid": 35568, "ts": 11080884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc950", "tid": 35568, "ts": 11080971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd650", "tid": 35568, "ts": 11081057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd8c0", "tid": 35568, "ts": 11081144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcf00", "tid": 35568, "ts": 11081230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe010", "tid": 35568, "ts": 11081316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe760", "tid": 35568, "ts": 11081402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affae0", "tid": 35568, "ts": 11081489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff870", "tid": 35568, "ts": 11081575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdf40", "tid": 35568, "ts": 11081661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff940", "tid": 35568, "ts": 11081748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcfd0", "tid": 35568, "ts": 11081834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affa10", "tid": 35568, "ts": 11081920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe4f0", "tid": 35568, "ts": 11082007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe5c0", "tid": 35568, "ts": 11082094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd990", "tid": 35568, "ts": 11082181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe830", "tid": 35568, "ts": 11082267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afeb70", "tid": 35568, "ts": 11082356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affbb0", "tid": 35568, "ts": 11082443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd240", "tid": 35568, "ts": 11082530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff120", "tid": 35568, "ts": 11082617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afae80", "tid": 35568, "ts": 11082704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afadb0", "tid": 35568, "ts": 11082791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa800", "tid": 35568, "ts": 11082920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa9a0", "tid": 35568, "ts": 11083008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbec0", "tid": 35568, "ts": 11083094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb6a0", "tid": 35568, "ts": 11083180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9ca0", "tid": 35568, "ts": 11083266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9550", "tid": 35568, "ts": 11083352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc6e0", "tid": 35568, "ts": 11083440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9b00", "tid": 35568, "ts": 11083525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aface0", "tid": 35568, "ts": 11083611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa730", "tid": 35568, "ts": 11083697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afac10", "tid": 35568, "ts": 11083783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af96f0", "tid": 35568, "ts": 11083870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb500", "tid": 35568, "ts": 11083955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb430", "tid": 35568, "ts": 11084041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbb80", "tid": 35568, "ts": 11084128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbab0", "tid": 35568, "ts": 11084214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9f10", "tid": 35568, "ts": 11084300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9960", "tid": 35568, "ts": 11084386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa4c0", "tid": 35568, "ts": 11084472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc3a0", "tid": 35568, "ts": 11084558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afaa70", "tid": 35568, "ts": 11084644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb770", "tid": 35568, "ts": 11084730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc130", "tid": 35568, "ts": 11084817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa250", "tid": 35568, "ts": 11084902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb020", "tid": 35568, "ts": 11084988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb9e0", "tid": 35568, "ts": 11085074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb1c0", "tid": 35568, "ts": 11085161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbc50", "tid": 35568, "ts": 11085248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb5d0", "tid": 35568, "ts": 11085334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc200", "tid": 35568, "ts": 11085421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7e90", "tid": 35568, "ts": 11085508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7190", "tid": 35568, "ts": 11085594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af78e0", "tid": 35568, "ts": 11085680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7cf0", "tid": 35568, "ts": 11085766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7dc0", "tid": 35568, "ts": 11085852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6970", "tid": 35568, "ts": 11085939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6560", "tid": 35568, "ts": 11086025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6b10", "tid": 35568, "ts": 11086111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7740", "tid": 35568, "ts": 11086197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af62f0", "tid": 35568, "ts": 11086284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6150", "tid": 35568, "ts": 11086370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9210", "tid": 35568, "ts": 11086456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8ed0", "tid": 35568, "ts": 11086542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af74d0", "tid": 35568, "ts": 11086629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af93b0", "tid": 35568, "ts": 11086715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6d80", "tid": 35568, "ts": 11086800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8510", "tid": 35568, "ts": 11086886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6700", "tid": 35568, "ts": 11086973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af75a0", "tid": 35568, "ts": 11087060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6f20", "tid": 35568, "ts": 11087145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8ac0", "tid": 35568, "ts": 11087232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8b90", "tid": 35568, "ts": 11087317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8370", "tid": 35568, "ts": 11087403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af89f0", "tid": 35568, "ts": 11087489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af79b0", "tid": 35568, "ts": 11087577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9070", "tid": 35568, "ts": 11087664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8100", "tid": 35568, "ts": 11087750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af82a0", "tid": 35568, "ts": 11087836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6e50", "tid": 35568, "ts": 11087923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af67d0", "tid": 35568, "ts": 11088008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8fa0", "tid": 35568, "ts": 11088094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af81d0", "tid": 35568, "ts": 11088181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6b80", "tid": 35568, "ts": 11088268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f53f0", "tid": 35568, "ts": 11088355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5180", "tid": 35568, "ts": 11088441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4bd0", "tid": 35568, "ts": 11088527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4a30", "tid": 35568, "ts": 11088613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4fe0", "tid": 35568, "ts": 11088699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4890", "tid": 35568, "ts": 11088786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6840", "tid": 35568, "ts": 11088872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4d70", "tid": 35568, "ts": 11088959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6770", "tid": 35568, "ts": 11089045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4210", "tid": 35568, "ts": 11089131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4140", "tid": 35568, "ts": 11089217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3e00", "tid": 35568, "ts": 11089303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f66a0", "tid": 35568, "ts": 11089390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6df0", "tid": 35568, "ts": 11089477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6290", "tid": 35568, "ts": 11089563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f54c0", "tid": 35568, "ts": 11089650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6360", "tid": 35568, "ts": 11089736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5f50", "tid": 35568, "ts": 11089823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3fa0", "tid": 35568, "ts": 11089909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f59a0", "tid": 35568, "ts": 11089995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5730", "tid": 35568, "ts": 11090081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6ab0", "tid": 35568, "ts": 11090166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4480", "tid": 35568, "ts": 11090253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6ec0", "tid": 35568, "ts": 11090339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5e80", "tid": 35568, "ts": 11090475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f43b0", "tid": 35568, "ts": 11090562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5ce0", "tid": 35568, "ts": 11090649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f61c0", "tid": 35568, "ts": 11090736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5660", "tid": 35568, "ts": 11090822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5a70", "tid": 35568, "ts": 11090909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1d80", "tid": 35568, "ts": 11090995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f18a0", "tid": 35568, "ts": 11091081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0c70", "tid": 35568, "ts": 11091167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3ac0", "tid": 35568, "ts": 11091253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3780", "tid": 35568, "ts": 11091339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f35e0", "tid": 35568, "ts": 11091426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1630", "tid": 35568, "ts": 11091512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1a40", "tid": 35568, "ts": 11091598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0d40", "tid": 35568, "ts": 11091685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2670", "tid": 35568, "ts": 11091771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3100", "tid": 35568, "ts": 11091857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f24d0", "tid": 35568, "ts": 11091944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2dc0", "tid": 35568, "ts": 11092030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1cb0", "tid": 35568, "ts": 11092116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2cf0", "tid": 35568, "ts": 11092202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2c20", "tid": 35568, "ts": 11092288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0ee0", "tid": 35568, "ts": 11092374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1220", "tid": 35568, "ts": 11092461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f32a0", "tid": 35568, "ts": 11092547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0ad0", "tid": 35568, "ts": 11092633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f12f0", "tid": 35568, "ts": 11092720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1be0", "tid": 35568, "ts": 11092807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2810", "tid": 35568, "ts": 11092892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f29b0", "tid": 35568, "ts": 11092979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0930", "tid": 35568, "ts": 11093065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0ba0", "tid": 35568, "ts": 11093152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f28e0", "tid": 35568, "ts": 11093238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f13c0", "tid": 35568, "ts": 11093324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f31d0", "tid": 35568, "ts": 11093410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2330", "tid": 35568, "ts": 11093497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1080", "tid": 35568, "ts": 11093584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2740", "tid": 35568, "ts": 11093670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee7e0", "tid": 35568, "ts": 11093755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee4a0", "tid": 35568, "ts": 11093842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed7a0", "tid": 35568, "ts": 11093928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef8f0", "tid": 35568, "ts": 11094015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0790", "tid": 35568, "ts": 11094101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eed90", "tid": 35568, "ts": 11094187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef680", "tid": 35568, "ts": 11094273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0520", "tid": 35568, "ts": 11094359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edef0", "tid": 35568, "ts": 11094445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee300", "tid": 35568, "ts": 11094532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eecc0", "tid": 35568, "ts": 11094619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef820", "tid": 35568, "ts": 11094728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eebf0", "tid": 35568, "ts": 11094814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edae0", "tid": 35568, "ts": 11094900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef410", "tid": 35568, "ts": 11094987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efd00", "tid": 35568, "ts": 11095074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efc30", "tid": 35568, "ts": 11095160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eea50", "tid": 35568, "ts": 11095246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee230", "tid": 35568, "ts": 11095333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f02b0", "tid": 35568, "ts": 11095419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0110", "tid": 35568, "ts": 11095505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed530", "tid": 35568, "ts": 11095593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef270", "tid": 35568, "ts": 11095679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eeb20", "tid": 35568, "ts": 11095765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f06c0", "tid": 35568, "ts": 11095852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eee60", "tid": 35568, "ts": 11095938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef1a0", "tid": 35568, "ts": 11096025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edd50", "tid": 35568, "ts": 11096111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef000", "tid": 35568, "ts": 11096197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee980", "tid": 35568, "ts": 11096284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef9c0", "tid": 35568, "ts": 11096369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ede20", "tid": 35568, "ts": 11096456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed1f0", "tid": 35568, "ts": 11096543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebc00", "tid": 35568, "ts": 11096630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eba60", "tid": 35568, "ts": 11096716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed050", "tid": 35568, "ts": 11096802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb580", "tid": 35568, "ts": 11096888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecf80", "tid": 35568, "ts": 11096974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb7f0", "tid": 35568, "ts": 11097061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec690", "tid": 35568, "ts": 11097147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb720", "tid": 35568, "ts": 11097234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb0a0", "tid": 35568, "ts": 11097320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecd10", "tid": 35568, "ts": 11097406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec5c0", "tid": 35568, "ts": 11097491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec010", "tid": 35568, "ts": 11097577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eae30", "tid": 35568, "ts": 11097664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec9d0", "tid": 35568, "ts": 11097751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebda0", "tid": 35568, "ts": 11097837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea2d0", "tid": 35568, "ts": 11097923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec1b0", "tid": 35568, "ts": 11098009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed390", "tid": 35568, "ts": 11098095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eabc0", "tid": 35568, "ts": 11098182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea470", "tid": 35568, "ts": 11098267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb650", "tid": 35568, "ts": 11098354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb8c0", "tid": 35568, "ts": 11098441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea6e0", "tid": 35568, "ts": 11098527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea950", "tid": 35568, "ts": 11098627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eceb0", "tid": 35568, "ts": 11098715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed2c0", "tid": 35568, "ts": 11098801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec4f0", "tid": 35568, "ts": 11098887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb3e0", "tid": 35568, "ts": 11098974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea610", "tid": 35568, "ts": 11099060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea540", "tid": 35568, "ts": 11099146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8730", "tid": 35568, "ts": 11099232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8590", "tid": 35568, "ts": 11099317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e80b0", "tid": 35568, "ts": 11099404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7ca0", "tid": 35568, "ts": 11099490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7b00", "tid": 35568, "ts": 11099577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e83f0", "tid": 35568, "ts": 11099663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7140", "tid": 35568, "ts": 11099749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7070", "tid": 35568, "ts": 11099835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8320", "tid": 35568, "ts": 11099921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8800", "tid": 35568, "ts": 11100007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7620", "tid": 35568, "ts": 11100094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9c50", "tid": 35568, "ts": 11100180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7d70", "tid": 35568, "ts": 11100267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6d30", "tid": 35568, "ts": 11100354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6fa0", "tid": 35568, "ts": 11100440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7e40", "tid": 35568, "ts": 11100526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8f50", "tid": 35568, "ts": 11100612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7960", "tid": 35568, "ts": 11100697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7550", "tid": 35568, "ts": 11100784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e89a0", "tid": 35568, "ts": 11100870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9ab0", "tid": 35568, "ts": 11100956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8a70", "tid": 35568, "ts": 11101042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9360", "tid": 35568, "ts": 11101128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e96a0", "tid": 35568, "ts": 11101215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8e80", "tid": 35568, "ts": 11101301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9500", "tid": 35568, "ts": 11101387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7890", "tid": 35568, "ts": 11101474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e88d0", "tid": 35568, "ts": 11101560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9910", "tid": 35568, "ts": 11101646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8b40", "tid": 35568, "ts": 11101732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e90f0", "tid": 35568, "ts": 11101820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9020", "tid": 35568, "ts": 11101906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e43c0", "tid": 35568, "ts": 11101992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4080", "tid": 35568, "ts": 11102078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3ee0", "tid": 35568, "ts": 11102165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3d40", "tid": 35568, "ts": 11102250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3ba0", "tid": 35568, "ts": 11102336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e42f0", "tid": 35568, "ts": 11102422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3930", "tid": 35568, "ts": 11102509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6b90", "tid": 35568, "ts": 11102595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4b10", "tid": 35568, "ts": 11102680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6ac0", "tid": 35568, "ts": 11102767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5400", "tid": 35568, "ts": 11102854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3ad0", "tid": 35568, "ts": 11102940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5190", "tid": 35568, "ts": 11103026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6100", "tid": 35568, "ts": 11103112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6030", "tid": 35568, "ts": 11103199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e50c0", "tid": 35568, "ts": 11103285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6440", "tid": 35568, "ts": 11103371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4cb0", "tid": 35568, "ts": 11103457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5330", "tid": 35568, "ts": 11103544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4220", "tid": 35568, "ts": 11103630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e69f0", "tid": 35568, "ts": 11103716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5b50", "tid": 35568, "ts": 11103803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5f60", "tid": 35568, "ts": 11103889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6370", "tid": 35568, "ts": 11103975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e48a0", "tid": 35568, "ts": 11104062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5cf0", "tid": 35568, "ts": 11104148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e47d0", "tid": 35568, "ts": 11104235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5a80", "tid": 35568, "ts": 11104321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6510", "tid": 35568, "ts": 11104407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4630", "tid": 35568, "ts": 11104494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4560", "tid": 35568, "ts": 11104580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5dc0", "tid": 35568, "ts": 11104666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1f30", "tid": 35568, "ts": 11104752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e17e0", "tid": 35568, "ts": 11104838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2000", "tid": 35568, "ts": 11104924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0ae0", "tid": 35568, "ts": 11105010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1640", "tid": 35568, "ts": 11105096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e32b0", "tid": 35568, "ts": 11105182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e18b0", "tid": 35568, "ts": 11105268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e14a0", "tid": 35568, "ts": 11105355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3110", "tid": 35568, "ts": 11105441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0600", "tid": 35568, "ts": 11105528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1090", "tid": 35568, "ts": 11105614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2d00", "tid": 35568, "ts": 11105701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1bf0", "tid": 35568, "ts": 11105787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e21a0", "tid": 35568, "ts": 11105873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e25b0", "tid": 35568, "ts": 11105960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0940", "tid": 35568, "ts": 11106110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3380", "tid": 35568, "ts": 11106198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e28f0", "tid": 35568, "ts": 11106284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e20d0", "tid": 35568, "ts": 11106371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3450", "tid": 35568, "ts": 11106457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1b20", "tid": 35568, "ts": 11106543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2a90", "tid": 35568, "ts": 11106629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2ea0", "tid": 35568, "ts": 11106716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2270", "tid": 35568, "ts": 11106802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0d50", "tid": 35568, "ts": 11106889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3520", "tid": 35568, "ts": 11106976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0c80", "tid": 35568, "ts": 11107063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2dd0", "tid": 35568, "ts": 11107149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0870", "tid": 35568, "ts": 11107235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1300", "tid": 35568, "ts": 11107321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2410", "tid": 35568, "ts": 11107408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1a50", "tid": 35568, "ts": 11107494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de3e0", "tid": 35568, "ts": 11107580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de240", "tid": 35568, "ts": 11107666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dff80", "tid": 35568, "ts": 11107753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df4f0", "tid": 35568, "ts": 11107839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df420", "tid": 35568, "ts": 11107926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df0e0", "tid": 35568, "ts": 11108012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd200", "tid": 35568, "ts": 11108099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd130", "tid": 35568, "ts": 11108185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0460", "tid": 35568, "ts": 11108272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0390", "tid": 35568, "ts": 11108358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfde0", "tid": 35568, "ts": 11108446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfd10", "tid": 35568, "ts": 11108531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33def40", "tid": 35568, "ts": 11108618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dec00", "tid": 35568, "ts": 11108705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33deb30", "tid": 35568, "ts": 11108792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e02c0", "tid": 35568, "ts": 11108878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df9d0", "tid": 35568, "ts": 11108965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddbc0", "tid": 35568, "ts": 11109051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd540", "tid": 35568, "ts": 11109137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfc40", "tid": 35568, "ts": 11109223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd610", "tid": 35568, "ts": 11109310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33deda0", "tid": 35568, "ts": 11109397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de650", "tid": 35568, "ts": 11109484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddc90", "tid": 35568, "ts": 11109569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df5c0", "tid": 35568, "ts": 11109655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e01f0", "tid": 35568, "ts": 11109741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df010", "tid": 35568, "ts": 11109829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd470", "tid": 35568, "ts": 11109916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de720", "tid": 35568, "ts": 11110003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddf00", "tid": 35568, "ts": 11110089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df760", "tid": 35568, "ts": 11110176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dda20", "tid": 35568, "ts": 11110262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9e00", "tid": 35568, "ts": 11110348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcf90", "tid": 35568, "ts": 11110434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcc50", "tid": 35568, "ts": 11110520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc910", "tid": 35568, "ts": 11110607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcb80", "tid": 35568, "ts": 11110693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbce0", "tid": 35568, "ts": 11110780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da7c0", "tid": 35568, "ts": 11110867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc0f0", "tid": 35568, "ts": 11110953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db8d0", "tid": 35568, "ts": 11111040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db800", "tid": 35568, "ts": 11111126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da3b0", "tid": 35568, "ts": 11111213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db180", "tid": 35568, "ts": 11111300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbc10", "tid": 35568, "ts": 11111386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcdf0", "tid": 35568, "ts": 11111472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dafe0", "tid": 35568, "ts": 11111559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbf50", "tid": 35568, "ts": 11111645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dba70", "tid": 35568, "ts": 11111731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33daf10", "tid": 35568, "ts": 11111817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db250", "tid": 35568, "ts": 11111904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc770", "tid": 35568, "ts": 11111990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbe80", "tid": 35568, "ts": 11112077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc6a0", "tid": 35568, "ts": 11112163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dad70", "tid": 35568, "ts": 11112250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33daa30", "tid": 35568, "ts": 11112335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da070", "tid": 35568, "ts": 11112422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db3f0", "tid": 35568, "ts": 11112508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dabd0", "tid": 35568, "ts": 11112595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da210", "tid": 35568, "ts": 11112682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcd20", "tid": 35568, "ts": 11112769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc1c0", "tid": 35568, "ts": 11112855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dab00", "tid": 35568, "ts": 11112943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da480", "tid": 35568, "ts": 11113029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8330", "tid": 35568, "ts": 11113115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d72f0", "tid": 35568, "ts": 11113201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d80c0", "tid": 35568, "ts": 11113289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8740", "tid": 35568, "ts": 11113375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8260", "tid": 35568, "ts": 11113461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8b50", "tid": 35568, "ts": 11113547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7e50", "tid": 35568, "ts": 11113634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6ee0", "tid": 35568, "ts": 11113721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d95e0", "tid": 35568, "ts": 11113807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7b10", "tid": 35568, "ts": 11113894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7a40", "tid": 35568, "ts": 11113982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d85a0", "tid": 35568, "ts": 11114068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9100", "tid": 35568, "ts": 11114155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7970", "tid": 35568, "ts": 11114241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9030", "tid": 35568, "ts": 11114328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d78a0", "tid": 35568, "ts": 11114414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8f60", "tid": 35568, "ts": 11114501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8400", "tid": 35568, "ts": 11114587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7700", "tid": 35568, "ts": 11114675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6ba0", "tid": 35568, "ts": 11114762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6930", "tid": 35568, "ts": 11114849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d77d0", "tid": 35568, "ts": 11114934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9780", "tid": 35568, "ts": 11115021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8dc0", "tid": 35568, "ts": 11115108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7560", "tid": 35568, "ts": 11115194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7490", "tid": 35568, "ts": 11115280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7080", "tid": 35568, "ts": 11115368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9c60", "tid": 35568, "ts": 11115454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8cf0", "tid": 35568, "ts": 11115540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9370", "tid": 35568, "ts": 11115626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6fb0", "tid": 35568, "ts": 11115713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8c20", "tid": 35568, "ts": 11115799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5820", "tid": 35568, "ts": 11115885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5680", "tid": 35568, "ts": 11115971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3ae0", "tid": 35568, "ts": 11116058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4f30", "tid": 35568, "ts": 11116145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4cc0", "tid": 35568, "ts": 11116231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d50d0", "tid": 35568, "ts": 11116316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4bf0", "tid": 35568, "ts": 11116403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4b20", "tid": 35568, "ts": 11116489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4d90", "tid": 35568, "ts": 11116575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3a10", "tid": 35568, "ts": 11116661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6860", "tid": 35568, "ts": 11116749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4640", "tid": 35568, "ts": 11116835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6520", "tid": 35568, "ts": 11116921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6450", "tid": 35568, "ts": 11117006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3c80", "tid": 35568, "ts": 11117093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5340", "tid": 35568, "ts": 11117179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3d50", "tid": 35568, "ts": 11117265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6380", "tid": 35568, "ts": 11117353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5f70", "tid": 35568, "ts": 11117440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5ea0", "tid": 35568, "ts": 11117527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d47e0", "tid": 35568, "ts": 11117614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3940", "tid": 35568, "ts": 11117743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5a90", "tid": 35568, "ts": 11117831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d58f0", "tid": 35568, "ts": 11117917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d44a0", "tid": 35568, "ts": 11118004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d66c0", "tid": 35568, "ts": 11118090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3bb0", "tid": 35568, "ts": 11118176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3e20", "tid": 35568, "ts": 11118263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5000", "tid": 35568, "ts": 11118348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5270", "tid": 35568, "ts": 11118434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4090", "tid": 35568, "ts": 11118520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5c30", "tid": 35568, "ts": 11118607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1da0", "tid": 35568, "ts": 11118693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d13e0", "tid": 35568, "ts": 11118780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1170", "tid": 35568, "ts": 11118866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0c90", "tid": 35568, "ts": 11118953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0a20", "tid": 35568, "ts": 11119039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d03a0", "tid": 35568, "ts": 11119125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0200", "tid": 35568, "ts": 11119212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d06e0", "tid": 35568, "ts": 11119299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1990", "tid": 35568, "ts": 11119385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3120", "tid": 35568, "ts": 11119472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3050", "tid": 35568, "ts": 11119559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d10a0", "tid": 35568, "ts": 11119645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2f80", "tid": 35568, "ts": 11119730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1e70", "tid": 35568, "ts": 11119816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d20e0", "tid": 35568, "ts": 11119903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3460", "tid": 35568, "ts": 11119990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0950", "tid": 35568, "ts": 11120076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d18c0", "tid": 35568, "ts": 11120163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2d10", "tid": 35568, "ts": 11120249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1f40", "tid": 35568, "ts": 11120335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2280", "tid": 35568, "ts": 11120422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0e30", "tid": 35568, "ts": 11120508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2690", "tid": 35568, "ts": 11120595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2900", "tid": 35568, "ts": 11120681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0540", "tid": 35568, "ts": 11120767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2830", "tid": 35568, "ts": 11120854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0fd0", "tid": 35568, "ts": 11120942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d29d0", "tid": 35568, "ts": 11121029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d24f0", "tid": 35568, "ts": 11121114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1580", "tid": 35568, "ts": 11121200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3390", "tid": 35568, "ts": 11121286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1cd0", "tid": 35568, "ts": 11121372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce8d0", "tid": 35568, "ts": 11121459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce180", "tid": 35568, "ts": 11121545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdd70", "tid": 35568, "ts": 11121666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf9e0", "tid": 35568, "ts": 11121783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf910", "tid": 35568, "ts": 11121870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd7c0", "tid": 35568, "ts": 11121956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf500", "tid": 35568, "ts": 11122042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cedb0", "tid": 35568, "ts": 11122128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd2e0", "tid": 35568, "ts": 11122213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd140", "tid": 35568, "ts": 11122300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce660", "tid": 35568, "ts": 11122387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cece0", "tid": 35568, "ts": 11122473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd960", "tid": 35568, "ts": 11122559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cef50", "tid": 35568, "ts": 11122646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf840", "tid": 35568, "ts": 11122732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd210", "tid": 35568, "ts": 11122819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cec10", "tid": 35568, "ts": 11122905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccfa0", "tid": 35568, "ts": 11122990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd620", "tid": 35568, "ts": 11123077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cced0", "tid": 35568, "ts": 11123164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfc50", "tid": 35568, "ts": 11123250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce4c0", "tid": 35568, "ts": 11123336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cce00", "tid": 35568, "ts": 11123423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cea70", "tid": 35568, "ts": 11123509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfb80", "tid": 35568, "ts": 11123595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd550", "tid": 35568, "ts": 11123681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf5d0", "tid": 35568, "ts": 11123768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce250", "tid": 35568, "ts": 11123855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce9a0", "tid": 35568, "ts": 11123941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cff90", "tid": 35568, "ts": 11124027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf1c0", "tid": 35568, "ts": 11124114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd3b0", "tid": 35568, "ts": 11124201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb670", "tid": 35568, "ts": 11124287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb330", "tid": 35568, "ts": 11124373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb0c0", "tid": 35568, "ts": 11124460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cab10", "tid": 35568, "ts": 11124547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9c70", "tid": 35568, "ts": 11124633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33caa40", "tid": 35568, "ts": 11124719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9e10", "tid": 35568, "ts": 11124805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cae50", "tid": 35568, "ts": 11124891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc850", "tid": 35568, "ts": 11124977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc780", "tid": 35568, "ts": 11125064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cacb0", "tid": 35568, "ts": 11125151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9a00", "tid": 35568, "ts": 11125238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccac0", "tid": 35568, "ts": 11125325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc6b0", "tid": 35568, "ts": 11125412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc5e0", "tid": 35568, "ts": 11125499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb810", "tid": 35568, "ts": 11125585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cabe0", "tid": 35568, "ts": 11125671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca700", "tid": 35568, "ts": 11125757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33caf20", "tid": 35568, "ts": 11125843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca080", "tid": 35568, "ts": 11125929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb190", "tid": 35568, "ts": 11126016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33caff0", "tid": 35568, "ts": 11126103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca3c0", "tid": 35568, "ts": 11126189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca630", "tid": 35568, "ts": 11126276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc100", "tid": 35568, "ts": 11126362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc030", "tid": 35568, "ts": 11126448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca560", "tid": 35568, "ts": 11126534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbe90", "tid": 35568, "ts": 11126621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccc60", "tid": 35568, "ts": 11126708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb5a0", "tid": 35568, "ts": 11126795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbcf0", "tid": 35568, "ts": 11126881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbdc0", "tid": 35568, "ts": 11126967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8820", "tid": 35568, "ts": 11127053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c85b0", "tid": 35568, "ts": 11127140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7f30", "tid": 35568, "ts": 11127226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7980", "tid": 35568, "ts": 11127313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c78b0", "tid": 35568, "ts": 11127399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c77e0", "tid": 35568, "ts": 11127485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6d50", "tid": 35568, "ts": 11127571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7710", "tid": 35568, "ts": 11127657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7570", "tid": 35568, "ts": 11127743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6bb0", "tid": 35568, "ts": 11127829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c96c0", "tid": 35568, "ts": 11127916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9380", "tid": 35568, "ts": 11128002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8000", "tid": 35568, "ts": 11128088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c95f0", "tid": 35568, "ts": 11128174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7b20", "tid": 35568, "ts": 11128260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6940", "tid": 35568, "ts": 11128347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8dd0", "tid": 35568, "ts": 11128433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6870", "tid": 35568, "ts": 11128519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c80d0", "tid": 35568, "ts": 11128606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6ae0", "tid": 35568, "ts": 11128692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7300", "tid": 35568, "ts": 11128778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8a90", "tid": 35568, "ts": 11128865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7cc0", "tid": 35568, "ts": 11128952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8d00", "tid": 35568, "ts": 11129038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c67a0", "tid": 35568, "ts": 11129125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c89c0", "tid": 35568, "ts": 11129212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8ea0", "tid": 35568, "ts": 11129299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7640", "tid": 35568, "ts": 11129386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c74a0", "tid": 35568, "ts": 11129472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8c30", "tid": 35568, "ts": 11129559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6530", "tid": 35568, "ts": 11129646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c88f0", "tid": 35568, "ts": 11129733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3d60", "tid": 35568, "ts": 11129818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3c90", "tid": 35568, "ts": 11129905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c37b0", "tid": 35568, "ts": 11129991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3610", "tid": 35568, "ts": 11130078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4da0", "tid": 35568, "ts": 11130165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3470", "tid": 35568, "ts": 11130250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3200", "tid": 35568, "ts": 11130337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3130", "tid": 35568, "ts": 11130423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4cd0", "tid": 35568, "ts": 11130509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5eb0", "tid": 35568, "ts": 11130595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5830", "tid": 35568, "ts": 11130682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5690", "tid": 35568, "ts": 11130768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4b30", "tid": 35568, "ts": 11130854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4990", "tid": 35568, "ts": 11130941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5c40", "tid": 35568, "ts": 11131027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c61f0", "tid": 35568, "ts": 11131113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4580", "tid": 35568, "ts": 11131200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5b70", "tid": 35568, "ts": 11131285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4f40", "tid": 35568, "ts": 11131372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5280", "tid": 35568, "ts": 11131458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c44b0", "tid": 35568, "ts": 11131545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4310", "tid": 35568, "ts": 11131631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5d10", "tid": 35568, "ts": 11131718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4650", "tid": 35568, "ts": 11131804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5420", "tid": 35568, "ts": 11131890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c43e0", "tid": 35568, "ts": 11131976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5aa0", "tid": 35568, "ts": 11132063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4170", "tid": 35568, "ts": 11132150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c40a0", "tid": 35568, "ts": 11132236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c50e0", "tid": 35568, "ts": 11132322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c59d0", "tid": 35568, "ts": 11132409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5010", "tid": 35568, "ts": 11132496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1b40", "tid": 35568, "ts": 11132582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1180", "tid": 35568, "ts": 11132668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0d70", "tid": 35568, "ts": 11132755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2f90", "tid": 35568, "ts": 11132842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2ab0", "tid": 35568, "ts": 11132928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0ca0", "tid": 35568, "ts": 11133014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1800", "tid": 35568, "ts": 11133101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c29e0", "tid": 35568, "ts": 11133187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1730", "tid": 35568, "ts": 11133273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1db0", "tid": 35568, "ts": 11133360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1660", "tid": 35568, "ts": 11133446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2910", "tid": 35568, "ts": 11133533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2840", "tid": 35568, "ts": 11133618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0550", "tid": 35568, "ts": 11133705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2290", "tid": 35568, "ts": 11133792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2770", "tid": 35568, "ts": 11133878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c21c0", "tid": 35568, "ts": 11133964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2020", "tid": 35568, "ts": 11134050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c14c0", "tid": 35568, "ts": 11134137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c26a0", "tid": 35568, "ts": 11134223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0fe0", "tid": 35568, "ts": 11134309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c25d0", "tid": 35568, "ts": 11134396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0210", "tid": 35568, "ts": 11134482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1c10", "tid": 35568, "ts": 11134569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0140", "tid": 35568, "ts": 11134655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c20f0", "tid": 35568, "ts": 11134742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2430", "tid": 35568, "ts": 11134829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2d20", "tid": 35568, "ts": 11134915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0960", "tid": 35568, "ts": 11135001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0620", "tid": 35568, "ts": 11135088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bffa0", "tid": 35568, "ts": 11135174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0890", "tid": 35568, "ts": 11135261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be9b0", "tid": 35568, "ts": 11135348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be400", "tid": 35568, "ts": 11135434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfac0", "tid": 35568, "ts": 11135522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be260", "tid": 35568, "ts": 11135607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdd80", "tid": 35568, "ts": 11135693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdbe0", "tid": 35568, "ts": 11135779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcad0", "tid": 35568, "ts": 11135866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf780", "tid": 35568, "ts": 11135952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be0c0", "tid": 35568, "ts": 11136038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdb10", "tid": 35568, "ts": 11136124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bedc0", "tid": 35568, "ts": 11136212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bca00", "tid": 35568, "ts": 11136298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd560", "tid": 35568, "ts": 11136385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdff0", "tid": 35568, "ts": 11136471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf5e0", "tid": 35568, "ts": 11136558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc930", "tid": 35568, "ts": 11136644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bce10", "tid": 35568, "ts": 11136731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfc60", "tid": 35568, "ts": 11136817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd080", "tid": 35568, "ts": 11136904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcd40", "tid": 35568, "ts": 11136990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bea80", "tid": 35568, "ts": 11137076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be810", "tid": 35568, "ts": 11137162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd630", "tid": 35568, "ts": 11137269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdf20", "tid": 35568, "ts": 11137399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf370", "tid": 35568, "ts": 11137486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcba0", "tid": 35568, "ts": 11137573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bef60", "tid": 35568, "ts": 11137660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd8a0", "tid": 35568, "ts": 11137747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bec20", "tid": 35568, "ts": 11137834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcee0", "tid": 35568, "ts": 11137919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bda40", "tid": 35568, "ts": 11138006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd970", "tid": 35568, "ts": 11138092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbd00", "tid": 35568, "ts": 11138178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb750", "tid": 35568, "ts": 11138265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb5b0", "tid": 35568, "ts": 11138352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb340", "tid": 35568, "ts": 11138439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33baf30", "tid": 35568, "ts": 11138525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb680", "tid": 35568, "ts": 11138611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bacc0", "tid": 35568, "ts": 11138698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9e20", "tid": 35568, "ts": 11138784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc520", "tid": 35568, "ts": 11138871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9ae0", "tid": 35568, "ts": 11138957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9bb0", "tid": 35568, "ts": 11139045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9940", "tid": 35568, "ts": 11139131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc790", "tid": 35568, "ts": 11139218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc2b0", "tid": 35568, "ts": 11139305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33babf0", "tid": 35568, "ts": 11139392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc5f0", "tid": 35568, "ts": 11139478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc040", "tid": 35568, "ts": 11139565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbea0", "tid": 35568, "ts": 11139651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb1a0", "tid": 35568, "ts": 11139738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9530", "tid": 35568, "ts": 11139826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbdd0", "tid": 35568, "ts": 11139913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc1e0", "tid": 35568, "ts": 11139999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b96d0", "tid": 35568, "ts": 11140087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33baa50", "tid": 35568, "ts": 11140173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc860", "tid": 35568, "ts": 11140260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc380", "tid": 35568, "ts": 11140347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9d50", "tid": 35568, "ts": 11140434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc450", "tid": 35568, "ts": 11140520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba570", "tid": 35568, "ts": 11140607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba7e0", "tid": 35568, "ts": 11140694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc110", "tid": 35568, "ts": 11140781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbb60", "tid": 35568, "ts": 11140868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b70a0", "tid": 35568, "ts": 11140955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6470", "tid": 35568, "ts": 11141041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b66e0", "tid": 35568, "ts": 11141128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8690", "tid": 35568, "ts": 11141215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7da0", "tid": 35568, "ts": 11141301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6200", "tid": 35568, "ts": 11141387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6f00", "tid": 35568, "ts": 11141475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6610", "tid": 35568, "ts": 11141561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8830", "tid": 35568, "ts": 11141649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9120", "tid": 35568, "ts": 11141735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8d10", "tid": 35568, "ts": 11141824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7b30", "tid": 35568, "ts": 11141910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7990", "tid": 35568, "ts": 11141997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6a20", "tid": 35568, "ts": 11142083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7580", "tid": 35568, "ts": 11142170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b67b0", "tid": 35568, "ts": 11142256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b62d0", "tid": 35568, "ts": 11142343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b80e0", "tid": 35568, "ts": 11142430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6fd0", "tid": 35568, "ts": 11142517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b63a0", "tid": 35568, "ts": 11142603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b78c0", "tid": 35568, "ts": 11142690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b77f0", "tid": 35568, "ts": 11142776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8c40", "tid": 35568, "ts": 11142863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b89d0", "tid": 35568, "ts": 11142950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8eb0", "tid": 35568, "ts": 11143037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6c90", "tid": 35568, "ts": 11143123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8010", "tid": 35568, "ts": 11143211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8b70", "tid": 35568, "ts": 11143298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8aa0", "tid": 35568, "ts": 11143384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8de0", "tid": 35568, "ts": 11143471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7720", "tid": 35568, "ts": 11143557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7e70", "tid": 35568, "ts": 11143644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066de0", "tid": 35568, "ts": 11143730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068cc0", "tid": 35568, "ts": 11143816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068b20", "tid": 35568, "ts": 11143903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068980", "tid": 35568, "ts": 11143990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30665c0", "tid": 35568, "ts": 11144077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069410", "tid": 35568, "ts": 11144163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066d10", "tid": 35568, "ts": 11144250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069340", "tid": 35568, "ts": 11144337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30688b0", "tid": 35568, "ts": 11144424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068090", "tid": 35568, "ts": 11144510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067a10", "tid": 35568, "ts": 11144598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067600", "tid": 35568, "ts": 11144684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30683d0", "tid": 35568, "ts": 11144771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066f80", "tid": 35568, "ts": 11144858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067530", "tid": 35568, "ts": 11144945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066c40", "tid": 35568, "ts": 11145032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067e20", "tid": 35568, "ts": 11145119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30660e0", "tid": 35568, "ts": 11145206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066350", "tid": 35568, "ts": 11145293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30669d0", "tid": 35568, "ts": 11145379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30672c0", "tid": 35568, "ts": 11145466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067bb0", "tid": 35568, "ts": 11145552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069000", "tid": 35568, "ts": 11145639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066eb0", "tid": 35568, "ts": 11145726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067fc0", "tid": 35568, "ts": 11145812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30671f0", "tid": 35568, "ts": 11145899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068e60", "tid": 35568, "ts": 11145986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30676d0", "tid": 35568, "ts": 11146073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068f30", "tid": 35568, "ts": 11146159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068570", "tid": 35568, "ts": 11146245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069270", "tid": 35568, "ts": 11146332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068300", "tid": 35568, "ts": 11146418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30835b0", "tid": 35568, "ts": 11146505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30858a0", "tid": 35568, "ts": 11146591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085a40", "tid": 35568, "ts": 11146678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084c70", "tid": 35568, "ts": 11146764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084ad0", "tid": 35568, "ts": 11146850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30852f0", "tid": 35568, "ts": 11146937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084040", "tid": 35568, "ts": 11147024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085630", "tid": 35568, "ts": 11147111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30846c0", "tid": 35568, "ts": 11147197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084a00", "tid": 35568, "ts": 11147285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084520", "tid": 35568, "ts": 11147372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30857d0", "tid": 35568, "ts": 11147458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084380", "tid": 35568, "ts": 11147544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085220", "tid": 35568, "ts": 11147630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30838f0", "tid": 35568, "ts": 11147717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083820", "tid": 35568, "ts": 11147803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083dd0", "tid": 35568, "ts": 11147890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085d80", "tid": 35568, "ts": 11147976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083d00", "tid": 35568, "ts": 11148063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30841e0", "tid": 35568, "ts": 11148149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30834e0", "tid": 35568, "ts": 11148236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083c30", "tid": 35568, "ts": 11148322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085080", "tid": 35568, "ts": 11148409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30845f0", "tid": 35568, "ts": 11148495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083b60", "tid": 35568, "ts": 11148582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084fb0", "tid": 35568, "ts": 11148669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085b10", "tid": 35568, "ts": 11148756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30827e0", "tid": 35568, "ts": 11148843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30823d0", "tid": 35568, "ts": 11148929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082160", "tid": 35568, "ts": 11149016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081e20", "tid": 35568, "ts": 11149103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081ae0", "tid": 35568, "ts": 11149189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082570", "tid": 35568, "ts": 11149276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081870", "tid": 35568, "ts": 11149362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081390", "tid": 35568, "ts": 11149449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080eb0", "tid": 35568, "ts": 11149536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080de0", "tid": 35568, "ts": 11149623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080c40", "tid": 35568, "ts": 11149709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30809d0", "tid": 35568, "ts": 11149796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30816d0", "tid": 35568, "ts": 11149882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081ef0", "tid": 35568, "ts": 11149969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30812c0", "tid": 35568, "ts": 11150055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080420", "tid": 35568, "ts": 11150142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30800e0", "tid": 35568, "ts": 11150228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080aa0", "tid": 35568, "ts": 11150314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083340", "tid": 35568, "ts": 11150401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081600", "tid": 35568, "ts": 11150487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080350", "tid": 35568, "ts": 11150573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082d90", "tid": 35568, "ts": 11150660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082bf0", "tid": 35568, "ts": 11150746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30830d0", "tid": 35568, "ts": 11150833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082b20", "tid": 35568, "ts": 11150919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081bb0", "tid": 35568, "ts": 11151005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30811f0", "tid": 35568, "ts": 11151091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083000", "tid": 35568, "ts": 11151178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30824a0", "tid": 35568, "ts": 11151265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081530", "tid": 35568, "ts": 11151351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081120", "tid": 35568, "ts": 11151438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081460", "tid": 35568, "ts": 11151525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f990", "tid": 35568, "ts": 11151612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f7f0", "tid": 35568, "ts": 11151699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f4b0", "tid": 35568, "ts": 11151785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f170", "tid": 35568, "ts": 11151872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f0a0", "tid": 35568, "ts": 11151958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e130", "tid": 35568, "ts": 11152044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d020", "tid": 35568, "ts": 11152131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f720", "tid": 35568, "ts": 11152219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307df90", "tid": 35568, "ts": 11152306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ee30", "tid": 35568, "ts": 11152393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ed60", "tid": 35568, "ts": 11152481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e880", "tid": 35568, "ts": 11152611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e6e0", "tid": 35568, "ts": 11152701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f650", "tid": 35568, "ts": 11152788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d910", "tid": 35568, "ts": 11152897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d840", "tid": 35568, "ts": 11152998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d5d0", "tid": 35568, "ts": 11153084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ce80", "tid": 35568, "ts": 11153171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fda0", "tid": 35568, "ts": 11153258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e7b0", "tid": 35568, "ts": 11153344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fcd0", "tid": 35568, "ts": 11153430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e610", "tid": 35568, "ts": 11153517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e470", "tid": 35568, "ts": 11153603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e950", "tid": 35568, "ts": 11153690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ea20", "tid": 35568, "ts": 11153776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d290", "tid": 35568, "ts": 11153862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cce0", "tid": 35568, "ts": 11153948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d770", "tid": 35568, "ts": 11154035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e2d0", "tid": 35568, "ts": 11154121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ebc0", "tid": 35568, "ts": 11154208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fc00", "tid": 35568, "ts": 11154294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dab0", "tid": 35568, "ts": 11154381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b620", "tid": 35568, "ts": 11154467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b480", "tid": 35568, "ts": 11154554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b3b0", "tid": 35568, "ts": 11154640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079a80", "tid": 35568, "ts": 11154727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ab90", "tid": 35568, "ts": 11154814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bb00", "tid": 35568, "ts": 11154900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ac60", "tid": 35568, "ts": 11154986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c4c0", "tid": 35568, "ts": 11155073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c320", "tid": 35568, "ts": 11155159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a850", "tid": 35568, "ts": 11155246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a780", "tid": 35568, "ts": 11155332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cb40", "tid": 35568, "ts": 11155418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a5e0", "tid": 35568, "ts": 11155504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ae00", "tid": 35568, "ts": 11155590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c800", "tid": 35568, "ts": 11155676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307aac0", "tid": 35568, "ts": 11155763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c9a0", "tid": 35568, "ts": 11155849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c180", "tid": 35568, "ts": 11155935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307afa0", "tid": 35568, "ts": 11156022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079e90", "tid": 35568, "ts": 11156108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c8d0", "tid": 35568, "ts": 11156195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307aed0", "tid": 35568, "ts": 11156281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30798e0", "tid": 35568, "ts": 11156367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ba30", "tid": 35568, "ts": 11156455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b890", "tid": 35568, "ts": 11156541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079b50", "tid": 35568, "ts": 11156628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a510", "tid": 35568, "ts": 11156714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c660", "tid": 35568, "ts": 11156801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bd70", "tid": 35568, "ts": 11156887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bca0", "tid": 35568, "ts": 11156974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a9f0", "tid": 35568, "ts": 11157061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bbd0", "tid": 35568, "ts": 11157147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079330", "tid": 35568, "ts": 11157233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078b10", "tid": 35568, "ts": 11157319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077ee0", "tid": 35568, "ts": 11157406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076820", "tid": 35568, "ts": 11157492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078970", "tid": 35568, "ts": 11157578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077d40", "tid": 35568, "ts": 11157664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078f20", "tid": 35568, "ts": 11157750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077930", "tid": 35568, "ts": 11157837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077c70", "tid": 35568, "ts": 11157923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30771e0", "tid": 35568, "ts": 11158009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078d80", "tid": 35568, "ts": 11158096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30783c0", "tid": 35568, "ts": 11158183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077110", "tid": 35568, "ts": 11158270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076b60", "tid": 35568, "ts": 11158356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077520", "tid": 35568, "ts": 11158442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077860", "tid": 35568, "ts": 11158529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30768f0", "tid": 35568, "ts": 11158615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077790", "tid": 35568, "ts": 11158701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076f70", "tid": 35568, "ts": 11158788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077a00", "tid": 35568, "ts": 11158874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30795a0", "tid": 35568, "ts": 11158960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30788a0", "tid": 35568, "ts": 11159046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30775f0", "tid": 35568, "ts": 11159132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077e10", "tid": 35568, "ts": 11159218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076ea0", "tid": 35568, "ts": 11159304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30782f0", "tid": 35568, "ts": 11159390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079810", "tid": 35568, "ts": 11159477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30765b0", "tid": 35568, "ts": 11159563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30787d0", "tid": 35568, "ts": 11159650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30769c0", "tid": 35568, "ts": 11159736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30772b0", "tid": 35568, "ts": 11159823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30764e0", "tid": 35568, "ts": 11159910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074ef0", "tid": 35568, "ts": 11159997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074d50", "tid": 35568, "ts": 11160084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074390", "tid": 35568, "ts": 11160170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074600", "tid": 35568, "ts": 11160256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073de0", "tid": 35568, "ts": 11160343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073830", "tid": 35568, "ts": 11160429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076270", "tid": 35568, "ts": 11160515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075230", "tid": 35568, "ts": 11160602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074940", "tid": 35568, "ts": 11160689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074530", "tid": 35568, "ts": 11160776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074870", "tid": 35568, "ts": 11160862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075160", "tid": 35568, "ts": 11160948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30735c0", "tid": 35568, "ts": 11161035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074460", "tid": 35568, "ts": 11161121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30741f0", "tid": 35568, "ts": 11161208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075090", "tid": 35568, "ts": 11161294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075980", "tid": 35568, "ts": 11161381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30758b0", "tid": 35568, "ts": 11161468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30757e0", "tid": 35568, "ts": 11161554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073420", "tid": 35568, "ts": 11161641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075710", "tid": 35568, "ts": 11161728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076410", "tid": 35568, "ts": 11161814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075640", "tid": 35568, "ts": 11161900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075f30", "tid": 35568, "ts": 11161987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30761a0", "tid": 35568, "ts": 11162073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075a50", "tid": 35568, "ts": 11162160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30734f0", "tid": 35568, "ts": 11162246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076340", "tid": 35568, "ts": 11162332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30760d0", "tid": 35568, "ts": 11162419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074050", "tid": 35568, "ts": 11162505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073b70", "tid": 35568, "ts": 11162591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076000", "tid": 35568, "ts": 11162679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072310", "tid": 35568, "ts": 11162765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071950", "tid": 35568, "ts": 11162851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30716e0", "tid": 35568, "ts": 11162938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30700f0", "tid": 35568, "ts": 11163024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071060", "tid": 35568, "ts": 11163111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ff50", "tid": 35568, "ts": 11163197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fe80", "tid": 35568, "ts": 11163283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070d20", "tid": 35568, "ts": 11163370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fdb0", "tid": 35568, "ts": 11163456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072990", "tid": 35568, "ts": 11163542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072170", "tid": 35568, "ts": 11163629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070b80", "tid": 35568, "ts": 11163717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30720a0", "tid": 35568, "ts": 11163804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30712d0", "tid": 35568, "ts": 11163891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30709e0", "tid": 35568, "ts": 11163978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072da0", "tid": 35568, "ts": 11164065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070910", "tid": 35568, "ts": 11164151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070360", "tid": 35568, "ts": 11164238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071af0", "tid": 35568, "ts": 11164323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30705d0", "tid": 35568, "ts": 11164409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072c00", "tid": 35568, "ts": 11164496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070df0", "tid": 35568, "ts": 11164582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072650", "tid": 35568, "ts": 11164669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070770", "tid": 35568, "ts": 11164756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071d60", "tid": 35568, "ts": 11164842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30706a0", "tid": 35568, "ts": 11164929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071a20", "tid": 35568, "ts": 11165015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070430", "tid": 35568, "ts": 11165102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071880", "tid": 35568, "ts": 11165188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071fd0", "tid": 35568, "ts": 11165275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fce0", "tid": 35568, "ts": 11165361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070020", "tid": 35568, "ts": 11165448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f590", "tid": 35568, "ts": 11165534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f250", "tid": 35568, "ts": 11165621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ef10", "tid": 35568, "ts": 11165707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ed70", "tid": 35568, "ts": 11165794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306eca0", "tid": 35568, "ts": 11165880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e2e0", "tid": 35568, "ts": 11165966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d2a0", "tid": 35568, "ts": 11166052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e890", "tid": 35568, "ts": 11166139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dfa0", "tid": 35568, "ts": 11166225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f320", "tid": 35568, "ts": 11166311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d920", "tid": 35568, "ts": 11166397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d030", "tid": 35568, "ts": 11166484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cf60", "tid": 35568, "ts": 11166570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ded0", "tid": 35568, "ts": 11166656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e6f0", "tid": 35568, "ts": 11166743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d9f0", "tid": 35568, "ts": 11166829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d6b0", "tid": 35568, "ts": 11166916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f0b0", "tid": 35568, "ts": 11167003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fc10", "tid": 35568, "ts": 11167089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ee40", "tid": 35568, "ts": 11167175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e480", "tid": 35568, "ts": 11167261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e210", "tid": 35568, "ts": 11167347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e550", "tid": 35568, "ts": 11167433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d440", "tid": 35568, "ts": 11167521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f730", "tid": 35568, "ts": 11167607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f9a0", "tid": 35568, "ts": 11167693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e960", "tid": 35568, "ts": 11167779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cdc0", "tid": 35568, "ts": 11167866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306de00", "tid": 35568, "ts": 11167952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e620", "tid": 35568, "ts": 11168038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c9b0", "tid": 35568, "ts": 11168125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f8d0", "tid": 35568, "ts": 11168211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ba40", "tid": 35568, "ts": 11168298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b7d0", "tid": 35568, "ts": 11168384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aee0", "tid": 35568, "ts": 11168470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aad0", "tid": 35568, "ts": 11168640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a930", "tid": 35568, "ts": 11168745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a380", "tid": 35568, "ts": 11168833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069ea0", "tid": 35568, "ts": 11168921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b630", "tid": 35568, "ts": 11169009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a1e0", "tid": 35568, "ts": 11169095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b2f0", "tid": 35568, "ts": 11169183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c740", "tid": 35568, "ts": 11169269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069680", "tid": 35568, "ts": 11169356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a520", "tid": 35568, "ts": 11169443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c190", "tid": 35568, "ts": 11169529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c0c0", "tid": 35568, "ts": 11169617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a790", "tid": 35568, "ts": 11169704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a6c0", "tid": 35568, "ts": 11169790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b490", "tid": 35568, "ts": 11169877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30695b0", "tid": 35568, "ts": 11169965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bbe0", "tid": 35568, "ts": 11170052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069b60", "tid": 35568, "ts": 11170138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a2b0", "tid": 35568, "ts": 11170225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069820", "tid": 35568, "ts": 11170312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306afb0", "tid": 35568, "ts": 11170399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c810", "tid": 35568, "ts": 11170486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306be50", "tid": 35568, "ts": 11170573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bd80", "tid": 35568, "ts": 11170660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b560", "tid": 35568, "ts": 11170747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ac70", "tid": 35568, "ts": 11170834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c5a0", "tid": 35568, "ts": 11170920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b8a0", "tid": 35568, "ts": 11171006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069a90", "tid": 35568, "ts": 11171093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f1f0", "tid": 35568, "ts": 11171180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f530", "tid": 35568, "ts": 11171267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01210d0", "tid": 35568, "ts": 11171353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120e60", "tid": 35568, "ts": 11171441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ef80", "tid": 35568, "ts": 11171527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120160", "tid": 35568, "ts": 11171614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e420", "tid": 35568, "ts": 11171701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f460", "tid": 35568, "ts": 11171788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e1b0", "tid": 35568, "ts": 11171875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e9d0", "tid": 35568, "ts": 11171961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e4f0", "tid": 35568, "ts": 11172048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120570", "tid": 35568, "ts": 11172135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120300", "tid": 35568, "ts": 11172222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121000", "tid": 35568, "ts": 11172309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01211a0", "tid": 35568, "ts": 11172395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120090", "tid": 35568, "ts": 11172483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fae0", "tid": 35568, "ts": 11172570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01204a0", "tid": 35568, "ts": 11172657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e0e0", "tid": 35568, "ts": 11172743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f120", "tid": 35568, "ts": 11172831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121340", "tid": 35568, "ts": 11172917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ffc0", "tid": 35568, "ts": 11173003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fbb0", "tid": 35568, "ts": 11173090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01203d0", "tid": 35568, "ts": 11173177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120cc0", "tid": 35568, "ts": 11173263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011eb70", "tid": 35568, "ts": 11173349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f390", "tid": 35568, "ts": 11173435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121410", "tid": 35568, "ts": 11173522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011eaa0", "tid": 35568, "ts": 11173608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121270", "tid": 35568, "ts": 11173695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f940", "tid": 35568, "ts": 11173781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f870", "tid": 35568, "ts": 11173869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d700", "tid": 35568, "ts": 11173955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cba0", "tid": 35568, "ts": 11174042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ca00", "tid": 35568, "ts": 11174128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cd40", "tid": 35568, "ts": 11174215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c380", "tid": 35568, "ts": 11174302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d150", "tid": 35568, "ts": 11174389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cc70", "tid": 35568, "ts": 11174476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d080", "tid": 35568, "ts": 11174563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b5b0", "tid": 35568, "ts": 11174650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c790", "tid": 35568, "ts": 11174737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013df20", "tid": 35568, "ts": 11174823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c6c0", "tid": 35568, "ts": 11174911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b820", "tid": 35568, "ts": 11174998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b750", "tid": 35568, "ts": 11175085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d490", "tid": 35568, "ts": 11175171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013da40", "tid": 35568, "ts": 11175259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d630", "tid": 35568, "ts": 11175345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b8f0", "tid": 35568, "ts": 11175431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013dbe0", "tid": 35568, "ts": 11175518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c1e0", "tid": 35568, "ts": 11175605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ba90", "tid": 35568, "ts": 11175692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013dcb0", "tid": 35568, "ts": 11175779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c110", "tid": 35568, "ts": 11175866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d2f0", "tid": 35568, "ts": 11175953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d7d0", "tid": 35568, "ts": 11176040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cfb0", "tid": 35568, "ts": 11176126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013acc0", "tid": 35568, "ts": 11176212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a160", "tid": 35568, "ts": 11176299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139fc0", "tid": 35568, "ts": 11176386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139d50", "tid": 35568, "ts": 11176472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01396d0", "tid": 35568, "ts": 11176559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139c80", "tid": 35568, "ts": 11176647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01392c0", "tid": 35568, "ts": 11176734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139120", "tid": 35568, "ts": 11176820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139600", "tid": 35568, "ts": 11176907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a980", "tid": 35568, "ts": 11176993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01391f0", "tid": 35568, "ts": 11177080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138900", "tid": 35568, "ts": 11177166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a7e0", "tid": 35568, "ts": 11177253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139940", "tid": 35568, "ts": 11177340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138280", "tid": 35568, "ts": 11177426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01381b0", "tid": 35568, "ts": 11177514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01397a0", "tid": 35568, "ts": 11177600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a4a0", "tid": 35568, "ts": 11177687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138c40", "tid": 35568, "ts": 11177773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139870", "tid": 35568, "ts": 11177859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a3d0", "tid": 35568, "ts": 11177946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a230", "tid": 35568, "ts": 11178034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a570", "tid": 35568, "ts": 11178120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138b70", "tid": 35568, "ts": 11178207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138690", "tid": 35568, "ts": 11178293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138f80", "tid": 35568, "ts": 11178380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138aa0", "tid": 35568, "ts": 11178467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01385c0", "tid": 35568, "ts": 11178553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01384f0", "tid": 35568, "ts": 11178640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139bb0", "tid": 35568, "ts": 11178727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b000", "tid": 35568, "ts": 11178814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139e20", "tid": 35568, "ts": 11178902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136e30", "tid": 35568, "ts": 11178988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01355d0", "tid": 35568, "ts": 11179075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135500", "tid": 35568, "ts": 11179162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134f50", "tid": 35568, "ts": 11179248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135c50", "tid": 35568, "ts": 11179336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137240", "tid": 35568, "ts": 11179423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134ce0", "tid": 35568, "ts": 11179510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138010", "tid": 35568, "ts": 11179596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136c90", "tid": 35568, "ts": 11179683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135430", "tid": 35568, "ts": 11179770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01378c0", "tid": 35568, "ts": 11179856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137720", "tid": 35568, "ts": 11179944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01370a0", "tid": 35568, "ts": 11180031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136a20", "tid": 35568, "ts": 11180118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137da0", "tid": 35568, "ts": 11180205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137c00", "tid": 35568, "ts": 11180291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136fd0", "tid": 35568, "ts": 11180378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135840", "tid": 35568, "ts": 11180465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135020", "tid": 35568, "ts": 11180552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137b30", "tid": 35568, "ts": 11180639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137e70", "tid": 35568, "ts": 11180726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01356a0", "tid": 35568, "ts": 11180813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01377f0", "tid": 35568, "ts": 11180899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136af0", "tid": 35568, "ts": 11180986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137cd0", "tid": 35568, "ts": 11181074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134e80", "tid": 35568, "ts": 11181161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135f90", "tid": 35568, "ts": 11181247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137170", "tid": 35568, "ts": 11181335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136060", "tid": 35568, "ts": 11181421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134db0", "tid": 35568, "ts": 11181508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136540", "tid": 35568, "ts": 11181594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135360", "tid": 35568, "ts": 11181681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133ca0", "tid": 35568, "ts": 11181767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133960", "tid": 35568, "ts": 11181854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01340b0", "tid": 35568, "ts": 11181940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01333b0", "tid": 35568, "ts": 11182027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132d30", "tid": 35568, "ts": 11182113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132b90", "tid": 35568, "ts": 11182201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01332e0", "tid": 35568, "ts": 11182288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01329f0", "tid": 35568, "ts": 11182375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132780", "tid": 35568, "ts": 11182461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133070", "tid": 35568, "ts": 11182548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132440", "tid": 35568, "ts": 11182634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131f60", "tid": 35568, "ts": 11182721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133f10", "tid": 35568, "ts": 11182807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132030", "tid": 35568, "ts": 11182893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131c20", "tid": 35568, "ts": 11182980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01325e0", "tid": 35568, "ts": 11183067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131b50", "tid": 35568, "ts": 11183154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133890", "tid": 35568, "ts": 11183240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01318e0", "tid": 35568, "ts": 11183326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134c10", "tid": 35568, "ts": 11183413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01322a0", "tid": 35568, "ts": 11183501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01319b0", "tid": 35568, "ts": 11183588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134320", "tid": 35568, "ts": 11183674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134730", "tid": 35568, "ts": 11183762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134b40", "tid": 35568, "ts": 11183848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134180", "tid": 35568, "ts": 11183935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134a70", "tid": 35568, "ts": 11184022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134590", "tid": 35568, "ts": 11184109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132850", "tid": 35568, "ts": 11184297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01348d0", "tid": 35568, "ts": 11184489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01336f0", "tid": 35568, "ts": 11184587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133a30", "tid": 35568, "ts": 11184738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130ff0", "tid": 35568, "ts": 11184863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130a40", "tid": 35568, "ts": 11184961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01303c0", "tid": 35568, "ts": 11185081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fd40", "tid": 35568, "ts": 11185252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fad0", "tid": 35568, "ts": 11185352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f790", "tid": 35568, "ts": 11185439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130970", "tid": 35568, "ts": 11185526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f5f0", "tid": 35568, "ts": 11185612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f520", "tid": 35568, "ts": 11185699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012eea0", "tid": 35568, "ts": 11185786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012edd0", "tid": 35568, "ts": 11185872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e750", "tid": 35568, "ts": 11185959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fee0", "tid": 35568, "ts": 11186045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130be0", "tid": 35568, "ts": 11186132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fa00", "tid": 35568, "ts": 11186219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f450", "tid": 35568, "ts": 11186305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e5b0", "tid": 35568, "ts": 11186391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01307d0", "tid": 35568, "ts": 11186478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01315a0", "tid": 35568, "ts": 11186565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f1e0", "tid": 35568, "ts": 11186652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131330", "tid": 35568, "ts": 11186737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e9c0", "tid": 35568, "ts": 11186825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131190", "tid": 35568, "ts": 11186911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130080", "tid": 35568, "ts": 11186998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131740", "tid": 35568, "ts": 11187084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f040", "tid": 35568, "ts": 11187170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01310c0", "tid": 35568, "ts": 11187257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ea90", "tid": 35568, "ts": 11187343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ef70", "tid": 35568, "ts": 11187430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e8f0", "tid": 35568, "ts": 11187517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131810", "tid": 35568, "ts": 11187605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130150", "tid": 35568, "ts": 11187692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cc80", "tid": 35568, "ts": 11187779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c530", "tid": 35568, "ts": 11187868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c390", "tid": 35568, "ts": 11187955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c120", "tid": 35568, "ts": 11188090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ca10", "tid": 35568, "ts": 11188192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d640", "tid": 35568, "ts": 11188280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b9d0", "tid": 35568, "ts": 11188366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b760", "tid": 35568, "ts": 11188453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b420", "tid": 35568, "ts": 11188541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c940", "tid": 35568, "ts": 11188627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d3d0", "tid": 35568, "ts": 11188713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d4a0", "tid": 35568, "ts": 11188800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cd50", "tid": 35568, "ts": 11188886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012dcc0", "tid": 35568, "ts": 11188973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bd10", "tid": 35568, "ts": 11189059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e000", "tid": 35568, "ts": 11189145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d160", "tid": 35568, "ts": 11189232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012df30", "tid": 35568, "ts": 11189318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b5c0", "tid": 35568, "ts": 11189405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b280", "tid": 35568, "ts": 11189491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e410", "tid": 35568, "ts": 11189577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c6d0", "tid": 35568, "ts": 11189664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012db20", "tid": 35568, "ts": 11189750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d090", "tid": 35568, "ts": 11189837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d8b0", "tid": 35568, "ts": 11189923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012baa0", "tid": 35568, "ts": 11190010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c600", "tid": 35568, "ts": 11190096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b350", "tid": 35568, "ts": 11190182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b830", "tid": 35568, "ts": 11190268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ce20", "tid": 35568, "ts": 11190355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e0d0", "tid": 35568, "ts": 11190441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a8c0", "tid": 35568, "ts": 11190527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129880", "tid": 35568, "ts": 11190613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128770", "tid": 35568, "ts": 11190700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01297b0", "tid": 35568, "ts": 11190786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128ec0", "tid": 35568, "ts": 11190872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a720", "tid": 35568, "ts": 11190958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128c50", "tid": 35568, "ts": 11191045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a3e0", "tid": 35568, "ts": 11191131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129d60", "tid": 35568, "ts": 11191218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129bc0", "tid": 35568, "ts": 11191304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a650", "tid": 35568, "ts": 11191390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128360", "tid": 35568, "ts": 11191476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127e80", "tid": 35568, "ts": 11191563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b010", "tid": 35568, "ts": 11191649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129fd0", "tid": 35568, "ts": 11191735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129c90", "tid": 35568, "ts": 11191822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127f50", "tid": 35568, "ts": 11191908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a170", "tid": 35568, "ts": 11191994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129f00", "tid": 35568, "ts": 11192081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01285d0", "tid": 35568, "ts": 11192167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128910", "tid": 35568, "ts": 11192254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128d20", "tid": 35568, "ts": 11192340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ae70", "tid": 35568, "ts": 11192426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ada0", "tid": 35568, "ts": 11192512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a990", "tid": 35568, "ts": 11192598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129130", "tid": 35568, "ts": 11192684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012acd0", "tid": 35568, "ts": 11192771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01280f0", "tid": 35568, "ts": 11192857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01286a0", "tid": 35568, "ts": 11192943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128430", "tid": 35568, "ts": 11193029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129e30", "tid": 35568, "ts": 11193115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127db0", "tid": 35568, "ts": 11193201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01274c0", "tid": 35568, "ts": 11193288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127320", "tid": 35568, "ts": 11193375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01270b0", "tid": 35568, "ts": 11193461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126b00", "tid": 35568, "ts": 11193547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01266f0", "tid": 35568, "ts": 11193633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125510", "tid": 35568, "ts": 11193719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126620", "tid": 35568, "ts": 11193806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126480", "tid": 35568, "ts": 11193893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126890", "tid": 35568, "ts": 11193979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01252a0", "tid": 35568, "ts": 11194065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125370", "tid": 35568, "ts": 11194152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126bd0", "tid": 35568, "ts": 11194238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01259f0", "tid": 35568, "ts": 11194324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01279a0", "tid": 35568, "ts": 11194410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125920", "tid": 35568, "ts": 11194497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124f60", "tid": 35568, "ts": 11194583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125fa0", "tid": 35568, "ts": 11194692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126960", "tid": 35568, "ts": 11194778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01262e0", "tid": 35568, "ts": 11194864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124e90", "tid": 35568, "ts": 11194951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01267c0", "tid": 35568, "ts": 11195036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125ac0", "tid": 35568, "ts": 11195122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01255e0", "tid": 35568, "ts": 11195210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126550", "tid": 35568, "ts": 11195296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127730", "tid": 35568, "ts": 11195382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126d70", "tid": 35568, "ts": 11195468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124cf0", "tid": 35568, "ts": 11195555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125780", "tid": 35568, "ts": 11195640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124dc0", "tid": 35568, "ts": 11195726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01248e0", "tid": 35568, "ts": 11195812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125ed0", "tid": 35568, "ts": 11195899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126fe0", "tid": 35568, "ts": 11195986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121dd0", "tid": 35568, "ts": 11196072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121820", "tid": 35568, "ts": 11196158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121680", "tid": 35568, "ts": 11196244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124190", "tid": 35568, "ts": 11196331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123cb0", "tid": 35568, "ts": 11196418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123970", "tid": 35568, "ts": 11196504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01215b0", "tid": 35568, "ts": 11196592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01214e0", "tid": 35568, "ts": 11196678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123220", "tid": 35568, "ts": 11196764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124670", "tid": 35568, "ts": 11196850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01232f0", "tid": 35568, "ts": 11196937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01244d0", "tid": 35568, "ts": 11197023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01233c0", "tid": 35568, "ts": 11197109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01226c0", "tid": 35568, "ts": 11197195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123ff0", "tid": 35568, "ts": 11197281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123560", "tid": 35568, "ts": 11197368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01240c0", "tid": 35568, "ts": 11197454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122fb0", "tid": 35568, "ts": 11197540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123700", "tid": 35568, "ts": 11197625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122110", "tid": 35568, "ts": 11197711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124810", "tid": 35568, "ts": 11197798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122520", "tid": 35568, "ts": 11197884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123b10", "tid": 35568, "ts": 11197971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122380", "tid": 35568, "ts": 11198057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122c70", "tid": 35568, "ts": 11198143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122790", "tid": 35568, "ts": 11198230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122450", "tid": 35568, "ts": 11198316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122040", "tid": 35568, "ts": 11198401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122a00", "tid": 35568, "ts": 11198488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121f70", "tid": 35568, "ts": 11198574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124330", "tid": 35568, "ts": 11198660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01222b0", "tid": 35568, "ts": 11198747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a390", "tid": 35568, "ts": 11198833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792e20", "tid": 35568, "ts": 11198920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792c80", "tid": 35568, "ts": 11199007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793300", "tid": 35568, "ts": 11199093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1e60", "tid": 35568, "ts": 11199180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1cc0", "tid": 35568, "ts": 11199266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1b20", "tid": 35568, "ts": 11199353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e13d0", "tid": 35568, "ts": 11199439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1230", "tid": 35568, "ts": 11199525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1640", "tid": 35568, "ts": 11199611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1980", "tid": 35568, "ts": 11199697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0fc0", "tid": 35568, "ts": 11199822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0c80", "tid": 35568, "ts": 11199910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0530", "tid": 35568, "ts": 11199996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0050", "tid": 35568, "ts": 11200084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df760", "tid": 35568, "ts": 11200170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e01f0", "tid": 35568, "ts": 11200257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df5c0", "tid": 35568, "ts": 11200343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0e20", "tid": 35568, "ts": 11200430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfeb0", "tid": 35568, "ts": 11200516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfc40", "tid": 35568, "ts": 11200603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e18b0", "tid": 35568, "ts": 11200690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0940", "tid": 35568, "ts": 11200777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfde0", "tid": 35568, "ts": 11200863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfaa0", "tid": 35568, "ts": 11200950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df4f0", "tid": 35568, "ts": 11201036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e17e0", "tid": 35568, "ts": 11201123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0870", "tid": 35568, "ts": 11201210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1bf0", "tid": 35568, "ts": 11201296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df900", "tid": 35568, "ts": 11201383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfb70", "tid": 35568, "ts": 11201469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcf90", "tid": 35568, "ts": 11201556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcd20", "tid": 35568, "ts": 11201642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcb80", "tid": 35568, "ts": 11201729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de650", "tid": 35568, "ts": 11201815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de580", "tid": 35568, "ts": 11201902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df0e0", "tid": 35568, "ts": 11201988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de310", "tid": 35568, "ts": 11202075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd880", "tid": 35568, "ts": 11202161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc770", "tid": 35568, "ts": 11202247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddd60", "tid": 35568, "ts": 11202334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df420", "tid": 35568, "ts": 11202420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de8c0", "tid": 35568, "ts": 11202507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc290", "tid": 35568, "ts": 11202593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddbc0", "tid": 35568, "ts": 11202680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc6a0", "tid": 35568, "ts": 11202767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df1b0", "tid": 35568, "ts": 11202853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd3a0", "tid": 35568, "ts": 11202939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dee70", "tid": 35568, "ts": 11203025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de170", "tid": 35568, "ts": 11203112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc1c0", "tid": 35568, "ts": 11203198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc9e0", "tid": 35568, "ts": 11203285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd060", "tid": 35568, "ts": 11203372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddaf0", "tid": 35568, "ts": 11203458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de0a0", "tid": 35568, "ts": 11203545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd200", "tid": 35568, "ts": 11203631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc910", "tid": 35568, "ts": 11203718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddfd0", "tid": 35568, "ts": 11203805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd6e0", "tid": 35568, "ts": 11203891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9510", "tid": 35568, "ts": 11203977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d92a0", "tid": 35568, "ts": 11204064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9100", "tid": 35568, "ts": 11204150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8dc0", "tid": 35568, "ts": 11204236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8cf0", "tid": 35568, "ts": 11204323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09daa30", "tid": 35568, "ts": 11204410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbf50", "tid": 35568, "ts": 11204496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9440", "tid": 35568, "ts": 11204583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db800", "tid": 35568, "ts": 11204670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbc10", "tid": 35568, "ts": 11204756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db730", "tid": 35568, "ts": 11204843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbce0", "tid": 35568, "ts": 11204930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db4c0", "tid": 35568, "ts": 11205017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8f60", "tid": 35568, "ts": 11205103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dafe0", "tid": 35568, "ts": 11205190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da550", "tid": 35568, "ts": 11205277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09daf10", "tid": 35568, "ts": 11205363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da480", "tid": 35568, "ts": 11205449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9780", "tid": 35568, "ts": 11205535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dad70", "tid": 35568, "ts": 11205622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da2e0", "tid": 35568, "ts": 11205710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dba70", "tid": 35568, "ts": 11205796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da620", "tid": 35568, "ts": 11205882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db320", "tid": 35568, "ts": 11205970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9ac0", "tid": 35568, "ts": 11206056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da140", "tid": 35568, "ts": 11206142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9ed0", "tid": 35568, "ts": 11206228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9e00", "tid": 35568, "ts": 11206316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09daca0", "tid": 35568, "ts": 11206402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db180", "tid": 35568, "ts": 11206488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d99f0", "tid": 35568, "ts": 11206574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db8d0", "tid": 35568, "ts": 11206661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6450", "tid": 35568, "ts": 11206747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6c70", "tid": 35568, "ts": 11206834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8c20", "tid": 35568, "ts": 11206920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d59c0", "tid": 35568, "ts": 11207007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8b50", "tid": 35568, "ts": 11207093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6380", "tid": 35568, "ts": 11207180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7490", "tid": 35568, "ts": 11207266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5f70", "tid": 35568, "ts": 11207352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d73c0", "tid": 35568, "ts": 11207438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5ea0", "tid": 35568, "ts": 11207525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8400", "tid": 35568, "ts": 11207610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8330", "tid": 35568, "ts": 11207697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d66c0", "tid": 35568, "ts": 11207783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6ad0", "tid": 35568, "ts": 11207870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7a40", "tid": 35568, "ts": 11207956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6a00", "tid": 35568, "ts": 11208042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6fb0", "tid": 35568, "ts": 11208129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7080", "tid": 35568, "ts": 11208215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7970", "tid": 35568, "ts": 11208301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6110", "tid": 35568, "ts": 11208388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d85a0", "tid": 35568, "ts": 11208475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d65f0", "tid": 35568, "ts": 11208561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d78a0", "tid": 35568, "ts": 11208647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5a90", "tid": 35568, "ts": 11208734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8190", "tid": 35568, "ts": 11208820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6930", "tid": 35568, "ts": 11208906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6520", "tid": 35568, "ts": 11208992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5dd0", "tid": 35568, "ts": 11209080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7220", "tid": 35568, "ts": 11209166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7cb0", "tid": 35568, "ts": 11209252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7150", "tid": 35568, "ts": 11209338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8810", "tid": 35568, "ts": 11209425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2de0", "tid": 35568, "ts": 11209512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2b70", "tid": 35568, "ts": 11209597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5410", "tid": 35568, "ts": 11209684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4b20", "tid": 35568, "ts": 11209771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2aa0", "tid": 35568, "ts": 11209858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d47e0", "tid": 35568, "ts": 11209944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d29d0", "tid": 35568, "ts": 11210030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5340", "tid": 35568, "ts": 11210117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3c80", "tid": 35568, "ts": 11210204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d48b0", "tid": 35568, "ts": 11210291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3bb0", "tid": 35568, "ts": 11210377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3ae0", "tid": 35568, "ts": 11210464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4090", "tid": 35568, "ts": 11210551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2760", "tid": 35568, "ts": 11210637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2eb0", "tid": 35568, "ts": 11210724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3a10", "tid": 35568, "ts": 11210810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2690", "tid": 35568, "ts": 11210897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d25c0", "tid": 35568, "ts": 11210983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d44a0", "tid": 35568, "ts": 11211070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3fc0", "tid": 35568, "ts": 11211157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4cc0", "tid": 35568, "ts": 11211243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3390", "tid": 35568, "ts": 11211329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5680", "tid": 35568, "ts": 11211415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2900", "tid": 35568, "ts": 11211501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d55b0", "tid": 35568, "ts": 11211587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5750", "tid": 35568, "ts": 11211673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3e20", "tid": 35568, "ts": 11211760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2d10", "tid": 35568, "ts": 11211847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4230", "tid": 35568, "ts": 11211933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3870", "tid": 35568, "ts": 11212019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3120", "tid": 35568, "ts": 11212105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5000", "tid": 35568, "ts": 11212192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1720", "tid": 35568, "ts": 11212279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1580", "tid": 35568, "ts": 11212365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d13e0", "tid": 35568, "ts": 11212451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfec0", "tid": 35568, "ts": 11212538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0f00", "tid": 35568, "ts": 11212624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfdf0", "tid": 35568, "ts": 11212711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfd20", "tid": 35568, "ts": 11212797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0060", "tid": 35568, "ts": 11212883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfb80", "tid": 35568, "ts": 11212969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0200", "tid": 35568, "ts": 11213055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d17f0", "tid": 35568, "ts": 11213142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf6a0", "tid": 35568, "ts": 11213229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0610", "tid": 35568, "ts": 11213316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf500", "tid": 35568, "ts": 11213402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1240", "tid": 35568, "ts": 11213488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf360", "tid": 35568, "ts": 11213575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0470", "tid": 35568, "ts": 11213661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf1c0", "tid": 35568, "ts": 11213748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1990", "tid": 35568, "ts": 11213834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf9e0", "tid": 35568, "ts": 11213922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0bc0", "tid": 35568, "ts": 11214008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d10a0", "tid": 35568, "ts": 11214095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2350", "tid": 35568, "ts": 11214182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1b30", "tid": 35568, "ts": 11214269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1cd0", "tid": 35568, "ts": 11214355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2280", "tid": 35568, "ts": 11214441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0950", "tid": 35568, "ts": 11214527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0af0", "tid": 35568, "ts": 11214615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d06e0", "tid": 35568, "ts": 11214701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1e70", "tid": 35568, "ts": 11214787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d21b0", "tid": 35568, "ts": 11214873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1f40", "tid": 35568, "ts": 11214959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cedb0", "tid": 35568, "ts": 11215045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccc60", "tid": 35568, "ts": 11215132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce250", "tid": 35568, "ts": 11215218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce0b0", "tid": 35568, "ts": 11215305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdf10", "tid": 35568, "ts": 11215427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd3b0", "tid": 35568, "ts": 11215540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc510", "tid": 35568, "ts": 11215642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc100", "tid": 35568, "ts": 11215810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccb90", "tid": 35568, "ts": 11215995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbdc0", "tid": 35568, "ts": 11216109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc1d0", "tid": 35568, "ts": 11216237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd210", "tid": 35568, "ts": 11216377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbcf0", "tid": 35568, "ts": 11216464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce730", "tid": 35568, "ts": 11216551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc5e0", "tid": 35568, "ts": 11216638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd070", "tid": 35568, "ts": 11216725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce4c0", "tid": 35568, "ts": 11216811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbe90", "tid": 35568, "ts": 11216898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc030", "tid": 35568, "ts": 11216984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce180", "tid": 35568, "ts": 11217070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf020", "tid": 35568, "ts": 11217156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd7c0", "tid": 35568, "ts": 11217242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc850", "tid": 35568, "ts": 11217328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce9a0", "tid": 35568, "ts": 11217415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cef50", "tid": 35568, "ts": 11217502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce800", "tid": 35568, "ts": 11217588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc2a0", "tid": 35568, "ts": 11217674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd960", "tid": 35568, "ts": 11217762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce660", "tid": 35568, "ts": 11217848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cee80", "tid": 35568, "ts": 11217935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd480", "tid": 35568, "ts": 11218022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cce00", "tid": 35568, "ts": 11218109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9930", "tid": 35568, "ts": 11218195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c96c0", "tid": 35568, "ts": 11218282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c92b0", "tid": 35568, "ts": 11218369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c95f0", "tid": 35568, "ts": 11218456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb4d0", "tid": 35568, "ts": 11218543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb400", "tid": 35568, "ts": 11218629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8f70", "tid": 35568, "ts": 11218717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09caa40", "tid": 35568, "ts": 11218803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca560", "tid": 35568, "ts": 11218890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8ea0", "tid": 35568, "ts": 11218977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca490", "tid": 35568, "ts": 11219064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca700", "tid": 35568, "ts": 11219151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cacb0", "tid": 35568, "ts": 11219237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca3c0", "tid": 35568, "ts": 11219323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8dd0", "tid": 35568, "ts": 11219410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb740", "tid": 35568, "ts": 11219497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c89c0", "tid": 35568, "ts": 11219583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8d00", "tid": 35568, "ts": 11219670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9040", "tid": 35568, "ts": 11219757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbc20", "tid": 35568, "ts": 11219843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09caff0", "tid": 35568, "ts": 11219930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca2f0", "tid": 35568, "ts": 11220017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9ee0", "tid": 35568, "ts": 11220103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cabe0", "tid": 35568, "ts": 11220190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8c30", "tid": 35568, "ts": 11220277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cba80", "tid": 35568, "ts": 11220364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9520", "tid": 35568, "ts": 11220449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca220", "tid": 35568, "ts": 11220537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9d40", "tid": 35568, "ts": 11220623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9a00", "tid": 35568, "ts": 11220709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb8e0", "tid": 35568, "ts": 11220797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca8a0", "tid": 35568, "ts": 11220884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6530", "tid": 35568, "ts": 11220971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7230", "tid": 35568, "ts": 11221057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6120", "tid": 35568, "ts": 11221144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6a10", "tid": 35568, "ts": 11221231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c81a0", "tid": 35568, "ts": 11221318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c80d0", "tid": 35568, "ts": 11221405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5eb0", "tid": 35568, "ts": 11221491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5d10", "tid": 35568, "ts": 11221578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7d90", "tid": 35568, "ts": 11221664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c55c0", "tid": 35568, "ts": 11221751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c54f0", "tid": 35568, "ts": 11221837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7e60", "tid": 35568, "ts": 11221925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5aa0", "tid": 35568, "ts": 11222012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7640", "tid": 35568, "ts": 11222098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8000", "tid": 35568, "ts": 11222184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5f80", "tid": 35568, "ts": 11222271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5900", "tid": 35568, "ts": 11222357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c85b0", "tid": 35568, "ts": 11222444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8410", "tid": 35568, "ts": 11222530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c78b0", "tid": 35568, "ts": 11222617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8340", "tid": 35568, "ts": 11222703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7090", "tid": 35568, "ts": 11222790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c62c0", "tid": 35568, "ts": 11222878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7a50", "tid": 35568, "ts": 11222966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8750", "tid": 35568, "ts": 11223054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c84e0", "tid": 35568, "ts": 11223141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6bb0", "tid": 35568, "ts": 11223269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7cc0", "tid": 35568, "ts": 11223358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c67a0", "tid": 35568, "ts": 11223445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5830", "tid": 35568, "ts": 11223532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c74a0", "tid": 35568, "ts": 11223619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c73d0", "tid": 35568, "ts": 11223705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2b80", "tid": 35568, "ts": 11223792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2ab0", "tid": 35568, "ts": 11223879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2910", "tid": 35568, "ts": 11223965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2840", "tid": 35568, "ts": 11224052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4c00", "tid": 35568, "ts": 11224138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2500", "tid": 35568, "ts": 11224225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4720", "tid": 35568, "ts": 11224311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2430", "tid": 35568, "ts": 11224398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3470", "tid": 35568, "ts": 11224485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c48c0", "tid": 35568, "ts": 11224571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4650", "tid": 35568, "ts": 11224658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c33a0", "tid": 35568, "ts": 11224745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2df0", "tid": 35568, "ts": 11224831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c32d0", "tid": 35568, "ts": 11224917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4990", "tid": 35568, "ts": 11225004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2360", "tid": 35568, "ts": 11225090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2290", "tid": 35568, "ts": 11225177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c21c0", "tid": 35568, "ts": 11225264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3fd0", "tid": 35568, "ts": 11225350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2ec0", "tid": 35568, "ts": 11225438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3200", "tid": 35568, "ts": 11225524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3f00", "tid": 35568, "ts": 11225610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4580", "tid": 35568, "ts": 11225697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3880", "tid": 35568, "ts": 11225784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4170", "tid": 35568, "ts": 11225870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4310", "tid": 35568, "ts": 11225957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4a60", "tid": 35568, "ts": 11226043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5350", "tid": 35568, "ts": 11226130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5280", "tid": 35568, "ts": 11226217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4b30", "tid": 35568, "ts": 11226304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c51b0", "tid": 35568, "ts": 11226390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2770", "tid": 35568, "ts": 11226477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f950", "tid": 35568, "ts": 11226564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f200", "tid": 35568, "ts": 11226651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f130", "tid": 35568, "ts": 11226738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ec50", "tid": 35568, "ts": 11226849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06600a0", "tid": 35568, "ts": 11226935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ef90", "tid": 35568, "ts": 11227022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fc90", "tid": 35568, "ts": 11227108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e360", "tid": 35568, "ts": 11227196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e290", "tid": 35568, "ts": 11227283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065edf0", "tid": 35568, "ts": 11227369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660580", "tid": 35568, "ts": 11227456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661420", "tid": 35568, "ts": 11227543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06603e0", "tid": 35568, "ts": 11227629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06611b0", "tid": 35568, "ts": 11227716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ffd0", "tid": 35568, "ts": 11227802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fbc0", "tid": 35568, "ts": 11227889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065eab0", "tid": 35568, "ts": 11227975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f470", "tid": 35568, "ts": 11228062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065eb80", "tid": 35568, "ts": 11228148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660cd0", "tid": 35568, "ts": 11228235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661280", "tid": 35568, "ts": 11228322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660c00", "tid": 35568, "ts": 11228409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660170", "tid": 35568, "ts": 11228495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660240", "tid": 35568, "ts": 11228582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660f40", "tid": 35568, "ts": 11228668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ed20", "tid": 35568, "ts": 11228755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660da0", "tid": 35568, "ts": 11228841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660a60", "tid": 35568, "ts": 11228928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f540", "tid": 35568, "ts": 11229014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660990", "tid": 35568, "ts": 11229101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065faf0", "tid": 35568, "ts": 11229188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660650", "tid": 35568, "ts": 11229275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bde0", "tid": 35568, "ts": 11229362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b9d0", "tid": 35568, "ts": 11229449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b690", "tid": 35568, "ts": 11229536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cef0", "tid": 35568, "ts": 11229623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b830", "tid": 35568, "ts": 11229710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d4a0", "tid": 35568, "ts": 11229797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c120", "tid": 35568, "ts": 11229884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b4f0", "tid": 35568, "ts": 11229971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067df30", "tid": 35568, "ts": 11230057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ca10", "tid": 35568, "ts": 11230144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067dbf0", "tid": 35568, "ts": 11230231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c530", "tid": 35568, "ts": 11230317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c940", "tid": 35568, "ts": 11230404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067de60", "tid": 35568, "ts": 11230490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067beb0", "tid": 35568, "ts": 11230577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c2c0", "tid": 35568, "ts": 11230664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b900", "tid": 35568, "ts": 11230750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bb70", "tid": 35568, "ts": 11230836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d230", "tid": 35568, "ts": 11230922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d7e0", "tid": 35568, "ts": 11231043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d640", "tid": 35568, "ts": 11231159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c460", "tid": 35568, "ts": 11231246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d300", "tid": 35568, "ts": 11231333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067baa0", "tid": 35568, "ts": 11231420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067db20", "tid": 35568, "ts": 11231506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067dcc0", "tid": 35568, "ts": 11231593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b0e0", "tid": 35568, "ts": 11231679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067acd0", "tid": 35568, "ts": 11231767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679a20", "tid": 35568, "ts": 11231853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06781c0", "tid": 35568, "ts": 11231940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678ab0", "tid": 35568, "ts": 11232026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679bc0", "tid": 35568, "ts": 11232113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a7f0", "tid": 35568, "ts": 11232199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678500", "tid": 35568, "ts": 11232286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b010", "tid": 35568, "ts": 11232372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ac00", "tid": 35568, "ts": 11232458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ab30", "tid": 35568, "ts": 11232544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678770", "tid": 35568, "ts": 11232631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a990", "tid": 35568, "ts": 11232717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a3e0", "tid": 35568, "ts": 11232805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06796e0", "tid": 35568, "ts": 11232891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06797b0", "tid": 35568, "ts": 11232978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a720", "tid": 35568, "ts": 11233079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679200", "tid": 35568, "ts": 11233167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b280", "tid": 35568, "ts": 11233254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679540", "tid": 35568, "ts": 11233340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678b80", "tid": 35568, "ts": 11233427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679130", "tid": 35568, "ts": 11233514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679fd0", "tid": 35568, "ts": 11233601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678290", "tid": 35568, "ts": 11233687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ae70", "tid": 35568, "ts": 11233774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a310", "tid": 35568, "ts": 11233861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06793a0", "tid": 35568, "ts": 11233947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679e30", "tid": 35568, "ts": 11234034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ada0", "tid": 35568, "ts": 11234121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067af40", "tid": 35568, "ts": 11234208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06780f0", "tid": 35568, "ts": 11234295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06751d0", "tid": 35568, "ts": 11234382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676d70", "tid": 35568, "ts": 11234468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675030", "tid": 35568, "ts": 11234555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676960", "tid": 35568, "ts": 11234642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06767c0", "tid": 35568, "ts": 11234729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674cf0", "tid": 35568, "ts": 11234815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678020", "tid": 35568, "ts": 11234902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677f50", "tid": 35568, "ts": 11234988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676620", "tid": 35568, "ts": 11235075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676b00", "tid": 35568, "ts": 11235160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675d30", "tid": 35568, "ts": 11235248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676550", "tid": 35568, "ts": 11235335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676480", "tid": 35568, "ts": 11235421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677db0", "tid": 35568, "ts": 11235508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676ca0", "tid": 35568, "ts": 11235595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676fe0", "tid": 35568, "ts": 11235681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06778d0", "tid": 35568, "ts": 11235768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674f60", "tid": 35568, "ts": 11235855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675510", "tid": 35568, "ts": 11235941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676210", "tid": 35568, "ts": 11236027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677b40", "tid": 35568, "ts": 11236115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675850", "tid": 35568, "ts": 11236201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676070", "tid": 35568, "ts": 11236287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675780", "tid": 35568, "ts": 11236374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677a70", "tid": 35568, "ts": 11236460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677180", "tid": 35568, "ts": 11236546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677320", "tid": 35568, "ts": 11236633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06752a0", "tid": 35568, "ts": 11236720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06756b0", "tid": 35568, "ts": 11236806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677590", "tid": 35568, "ts": 11236893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675440", "tid": 35568, "ts": 11236979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676140", "tid": 35568, "ts": 11237066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672930", "tid": 35568, "ts": 11237152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06726c0", "tid": 35568, "ts": 11237239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672520", "tid": 35568, "ts": 11237326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06721e0", "tid": 35568, "ts": 11237412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671f70", "tid": 35568, "ts": 11237499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671c30", "tid": 35568, "ts": 11237585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06738a0", "tid": 35568, "ts": 11237673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671ea0", "tid": 35568, "ts": 11237759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674190", "tid": 35568, "ts": 11237845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06732f0", "tid": 35568, "ts": 11237931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06719c0", "tid": 35568, "ts": 11238017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673d80", "tid": 35568, "ts": 11238104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673f20", "tid": 35568, "ts": 11238190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06745a0", "tid": 35568, "ts": 11238276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06718f0", "tid": 35568, "ts": 11238362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673e50", "tid": 35568, "ts": 11238448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674740", "tid": 35568, "ts": 11238534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672c70", "tid": 35568, "ts": 11238621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674a80", "tid": 35568, "ts": 11238709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06744d0", "tid": 35568, "ts": 11238795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672450", "tid": 35568, "ts": 11238882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672e10", "tid": 35568, "ts": 11238968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673220", "tid": 35568, "ts": 11239056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671dd0", "tid": 35568, "ts": 11239141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672a00", "tid": 35568, "ts": 11239228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673490", "tid": 35568, "ts": 11239315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672ba0", "tid": 35568, "ts": 11239402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674260", "tid": 35568, "ts": 11239488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06733c0", "tid": 35568, "ts": 11239574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674400", "tid": 35568, "ts": 11239662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673700", "tid": 35568, "ts": 11239749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673970", "tid": 35568, "ts": 11239835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066eb70", "tid": 35568, "ts": 11239922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e900", "tid": 35568, "ts": 11240009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671820", "tid": 35568, "ts": 11240097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fe20", "tid": 35568, "ts": 11240184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670230", "tid": 35568, "ts": 11240270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670090", "tid": 35568, "ts": 11240357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e830", "tid": 35568, "ts": 11240444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fc80", "tid": 35568, "ts": 11240530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fbb0", "tid": 35568, "ts": 11240617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06703d0", "tid": 35568, "ts": 11240704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670e60", "tid": 35568, "ts": 11240790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f870", "tid": 35568, "ts": 11240878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f530", "tid": 35568, "ts": 11240965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f7a0", "tid": 35568, "ts": 11241051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f600", "tid": 35568, "ts": 11241137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06707e0", "tid": 35568, "ts": 11241223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f1f0", "tid": 35568, "ts": 11241310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f120", "tid": 35568, "ts": 11241396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670710", "tid": 35568, "ts": 11241483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ed10", "tid": 35568, "ts": 11241570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670b20", "tid": 35568, "ts": 11241657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670160", "tid": 35568, "ts": 11241743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671680", "tid": 35568, "ts": 11241830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066eeb0", "tid": 35568, "ts": 11241916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670980", "tid": 35568, "ts": 11242003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06710d0", "tid": 35568, "ts": 11242089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066eaa0", "tid": 35568, "ts": 11242176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f050", "tid": 35568, "ts": 11242262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f940", "tid": 35568, "ts": 11242349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671750", "tid": 35568, "ts": 11242435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670570", "tid": 35568, "ts": 11242523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ede0", "tid": 35568, "ts": 11242609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b770", "tid": 35568, "ts": 11242695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d990", "tid": 35568, "ts": 11242781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d580", "tid": 35568, "ts": 11242869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d3e0", "tid": 35568, "ts": 11242955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d170", "tid": 35568, "ts": 11243042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cbc0", "tid": 35568, "ts": 11243128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b290", "tid": 35568, "ts": 11243215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b0f0", "tid": 35568, "ts": 11243301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d720", "tid": 35568, "ts": 11243388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066caf0", "tid": 35568, "ts": 11243475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b500", "tid": 35568, "ts": 11243561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cc90", "tid": 35568, "ts": 11243648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c6e0", "tid": 35568, "ts": 11243735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c540", "tid": 35568, "ts": 11243821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b6a0", "tid": 35568, "ts": 11243908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e1b0", "tid": 35568, "ts": 11243994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e280", "tid": 35568, "ts": 11244080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c130", "tid": 35568, "ts": 11244167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c3a0", "tid": 35568, "ts": 11244254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c470", "tid": 35568, "ts": 11244341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066df40", "tid": 35568, "ts": 11244428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066de70", "tid": 35568, "ts": 11244515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e010", "tid": 35568, "ts": 11244602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066dda0", "tid": 35568, "ts": 11244688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066dcd0", "tid": 35568, "ts": 11244774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bec0", "tid": 35568, "ts": 11244860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bdf0", "tid": 35568, "ts": 11244947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ce30", "tid": 35568, "ts": 11245033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bab0", "tid": 35568, "ts": 11245120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b9e0", "tid": 35568, "ts": 11245206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b840", "tid": 35568, "ts": 11245293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cd60", "tid": 35568, "ts": 11245380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668440", "tid": 35568, "ts": 11245466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667cf0", "tid": 35568, "ts": 11245553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a4c0", "tid": 35568, "ts": 11245639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669d70", "tid": 35568, "ts": 11245726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669ca0", "tid": 35568, "ts": 11245812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066adb0", "tid": 35568, "ts": 11245898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669960", "tid": 35568, "ts": 11245986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06689f0", "tid": 35568, "ts": 11246072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06686b0", "tid": 35568, "ts": 11246159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668100", "tid": 35568, "ts": 11246246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669890", "tid": 35568, "ts": 11246333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06696f0", "tid": 35568, "ts": 11246419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669620", "tid": 35568, "ts": 11246505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669e40", "tid": 35568, "ts": 11246591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06685e0", "tid": 35568, "ts": 11246717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668920", "tid": 35568, "ts": 11246804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668e00", "tid": 35568, "ts": 11246891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06693b0", "tid": 35568, "ts": 11246978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a0b0", "tid": 35568, "ts": 11247065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667e90", "tid": 35568, "ts": 11247152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ab40", "tid": 35568, "ts": 11247238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066aa70", "tid": 35568, "ts": 11247324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06692e0", "tid": 35568, "ts": 11247412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669140", "tid": 35568, "ts": 11247498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669a30", "tid": 35568, "ts": 11247584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ace0", "tid": 35568, "ts": 11247671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ac10", "tid": 35568, "ts": 11247758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668370", "tid": 35568, "ts": 11247844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a180", "tid": 35568, "ts": 11247931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066af50", "tid": 35568, "ts": 11248018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668fa0", "tid": 35568, "ts": 11248105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a660", "tid": 35568, "ts": 11248191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667c20", "tid": 35568, "ts": 11248278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06679b0", "tid": 35568, "ts": 11248364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666ff0", "tid": 35568, "ts": 11248451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667b50", "tid": 35568, "ts": 11248538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666d80", "tid": 35568, "ts": 11248624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06668a0", "tid": 35568, "ts": 11248710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06674d0", "tid": 35568, "ts": 11248797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666700", "tid": 35568, "ts": 11248883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666150", "tid": 35568, "ts": 11248969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664b60", "tid": 35568, "ts": 11249055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665ee0", "tid": 35568, "ts": 11249141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666be0", "tid": 35568, "ts": 11249228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666220", "tid": 35568, "ts": 11249314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666b10", "tid": 35568, "ts": 11249401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06675a0", "tid": 35568, "ts": 11249488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665c70", "tid": 35568, "ts": 11249575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06656c0", "tid": 35568, "ts": 11249661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667190", "tid": 35568, "ts": 11249747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666560", "tid": 35568, "ts": 11249834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06652b0", "tid": 35568, "ts": 11249920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06670c0", "tid": 35568, "ts": 11250007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667400", "tid": 35568, "ts": 11250094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665520", "tid": 35568, "ts": 11250181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666cb0", "tid": 35568, "ts": 11250267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665930", "tid": 35568, "ts": 11250352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665ad0", "tid": 35568, "ts": 11250439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665450", "tid": 35568, "ts": 11250525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06649c0", "tid": 35568, "ts": 11250613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665860", "tid": 35568, "ts": 11250699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06648f0", "tid": 35568, "ts": 11250785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664ea0", "tid": 35568, "ts": 11250872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666630", "tid": 35568, "ts": 11250958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06644e0", "tid": 35568, "ts": 11251044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06640d0", "tid": 35568, "ts": 11251129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663e60", "tid": 35568, "ts": 11251217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663bf0", "tid": 35568, "ts": 11251303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663a50", "tid": 35568, "ts": 11251389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06638b0", "tid": 35568, "ts": 11251475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661690", "tid": 35568, "ts": 11251562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663710", "tid": 35568, "ts": 11251649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661760", "tid": 35568, "ts": 11251735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06645b0", "tid": 35568, "ts": 11251821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664750", "tid": 35568, "ts": 11251908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663230", "tid": 35568, "ts": 11251994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662d50", "tid": 35568, "ts": 11252080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06621f0", "tid": 35568, "ts": 11252166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662a10", "tid": 35568, "ts": 11252252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661eb0", "tid": 35568, "ts": 11252339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664340", "tid": 35568, "ts": 11252424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663160", "tid": 35568, "ts": 11252511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662940", "tid": 35568, "ts": 11252597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661900", "tid": 35568, "ts": 11252683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662bb0", "tid": 35568, "ts": 11252769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663300", "tid": 35568, "ts": 11252855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661aa0", "tid": 35568, "ts": 11252941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06619d0", "tid": 35568, "ts": 11253027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664270", "tid": 35568, "ts": 11253114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661de0", "tid": 35568, "ts": 11253200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662050", "tid": 35568, "ts": 11253287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662ae0", "tid": 35568, "ts": 11253373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661c40", "tid": 35568, "ts": 11253460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662e20", "tid": 35568, "ts": 11253546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06615c0", "tid": 35568, "ts": 11253632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661830", "tid": 35568, "ts": 11253718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae450", "tid": 35568, "ts": 11253805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae380", "tid": 35568, "ts": 11253891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae2b0", "tid": 35568, "ts": 11253979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0400", "tid": 35568, "ts": 11254065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af700", "tid": 35568, "ts": 11254151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae110", "tid": 35568, "ts": 11254237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af080", "tid": 35568, "ts": 11254324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aff20", "tid": 35568, "ts": 11254411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aeee0", "tid": 35568, "ts": 11254497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aec70", "tid": 35568, "ts": 11254583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afcb0", "tid": 35568, "ts": 11254669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af490", "tid": 35568, "ts": 11254756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0670", "tid": 35568, "ts": 11254842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aee10", "tid": 35568, "ts": 11254928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aed40", "tid": 35568, "ts": 11255014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afff0", "tid": 35568, "ts": 11255101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b05a0", "tid": 35568, "ts": 11255188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aeba0", "tid": 35568, "ts": 11255273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b04d0", "tid": 35568, "ts": 11255361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afa40", "tid": 35568, "ts": 11255447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae5f0", "tid": 35568, "ts": 11255534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aea00", "tid": 35568, "ts": 11255620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b00c0", "tid": 35568, "ts": 11255707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae860", "tid": 35568, "ts": 11255793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af8a0", "tid": 35568, "ts": 11255880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af970", "tid": 35568, "ts": 11255966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0cf0", "tid": 35568, "ts": 11256052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae1e0", "tid": 35568, "ts": 11256138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af150", "tid": 35568, "ts": 11256225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adf70", "tid": 35568, "ts": 11256311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adb60", "tid": 35568, "ts": 11256398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad8f0", "tid": 35568, "ts": 11256484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad750", "tid": 35568, "ts": 11256570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad270", "tid": 35568, "ts": 11256656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad1a0", "tid": 35568, "ts": 11256743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad000", "tid": 35568, "ts": 11256828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aca50", "tid": 35568, "ts": 11256914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac710", "tid": 35568, "ts": 11257000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad5b0", "tid": 35568, "ts": 11257086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abae0", "tid": 35568, "ts": 11257173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac640", "tid": 35568, "ts": 11257259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab870", "tid": 35568, "ts": 11257346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac8b0", "tid": 35568, "ts": 11257432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab600", "tid": 35568, "ts": 11257518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad4e0", "tid": 35568, "ts": 11257604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac3d0", "tid": 35568, "ts": 11257691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad680", "tid": 35568, "ts": 11257778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab390", "tid": 35568, "ts": 11257865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acf30", "tid": 35568, "ts": 11257954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac7e0", "tid": 35568, "ts": 11258042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abe20", "tid": 35568, "ts": 11258174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aade0", "tid": 35568, "ts": 11258264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aad10", "tid": 35568, "ts": 11258350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aba10", "tid": 35568, "ts": 11258437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab2c0", "tid": 35568, "ts": 11258523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acd90", "tid": 35568, "ts": 11258609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adc30", "tid": 35568, "ts": 11258695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac160", "tid": 35568, "ts": 11258781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac090", "tid": 35568, "ts": 11258868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab050", "tid": 35568, "ts": 11258953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad410", "tid": 35568, "ts": 11259040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9170", "tid": 35568, "ts": 11259126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8fd0", "tid": 35568, "ts": 11259213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7b80", "tid": 35568, "ts": 11259299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa760", "tid": 35568, "ts": 11259385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa010", "tid": 35568, "ts": 11259471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9650", "tid": 35568, "ts": 11259558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8e30", "tid": 35568, "ts": 11259644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a82d0", "tid": 35568, "ts": 11259730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aaaa0", "tid": 35568, "ts": 11259816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8af0", "tid": 35568, "ts": 11259903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8c90", "tid": 35568, "ts": 11259988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7ec0", "tid": 35568, "ts": 11260074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa350", "tid": 35568, "ts": 11260160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8950", "tid": 35568, "ts": 11260247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8880", "tid": 35568, "ts": 11260333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8200", "tid": 35568, "ts": 11260419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9310", "tid": 35568, "ts": 11260505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a87b0", "tid": 35568, "ts": 11260591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8a20", "tid": 35568, "ts": 11260678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa1b0", "tid": 35568, "ts": 11260764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9a60", "tid": 35568, "ts": 11260850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa690", "tid": 35568, "ts": 11260937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7d20", "tid": 35568, "ts": 11261023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa5c0", "tid": 35568, "ts": 11261110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8060", "tid": 35568, "ts": 11261196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a86e0", "tid": 35568, "ts": 11261282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7c50", "tid": 35568, "ts": 11261368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7840", "tid": 35568, "ts": 11261454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7df0", "tid": 35568, "ts": 11261540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa4f0", "tid": 35568, "ts": 11261626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7910", "tid": 35568, "ts": 11261712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a98c0", "tid": 35568, "ts": 11261799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a71c0", "tid": 35568, "ts": 11261884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6ce0", "tid": 35568, "ts": 11261970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6b40", "tid": 35568, "ts": 11262056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a68d0", "tid": 35568, "ts": 11262142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6250", "tid": 35568, "ts": 11262228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5fe0", "tid": 35568, "ts": 11262354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5ca0", "tid": 35568, "ts": 11262439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5bd0", "tid": 35568, "ts": 11262526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5960", "tid": 35568, "ts": 11262613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6320", "tid": 35568, "ts": 11262699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5550", "tid": 35568, "ts": 11262785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5480", "tid": 35568, "ts": 11262871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5070", "tid": 35568, "ts": 11262958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7430", "tid": 35568, "ts": 11263044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5e40", "tid": 35568, "ts": 11263130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4e00", "tid": 35568, "ts": 11263217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6db0", "tid": 35568, "ts": 11263303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7020", "tid": 35568, "ts": 11263390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a46b0", "tid": 35568, "ts": 11263475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a57c0", "tid": 35568, "ts": 11263561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a75d0", "tid": 35568, "ts": 11263647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4b90", "tid": 35568, "ts": 11263734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a45e0", "tid": 35568, "ts": 11263820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a49f0", "tid": 35568, "ts": 11263906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4fa0", "tid": 35568, "ts": 11263991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6660", "tid": 35568, "ts": 11264077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7360", "tid": 35568, "ts": 11264163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a69a0", "tid": 35568, "ts": 11264249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4c60", "tid": 35568, "ts": 11264335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6f50", "tid": 35568, "ts": 11264421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6590", "tid": 35568, "ts": 11264507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4510", "tid": 35568, "ts": 11264593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a30c0", "tid": 35568, "ts": 11264679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2970", "tid": 35568, "ts": 11264765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1040", "tid": 35568, "ts": 11264851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2630", "tid": 35568, "ts": 11264937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2560", "tid": 35568, "ts": 11265024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2080", "tid": 35568, "ts": 11265111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1fb0", "tid": 35568, "ts": 11265196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1ee0", "tid": 35568, "ts": 11265282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a15f0", "tid": 35568, "ts": 11265368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a34d0", "tid": 35568, "ts": 11265455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1520", "tid": 35568, "ts": 11265541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1450", "tid": 35568, "ts": 11265627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4370", "tid": 35568, "ts": 11265713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a27d0", "tid": 35568, "ts": 11265799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3810", "tid": 35568, "ts": 11265886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a42a0", "tid": 35568, "ts": 11265972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a23c0", "tid": 35568, "ts": 11266059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2d80", "tid": 35568, "ts": 11266145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1c70", "tid": 35568, "ts": 11266230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2150", "tid": 35568, "ts": 11266317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2cb0", "tid": 35568, "ts": 11266403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2b10", "tid": 35568, "ts": 11266490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2be0", "tid": 35568, "ts": 11266576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3260", "tid": 35568, "ts": 11266663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3190", "tid": 35568, "ts": 11266749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3670", "tid": 35568, "ts": 11266835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1a00", "tid": 35568, "ts": 11266921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3b50", "tid": 35568, "ts": 11267008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3a80", "tid": 35568, "ts": 11267094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1790", "tid": 35568, "ts": 11267181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1860", "tid": 35568, "ts": 11267267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3e90", "tid": 35568, "ts": 11267353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333100", "tid": 35568, "ts": 11267440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03332a0", "tid": 35568, "ts": 11267526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333030", "tid": 35568, "ts": 11267612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333920", "tid": 35568, "ts": 11267698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334a30", "tid": 35568, "ts": 11267784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03324d0", "tid": 35568, "ts": 11267871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03343b0", "tid": 35568, "ts": 11267957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332b50", "tid": 35568, "ts": 11268043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334960", "tid": 35568, "ts": 11268129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03336b0", "tid": 35568, "ts": 11268215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332f60", "tid": 35568, "ts": 11268302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03342e0", "tid": 35568, "ts": 11268388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332400", "tid": 35568, "ts": 11268473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334620", "tid": 35568, "ts": 11268560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334480", "tid": 35568, "ts": 11268647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334140", "tid": 35568, "ts": 11268733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03347c0", "tid": 35568, "ts": 11268819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332810", "tid": 35568, "ts": 11268905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333d30", "tid": 35568, "ts": 11268991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332670", "tid": 35568, "ts": 11269077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332e90", "tid": 35568, "ts": 11269164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332a80", "tid": 35568, "ts": 11269251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335250", "tid": 35568, "ts": 11269336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334890", "tid": 35568, "ts": 11269422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332c20", "tid": 35568, "ts": 11269508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333c60", "tid": 35568, "ts": 11269595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333b90", "tid": 35568, "ts": 11269682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335180", "tid": 35568, "ts": 11269769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03346f0", "tid": 35568, "ts": 11269855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332190", "tid": 35568, "ts": 11269941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03329b0", "tid": 35568, "ts": 11270028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03331d0", "tid": 35568, "ts": 11270113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f4d0", "tid": 35568, "ts": 11270200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341ca0", "tid": 35568, "ts": 11270286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341960", "tid": 35568, "ts": 11270373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03417c0", "tid": 35568, "ts": 11270458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341480", "tid": 35568, "ts": 11270544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340ed0", "tid": 35568, "ts": 11270630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340780", "tid": 35568, "ts": 11270717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03413b0", "tid": 35568, "ts": 11270803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03412e0", "tid": 35568, "ts": 11270889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340370", "tid": 35568, "ts": 11270975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ff60", "tid": 35568, "ts": 11271061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341b00", "tid": 35568, "ts": 11271147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341140", "tid": 35568, "ts": 11271233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03402a0", "tid": 35568, "ts": 11271320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340fa0", "tid": 35568, "ts": 11271406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340b90", "tid": 35568, "ts": 11271492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03409f0", "tid": 35568, "ts": 11271577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fc20", "tid": 35568, "ts": 11271664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341890", "tid": 35568, "ts": 11271750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fb50", "tid": 35568, "ts": 11271837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341210", "tid": 35568, "ts": 11271922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f5a0", "tid": 35568, "ts": 11272009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f670", "tid": 35568, "ts": 11272095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340850", "tid": 35568, "ts": 11272181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f9b0", "tid": 35568, "ts": 11272267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f810", "tid": 35568, "ts": 11272352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fe90", "tid": 35568, "ts": 11272439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340440", "tid": 35568, "ts": 11272525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03416f0", "tid": 35568, "ts": 11272610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e700", "tid": 35568, "ts": 11272697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e220", "tid": 35568, "ts": 11272783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e080", "tid": 35568, "ts": 11272869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dee0", "tid": 35568, "ts": 11272955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cea0", "tid": 35568, "ts": 11273041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e560", "tid": 35568, "ts": 11273127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cc30", "tid": 35568, "ts": 11273213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d1e0", "tid": 35568, "ts": 11273299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c9c0", "tid": 35568, "ts": 11273386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c4e0", "tid": 35568, "ts": 11273472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c820", "tid": 35568, "ts": 11273559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c270", "tid": 35568, "ts": 11273644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ca90", "tid": 35568, "ts": 11273730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e630", "tid": 35568, "ts": 11273816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dd40", "tid": 35568, "ts": 11273902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d450", "tid": 35568, "ts": 11273989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dc70", "tid": 35568, "ts": 11274075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e2f0", "tid": 35568, "ts": 11274161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dfb0", "tid": 35568, "ts": 11274248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bd90", "tid": 35568, "ts": 11274334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c410", "tid": 35568, "ts": 11274420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033da00", "tid": 35568, "ts": 11274506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ea40", "tid": 35568, "ts": 11274592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d930", "tid": 35568, "ts": 11274678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e490", "tid": 35568, "ts": 11274766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ebe0", "tid": 35568, "ts": 11274853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d790", "tid": 35568, "ts": 11274940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ee50", "tid": 35568, "ts": 11275026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033eff0", "tid": 35568, "ts": 11275113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ef20", "tid": 35568, "ts": 11275198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033eb10", "tid": 35568, "ts": 11275285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ed80", "tid": 35568, "ts": 11275371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ac80", "tid": 35568, "ts": 11275458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033aae0", "tid": 35568, "ts": 11275545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a940", "tid": 35568, "ts": 11275631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a7a0", "tid": 35568, "ts": 11275717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339de0", "tid": 35568, "ts": 11275804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339d10", "tid": 35568, "ts": 11275890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a6d0", "tid": 35568, "ts": 11275976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03399d0", "tid": 35568, "ts": 11276063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339eb0", "tid": 35568, "ts": 11276150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a870", "tid": 35568, "ts": 11276237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03388c0", "tid": 35568, "ts": 11276323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bbf0", "tid": 35568, "ts": 11276410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ba50", "tid": 35568, "ts": 11276496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03394f0", "tid": 35568, "ts": 11276582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a530", "tid": 35568, "ts": 11276668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b8b0", "tid": 35568, "ts": 11276755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b3d0", "tid": 35568, "ts": 11276842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339350", "tid": 35568, "ts": 11276928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a460", "tid": 35568, "ts": 11277015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ad50", "tid": 35568, "ts": 11277101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338f40", "tid": 35568, "ts": 11277189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033aef0", "tid": 35568, "ts": 11277275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339690", "tid": 35568, "ts": 11277361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a1f0", "tid": 35568, "ts": 11277458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339420", "tid": 35568, "ts": 11277548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b090", "tid": 35568, "ts": 11277634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339f80", "tid": 35568, "ts": 11277721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339c40", "tid": 35568, "ts": 11277807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338e70", "tid": 35568, "ts": 11277937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339010", "tid": 35568, "ts": 11278043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b160", "tid": 35568, "ts": 11278131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336430", "tid": 35568, "ts": 11278218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03361c0", "tid": 35568, "ts": 11278304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03354c0", "tid": 35568, "ts": 11278390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337950", "tid": 35568, "ts": 11278477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03377b0", "tid": 35568, "ts": 11278563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03387f0", "tid": 35568, "ts": 11278650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336020", "tid": 35568, "ts": 11278737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03373a0", "tid": 35568, "ts": 11278823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336df0", "tid": 35568, "ts": 11278908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336ec0", "tid": 35568, "ts": 11278996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03372d0", "tid": 35568, "ts": 11279082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336c50", "tid": 35568, "ts": 11279169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337130", "tid": 35568, "ts": 11279256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335e80", "tid": 35568, "ts": 11279342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335b40", "tid": 35568, "ts": 11279428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335c10", "tid": 35568, "ts": 11279514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03380a0", "tid": 35568, "ts": 11279601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338580", "tid": 35568, "ts": 11279688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03384b0", "tid": 35568, "ts": 11279775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337fd0", "tid": 35568, "ts": 11279862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03365d0", "tid": 35568, "ts": 11279948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337540", "tid": 35568, "ts": 11280034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337e30", "tid": 35568, "ts": 11280121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336500", "tid": 35568, "ts": 11280208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335730", "tid": 35568, "ts": 11280294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335800", "tid": 35568, "ts": 11280381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337af0", "tid": 35568, "ts": 11280467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336770", "tid": 35568, "ts": 11280553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335590", "tid": 35568, "ts": 11280640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336ab0", "tid": 35568, "ts": 11280726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336360", "tid": 35568, "ts": 11280812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335ce0", "tid": 35568, "ts": 11280898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915320", "tid": 35568, "ts": 11280984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879150b0", "tid": 35568, "ts": 11281071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914960", "tid": 35568, "ts": 11281157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914140", "tid": 35568, "ts": 11281244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913ed0", "tid": 35568, "ts": 11281331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879139f0", "tid": 35568, "ts": 11281418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879147c0", "tid": 35568, "ts": 11281505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913780", "tid": 35568, "ts": 11281591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913d30", "tid": 35568, "ts": 11281678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913370", "tid": 35568, "ts": 11281766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912cf0", "tid": 35568, "ts": 11281852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912740", "tid": 35568, "ts": 11281939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879146f0", "tid": 35568, "ts": 11282025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879125a0", "tid": 35568, "ts": 11282112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914620", "tid": 35568, "ts": 11282198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914550", "tid": 35568, "ts": 11282285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914480", "tid": 35568, "ts": 11282372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912c20", "tid": 35568, "ts": 11282458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913c60", "tid": 35568, "ts": 11282545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913510", "tid": 35568, "ts": 11282632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913b90", "tid": 35568, "ts": 11282718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913920", "tid": 35568, "ts": 11282804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912330", "tid": 35568, "ts": 11282890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913100", "tid": 35568, "ts": 11282977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879143b0", "tid": 35568, "ts": 11283064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879120c0", "tid": 35568, "ts": 11283151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914210", "tid": 35568, "ts": 11283238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879153f0", "tid": 35568, "ts": 11283325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914a30", "tid": 35568, "ts": 11283411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914890", "tid": 35568, "ts": 11283498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914ca0", "tid": 35568, "ts": 11283585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912190", "tid": 35568, "ts": 11283671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921a30", "tid": 35568, "ts": 11283758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921210", "tid": 35568, "ts": 11283844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920100", "tid": 35568, "ts": 11283931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920920", "tid": 35568, "ts": 11284018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920780", "tid": 35568, "ts": 11284104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fdc0", "tid": 35568, "ts": 11284191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879205e0", "tid": 35568, "ts": 11284278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879212e0", "tid": 35568, "ts": 11284364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921620", "tid": 35568, "ts": 11284451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921e40", "tid": 35568, "ts": 11284538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f0c0", "tid": 35568, "ts": 11284624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920030", "tid": 35568, "ts": 11284710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f740", "tid": 35568, "ts": 11284796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920850", "tid": 35568, "ts": 11284883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f4d0", "tid": 35568, "ts": 11284969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f670", "tid": 35568, "ts": 11285055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879202a0", "tid": 35568, "ts": 11285141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f260", "tid": 35568, "ts": 11285228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879216f0", "tid": 35568, "ts": 11285315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921bd0", "tid": 35568, "ts": 11285402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920370", "tid": 35568, "ts": 11285489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921890", "tid": 35568, "ts": 11285575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f400", "tid": 35568, "ts": 11285662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f190", "tid": 35568, "ts": 11285748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879201d0", "tid": 35568, "ts": 11285834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879213b0", "tid": 35568, "ts": 11285921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921f10", "tid": 35568, "ts": 11286008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921d70", "tid": 35568, "ts": 11286094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920ac0", "tid": 35568, "ts": 11286181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d860", "tid": 35568, "ts": 11286268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d6c0", "tid": 35568, "ts": 11286354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cf70", "tid": 35568, "ts": 11286440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c4e0", "tid": 35568, "ts": 11286528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c410", "tid": 35568, "ts": 11286614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791eff0", "tid": 35568, "ts": 11286700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bf30", "tid": 35568, "ts": 11286786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d450", "tid": 35568, "ts": 11286873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d380", "tid": 35568, "ts": 11286960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e970", "tid": 35568, "ts": 11287046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cea0", "tid": 35568, "ts": 11287133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e220", "tid": 35568, "ts": 11287219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e7d0", "tid": 35568, "ts": 11287308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ed80", "tid": 35568, "ts": 11287394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ea40", "tid": 35568, "ts": 11287481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cdd0", "tid": 35568, "ts": 11287568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dd40", "tid": 35568, "ts": 11287655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d040", "tid": 35568, "ts": 11287741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e630", "tid": 35568, "ts": 11287828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cc30", "tid": 35568, "ts": 11287914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c1a0", "tid": 35568, "ts": 11288001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c8f0", "tid": 35568, "ts": 11288087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dba0", "tid": 35568, "ts": 11288174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dad0", "tid": 35568, "ts": 11288260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cd00", "tid": 35568, "ts": 11288346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e490", "tid": 35568, "ts": 11288432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791da00", "tid": 35568, "ts": 11288519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dee0", "tid": 35568, "ts": 11288605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791eb10", "tid": 35568, "ts": 11288694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791de10", "tid": 35568, "ts": 11288780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c340", "tid": 35568, "ts": 11288867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c9c0", "tid": 35568, "ts": 11288954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ae20", "tid": 35568, "ts": 11289041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ac80", "tid": 35568, "ts": 11289127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791aae0", "tid": 35568, "ts": 11289214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a870", "tid": 35568, "ts": 11289300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a2c0", "tid": 35568, "ts": 11289387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919c40", "tid": 35568, "ts": 11289474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919830", "tid": 35568, "ts": 11289561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919760", "tid": 35568, "ts": 11289647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918e70", "tid": 35568, "ts": 11289733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918c00", "tid": 35568, "ts": 11289820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879190e0", "tid": 35568, "ts": 11289906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918b30", "tid": 35568, "ts": 11289993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879199d0", "tid": 35568, "ts": 11290079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b4a0", "tid": 35568, "ts": 11290166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b300", "tid": 35568, "ts": 11290252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b8b0", "tid": 35568, "ts": 11290338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b3d0", "tid": 35568, "ts": 11290425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a050", "tid": 35568, "ts": 11290511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b640", "tid": 35568, "ts": 11290598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879195c0", "tid": 35568, "ts": 11290684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b570", "tid": 35568, "ts": 11290772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919eb0", "tid": 35568, "ts": 11290858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918990", "tid": 35568, "ts": 11290945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919900", "tid": 35568, "ts": 11291031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b710", "tid": 35568, "ts": 11291117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a600", "tid": 35568, "ts": 11291204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879188c0", "tid": 35568, "ts": 11291290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919420", "tid": 35568, "ts": 11291377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879191b0", "tid": 35568, "ts": 11291463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791afc0", "tid": 35568, "ts": 11291550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919f80", "tid": 35568, "ts": 11291636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919280", "tid": 35568, "ts": 11291723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918240", "tid": 35568, "ts": 11291810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917af0", "tid": 35568, "ts": 11291897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916ec0", "tid": 35568, "ts": 11291984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916910", "tid": 35568, "ts": 11292070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917060", "tid": 35568, "ts": 11292157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916430", "tid": 35568, "ts": 11292244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918170", "tid": 35568, "ts": 11292331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879161c0", "tid": 35568, "ts": 11292417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916df0", "tid": 35568, "ts": 11292505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917d60", "tid": 35568, "ts": 11292592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916b80", "tid": 35568, "ts": 11292679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916360", "tid": 35568, "ts": 11292766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879173a0", "tid": 35568, "ts": 11292855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879160f0", "tid": 35568, "ts": 11292942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916d20", "tid": 35568, "ts": 11293070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915e80", "tid": 35568, "ts": 11293160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879183e0", "tid": 35568, "ts": 11293247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915ce0", "tid": 35568, "ts": 11293333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917950", "tid": 35568, "ts": 11293420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918310", "tid": 35568, "ts": 11293563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916290", "tid": 35568, "ts": 11293769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917130", "tid": 35568, "ts": 11293943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916f90", "tid": 35568, "ts": 11294071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918650", "tid": 35568, "ts": 11294212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879184b0", "tid": 35568, "ts": 11294313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916ab0", "tid": 35568, "ts": 11294412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917fd0", "tid": 35568, "ts": 11294546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879169e0", "tid": 35568, "ts": 11294800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879166a0", "tid": 35568, "ts": 11294888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917e30", "tid": 35568, "ts": 11294975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879177b0", "tid": 35568, "ts": 11295062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879159a0", "tid": 35568, "ts": 11295149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e2c0", "tid": 35568, "ts": 11295236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8580", "tid": 35568, "ts": 11295323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa870", "tid": 35568, "ts": 11295410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786cc0", "tid": 35568, "ts": 11295497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786230", "tid": 35568, "ts": 11295584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785ef0", "tid": 35568, "ts": 11295671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785870", "tid": 35568, "ts": 11295758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785530", "tid": 35568, "ts": 11295844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7852c0", "tid": 35568, "ts": 11295931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785e20", "tid": 35568, "ts": 11296018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785050", "tid": 35568, "ts": 11296104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785d50", "tid": 35568, "ts": 11296190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784900", "tid": 35568, "ts": 11296277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784d10", "tid": 35568, "ts": 11296364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784830", "tid": 35568, "ts": 11296450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7864a0", "tid": 35568, "ts": 11296537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784690", "tid": 35568, "ts": 11296624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784420", "tid": 35568, "ts": 11296711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784280", "tid": 35568, "ts": 11296797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785390", "tid": 35568, "ts": 11296883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787410", "tid": 35568, "ts": 11296970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785c80", "tid": 35568, "ts": 11297057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784c40", "tid": 35568, "ts": 11297143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786a50", "tid": 35568, "ts": 11297230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7863d0", "tid": 35568, "ts": 11297316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786b20", "tid": 35568, "ts": 11297403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785ae0", "tid": 35568, "ts": 11297489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784aa0", "tid": 35568, "ts": 11297576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786710", "tid": 35568, "ts": 11297663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786980", "tid": 35568, "ts": 11297749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784f80", "tid": 35568, "ts": 11297836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787270", "tid": 35568, "ts": 11297923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786d90", "tid": 35568, "ts": 11298009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7871a0", "tid": 35568, "ts": 11298096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7841b0", "tid": 35568, "ts": 11298183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7933d0", "tid": 35568, "ts": 11298270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793e60", "tid": 35568, "ts": 11298356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792050", "tid": 35568, "ts": 11298443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793160", "tid": 35568, "ts": 11298529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791eb0", "tid": 35568, "ts": 11298616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792390", "tid": 35568, "ts": 11298702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7919d0", "tid": 35568, "ts": 11298789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7934a0", "tid": 35568, "ts": 11298876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791d10", "tid": 35568, "ts": 11298962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792ef0", "tid": 35568, "ts": 11299050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7915c0", "tid": 35568, "ts": 11299137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793b20", "tid": 35568, "ts": 11299224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792ae0", "tid": 35568, "ts": 11299310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793090", "tid": 35568, "ts": 11299397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7911b0", "tid": 35568, "ts": 11299483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792870", "tid": 35568, "ts": 11299570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791280", "tid": 35568, "ts": 11299656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792fc0", "tid": 35568, "ts": 11299743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7937e0", "tid": 35568, "ts": 11299830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7927a0", "tid": 35568, "ts": 11299916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791350", "tid": 35568, "ts": 11300003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791de0", "tid": 35568, "ts": 11300090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791420", "tid": 35568, "ts": 11300177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7921f0", "tid": 35568, "ts": 11300264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792460", "tid": 35568, "ts": 11300364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790c00", "tid": 35568, "ts": 11300453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7907f0", "tid": 35568, "ts": 11300539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e6a0", "tid": 35568, "ts": 11300625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f610", "tid": 35568, "ts": 11300712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f200", "tid": 35568, "ts": 11300798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e500", "tid": 35568, "ts": 11300885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f2d0", "tid": 35568, "ts": 11300971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78eb80", "tid": 35568, "ts": 11301057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e430", "tid": 35568, "ts": 11301145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e840", "tid": 35568, "ts": 11301231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e1c0", "tid": 35568, "ts": 11301318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790650", "tid": 35568, "ts": 11301405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790170", "tid": 35568, "ts": 11301492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ddb0", "tid": 35568, "ts": 11301579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78edf0", "tid": 35568, "ts": 11301666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790cd0", "tid": 35568, "ts": 11301751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f470", "tid": 35568, "ts": 11301838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790720", "tid": 35568, "ts": 11301924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f3a0", "tid": 35568, "ts": 11302011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fe30", "tid": 35568, "ts": 11302097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78faf0", "tid": 35568, "ts": 11302183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790a60", "tid": 35568, "ts": 11302269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78dce0", "tid": 35568, "ts": 11302356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78df50", "tid": 35568, "ts": 11302442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7904b0", "tid": 35568, "ts": 11302529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e910", "tid": 35568, "ts": 11302616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fc90", "tid": 35568, "ts": 11302703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791010", "tid": 35568, "ts": 11302790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f7b0", "tid": 35568, "ts": 11302877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f6e0", "tid": 35568, "ts": 11302963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e770", "tid": 35568, "ts": 11303049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790e70", "tid": 35568, "ts": 11303136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b030", "tid": 35568, "ts": 11303223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a8e0", "tid": 35568, "ts": 11303309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bb90", "tid": 35568, "ts": 11303395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b920", "tid": 35568, "ts": 11303482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cf10", "tid": 35568, "ts": 11303569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b850", "tid": 35568, "ts": 11303656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c550", "tid": 35568, "ts": 11303743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bed0", "tid": 35568, "ts": 11303829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d9a0", "tid": 35568, "ts": 11303916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c6f0", "tid": 35568, "ts": 11304002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b5e0", "tid": 35568, "ts": 11304089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d3f0", "tid": 35568, "ts": 11304176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d250", "tid": 35568, "ts": 11304263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c3b0", "tid": 35568, "ts": 11304350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cbd0", "tid": 35568, "ts": 11304436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d800", "tid": 35568, "ts": 11304523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ca30", "tid": 35568, "ts": 11304610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d730", "tid": 35568, "ts": 11304697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c890", "tid": 35568, "ts": 11304784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d180", "tid": 35568, "ts": 11304870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c2e0", "tid": 35568, "ts": 11304956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bac0", "tid": 35568, "ts": 11305043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d8d0", "tid": 35568, "ts": 11305129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bc60", "tid": 35568, "ts": 11305216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c620", "tid": 35568, "ts": 11305302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c140", "tid": 35568, "ts": 11305388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ac20", "tid": 35568, "ts": 11305474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b1d0", "tid": 35568, "ts": 11305561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ce40", "tid": 35568, "ts": 11305648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c960", "tid": 35568, "ts": 11305734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ab50", "tid": 35568, "ts": 11305821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b370", "tid": 35568, "ts": 11305907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a670", "tid": 35568, "ts": 11305995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a400", "tid": 35568, "ts": 11306081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a190", "tid": 35568, "ts": 11306168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789970", "tid": 35568, "ts": 11306254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789080", "tid": 35568, "ts": 11306342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788e10", "tid": 35568, "ts": 11306428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7897d0", "tid": 35568, "ts": 11306515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789f20", "tid": 35568, "ts": 11306602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789be0", "tid": 35568, "ts": 11306688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a740", "tid": 35568, "ts": 11306774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787c30", "tid": 35568, "ts": 11306860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787b60", "tid": 35568, "ts": 11306946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788930", "tid": 35568, "ts": 11307033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7882b0", "tid": 35568, "ts": 11307119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788860", "tid": 35568, "ts": 11307206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789630", "tid": 35568, "ts": 11307292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788ad0", "tid": 35568, "ts": 11307381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789490", "tid": 35568, "ts": 11307467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788380", "tid": 35568, "ts": 11307554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7893c0", "tid": 35568, "ts": 11307640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787820", "tid": 35568, "ts": 11307726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a0c0", "tid": 35568, "ts": 11307812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a260", "tid": 35568, "ts": 11307899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787f70", "tid": 35568, "ts": 11307985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788a00", "tid": 35568, "ts": 11308071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787750", "tid": 35568, "ts": 11308158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789700", "tid": 35568, "ts": 11308245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7892f0", "tid": 35568, "ts": 11308331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788790", "tid": 35568, "ts": 11308418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7878f0", "tid": 35568, "ts": 11308504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787dd0", "tid": 35568, "ts": 11308590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789d80", "tid": 35568, "ts": 11308677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946181d0", "tid": 35568, "ts": 11308765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617e90", "tid": 35568, "ts": 11308851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617a80", "tid": 35568, "ts": 11308937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946178e0", "tid": 35568, "ts": 11309023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618440", "tid": 35568, "ts": 11309111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946182a0", "tid": 35568, "ts": 11309290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618b90", "tid": 35568, "ts": 11309420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617670", "tid": 35568, "ts": 11309579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946179b0", "tid": 35568, "ts": 11309669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617c20", "tid": 35568, "ts": 11309758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617810", "tid": 35568, "ts": 11309845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946186b0", "tid": 35568, "ts": 11309933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618ac0", "tid": 35568, "ts": 11310021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617740", "tid": 35568, "ts": 11310107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618850", "tid": 35568, "ts": 11310194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614b60", "tid": 35568, "ts": 11310281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946140d0", "tid": 35568, "ts": 11310369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614a90", "tid": 35568, "ts": 11310456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614d00", "tid": 35568, "ts": 11310544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617260", "tid": 35568, "ts": 11310631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617190", "tid": 35568, "ts": 11310718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615fb0", "tid": 35568, "ts": 11310804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616cb0", "tid": 35568, "ts": 11310892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616490", "tid": 35568, "ts": 11310979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615ad0", "tid": 35568, "ts": 11311066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946170c0", "tid": 35568, "ts": 11311152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616700", "tid": 35568, "ts": 11311238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614680", "tid": 35568, "ts": 11311324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615040", "tid": 35568, "ts": 11311412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615930", "tid": 35568, "ts": 11311498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614f70", "tid": 35568, "ts": 11311585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946151e0", "tid": 35568, "ts": 11311671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615ee0", "tid": 35568, "ts": 11311758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616a40", "tid": 35568, "ts": 11311844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946163c0", "tid": 35568, "ts": 11311930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946141a0", "tid": 35568, "ts": 11312016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946167d0", "tid": 35568, "ts": 11312104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615380", "tid": 35568, "ts": 11312190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946155f0", "tid": 35568, "ts": 11312277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615790", "tid": 35568, "ts": 11312363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616d80", "tid": 35568, "ts": 11312449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615e10", "tid": 35568, "ts": 11312536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946156c0", "tid": 35568, "ts": 11312622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616150", "tid": 35568, "ts": 11312709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946168a0", "tid": 35568, "ts": 11312796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946148f0", "tid": 35568, "ts": 11312883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616e50", "tid": 35568, "ts": 11312969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613980", "tid": 35568, "ts": 11313055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946126d0", "tid": 35568, "ts": 11313142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612600", "tid": 35568, "ts": 11313227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611b70", "tid": 35568, "ts": 11313314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946119d0", "tid": 35568, "ts": 11313401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611900", "tid": 35568, "ts": 11313488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946110e0", "tid": 35568, "ts": 11313574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611830", "tid": 35568, "ts": 11313660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613230", "tid": 35568, "ts": 11313747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611350", "tid": 35568, "ts": 11313834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610e70", "tid": 35568, "ts": 11313920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612120", "tid": 35568, "ts": 11314007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611760", "tid": 35568, "ts": 11314093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613300", "tid": 35568, "ts": 11314179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611aa0", "tid": 35568, "ts": 11314265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946115c0", "tid": 35568, "ts": 11314351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611010", "tid": 35568, "ts": 11314438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612d50", "tid": 35568, "ts": 11314525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612530", "tid": 35568, "ts": 11314611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612c80", "tid": 35568, "ts": 11314697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612ef0", "tid": 35568, "ts": 11314783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612ae0", "tid": 35568, "ts": 11314869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611280", "tid": 35568, "ts": 11314956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613e60", "tid": 35568, "ts": 11315042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946133d0", "tid": 35568, "ts": 11315128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613d90", "tid": 35568, "ts": 11315215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611eb0", "tid": 35568, "ts": 11315301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612fc0", "tid": 35568, "ts": 11315388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611de0", "tid": 35568, "ts": 11315474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946122c0", "tid": 35568, "ts": 11315560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612940", "tid": 35568, "ts": 11315646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613570", "tid": 35568, "ts": 11315733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879295c0", "tid": 35568, "ts": 11315819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928990", "tid": 35568, "ts": 11315907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929f80", "tid": 35568, "ts": 11315993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879290e0", "tid": 35568, "ts": 11316080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929b70", "tid": 35568, "ts": 11316167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928da0", "tid": 35568, "ts": 11316254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879288c0", "tid": 35568, "ts": 11316340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879291b0", "tid": 35568, "ts": 11316427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929900", "tid": 35568, "ts": 11316513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929420", "tid": 35568, "ts": 11316600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929de0", "tid": 35568, "ts": 11316687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929010", "tid": 35568, "ts": 11316773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928a60", "tid": 35568, "ts": 11316859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928f40", "tid": 35568, "ts": 11316946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928580", "tid": 35568, "ts": 11317033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928170", "tid": 35568, "ts": 11317119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927e30", "tid": 35568, "ts": 11317205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927bc0", "tid": 35568, "ts": 11317292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927060", "tid": 35568, "ts": 11317379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926df0", "tid": 35568, "ts": 11317465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927a20", "tid": 35568, "ts": 11317552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926360", "tid": 35568, "ts": 11317639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879261c0", "tid": 35568, "ts": 11317725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926d20", "tid": 35568, "ts": 11317811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926020", "tid": 35568, "ts": 11317897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925b40", "tid": 35568, "ts": 11317984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879276e0", "tid": 35568, "ts": 11318070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927880", "tid": 35568, "ts": 11318157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926500", "tid": 35568, "ts": 11318243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926f90", "tid": 35568, "ts": 11318329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879269e0", "tid": 35568, "ts": 11318415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927610", "tid": 35568, "ts": 11318501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879254c0", "tid": 35568, "ts": 11318587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925660", "tid": 35568, "ts": 11318673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879273a0", "tid": 35568, "ts": 11318760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925c10", "tid": 35568, "ts": 11318847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879284b0", "tid": 35568, "ts": 11318933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927af0", "tid": 35568, "ts": 11319020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926840", "tid": 35568, "ts": 11319107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927540", "tid": 35568, "ts": 11319193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879265d0", "tid": 35568, "ts": 11319279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925590", "tid": 35568, "ts": 11319365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925e80", "tid": 35568, "ts": 11319451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928310", "tid": 35568, "ts": 11319536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927950", "tid": 35568, "ts": 11319623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879258d0", "tid": 35568, "ts": 11319708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924480", "tid": 35568, "ts": 11319794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879242e0", "tid": 35568, "ts": 11319881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923ed0", "tid": 35568, "ts": 11319967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923d30", "tid": 35568, "ts": 11320055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923fa0", "tid": 35568, "ts": 11320141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923850", "tid": 35568, "ts": 11320227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925320", "tid": 35568, "ts": 11320314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922dc0", "tid": 35568, "ts": 11320401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879253f0", "tid": 35568, "ts": 11320487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922260", "tid": 35568, "ts": 11320573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879228e0", "tid": 35568, "ts": 11320659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923b90", "tid": 35568, "ts": 11320746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924fe0", "tid": 35568, "ts": 11320832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922c20", "tid": 35568, "ts": 11320918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925250", "tid": 35568, "ts": 11321005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879236b0", "tid": 35568, "ts": 11321092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879247c0", "tid": 35568, "ts": 11321179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923ac0", "tid": 35568, "ts": 11321265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923370", "tid": 35568, "ts": 11321352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924ca0", "tid": 35568, "ts": 11321440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922f60", "tid": 35568, "ts": 11321526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922670", "tid": 35568, "ts": 11321613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924620", "tid": 35568, "ts": 11321700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924a30", "tid": 35568, "ts": 11321786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922400", "tid": 35568, "ts": 11321872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924210", "tid": 35568, "ts": 11321959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924140", "tid": 35568, "ts": 11322045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879220c0", "tid": 35568, "ts": 11322132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923440", "tid": 35568, "ts": 11322218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924550", "tid": 35568, "ts": 11322304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879250b0", "tid": 35568, "ts": 11322391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924b00", "tid": 35568, "ts": 11322477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9420", "tid": 35568, "ts": 11322564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8da0", "tid": 35568, "ts": 11322650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8cd0", "tid": 35568, "ts": 11322747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8b30", "tid": 35568, "ts": 11322836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8990", "tid": 35568, "ts": 11322923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9c40", "tid": 35568, "ts": 11323009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9f80", "tid": 35568, "ts": 11323095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9eb0", "tid": 35568, "ts": 11323181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9830", "tid": 35568, "ts": 11323268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d94f0", "tid": 35568, "ts": 11323354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9aa0", "tid": 35568, "ts": 11323440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d95c0", "tid": 35568, "ts": 11323527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9690", "tid": 35568, "ts": 11323613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8f40", "tid": 35568, "ts": 11323699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7200", "tid": 35568, "ts": 11323786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6d20", "tid": 35568, "ts": 11323873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6c50", "tid": 35568, "ts": 11323959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6840", "tid": 35568, "ts": 11324045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6770", "tid": 35568, "ts": 11324131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d65d0", "tid": 35568, "ts": 11324218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5a70", "tid": 35568, "ts": 11324304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d61c0", "tid": 35568, "ts": 11324390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d80a0", "tid": 35568, "ts": 11324476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d58d0", "tid": 35568, "ts": 11324563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5660", "tid": 35568, "ts": 11324649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6020", "tid": 35568, "ts": 11324763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7c90", "tid": 35568, "ts": 11324877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5f50", "tid": 35568, "ts": 11324964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6ec0", "tid": 35568, "ts": 11325050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5e80", "tid": 35568, "ts": 11325137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6430", "tid": 35568, "ts": 11325224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8720", "tid": 35568, "ts": 11325310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d72d0", "tid": 35568, "ts": 11325396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7540", "tid": 35568, "ts": 11325482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8240", "tid": 35568, "ts": 11325568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d84b0", "tid": 35568, "ts": 11325655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6290", "tid": 35568, "ts": 11325741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5db0", "tid": 35568, "ts": 11325828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d87f0", "tid": 35568, "ts": 11325913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7130", "tid": 35568, "ts": 11326001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7d60", "tid": 35568, "ts": 11326087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7a20", "tid": 35568, "ts": 11326172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d76e0", "tid": 35568, "ts": 11326258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8170", "tid": 35568, "ts": 11326344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7f00", "tid": 35568, "ts": 11326430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5c10", "tid": 35568, "ts": 11326516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3850", "tid": 35568, "ts": 11326601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3510", "tid": 35568, "ts": 11326688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d35e0", "tid": 35568, "ts": 11326774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3030", "tid": 35568, "ts": 11326860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2330", "tid": 35568, "ts": 11326946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3370", "tid": 35568, "ts": 11327033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5180", "tid": 35568, "ts": 11327119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4bd0", "tid": 35568, "ts": 11327206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3e00", "tid": 35568, "ts": 11327292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2e90", "tid": 35568, "ts": 11327379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4fe0", "tid": 35568, "ts": 11327466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2dc0", "tid": 35568, "ts": 11327552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3d30", "tid": 35568, "ts": 11327637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d47c0", "tid": 35568, "ts": 11327723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2c20", "tid": 35568, "ts": 11327809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d46f0", "tid": 35568, "ts": 11327896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3c60", "tid": 35568, "ts": 11327982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2740", "tid": 35568, "ts": 11328068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2810", "tid": 35568, "ts": 11328154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4890", "tid": 35568, "ts": 11328242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d32a0", "tid": 35568, "ts": 11328328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2a80", "tid": 35568, "ts": 11328416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d42e0", "tid": 35568, "ts": 11328503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d24d0", "tid": 35568, "ts": 11328590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d39f0", "tid": 35568, "ts": 11328724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4f10", "tid": 35568, "ts": 11328813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2190", "tid": 35568, "ts": 11328899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4d70", "tid": 35568, "ts": 11328987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5320", "tid": 35568, "ts": 11329073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4960", "tid": 35568, "ts": 11329160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3100", "tid": 35568, "ts": 11329246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d29b0", "tid": 35568, "ts": 11329332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22cb0", "tid": 35568, "ts": 11329419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22970", "tid": 35568, "ts": 11329505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23e90", "tid": 35568, "ts": 11329591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23c20", "tid": 35568, "ts": 11329677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22be0", "tid": 35568, "ts": 11329763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22f20", "tid": 35568, "ts": 11329850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22ff0", "tid": 35568, "ts": 11329936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c235a0", "tid": 35568, "ts": 11330022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23a80", "tid": 35568, "ts": 11330108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c230c0", "tid": 35568, "ts": 11330195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23670", "tid": 35568, "ts": 11330281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23740", "tid": 35568, "ts": 11330367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c234d0", "tid": 35568, "ts": 11330454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22b10", "tid": 35568, "ts": 11330540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f640", "tid": 35568, "ts": 11330626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22490", "tid": 35568, "ts": 11330712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c222f0", "tid": 35568, "ts": 11330799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f570", "tid": 35568, "ts": 11330886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21ee0", "tid": 35568, "ts": 11330971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20680", "tid": 35568, "ts": 11331057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21e10", "tid": 35568, "ts": 11331143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21d40", "tid": 35568, "ts": 11331231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f7e0", "tid": 35568, "ts": 11331317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20270", "tid": 35568, "ts": 11331403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c201a0", "tid": 35568, "ts": 11331490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21ad0", "tid": 35568, "ts": 11331577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20000", "tid": 35568, "ts": 11331663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20410", "tid": 35568, "ts": 11331748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21930", "tid": 35568, "ts": 11331835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c216c0", "tid": 35568, "ts": 11331921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21520", "tid": 35568, "ts": 11332007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c212b0", "tid": 35568, "ts": 11332094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c211e0", "tid": 35568, "ts": 11332179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20c30", "tid": 35568, "ts": 11332266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20a90", "tid": 35568, "ts": 11332352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21a00", "tid": 35568, "ts": 11332439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f8b0", "tid": 35568, "ts": 11332524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f4a0", "tid": 35568, "ts": 11332611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c208f0", "tid": 35568, "ts": 11332698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21110", "tid": 35568, "ts": 11332785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20340", "tid": 35568, "ts": 11332871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21ba0", "tid": 35568, "ts": 11332957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21790", "tid": 35568, "ts": 11333043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fe60", "tid": 35568, "ts": 11333129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20ea0", "tid": 35568, "ts": 11333216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c215f0", "tid": 35568, "ts": 11333302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c3e0", "tid": 35568, "ts": 11333388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f3d0", "tid": 35568, "ts": 11333474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f160", "tid": 35568, "ts": 11333560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ed50", "tid": 35568, "ts": 11333646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e870", "tid": 35568, "ts": 11333733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e120", "tid": 35568, "ts": 11333819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c240", "tid": 35568, "ts": 11333916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1daa0", "tid": 35568, "ts": 11334005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d9d0", "tid": 35568, "ts": 11334092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e7a0", "tid": 35568, "ts": 11334178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1df80", "tid": 35568, "ts": 11334264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cc00", "tid": 35568, "ts": 11334351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cb30", "tid": 35568, "ts": 11334438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d760", "tid": 35568, "ts": 11334524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d1b0", "tid": 35568, "ts": 11334610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e6d0", "tid": 35568, "ts": 11334697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d900", "tid": 35568, "ts": 11334783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d420", "tid": 35568, "ts": 11334870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d350", "tid": 35568, "ts": 11334956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1dd10", "tid": 35568, "ts": 11335043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e1f0", "tid": 35568, "ts": 11335129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ca60", "tid": 35568, "ts": 11335215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e050", "tid": 35568, "ts": 11335302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cf40", "tid": 35568, "ts": 11335389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f300", "tid": 35568, "ts": 11335476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c990", "tid": 35568, "ts": 11335562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c650", "tid": 35568, "ts": 11335648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c8c0", "tid": 35568, "ts": 11335735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ec80", "tid": 35568, "ts": 11335821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c580", "tid": 35568, "ts": 11335907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1dde0", "tid": 35568, "ts": 11335993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37560", "tid": 35568, "ts": 11336080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37be0", "tid": 35568, "ts": 11336166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37e50", "tid": 35568, "ts": 11336252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37700", "tid": 35568, "ts": 11336339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37b10", "tid": 35568, "ts": 11336425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37630", "tid": 35568, "ts": 11336511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37f20", "tid": 35568, "ts": 11336597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d350d0", "tid": 35568, "ts": 11336683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34300", "tid": 35568, "ts": 11336770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34160", "tid": 35568, "ts": 11336856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d373c0", "tid": 35568, "ts": 11336942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36d40", "tid": 35568, "ts": 11337028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36c70", "tid": 35568, "ts": 11337115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36860", "tid": 35568, "ts": 11337201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d366c0", "tid": 35568, "ts": 11337288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34e60", "tid": 35568, "ts": 11337374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36450", "tid": 35568, "ts": 11337460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35820", "tid": 35568, "ts": 11337547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37080", "tid": 35568, "ts": 11337633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d365f0", "tid": 35568, "ts": 11337719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d372f0", "tid": 35568, "ts": 11337805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34b20", "tid": 35568, "ts": 11337892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34980", "tid": 35568, "ts": 11337977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d361e0", "tid": 35568, "ts": 11338064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35750", "tid": 35568, "ts": 11338152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36040", "tid": 35568, "ts": 11338238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d359c0", "tid": 35568, "ts": 11338325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34710", "tid": 35568, "ts": 11338412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36e10", "tid": 35568, "ts": 11338498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36930", "tid": 35568, "ts": 11338584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34640", "tid": 35568, "ts": 11338670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34a50", "tid": 35568, "ts": 11338756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35a90", "tid": 35568, "ts": 11338842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35dd0", "tid": 35568, "ts": 11338929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35ea0", "tid": 35568, "ts": 11339016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35d00", "tid": 35568, "ts": 11339103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34230", "tid": 35568, "ts": 11339190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d344a0", "tid": 35568, "ts": 11339276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35410", "tid": 35568, "ts": 11339362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abbe0", "tid": 35568, "ts": 11339448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab970", "tid": 35568, "ts": 11339535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab8a0", "tid": 35568, "ts": 11339621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab700", "tid": 35568, "ts": 11339708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab560", "tid": 35568, "ts": 11339793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abf20", "tid": 35568, "ts": 11339880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abcb0", "tid": 35568, "ts": 11339967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa380", "tid": 35568, "ts": 11340053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8980", "tid": 35568, "ts": 11340139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a87e0", "tid": 35568, "ts": 11340225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8710", "tid": 35568, "ts": 11340311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8570", "tid": 35568, "ts": 11340461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab080", "tid": 35568, "ts": 11340549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aafb0", "tid": 35568, "ts": 11340635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9750", "tid": 35568, "ts": 11340722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa1e0", "tid": 35568, "ts": 11340808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaee0", "tid": 35568, "ts": 11340893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa450", "tid": 35568, "ts": 11340980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9c30", "tid": 35568, "ts": 11341066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a88b0", "tid": 35568, "ts": 11341152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9f70", "tid": 35568, "ts": 11341238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab3c0", "tid": 35568, "ts": 11341324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaa00", "tid": 35568, "ts": 11341410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab2f0", "tid": 35568, "ts": 11341496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9410", "tid": 35568, "ts": 11341582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aae10", "tid": 35568, "ts": 11341669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8640", "tid": 35568, "ts": 11341755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a94e0", "tid": 35568, "ts": 11341841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a91a0", "tid": 35568, "ts": 11341927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8a50", "tid": 35568, "ts": 11342013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab150", "tid": 35568, "ts": 11342099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaad0", "tid": 35568, "ts": 11342185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa6c0", "tid": 35568, "ts": 11342272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8cc0", "tid": 35568, "ts": 11342359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa860", "tid": 35568, "ts": 11342445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9680", "tid": 35568, "ts": 11342531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8160", "tid": 35568, "ts": 11342618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9270", "tid": 35568, "ts": 11342705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a99c0", "tid": 35568, "ts": 11342791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e770", "tid": 35568, "ts": 11342877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abcc0", "tid": 35568, "ts": 11342962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abb20", "tid": 35568, "ts": 11343048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab980", "tid": 35568, "ts": 11343134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab8b0", "tid": 35568, "ts": 11343220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abf30", "tid": 35568, "ts": 11343306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab7e0", "tid": 35568, "ts": 11343393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab640", "tid": 35568, "ts": 11343480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8da0", "tid": 35568, "ts": 11343565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab3d0", "tid": 35568, "ts": 11343651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab230", "tid": 35568, "ts": 11343738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8c00", "tid": 35568, "ts": 11343824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa530", "tid": 35568, "ts": 11343910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab160", "tid": 35568, "ts": 11343996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa120", "tid": 35568, "ts": 11344083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa460", "tid": 35568, "ts": 11344169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8990", "tid": 35568, "ts": 11344255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a88c0", "tid": 35568, "ts": 11344341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9d10", "tid": 35568, "ts": 11344427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9760", "tid": 35568, "ts": 11344514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a95c0", "tid": 35568, "ts": 11344600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8240", "tid": 35568, "ts": 11344686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aafc0", "tid": 35568, "ts": 11344773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aaef0", "tid": 35568, "ts": 11344859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9de0", "tid": 35568, "ts": 11344945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9830", "tid": 35568, "ts": 11345041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a87f0", "tid": 35568, "ts": 11345128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9350", "tid": 35568, "ts": 11345214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8f40", "tid": 35568, "ts": 11345301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9aa0", "tid": 35568, "ts": 11345387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9690", "tid": 35568, "ts": 11345474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8720", "tid": 35568, "ts": 11345560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa1f0", "tid": 35568, "ts": 11345647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a90e0", "tid": 35568, "ts": 11345733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8e70", "tid": 35568, "ts": 11345819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a80a0", "tid": 35568, "ts": 11345905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a91b0", "tid": 35568, "ts": 11345992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8310", "tid": 35568, "ts": 11346078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b570", "tid": 35568, "ts": 11346165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b640", "tid": 35568, "ts": 11346251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b4a0", "tid": 35568, "ts": 11346337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74be60", "tid": 35568, "ts": 11346423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bd90", "tid": 35568, "ts": 11346510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b980", "tid": 35568, "ts": 11346597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b8b0", "tid": 35568, "ts": 11346682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748c00", "tid": 35568, "ts": 11346768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748240", "tid": 35568, "ts": 11346854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b3d0", "tid": 35568, "ts": 11346940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a390", "tid": 35568, "ts": 11347026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b230", "tid": 35568, "ts": 11347113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749f80", "tid": 35568, "ts": 11347199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749760", "tid": 35568, "ts": 11347286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b090", "tid": 35568, "ts": 11347372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748a60", "tid": 35568, "ts": 11347458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748650", "tid": 35568, "ts": 11347543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748580", "tid": 35568, "ts": 11347629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74afc0", "tid": 35568, "ts": 11347715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ac80", "tid": 35568, "ts": 11347801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a460", "tid": 35568, "ts": 11347887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7491b0", "tid": 35568, "ts": 11347973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748310", "tid": 35568, "ts": 11348059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7499d0", "tid": 35568, "ts": 11348145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749c40", "tid": 35568, "ts": 11348232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7490e0", "tid": 35568, "ts": 11348318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74aa10", "tid": 35568, "ts": 11348405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a530", "tid": 35568, "ts": 11348490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7487f0", "tid": 35568, "ts": 11348576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a940", "tid": 35568, "ts": 11348662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7483e0", "tid": 35568, "ts": 11348748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748da0", "tid": 35568, "ts": 11348833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748990", "tid": 35568, "ts": 11348919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748e70", "tid": 35568, "ts": 11349005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b160", "tid": 35568, "ts": 11349091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749830", "tid": 35568, "ts": 11349178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749350", "tid": 35568, "ts": 11349265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74aef0", "tid": 35568, "ts": 11349351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74aae0", "tid": 35568, "ts": 11349437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719010", "tid": 35568, "ts": 11349522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718f40", "tid": 35568, "ts": 11349609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7191b0", "tid": 35568, "ts": 11349695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718b30", "tid": 35568, "ts": 11349781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718990", "tid": 35568, "ts": 11349868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7183e0", "tid": 35568, "ts": 11349955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719420", "tid": 35568, "ts": 11350041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719c40", "tid": 35568, "ts": 11350127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718e70", "tid": 35568, "ts": 11350213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719d10", "tid": 35568, "ts": 11350299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7190e0", "tid": 35568, "ts": 11350385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718240", "tid": 35568, "ts": 11350472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718da0", "tid": 35568, "ts": 11350558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7188c0", "tid": 35568, "ts": 11350645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718580", "tid": 35568, "ts": 11350731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719eb0", "tid": 35568, "ts": 11350818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718650", "tid": 35568, "ts": 11350904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719760", "tid": 35568, "ts": 11350990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718a60", "tid": 35568, "ts": 11351076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d03e0", "tid": 35568, "ts": 11351162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0720", "tid": 35568, "ts": 11351249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d08c0", "tid": 35568, "ts": 11351335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d14f0", "tid": 35568, "ts": 11351421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0da0", "tid": 35568, "ts": 11351508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0240", "tid": 35568, "ts": 11351594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d04b0", "tid": 35568, "ts": 11351681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0cd0", "tid": 35568, "ts": 11351768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d15c0", "tid": 35568, "ts": 11351854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0a60", "tid": 35568, "ts": 11351941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1350", "tid": 35568, "ts": 11352027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0e70", "tid": 35568, "ts": 11352113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0c00", "tid": 35568, "ts": 11352198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d11b0", "tid": 35568, "ts": 11352285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d00a0", "tid": 35568, "ts": 11352371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1b70", "tid": 35568, "ts": 11352457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1f80", "tid": 35568, "ts": 11352543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1010", "tid": 35568, "ts": 11352630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d07f0", "tid": 35568, "ts": 11352715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0990", "tid": 35568, "ts": 11352802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 11352888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d399d0", "tid": 35568, "ts": 11352974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39420", "tid": 35568, "ts": 11353060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38cd0", "tid": 35568, "ts": 11353146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39690", "tid": 35568, "ts": 11353233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38990", "tid": 35568, "ts": 11353319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39280", "tid": 35568, "ts": 11353405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38f40", "tid": 35568, "ts": 11353492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d394f0", "tid": 35568, "ts": 11353578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 11353665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b13f0", "tid": 35568, "ts": 11353754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 11353843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d9a0", "tid": 35568, "ts": 11353929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80900", "tid": 35568, "ts": 11354016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1660", "tid": 35568, "ts": 11354104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80690", "tid": 35568, "ts": 11354191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e804f0", "tid": 35568, "ts": 11354295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f7f0", "tid": 35568, "ts": 11354381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f240", "tid": 35568, "ts": 11354468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0f10", "tid": 35568, "ts": 11354554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80aa0", "tid": 35568, "ts": 11354641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f7f0", "tid": 35568, "ts": 11354728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80830", "tid": 35568, "ts": 11354815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f0a0", "tid": 35568, "ts": 11354901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80c40", "tid": 35568, "ts": 11354987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80830", "tid": 35568, "ts": 11355073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fc00", "tid": 35568, "ts": 11355160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80010", "tid": 35568, "ts": 11355246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f720", "tid": 35568, "ts": 11355332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fe70", "tid": 35568, "ts": 11355418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f580", "tid": 35568, "ts": 11355505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fda0", "tid": 35568, "ts": 11355591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fa60", "tid": 35568, "ts": 11355677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80aa0", "tid": 35568, "ts": 11355763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e805c0", "tid": 35568, "ts": 11355850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fcd0", "tid": 35568, "ts": 11355936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1b40", "tid": 35568, "ts": 11356080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fda0", "tid": 35568, "ts": 11356167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fb30", "tid": 35568, "ts": 11356254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f990", "tid": 35568, "ts": 11356339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d801b0", "tid": 35568, "ts": 11356425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f650", "tid": 35568, "ts": 11356512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80f80", "tid": 35568, "ts": 11356598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f310", "tid": 35568, "ts": 11356685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f720", "tid": 35568, "ts": 11356771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f8c0", "tid": 35568, "ts": 11356857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80760", "tid": 35568, "ts": 11356944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80350", "tid": 35568, "ts": 11357030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fc00", "tid": 35568, "ts": 11357116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f170", "tid": 35568, "ts": 11357203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d800e0", "tid": 35568, "ts": 11357289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fcd0", "tid": 35568, "ts": 11357376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80690", "tid": 35568, "ts": 11357463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80420", "tid": 35568, "ts": 11357549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80c40", "tid": 35568, "ts": 11357635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80010", "tid": 35568, "ts": 11357721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7ff40", "tid": 35568, "ts": 11357808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80280", "tid": 35568, "ts": 11357895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80eb0", "tid": 35568, "ts": 11357981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f0a0", "tid": 35568, "ts": 11358067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b2b80", "tid": 35568, "ts": 11358153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0bd0", "tid": 35568, "ts": 11358240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad080", "tid": 35568, "ts": 11358326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acee0", "tid": 35568, "ts": 11358412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aca00", "tid": 35568, "ts": 11358498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac930", "tid": 35568, "ts": 11358584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af920", "tid": 35568, "ts": 11358671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af5e0", "tid": 35568, "ts": 11358757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af510", "tid": 35568, "ts": 11358844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae810", "tid": 35568, "ts": 11358930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae5a0", "tid": 35568, "ts": 11359016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad490", "tid": 35568, "ts": 11359102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae4d0", "tid": 35568, "ts": 11359188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad3c0", "tid": 35568, "ts": 11359275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae0c0", "tid": 35568, "ts": 11359361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad2f0", "tid": 35568, "ts": 11359447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adff0", "tid": 35568, "ts": 11359533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae330", "tid": 35568, "ts": 11359619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adb10", "tid": 35568, "ts": 11359705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aee90", "tid": 35568, "ts": 11359791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae190", "tid": 35568, "ts": 11359877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aea80", "tid": 35568, "ts": 11359964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acc70", "tid": 35568, "ts": 11360050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae9b0", "tid": 35568, "ts": 11360137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad560", "tid": 35568, "ts": 11360224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af6b0", "tid": 35568, "ts": 11360310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af1d0", "tid": 35568, "ts": 11360397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad8a0", "tid": 35568, "ts": 11360484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aef60", "tid": 35568, "ts": 11360570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03add80", "tid": 35568, "ts": 11360657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad630", "tid": 35568, "ts": 11360744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af100", "tid": 35568, "ts": 11360830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af780", "tid": 35568, "ts": 11360917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03afb90", "tid": 35568, "ts": 11361004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9d50", "tid": 35568, "ts": 11361090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aacc0", "tid": 35568, "ts": 11361177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9c80", "tid": 35568, "ts": 11361262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9a10", "tid": 35568, "ts": 11361348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a97a0", "tid": 35568, "ts": 11361435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac5f0", "tid": 35568, "ts": 11361521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab8f0", "tid": 35568, "ts": 11361607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab000", "tid": 35568, "ts": 11361693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abdd0", "tid": 35568, "ts": 11361779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aabf0", "tid": 35568, "ts": 11361865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac1e0", "tid": 35568, "ts": 11361951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a96d0", "tid": 35568, "ts": 11362037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aad90", "tid": 35568, "ts": 11362123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab820", "tid": 35568, "ts": 11362210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa230", "tid": 35568, "ts": 11362296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac520", "tid": 35568, "ts": 11362382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab680", "tid": 35568, "ts": 11362469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa640", "tid": 35568, "ts": 11362556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa570", "tid": 35568, "ts": 11362642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab5b0", "tid": 35568, "ts": 11362729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aab20", "tid": 35568, "ts": 11362816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab410", "tid": 35568, "ts": 11362903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abf70", "tid": 35568, "ts": 11362990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa7e0", "tid": 35568, "ts": 11363078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab0d0", "tid": 35568, "ts": 11363165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abc30", "tid": 35568, "ts": 11363254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa980", "tid": 35568, "ts": 11363341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab340", "tid": 35568, "ts": 11363429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab270", "tid": 35568, "ts": 11363559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac380", "tid": 35568, "ts": 11363648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aae60", "tid": 35568, "ts": 11363734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9530", "tid": 35568, "ts": 11363821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7c00", "tid": 35568, "ts": 11363907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7b30", "tid": 35568, "ts": 11363993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7650", "tid": 35568, "ts": 11364079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6a20", "tid": 35568, "ts": 11364165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6c90", "tid": 35568, "ts": 11364252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6880", "tid": 35568, "ts": 11364338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6bc0", "tid": 35568, "ts": 11364424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6540", "tid": 35568, "ts": 11364510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a81b0", "tid": 35568, "ts": 11364597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8350", "tid": 35568, "ts": 11364683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7a60", "tid": 35568, "ts": 11364770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8eb0", "tid": 35568, "ts": 11364856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7170", "tid": 35568, "ts": 11364942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8c40", "tid": 35568, "ts": 11365028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7310", "tid": 35568, "ts": 11365114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6610", "tid": 35568, "ts": 11365201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a67b0", "tid": 35568, "ts": 11365287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a92c0", "tid": 35568, "ts": 11365373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6fd0", "tid": 35568, "ts": 11365460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8900", "tid": 35568, "ts": 11365546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8830", "tid": 35568, "ts": 11365632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8690", "tid": 35568, "ts": 11365718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6f00", "tid": 35568, "ts": 11365804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6d60", "tid": 35568, "ts": 11365889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8420", "tid": 35568, "ts": 11365976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9050", "tid": 35568, "ts": 11366062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7cd0", "tid": 35568, "ts": 11366148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8010", "tid": 35568, "ts": 11366234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8d10", "tid": 35568, "ts": 11366321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8de0", "tid": 35568, "ts": 11366408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8760", "tid": 35568, "ts": 11366495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6e30", "tid": 35568, "ts": 11366581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3550", "tid": 35568, "ts": 11366668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3480", "tid": 35568, "ts": 11366755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a33b0", "tid": 35568, "ts": 11366841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3210", "tid": 35568, "ts": 11366927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4320", "tid": 35568, "ts": 11367013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3e40", "tid": 35568, "ts": 11367100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3b00", "tid": 35568, "ts": 11367186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5360", "tid": 35568, "ts": 11367272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a49a0", "tid": 35568, "ts": 11367359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2fa0", "tid": 35568, "ts": 11367446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5290", "tid": 35568, "ts": 11367532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4250", "tid": 35568, "ts": 11367618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4730", "tid": 35568, "ts": 11367705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3620", "tid": 35568, "ts": 11367791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4db0", "tid": 35568, "ts": 11367877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5b80", "tid": 35568, "ts": 11367964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2e00", "tid": 35568, "ts": 11368050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4c10", "tid": 35568, "ts": 11368136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5430", "tid": 35568, "ts": 11368223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5840", "tid": 35568, "ts": 11368309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3890", "tid": 35568, "ts": 11368396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4f50", "tid": 35568, "ts": 11368482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4800", "tid": 35568, "ts": 11368567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5f90", "tid": 35568, "ts": 11368653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a51c0", "tid": 35568, "ts": 11368740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a55d0", "tid": 35568, "ts": 11368826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a37c0", "tid": 35568, "ts": 11368912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5d20", "tid": 35568, "ts": 11368999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3960", "tid": 35568, "ts": 11369085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5ab0", "tid": 35568, "ts": 11369172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a36f0", "tid": 35568, "ts": 11369258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3fe0", "tid": 35568, "ts": 11369344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1330", "tid": 35568, "ts": 11369430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1190", "tid": 35568, "ts": 11369516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0ff0", "tid": 35568, "ts": 11369602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0490", "tid": 35568, "ts": 11369688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a03c0", "tid": 35568, "ts": 11369774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a08a0", "tid": 35568, "ts": 11369861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0a40", "tid": 35568, "ts": 11369947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fee0", "tid": 35568, "ts": 11370033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0f20", "tid": 35568, "ts": 11370120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0be0", "tid": 35568, "ts": 11370206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fe10", "tid": 35568, "ts": 11370293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fd40", "tid": 35568, "ts": 11370379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1c20", "tid": 35568, "ts": 11370467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2440", "tid": 35568, "ts": 11370553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2850", "tid": 35568, "ts": 11370640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2ac0", "tid": 35568, "ts": 11370726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f930", "tid": 35568, "ts": 11370813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a18e0", "tid": 35568, "ts": 11370899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a29f0", "tid": 35568, "ts": 11370986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0560", "tid": 35568, "ts": 11371072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0080", "tid": 35568, "ts": 11371158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1f60", "tid": 35568, "ts": 11371245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ffb0", "tid": 35568, "ts": 11371330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2c60", "tid": 35568, "ts": 11371418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2510", "tid": 35568, "ts": 11371504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1a80", "tid": 35568, "ts": 11371591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1810", "tid": 35568, "ts": 11371736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0e50", "tid": 35568, "ts": 11371823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a15a0", "tid": 35568, "ts": 11371908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2b90", "tid": 35568, "ts": 11371994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a19b0", "tid": 35568, "ts": 11372081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0700", "tid": 35568, "ts": 11372168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cc80", "tid": 35568, "ts": 11372254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cae0", "tid": 35568, "ts": 11372340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c940", "tid": 35568, "ts": 11372426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d7e0", "tid": 35568, "ts": 11372512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d090", "tid": 35568, "ts": 11372598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d640", "tid": 35568, "ts": 11372685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e9c0", "tid": 35568, "ts": 11372771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e340", "tid": 35568, "ts": 11372857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c7a0", "tid": 35568, "ts": 11372943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c530", "tid": 35568, "ts": 11373029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f2b0", "tid": 35568, "ts": 11373116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e8f0", "tid": 35568, "ts": 11373202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d570", "tid": 35568, "ts": 11373288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f860", "tid": 35568, "ts": 11373374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039eb60", "tid": 35568, "ts": 11373460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d3d0", "tid": 35568, "ts": 11373546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d710", "tid": 35568, "ts": 11373633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ea90", "tid": 35568, "ts": 11373720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039dd90", "tid": 35568, "ts": 11373806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e1a0", "tid": 35568, "ts": 11373893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e0d0", "tid": 35568, "ts": 11373980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cef0", "tid": 35568, "ts": 11374066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e000", "tid": 35568, "ts": 11374152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f450", "tid": 35568, "ts": 11374238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d300", "tid": 35568, "ts": 11374325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e5b0", "tid": 35568, "ts": 11374412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d160", "tid": 35568, "ts": 11374498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039db20", "tid": 35568, "ts": 11374584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039da50", "tid": 35568, "ts": 11374671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f380", "tid": 35568, "ts": 11374757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d230", "tid": 35568, "ts": 11374843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d8b0", "tid": 35568, "ts": 11374929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399880", "tid": 35568, "ts": 11375015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399610", "tid": 35568, "ts": 11375102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399bc0", "tid": 35568, "ts": 11375187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03996e0", "tid": 35568, "ts": 11375274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bde0", "tid": 35568, "ts": 11375360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03993a0", "tid": 35568, "ts": 11375446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bb70", "tid": 35568, "ts": 11375532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039beb0", "tid": 35568, "ts": 11375618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399a20", "tid": 35568, "ts": 11375705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03992d0", "tid": 35568, "ts": 11375792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b420", "tid": 35568, "ts": 11375879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b830", "tid": 35568, "ts": 11375966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399c90", "tid": 35568, "ts": 11376052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c460", "tid": 35568, "ts": 11376138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c390", "tid": 35568, "ts": 11376224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bd10", "tid": 35568, "ts": 11376311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ab30", "tid": 35568, "ts": 11376397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a990", "tid": 35568, "ts": 11376483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a8c0", "tid": 35568, "ts": 11376569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a650", "tid": 35568, "ts": 11376655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ae70", "tid": 35568, "ts": 11376742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b0e0", "tid": 35568, "ts": 11376828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a4b0", "tid": 35568, "ts": 11376913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a310", "tid": 35568, "ts": 11376999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ada0", "tid": 35568, "ts": 11377087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039af40", "tid": 35568, "ts": 11377172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c1f0", "tid": 35568, "ts": 11377258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a170", "tid": 35568, "ts": 11377345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a240", "tid": 35568, "ts": 11377431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039acd0", "tid": 35568, "ts": 11377517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a0a0", "tid": 35568, "ts": 11377603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c2c0", "tid": 35568, "ts": 11377689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396620", "tid": 35568, "ts": 11377776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03962e0", "tid": 35568, "ts": 11377862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395d30", "tid": 35568, "ts": 11377947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398290", "tid": 35568, "ts": 11378033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396070", "tid": 35568, "ts": 11378119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03981c0", "tid": 35568, "ts": 11378205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03986a0", "tid": 35568, "ts": 11378291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398b80", "tid": 35568, "ts": 11378377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398770", "tid": 35568, "ts": 11378463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399060", "tid": 35568, "ts": 11378550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03978d0", "tid": 35568, "ts": 11378636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396f10", "tid": 35568, "ts": 11378722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03989e0", "tid": 35568, "ts": 11378807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397800", "tid": 35568, "ts": 11378894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396e40", "tid": 35568, "ts": 11378980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397590", "tid": 35568, "ts": 11379067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397320", "tid": 35568, "ts": 11379152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398c50", "tid": 35568, "ts": 11379239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396960", "tid": 35568, "ts": 11379325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396890", "tid": 35568, "ts": 11379411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398430", "tid": 35568, "ts": 11379497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03974c0", "tid": 35568, "ts": 11379583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397f50", "tid": 35568, "ts": 11379669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396a30", "tid": 35568, "ts": 11379755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398f90", "tid": 35568, "ts": 11379841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395ed0", "tid": 35568, "ts": 11379927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397730", "tid": 35568, "ts": 11380014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396210", "tid": 35568, "ts": 11380101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03985d0", "tid": 35568, "ts": 11380186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397c10", "tid": 35568, "ts": 11380273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397e80", "tid": 35568, "ts": 11380358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397b40", "tid": 35568, "ts": 11380444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393080", "tid": 35568, "ts": 11380530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392a00", "tid": 35568, "ts": 11380616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395c60", "tid": 35568, "ts": 11380702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03959f0", "tid": 35568, "ts": 11380787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03952a0", "tid": 35568, "ts": 11380873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392ba0", "tid": 35568, "ts": 11380959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394f60", "tid": 35568, "ts": 11381045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392c70", "tid": 35568, "ts": 11381131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03938a0", "tid": 35568, "ts": 11381217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393970", "tid": 35568, "ts": 11381304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393f20", "tid": 35568, "ts": 11381389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394c20", "tid": 35568, "ts": 11381476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03949b0", "tid": 35568, "ts": 11381562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03932f0", "tid": 35568, "ts": 11381648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03948e0", "tid": 35568, "ts": 11381735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394400", "tid": 35568, "ts": 11381822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392e10", "tid": 35568, "ts": 11381908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392fb0", "tid": 35568, "ts": 11381995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392ad0", "tid": 35568, "ts": 11382081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393d80", "tid": 35568, "ts": 11382167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393cb0", "tid": 35568, "ts": 11382253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393700", "tid": 35568, "ts": 11382339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393150", "tid": 35568, "ts": 11382425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393be0", "tid": 35568, "ts": 11382512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394b50", "tid": 35568, "ts": 11382598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395510", "tid": 35568, "ts": 11382685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393b10", "tid": 35568, "ts": 11382771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03951d0", "tid": 35568, "ts": 11382857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393a40", "tid": 35568, "ts": 11382944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395850", "tid": 35568, "ts": 11383030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394670", "tid": 35568, "ts": 11383116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395b90", "tid": 35568, "ts": 11383202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390090", "tid": 35568, "ts": 11383288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390160", "tid": 35568, "ts": 11383374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fa10", "tid": 35568, "ts": 11383460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f940", "tid": 35568, "ts": 11383547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390bf0", "tid": 35568, "ts": 11383633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392520", "tid": 35568, "ts": 11383719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03907e0", "tid": 35568, "ts": 11383804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03921e0", "tid": 35568, "ts": 11383890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fef0", "tid": 35568, "ts": 11383976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390b20", "tid": 35568, "ts": 11384062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03918f0", "tid": 35568, "ts": 11384148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391dd0", "tid": 35568, "ts": 11384235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03919c0", "tid": 35568, "ts": 11384320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03904a0", "tid": 35568, "ts": 11384406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391f70", "tid": 35568, "ts": 11384492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390e60", "tid": 35568, "ts": 11384578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03903d0", "tid": 35568, "ts": 11384665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03926c0", "tid": 35568, "ts": 11384751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391680", "tid": 35568, "ts": 11384837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392380", "tid": 35568, "ts": 11384923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390300", "tid": 35568, "ts": 11385010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391340", "tid": 35568, "ts": 11385096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f870", "tid": 35568, "ts": 11385181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03911a0", "tid": 35568, "ts": 11385267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fbb0", "tid": 35568, "ts": 11385353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f7a0", "tid": 35568, "ts": 11385439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392790", "tid": 35568, "ts": 11385525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391000", "tid": 35568, "ts": 11385611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03910d0", "tid": 35568, "ts": 11385697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390640", "tid": 35568, "ts": 11385783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03925f0", "tid": 35568, "ts": 11385869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391ea0", "tid": 35568, "ts": 11385956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e830", "tid": 35568, "ts": 11386043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c3a0", "tid": 35568, "ts": 11386129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c2d0", "tid": 35568, "ts": 11386216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d310", "tid": 35568, "ts": 11386302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c130", "tid": 35568, "ts": 11386388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f390", "tid": 35568, "ts": 11386475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d240", "tid": 35568, "ts": 11386561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038dcd0", "tid": 35568, "ts": 11386647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038eb70", "tid": 35568, "ts": 11386734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d170", "tid": 35568, "ts": 11386820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c880", "tid": 35568, "ts": 11386906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cfd0", "tid": 35568, "ts": 11386992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e280", "tid": 35568, "ts": 11387078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cf00", "tid": 35568, "ts": 11387164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e0e0", "tid": 35568, "ts": 11387279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038df40", "tid": 35568, "ts": 11387392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d580", "tid": 35568, "ts": 11387478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e690", "tid": 35568, "ts": 11387565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038dc00", "tid": 35568, "ts": 11387651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038db30", "tid": 35568, "ts": 11387737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d0a0", "tid": 35568, "ts": 11387823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c6e0", "tid": 35568, "ts": 11387909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038de70", "tid": 35568, "ts": 11387996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ef80", "tid": 35568, "ts": 11388082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ed10", "tid": 35568, "ts": 11388169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d990", "tid": 35568, "ts": 11388255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c7b0", "tid": 35568, "ts": 11388341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e010", "tid": 35568, "ts": 11388427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e420", "tid": 35568, "ts": 11388514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e900", "tid": 35568, "ts": 11388599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e5c0", "tid": 35568, "ts": 11388685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038caf0", "tid": 35568, "ts": 11388772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03893b0", "tid": 35568, "ts": 11388857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a180", "tid": 35568, "ts": 11388943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389bd0", "tid": 35568, "ts": 11389029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a660", "tid": 35568, "ts": 11389116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388fa0", "tid": 35568, "ts": 11389202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388ed0", "tid": 35568, "ts": 11389289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b430", "tid": 35568, "ts": 11389374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ae80", "tid": 35568, "ts": 11389461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bdf0", "tid": 35568, "ts": 11389547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389e40", "tid": 35568, "ts": 11389633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389960", "tid": 35568, "ts": 11389719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b9e0", "tid": 35568, "ts": 11389805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b910", "tid": 35568, "ts": 11389891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bb80", "tid": 35568, "ts": 11389978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ace0", "tid": 35568, "ts": 11390064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bab0", "tid": 35568, "ts": 11390150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389890", "tid": 35568, "ts": 11390236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389d70", "tid": 35568, "ts": 11390322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b770", "tid": 35568, "ts": 11390407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389b00", "tid": 35568, "ts": 11390494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389ca0", "tid": 35568, "ts": 11390581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389a30", "tid": 35568, "ts": 11390667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a250", "tid": 35568, "ts": 11390753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a8d0", "tid": 35568, "ts": 11390839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038aa70", "tid": 35568, "ts": 11390925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389620", "tid": 35568, "ts": 11391011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ab40", "tid": 35568, "ts": 11391097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389550", "tid": 35568, "ts": 11391184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b5d0", "tid": 35568, "ts": 11391269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a730", "tid": 35568, "ts": 11391355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b840", "tid": 35568, "ts": 11391442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a590", "tid": 35568, "ts": 11391527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387400", "tid": 35568, "ts": 11391614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386ff0", "tid": 35568, "ts": 11391700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387260", "tid": 35568, "ts": 11391786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385930", "tid": 35568, "ts": 11391872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388c60", "tid": 35568, "ts": 11391958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387f60", "tid": 35568, "ts": 11392044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388780", "tid": 35568, "ts": 11392129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387b50", "tid": 35568, "ts": 11392216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387dc0", "tid": 35568, "ts": 11392302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388ac0", "tid": 35568, "ts": 11392389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387a80", "tid": 35568, "ts": 11392474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388370", "tid": 35568, "ts": 11392561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388b90", "tid": 35568, "ts": 11392648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386080", "tid": 35568, "ts": 11392733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387cf0", "tid": 35568, "ts": 11392819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386e50", "tid": 35568, "ts": 11392905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385e10", "tid": 35568, "ts": 11392991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386490", "tid": 35568, "ts": 11393078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03878e0", "tid": 35568, "ts": 11393164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03882a0", "tid": 35568, "ts": 11393250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387670", "tid": 35568, "ts": 11393336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387c20", "tid": 35568, "ts": 11393422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385ba0", "tid": 35568, "ts": 11393508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385d40", "tid": 35568, "ts": 11393595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386700", "tid": 35568, "ts": 11393682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385c70", "tid": 35568, "ts": 11393768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388850", "tid": 35568, "ts": 11393854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03868a0", "tid": 35568, "ts": 11393941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03862f0", "tid": 35568, "ts": 11394027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03881d0", "tid": 35568, "ts": 11394114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386d80", "tid": 35568, "ts": 11394200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386be0", "tid": 35568, "ts": 11394287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384dd0", "tid": 35568, "ts": 11394373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03844e0", "tid": 35568, "ts": 11394458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384340", "tid": 35568, "ts": 11394550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383710", "tid": 35568, "ts": 11394673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384270", "tid": 35568, "ts": 11394761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383a50", "tid": 35568, "ts": 11394848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384a90", "tid": 35568, "ts": 11394935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382940", "tid": 35568, "ts": 11395021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382bb0", "tid": 35568, "ts": 11395108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384750", "tid": 35568, "ts": 11395195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382c80", "tid": 35568, "ts": 11395281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03827a0", "tid": 35568, "ts": 11395368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383230", "tid": 35568, "ts": 11395454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383cc0", "tid": 35568, "ts": 11395541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382530", "tid": 35568, "ts": 11395626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03856c0", "tid": 35568, "ts": 11395713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385110", "tid": 35568, "ts": 11395799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382fc0", "tid": 35568, "ts": 11395886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03855f0", "tid": 35568, "ts": 11395972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383bf0", "tid": 35568, "ts": 11396059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382ef0", "tid": 35568, "ts": 11396145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382e20", "tid": 35568, "ts": 11396232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03833d0", "tid": 35568, "ts": 11396318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03851e0", "tid": 35568, "ts": 11396405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03838b0", "tid": 35568, "ts": 11396492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385520", "tid": 35568, "ts": 11396578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383160", "tid": 35568, "ts": 11396664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03852b0", "tid": 35568, "ts": 11396751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385040", "tid": 35568, "ts": 11396838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385380", "tid": 35568, "ts": 11396925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384d00", "tid": 35568, "ts": 11397011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382ae0", "tid": 35568, "ts": 11397097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ff00", "tid": 35568, "ts": 11397183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fd60", "tid": 35568, "ts": 11397270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037faf0", "tid": 35568, "ts": 11397360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f950", "tid": 35568, "ts": 11397449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f880", "tid": 35568, "ts": 11397535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fbc0", "tid": 35568, "ts": 11397622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f3a0", "tid": 35568, "ts": 11397708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03822c0", "tid": 35568, "ts": 11397794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381de0", "tid": 35568, "ts": 11397882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03807f0", "tid": 35568, "ts": 11397968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381420", "tid": 35568, "ts": 11398056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380b30", "tid": 35568, "ts": 11398144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380720", "tid": 35568, "ts": 11398231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380310", "tid": 35568, "ts": 11398327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381d10", "tid": 35568, "ts": 11398414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380e70", "tid": 35568, "ts": 11398500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381760", "tid": 35568, "ts": 11398587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f200", "tid": 35568, "ts": 11398673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380a60", "tid": 35568, "ts": 11398759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380240", "tid": 35568, "ts": 11398846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382120", "tid": 35568, "ts": 11398932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380990", "tid": 35568, "ts": 11399019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382390", "tid": 35568, "ts": 11399106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380cd0", "tid": 35568, "ts": 11399192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03810e0", "tid": 35568, "ts": 11399279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03800a0", "tid": 35568, "ts": 11399365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03811b0", "tid": 35568, "ts": 11399451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03808c0", "tid": 35568, "ts": 11399537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381eb0", "tid": 35568, "ts": 11399623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03814f0", "tid": 35568, "ts": 11399709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381c40", "tid": 35568, "ts": 11399795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381b70", "tid": 35568, "ts": 11399882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d250", "tid": 35568, "ts": 11399969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e430", "tid": 35568, "ts": 11400055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037df50", "tid": 35568, "ts": 11400141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d180", "tid": 35568, "ts": 11400227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d730", "tid": 35568, "ts": 11400314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c210", "tid": 35568, "ts": 11400400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ddb0", "tid": 35568, "ts": 11400487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bfa0", "tid": 35568, "ts": 11400573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e360", "tid": 35568, "ts": 11400659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e290", "tid": 35568, "ts": 11400745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037be00", "tid": 35568, "ts": 11400831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d660", "tid": 35568, "ts": 11400918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c6f0", "tid": 35568, "ts": 11401004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bd30", "tid": 35568, "ts": 11401092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037edf0", "tid": 35568, "ts": 11401178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037dce0", "tid": 35568, "ts": 11401264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c960", "tid": 35568, "ts": 11401351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e0f0", "tid": 35568, "ts": 11401437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037dc10", "tid": 35568, "ts": 11401523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037eab0", "tid": 35568, "ts": 11401610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c620", "tid": 35568, "ts": 11401696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d4c0", "tid": 35568, "ts": 11401783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f060", "tid": 35568, "ts": 11401870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e910", "tid": 35568, "ts": 11401956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d8d0", "tid": 35568, "ts": 11402043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e840", "tid": 35568, "ts": 11402129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c3b0", "tid": 35568, "ts": 11402215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cf10", "tid": 35568, "ts": 11402301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e5d0", "tid": 35568, "ts": 11402387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e020", "tid": 35568, "ts": 11402474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e500", "tid": 35568, "ts": 11402560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d590", "tid": 35568, "ts": 11402647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a670", "tid": 35568, "ts": 11402733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ab50", "tid": 35568, "ts": 11402819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b030", "tid": 35568, "ts": 11403015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379be0", "tid": 35568, "ts": 11403207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379560", "tid": 35568, "ts": 11403322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b370", "tid": 35568, "ts": 11403458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378ba0", "tid": 35568, "ts": 11403572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a4d0", "tid": 35568, "ts": 11403669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379b10", "tid": 35568, "ts": 11403789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b2a0", "tid": 35568, "ts": 11403943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03793c0", "tid": 35568, "ts": 11404052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379f20", "tid": 35568, "ts": 11404139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378c70", "tid": 35568, "ts": 11404226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379970", "tid": 35568, "ts": 11404312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379080", "tid": 35568, "ts": 11404399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b1d0", "tid": 35568, "ts": 11404485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378ee0", "tid": 35568, "ts": 11404571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bac0", "tid": 35568, "ts": 11404658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378a00", "tid": 35568, "ts": 11404744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03798a0", "tid": 35568, "ts": 11404830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b850", "tid": 35568, "ts": 11404916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a330", "tid": 35568, "ts": 11405003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03797d0", "tid": 35568, "ts": 11405089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379150", "tid": 35568, "ts": 11405175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bb90", "tid": 35568, "ts": 11405262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379cb0", "tid": 35568, "ts": 11405348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a810", "tid": 35568, "ts": 11405435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379700", "tid": 35568, "ts": 11405521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037acf0", "tid": 35568, "ts": 11405608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a260", "tid": 35568, "ts": 11405694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379ff0", "tid": 35568, "ts": 11405781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03792f0", "tid": 35568, "ts": 11405866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376bf0", "tid": 35568, "ts": 11405953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376a50", "tid": 35568, "ts": 11406039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03768b0", "tid": 35568, "ts": 11406125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376160", "tid": 35568, "ts": 11406211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375ae0", "tid": 35568, "ts": 11406298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375940", "tid": 35568, "ts": 11406384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378040", "tid": 35568, "ts": 11406469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377f70", "tid": 35568, "ts": 11406556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375600", "tid": 35568, "ts": 11406641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377820", "tid": 35568, "ts": 11406727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03785f0", "tid": 35568, "ts": 11406814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378520", "tid": 35568, "ts": 11406900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377750", "tid": 35568, "ts": 11406987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375530", "tid": 35568, "ts": 11407074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378860", "tid": 35568, "ts": 11407160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375fc0", "tid": 35568, "ts": 11407245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03756d0", "tid": 35568, "ts": 11407332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03774e0", "tid": 35568, "ts": 11407418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377000", "tid": 35568, "ts": 11407505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378790", "tid": 35568, "ts": 11407591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03763d0", "tid": 35568, "ts": 11407677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377270", "tid": 35568, "ts": 11407763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375e20", "tid": 35568, "ts": 11407849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377410", "tid": 35568, "ts": 11407935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376e60", "tid": 35568, "ts": 11408021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376640", "tid": 35568, "ts": 11408107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03757a0", "tid": 35568, "ts": 11408194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376230", "tid": 35568, "ts": 11408280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375bb0", "tid": 35568, "ts": 11408366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376090", "tid": 35568, "ts": 11408453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03779c0", "tid": 35568, "ts": 11408539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03775b0", "tid": 35568, "ts": 11408625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126aa0", "tid": 35568, "ts": 11408712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126690", "tid": 35568, "ts": 11408798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1271f0", "tid": 35568, "ts": 11408884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125da0", "tid": 35568, "ts": 11408971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126f80", "tid": 35568, "ts": 11409056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125c00", "tid": 35568, "ts": 11409143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125b30", "tid": 35568, "ts": 11409229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126280", "tid": 35568, "ts": 11409315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124130", "tid": 35568, "ts": 11409402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127120", "tid": 35568, "ts": 11409487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124880", "tid": 35568, "ts": 11409574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127460", "tid": 35568, "ts": 11409661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1246e0", "tid": 35568, "ts": 11409747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125f40", "tid": 35568, "ts": 11409833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124540", "tid": 35568, "ts": 11409920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1243a0", "tid": 35568, "ts": 11410007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1253e0", "tid": 35568, "ts": 11410093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126de0", "tid": 35568, "ts": 11410179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126d10", "tid": 35568, "ts": 11410266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1265c0", "tid": 35568, "ts": 11410352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125170", "tid": 35568, "ts": 11410439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125990", "tid": 35568, "ts": 11410525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125a60", "tid": 35568, "ts": 11410611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1247b0", "tid": 35568, "ts": 11410697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126830", "tid": 35568, "ts": 11410785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124470", "tid": 35568, "ts": 11410871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126c40", "tid": 35568, "ts": 11410957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124fd0", "tid": 35568, "ts": 11411044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125650", "tid": 35568, "ts": 11411129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124f00", "tid": 35568, "ts": 11411216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126900", "tid": 35568, "ts": 11411302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126010", "tid": 35568, "ts": 11411389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164290", "tid": 35568, "ts": 11411474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163ce0", "tid": 35568, "ts": 11411560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164500", "tid": 35568, "ts": 11411647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1634c0", "tid": 35568, "ts": 11411734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163180", "tid": 35568, "ts": 11411820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162ca0", "tid": 35568, "ts": 11411906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163a70", "tid": 35568, "ts": 11411992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162b00", "tid": 35568, "ts": 11412078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1633f0", "tid": 35568, "ts": 11412165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163c10", "tid": 35568, "ts": 11412251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1641c0", "tid": 35568, "ts": 11412337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164df0", "tid": 35568, "ts": 11412423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163f50", "tid": 35568, "ts": 11412509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164430", "tid": 35568, "ts": 11412597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162480", "tid": 35568, "ts": 11412683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1623b0", "tid": 35568, "ts": 11412769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1630b0", "tid": 35568, "ts": 11412855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164ab0", "tid": 35568, "ts": 11412941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162620", "tid": 35568, "ts": 11413027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164910", "tid": 35568, "ts": 11413113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164020", "tid": 35568, "ts": 11413199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162e40", "tid": 35568, "ts": 11413285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162d70", "tid": 35568, "ts": 11413372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164c50", "tid": 35568, "ts": 11413458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164d20", "tid": 35568, "ts": 11413544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164ec0", "tid": 35568, "ts": 11413631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164b80", "tid": 35568, "ts": 11413717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161ed0", "tid": 35568, "ts": 11413803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1649e0", "tid": 35568, "ts": 11413889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161e00", "tid": 35568, "ts": 11413975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163590", "tid": 35568, "ts": 11414061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fe50", "tid": 35568, "ts": 11414147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fb10", "tid": 35568, "ts": 11414233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f7d0", "tid": 35568, "ts": 11414319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160400", "tid": 35568, "ts": 11414406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f700", "tid": 35568, "ts": 11414492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f2f0", "tid": 35568, "ts": 11414579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f560", "tid": 35568, "ts": 11414665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f150", "tid": 35568, "ts": 11414751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ed40", "tid": 35568, "ts": 11414837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ec70", "tid": 35568, "ts": 11414923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1616b0", "tid": 35568, "ts": 11415010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160670", "tid": 35568, "ts": 11415096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15eba0", "tid": 35568, "ts": 11415182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e930", "tid": 35568, "ts": 11415268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1611d0", "tid": 35568, "ts": 11415355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161920", "tid": 35568, "ts": 11415440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160dc0", "tid": 35568, "ts": 11415526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fa40", "tid": 35568, "ts": 11415613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ff20", "tid": 35568, "ts": 11415699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161850", "tid": 35568, "ts": 11415785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160cf0", "tid": 35568, "ts": 11415870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1615e0", "tid": 35568, "ts": 11415957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1605a0", "tid": 35568, "ts": 11416043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161b90", "tid": 35568, "ts": 11416129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161ac0", "tid": 35568, "ts": 11416215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f970", "tid": 35568, "ts": 11416301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fcb0", "tid": 35568, "ts": 11416387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160260", "tid": 35568, "ts": 11416472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fff0", "tid": 35568, "ts": 11416562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160e90", "tid": 35568, "ts": 11416648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f8a0", "tid": 35568, "ts": 11416734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161780", "tid": 35568, "ts": 11416821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c3d0", "tid": 35568, "ts": 11416907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bfc0", "tid": 35568, "ts": 11416993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e450", "tid": 35568, "ts": 11417080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15dc30", "tid": 35568, "ts": 11417166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d000", "tid": 35568, "ts": 11417252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e2b0", "tid": 35568, "ts": 11417338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bbb0", "tid": 35568, "ts": 11417425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ce60", "tid": 35568, "ts": 11417512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15df70", "tid": 35568, "ts": 11417598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cd90", "tid": 35568, "ts": 11417687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d750", "tid": 35568, "ts": 11417774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c300", "tid": 35568, "ts": 11417861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ccc0", "tid": 35568, "ts": 11417947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ba10", "tid": 35568, "ts": 11418034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bd50", "tid": 35568, "ts": 11418120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cbf0", "tid": 35568, "ts": 11418206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d4e0", "tid": 35568, "ts": 11418292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b530", "tid": 35568, "ts": 11418378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15be20", "tid": 35568, "ts": 11418465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15db60", "tid": 35568, "ts": 11418590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b870", "tid": 35568, "ts": 11418677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e5f0", "tid": 35568, "ts": 11418764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b7a0", "tid": 35568, "ts": 11418850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c710", "tid": 35568, "ts": 11418936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c640", "tid": 35568, "ts": 11419023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d5b0", "tid": 35568, "ts": 11419109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d1a0", "tid": 35568, "ts": 11419196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e6c0", "tid": 35568, "ts": 11419283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c8b0", "tid": 35568, "ts": 11419473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c7e0", "tid": 35568, "ts": 11419581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d0d0", "tid": 35568, "ts": 11419763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e860", "tid": 35568, "ts": 11419949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159e70", "tid": 35568, "ts": 11420045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159cd0", "tid": 35568, "ts": 11420133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1597f0", "tid": 35568, "ts": 11420220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159310", "tid": 35568, "ts": 11420306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159240", "tid": 35568, "ts": 11420393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158950", "tid": 35568, "ts": 11420479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15aeb0", "tid": 35568, "ts": 11420565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ab70", "tid": 35568, "ts": 11420652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1587b0", "tid": 35568, "ts": 11420738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1586e0", "tid": 35568, "ts": 11420824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ade0", "tid": 35568, "ts": 11420910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158af0", "tid": 35568, "ts": 11420997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158d60", "tid": 35568, "ts": 11421083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a5c0", "tid": 35568, "ts": 11421169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a900", "tid": 35568, "ts": 11421256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159580", "tid": 35568, "ts": 11421342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b1f0", "tid": 35568, "ts": 11421428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158c90", "tid": 35568, "ts": 11421514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1594b0", "tid": 35568, "ts": 11421601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a4f0", "tid": 35568, "ts": 11421687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1582d0", "tid": 35568, "ts": 11421773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159b30", "tid": 35568, "ts": 11421859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b460", "tid": 35568, "ts": 11421946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158bc0", "tid": 35568, "ts": 11422032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158200", "tid": 35568, "ts": 11422118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158470", "tid": 35568, "ts": 11422205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b390", "tid": 35568, "ts": 11422291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a350", "tid": 35568, "ts": 11422378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a0e0", "tid": 35568, "ts": 11422464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1598c0", "tid": 35568, "ts": 11422550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a280", "tid": 35568, "ts": 11422637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a9d0", "tid": 35568, "ts": 11422722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156db0", "tid": 35568, "ts": 11422809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156800", "tid": 35568, "ts": 11422895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156660", "tid": 35568, "ts": 11422981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1563f0", "tid": 35568, "ts": 11423067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155fe0", "tid": 35568, "ts": 11423153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157840", "tid": 35568, "ts": 11423239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157ab0", "tid": 35568, "ts": 11423325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156f50", "tid": 35568, "ts": 11423411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155a30", "tid": 35568, "ts": 11423498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1556f0", "tid": 35568, "ts": 11423584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155960", "tid": 35568, "ts": 11423670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157ec0", "tid": 35568, "ts": 11423756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156250", "tid": 35568, "ts": 11423843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155550", "tid": 35568, "ts": 11423929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156b40", "tid": 35568, "ts": 11424016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154e00", "tid": 35568, "ts": 11424101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157770", "tid": 35568, "ts": 11424188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155070", "tid": 35568, "ts": 11424273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157500", "tid": 35568, "ts": 11424359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156a70", "tid": 35568, "ts": 11424445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1560b0", "tid": 35568, "ts": 11424532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156590", "tid": 35568, "ts": 11424619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155480", "tid": 35568, "ts": 11424705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157df0", "tid": 35568, "ts": 11424792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157c50", "tid": 35568, "ts": 11424878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158060", "tid": 35568, "ts": 11424965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157910", "tid": 35568, "ts": 11425051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1552e0", "tid": 35568, "ts": 11425137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1568d0", "tid": 35568, "ts": 11425223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157360", "tid": 35568, "ts": 11425309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155d70", "tid": 35568, "ts": 11425395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155ca0", "tid": 35568, "ts": 11425481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153b50", "tid": 35568, "ts": 11425567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153a80", "tid": 35568, "ts": 11425653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151fb0", "tid": 35568, "ts": 11425740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151ee0", "tid": 35568, "ts": 11425826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1534d0", "tid": 35568, "ts": 11425912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151d40", "tid": 35568, "ts": 11425998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153190", "tid": 35568, "ts": 11426084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1530c0", "tid": 35568, "ts": 11426172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153260", "tid": 35568, "ts": 11426259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153dc0", "tid": 35568, "ts": 11426345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153740", "tid": 35568, "ts": 11426432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151ad0", "tid": 35568, "ts": 11426518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152ff0", "tid": 35568, "ts": 11426605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153c20", "tid": 35568, "ts": 11426691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151930", "tid": 35568, "ts": 11426778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1545e0", "tid": 35568, "ts": 11426952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152970", "tid": 35568, "ts": 11427040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154b90", "tid": 35568, "ts": 11427128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1542a0", "tid": 35568, "ts": 11427215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152d80", "tid": 35568, "ts": 11427301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1522f0", "tid": 35568, "ts": 11427388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1528a0", "tid": 35568, "ts": 11427474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152f20", "tid": 35568, "ts": 11427560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152cb0", "tid": 35568, "ts": 11427646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154100", "tid": 35568, "ts": 11427732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152490", "tid": 35568, "ts": 11427819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154510", "tid": 35568, "ts": 11427906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154ac0", "tid": 35568, "ts": 11427992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152be0", "tid": 35568, "ts": 11428078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1549f0", "tid": 35568, "ts": 11428165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152630", "tid": 35568, "ts": 11428251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154440", "tid": 35568, "ts": 11428337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ea10", "tid": 35568, "ts": 11428423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151520", "tid": 35568, "ts": 11428510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151380", "tid": 35568, "ts": 11428597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ff30", "tid": 35568, "ts": 11428683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fa50", "tid": 35568, "ts": 11428769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1511e0", "tid": 35568, "ts": 11428855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151110", "tid": 35568, "ts": 11428940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f710", "tid": 35568, "ts": 11429027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151860", "tid": 35568, "ts": 11429113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e870", "tid": 35568, "ts": 11429200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fd90", "tid": 35568, "ts": 11429287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f640", "tid": 35568, "ts": 11429376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151040", "tid": 35568, "ts": 11429463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e940", "tid": 35568, "ts": 11429550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1504e0", "tid": 35568, "ts": 11429636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e6d0", "tid": 35568, "ts": 11429722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1509c0", "tid": 35568, "ts": 11429809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ebb0", "tid": 35568, "ts": 11429896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f4a0", "tid": 35568, "ts": 11429982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f7e0", "tid": 35568, "ts": 11430068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f570", "tid": 35568, "ts": 11430155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f230", "tid": 35568, "ts": 11430241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150680", "tid": 35568, "ts": 11430327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ec80", "tid": 35568, "ts": 11430412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1515f0", "tid": 35568, "ts": 11430499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150340", "tid": 35568, "ts": 11430585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14efc0", "tid": 35568, "ts": 11430672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150b60", "tid": 35568, "ts": 11430758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150410", "tid": 35568, "ts": 11430845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f090", "tid": 35568, "ts": 11430931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f160", "tid": 35568, "ts": 11431017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fb20", "tid": 35568, "ts": 11431103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ba20", "tid": 35568, "ts": 11431189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b540", "tid": 35568, "ts": 11431276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b3a0", "tid": 35568, "ts": 11431363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b950", "tid": 35568, "ts": 11431449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14be30", "tid": 35568, "ts": 11431536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14dde0", "tid": 35568, "ts": 11431622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b610", "tid": 35568, "ts": 11431708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cf40", "tid": 35568, "ts": 11431795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d350", "tid": 35568, "ts": 11431882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bfd0", "tid": 35568, "ts": 11431968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14deb0", "tid": 35568, "ts": 11432055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c7f0", "tid": 35568, "ts": 11432141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b130", "tid": 35568, "ts": 11432228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c720", "tid": 35568, "ts": 11432314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c310", "tid": 35568, "ts": 11432401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14df80", "tid": 35568, "ts": 11432487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d5c0", "tid": 35568, "ts": 11432573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14daa0", "tid": 35568, "ts": 11432659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e120", "tid": 35568, "ts": 11432745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d9d0", "tid": 35568, "ts": 11432832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c580", "tid": 35568, "ts": 11432918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c4b0", "tid": 35568, "ts": 11433005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c240", "tid": 35568, "ts": 11433090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d830", "tid": 35568, "ts": 11433176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e050", "tid": 35568, "ts": 11433262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e390", "tid": 35568, "ts": 11433349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d420", "tid": 35568, "ts": 11433436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d760", "tid": 35568, "ts": 11433522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d4f0", "tid": 35568, "ts": 11433610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b880", "tid": 35568, "ts": 11433697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d280", "tid": 35568, "ts": 11433789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cda0", "tid": 35568, "ts": 11433885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a430", "tid": 35568, "ts": 11433973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147d30", "tid": 35568, "ts": 11434060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1499a0", "tid": 35568, "ts": 11434203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a840", "tid": 35568, "ts": 11434320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149e80", "tid": 35568, "ts": 11434407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a770", "tid": 35568, "ts": 11434495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149800", "tid": 35568, "ts": 11434582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149590", "tid": 35568, "ts": 11434669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a1c0", "tid": 35568, "ts": 11434756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14aab0", "tid": 35568, "ts": 11434843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1490b0", "tid": 35568, "ts": 11434930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ab80", "tid": 35568, "ts": 11435017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14adf0", "tid": 35568, "ts": 11435105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ad20", "tid": 35568, "ts": 11435191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ac50", "tid": 35568, "ts": 11435278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a9e0", "tid": 35568, "ts": 11435365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a5d0", "tid": 35568, "ts": 11435455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1493f0", "tid": 35568, "ts": 11435571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147fa0", "tid": 35568, "ts": 11435662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a500", "tid": 35568, "ts": 11435750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148210", "tid": 35568, "ts": 11435837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a6a0", "tid": 35568, "ts": 11435923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a0f0", "tid": 35568, "ts": 11436010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148140", "tid": 35568, "ts": 11436097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148ca0", "tid": 35568, "ts": 11436183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149320", "tid": 35568, "ts": 11436270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148bd0", "tid": 35568, "ts": 11436357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1487c0", "tid": 35568, "ts": 11436444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148480", "tid": 35568, "ts": 11436530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148fe0", "tid": 35568, "ts": 11436617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148a30", "tid": 35568, "ts": 11436703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148890", "tid": 35568, "ts": 11436790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145a40", "tid": 35568, "ts": 11436876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1457d0", "tid": 35568, "ts": 11436963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1453c0", "tid": 35568, "ts": 11437050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144fb0", "tid": 35568, "ts": 11437137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144ba0", "tid": 35568, "ts": 11437223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146400", "tid": 35568, "ts": 11437310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144930", "tid": 35568, "ts": 11437397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147780", "tid": 35568, "ts": 11437483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1476b0", "tid": 35568, "ts": 11437569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1458a0", "tid": 35568, "ts": 11437656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1471d0", "tid": 35568, "ts": 11437742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147100", "tid": 35568, "ts": 11437828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144e10", "tid": 35568, "ts": 11437915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146810", "tid": 35568, "ts": 11438002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1469b0", "tid": 35568, "ts": 11438088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146330", "tid": 35568, "ts": 11438174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145d80", "tid": 35568, "ts": 11438260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146c20", "tid": 35568, "ts": 11438346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146260", "tid": 35568, "ts": 11438433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145630", "tid": 35568, "ts": 11438519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1475e0", "tid": 35568, "ts": 11438606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146740", "tid": 35568, "ts": 11438692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145e50", "tid": 35568, "ts": 11438778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146e90", "tid": 35568, "ts": 11438865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145700", "tid": 35568, "ts": 11438952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144ee0", "tid": 35568, "ts": 11439038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145f20", "tid": 35568, "ts": 11439125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145cb0", "tid": 35568, "ts": 11439211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1472a0", "tid": 35568, "ts": 11439298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1460c0", "tid": 35568, "ts": 11439384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147ac0", "tid": 35568, "ts": 11439471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145080", "tid": 35568, "ts": 11439558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143ea0", "tid": 35568, "ts": 11439645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143d00", "tid": 35568, "ts": 11439731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143c30", "tid": 35568, "ts": 11439817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1431a0", "tid": 35568, "ts": 11439903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141fc0", "tid": 35568, "ts": 11439990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1416d0", "tid": 35568, "ts": 11440076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143000", "tid": 35568, "ts": 11440163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144860", "tid": 35568, "ts": 11440250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142d90", "tid": 35568, "ts": 11440336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142bf0", "tid": 35568, "ts": 11440423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1445f0", "tid": 35568, "ts": 11440509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144790", "tid": 35568, "ts": 11440596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141ef0", "tid": 35568, "ts": 11440683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141a10", "tid": 35568, "ts": 11440769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142640", "tid": 35568, "ts": 11440857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1423d0", "tid": 35568, "ts": 11440944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143b60", "tid": 35568, "ts": 11441030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143820", "tid": 35568, "ts": 11441117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1427e0", "tid": 35568, "ts": 11441204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144110", "tid": 35568, "ts": 11441291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1434e0", "tid": 35568, "ts": 11441377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142570", "tid": 35568, "ts": 11441463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143680", "tid": 35568, "ts": 11441549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141870", "tid": 35568, "ts": 11441636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144380", "tid": 35568, "ts": 11441722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143340", "tid": 35568, "ts": 11441809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1430d0", "tid": 35568, "ts": 11441896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1438f0", "tid": 35568, "ts": 11441982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141c80", "tid": 35568, "ts": 11442069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141530", "tid": 35568, "ts": 11442160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142160", "tid": 35568, "ts": 11442246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144450", "tid": 35568, "ts": 11442332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fb30", "tid": 35568, "ts": 11442418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f7f0", "tid": 35568, "ts": 11442505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f580", "tid": 35568, "ts": 11442591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f170", "tid": 35568, "ts": 11442677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f240", "tid": 35568, "ts": 11442764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13eaf0", "tid": 35568, "ts": 11442850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ea20", "tid": 35568, "ts": 11442935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e6e0", "tid": 35568, "ts": 11443022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f990", "tid": 35568, "ts": 11443108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141120", "tid": 35568, "ts": 11443195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140de0", "tid": 35568, "ts": 11443281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f0a0", "tid": 35568, "ts": 11443367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140b70", "tid": 35568, "ts": 11443454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140eb0", "tid": 35568, "ts": 11443540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e470", "tid": 35568, "ts": 11443627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140aa0", "tid": 35568, "ts": 11443714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140d10", "tid": 35568, "ts": 11443801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1409d0", "tid": 35568, "ts": 11443887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e3a0", "tid": 35568, "ts": 11443977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141050", "tid": 35568, "ts": 11444094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e2d0", "tid": 35568, "ts": 11444182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ef00", "tid": 35568, "ts": 11444268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e7b0", "tid": 35568, "ts": 11444354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1405c0", "tid": 35568, "ts": 11444440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141460", "tid": 35568, "ts": 11444526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140280", "tid": 35568, "ts": 11444613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1400e0", "tid": 35568, "ts": 11444699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f3e0", "tid": 35568, "ts": 11444785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fcd0", "tid": 35568, "ts": 11444872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1412c0", "tid": 35568, "ts": 11444958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e880", "tid": 35568, "ts": 11445044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ff40", "tid": 35568, "ts": 11445130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cce0", "tid": 35568, "ts": 11445221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c9a0", "tid": 35568, "ts": 11445309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c800", "tid": 35568, "ts": 11445395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c590", "tid": 35568, "ts": 11445482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c3f0", "tid": 35568, "ts": 11445568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d0f0", "tid": 35568, "ts": 11445655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c180", "tid": 35568, "ts": 11445741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bfe0", "tid": 35568, "ts": 11445828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dab0", "tid": 35568, "ts": 11445914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bd70", "tid": 35568, "ts": 11446000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d9e0", "tid": 35568, "ts": 11446103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d910", "tid": 35568, "ts": 11446207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b7c0", "tid": 35568, "ts": 11446327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b480", "tid": 35568, "ts": 11446462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b140", "tid": 35568, "ts": 11446602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13aed0", "tid": 35568, "ts": 11446753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c0b0", "tid": 35568, "ts": 11446874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dec0", "tid": 35568, "ts": 11447011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ddf0", "tid": 35568, "ts": 11447148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b2e0", "tid": 35568, "ts": 11447282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d840", "tid": 35568, "ts": 11447422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13afa0", "tid": 35568, "ts": 11447543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d500", "tid": 35568, "ts": 11447663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b070", "tid": 35568, "ts": 11447815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ad30", "tid": 35568, "ts": 11447938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cb40", "tid": 35568, "ts": 11448088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13db80", "tid": 35568, "ts": 11448210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d5d0", "tid": 35568, "ts": 11448358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c660", "tid": 35568, "ts": 11448495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d290", "tid": 35568, "ts": 11448635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13df90", "tid": 35568, "ts": 11448784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bf10", "tid": 35568, "ts": 11448920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1383c0", "tid": 35568, "ts": 11449057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138150", "tid": 35568, "ts": 11449193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137ee0", "tid": 35568, "ts": 11449303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a850", "tid": 35568, "ts": 11449446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a780", "tid": 35568, "ts": 11449533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a440", "tid": 35568, "ts": 11449620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137c70", "tid": 35568, "ts": 11449706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138560", "tid": 35568, "ts": 11449872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139810", "tid": 35568, "ts": 11449962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1388a0", "tid": 35568, "ts": 11450050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1394d0", "tid": 35568, "ts": 11450138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a100", "tid": 35568, "ts": 11450225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137d40", "tid": 35568, "ts": 11450312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139670", "tid": 35568, "ts": 11450399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139a80", "tid": 35568, "ts": 11450486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a370", "tid": 35568, "ts": 11450573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a5e0", "tid": 35568, "ts": 11450660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138ff0", "tid": 35568, "ts": 11450747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ab90", "tid": 35568, "ts": 11450838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139dc0", "tid": 35568, "ts": 11450926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138970", "tid": 35568, "ts": 11451013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138e50", "tid": 35568, "ts": 11451100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1387d0", "tid": 35568, "ts": 11451187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1390c0", "tid": 35568, "ts": 11451273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139c20", "tid": 35568, "ts": 11451361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138490", "tid": 35568, "ts": 11451448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138a40", "tid": 35568, "ts": 11451535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a510", "tid": 35568, "ts": 11451621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139330", "tid": 35568, "ts": 11451708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1398e0", "tid": 35568, "ts": 11451794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a1d0", "tid": 35568, "ts": 11451881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138be0", "tid": 35568, "ts": 11451968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136270", "tid": 35568, "ts": 11452055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135d90", "tid": 35568, "ts": 11452143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135bf0", "tid": 35568, "ts": 11452230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1371e0", "tid": 35568, "ts": 11452317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135090", "tid": 35568, "ts": 11452403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135640", "tid": 35568, "ts": 11452490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134c80", "tid": 35568, "ts": 11452576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134a10", "tid": 35568, "ts": 11452662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134ae0", "tid": 35568, "ts": 11452749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1357e0", "tid": 35568, "ts": 11452835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134940", "tid": 35568, "ts": 11452922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1347a0", "tid": 35568, "ts": 11453008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135980", "tid": 35568, "ts": 11453095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134e20", "tid": 35568, "ts": 11453182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137790", "tid": 35568, "ts": 11453268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1376c0", "tid": 35568, "ts": 11453355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135710", "tid": 35568, "ts": 11453442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1361a0", "tid": 35568, "ts": 11453529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137380", "tid": 35568, "ts": 11453615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135570", "tid": 35568, "ts": 11453701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136820", "tid": 35568, "ts": 11453788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135160", "tid": 35568, "ts": 11453874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136ea0", "tid": 35568, "ts": 11453960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1375f0", "tid": 35568, "ts": 11454047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1364e0", "tid": 35568, "ts": 11454133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1354a0", "tid": 35568, "ts": 11454220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134600", "tid": 35568, "ts": 11454307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1358b0", "tid": 35568, "ts": 11454394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136340", "tid": 35568, "ts": 11454481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136410", "tid": 35568, "ts": 11454568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1369c0", "tid": 35568, "ts": 11454653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1346d0", "tid": 35568, "ts": 11454740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1317b0", "tid": 35568, "ts": 11454827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131610", "tid": 35568, "ts": 11454914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1313a0", "tid": 35568, "ts": 11455001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133350", "tid": 35568, "ts": 11455087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133280", "tid": 35568, "ts": 11455174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131880", "tid": 35568, "ts": 11455260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1330e0", "tid": 35568, "ts": 11455346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1328c0", "tid": 35568, "ts": 11455433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1327f0", "tid": 35568, "ts": 11455519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131f00", "tid": 35568, "ts": 11455609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132650", "tid": 35568, "ts": 11455696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132310", "tid": 35568, "ts": 11455783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134050", "tid": 35568, "ts": 11455869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133de0", "tid": 35568, "ts": 11455956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133760", "tid": 35568, "ts": 11456042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131e30", "tid": 35568, "ts": 11456128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133690", "tid": 35568, "ts": 11456215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132c00", "tid": 35568, "ts": 11456301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133b70", "tid": 35568, "ts": 11456388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131a20", "tid": 35568, "ts": 11456474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131950", "tid": 35568, "ts": 11456561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1334f0", "tid": 35568, "ts": 11456648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133d10", "tid": 35568, "ts": 11456735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1339d0", "tid": 35568, "ts": 11456821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133830", "tid": 35568, "ts": 11456908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133900", "tid": 35568, "ts": 11456995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132f40", "tid": 35568, "ts": 11457082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131af0", "tid": 35568, "ts": 11457168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131fd0", "tid": 35568, "ts": 11457255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1342c0", "tid": 35568, "ts": 11457341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133eb0", "tid": 35568, "ts": 11457428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134120", "tid": 35568, "ts": 11457514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e6f0", "tid": 35568, "ts": 11457600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e3b0", "tid": 35568, "ts": 11457686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130ec0", "tid": 35568, "ts": 11457773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130d20", "tid": 35568, "ts": 11457859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1309e0", "tid": 35568, "ts": 11457946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130020", "tid": 35568, "ts": 11458032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fc10", "tid": 35568, "ts": 11458119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fa70", "tid": 35568, "ts": 11458206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130770", "tid": 35568, "ts": 11458293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1305d0", "tid": 35568, "ts": 11458380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1306a0", "tid": 35568, "ts": 11458467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1301c0", "tid": 35568, "ts": 11458553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130500", "tid": 35568, "ts": 11458640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e210", "tid": 35568, "ts": 11458727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fe80", "tid": 35568, "ts": 11458813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f590", "tid": 35568, "ts": 11458899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e480", "tid": 35568, "ts": 11458986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f0b0", "tid": 35568, "ts": 11459072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1300f0", "tid": 35568, "ts": 11459159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fb40", "tid": 35568, "ts": 11459246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130430", "tid": 35568, "ts": 11459333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e140", "tid": 35568, "ts": 11459420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ebd0", "tid": 35568, "ts": 11459507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fce0", "tid": 35568, "ts": 11459594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12eca0", "tid": 35568, "ts": 11459681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f4c0", "tid": 35568, "ts": 11459768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131060", "tid": 35568, "ts": 11459853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fdb0", "tid": 35568, "ts": 11459939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e2e0", "tid": 35568, "ts": 11460026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f800", "tid": 35568, "ts": 11460112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e960", "tid": 35568, "ts": 11460199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ee40", "tid": 35568, "ts": 11460285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d510", "tid": 35568, "ts": 11460372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cb50", "tid": 35568, "ts": 11460458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c260", "tid": 35568, "ts": 11460545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ca80", "tid": 35568, "ts": 11460631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ba40", "tid": 35568, "ts": 11460717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b080", "tid": 35568, "ts": 11460804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d2a0", "tid": 35568, "ts": 11460890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b8a0", "tid": 35568, "ts": 11460976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aba0", "tid": 35568, "ts": 11461063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d370", "tid": 35568, "ts": 11461150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aa00", "tid": 35568, "ts": 11461237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c8e0", "tid": 35568, "ts": 11461324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d9f0", "tid": 35568, "ts": 11461411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12be50", "tid": 35568, "ts": 11461498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b700", "tid": 35568, "ts": 11461584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c740", "tid": 35568, "ts": 11461671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bd80", "tid": 35568, "ts": 11461757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d920", "tid": 35568, "ts": 11461844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aee0", "tid": 35568, "ts": 11461930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bbe0", "tid": 35568, "ts": 11462017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cdc0", "tid": 35568, "ts": 11462104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c5a0", "tid": 35568, "ts": 11462190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cf60", "tid": 35568, "ts": 11462277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b3c0", "tid": 35568, "ts": 11462363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ccf0", "tid": 35568, "ts": 11462451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b490", "tid": 35568, "ts": 11462538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d100", "tid": 35568, "ts": 11462625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ad40", "tid": 35568, "ts": 11462711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b2f0", "tid": 35568, "ts": 11462798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c9b0", "tid": 35568, "ts": 11462884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cc20", "tid": 35568, "ts": 11462970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bb10", "tid": 35568, "ts": 11463057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127ae0", "tid": 35568, "ts": 11463144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127870", "tid": 35568, "ts": 11463230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1277a0", "tid": 35568, "ts": 11463316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a5f0", "tid": 35568, "ts": 11463403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a520", "tid": 35568, "ts": 11463489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129000", "tid": 35568, "ts": 11463576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128f30", "tid": 35568, "ts": 11463663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127fc0", "tid": 35568, "ts": 11463750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a450", "tid": 35568, "ts": 11463837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a1e0", "tid": 35568, "ts": 11463923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127bb0", "tid": 35568, "ts": 11464010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129c30", "tid": 35568, "ts": 11464097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128640", "tid": 35568, "ts": 11464183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a040", "tid": 35568, "ts": 11464270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128570", "tid": 35568, "ts": 11464356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1299c0", "tid": 35568, "ts": 11464443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127e20", "tid": 35568, "ts": 11464530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129820", "tid": 35568, "ts": 11464617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127d50", "tid": 35568, "ts": 11464704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129680", "tid": 35568, "ts": 11464790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128a50", "tid": 35568, "ts": 11464878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128300", "tid": 35568, "ts": 11464965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128980", "tid": 35568, "ts": 11465052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a380", "tid": 35568, "ts": 11465138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1288b0", "tid": 35568, "ts": 11465225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1290d0", "tid": 35568, "ts": 11465312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128e60", "tid": 35568, "ts": 11465410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128b20", "tid": 35568, "ts": 11465498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1276d0", "tid": 35568, "ts": 11465585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129270", "tid": 35568, "ts": 11465671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1284a0", "tid": 35568, "ts": 11465758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129410", "tid": 35568, "ts": 11465845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2669d0", "tid": 35568, "ts": 11465935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a92d0", "tid": 35568, "ts": 11466023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8360", "tid": 35568, "ts": 11466111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8770", "tid": 35568, "ts": 11466199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6140", "tid": 35568, "ts": 11466286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7800", "tid": 35568, "ts": 11466373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbce40", "tid": 35568, "ts": 11466460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcca0", "tid": 35568, "ts": 11466546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdb40", "tid": 35568, "ts": 11466634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcb00", "tid": 35568, "ts": 11466721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbca30", "tid": 35568, "ts": 11466808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc890", "tid": 35568, "ts": 11466894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbda70", "tid": 35568, "ts": 11466981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd9a0", "tid": 35568, "ts": 11467068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe0f0", "tid": 35568, "ts": 11467155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd8d0", "tid": 35568, "ts": 11467241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc7c0", "tid": 35568, "ts": 11467329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd730", "tid": 35568, "ts": 11467415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe360", "tid": 35568, "ts": 11467502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe910", "tid": 35568, "ts": 11467588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd590", "tid": 35568, "ts": 11467675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe5d0", "tid": 35568, "ts": 11467762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf060", "tid": 35568, "ts": 11467848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd0b0", "tid": 35568, "ts": 11467935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf2d0", "tid": 35568, "ts": 11468027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd4c0", "tid": 35568, "ts": 11468115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf200", "tid": 35568, "ts": 11468201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcd70", "tid": 35568, "ts": 11468288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe770", "tid": 35568, "ts": 11468375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc550", "tid": 35568, "ts": 11468462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc3b0", "tid": 35568, "ts": 11468549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe6a0", "tid": 35568, "ts": 11468635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd3f0", "tid": 35568, "ts": 11468722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc480", "tid": 35568, "ts": 11468809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd320", "tid": 35568, "ts": 11468896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd800", "tid": 35568, "ts": 11468983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcfe0", "tid": 35568, "ts": 11469070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbeab0", "tid": 35568, "ts": 11469157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa700", "tid": 35568, "ts": 11469244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa560", "tid": 35568, "ts": 11469330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa3c0", "tid": 35568, "ts": 11469417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa970", "tid": 35568, "ts": 11469504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa2f0", "tid": 35568, "ts": 11469591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfaa40", "tid": 35568, "ts": 11469678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9fb0", "tid": 35568, "ts": 11469766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa8a0", "tid": 35568, "ts": 11469854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb5a0", "tid": 35568, "ts": 11469941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc780", "tid": 35568, "ts": 11470033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb4d0", "tid": 35568, "ts": 11470122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb400", "tid": 35568, "ts": 11470218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb190", "tid": 35568, "ts": 11470306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa150", "tid": 35568, "ts": 11470393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb260", "tid": 35568, "ts": 11470480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc030", "tid": 35568, "ts": 11470568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa7d0", "tid": 35568, "ts": 11470654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbf60", "tid": 35568, "ts": 11470741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc370", "tid": 35568, "ts": 11470828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfced0", "tid": 35568, "ts": 11470914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbdc0", "tid": 35568, "ts": 11471000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbcf0", "tid": 35568, "ts": 11471086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbc20", "tid": 35568, "ts": 11471173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfaf20", "tid": 35568, "ts": 11471260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcb90", "tid": 35568, "ts": 11471347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfce00", "tid": 35568, "ts": 11471433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb0c0", "tid": 35568, "ts": 11471520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfacb0", "tid": 35568, "ts": 11471607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc9f0", "tid": 35568, "ts": 11471694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb740", "tid": 35568, "ts": 11471781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfaff0", "tid": 35568, "ts": 11471868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9a00", "tid": 35568, "ts": 11471954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9860", "tid": 35568, "ts": 11472040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df85b0", "tid": 35568, "ts": 11472127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8340", "tid": 35568, "ts": 11472214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9450", "tid": 35568, "ts": 11472300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9380", "tid": 35568, "ts": 11472387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7160", "tid": 35568, "ts": 11472473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7d90", "tid": 35568, "ts": 11472559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7bf0", "tid": 35568, "ts": 11472646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7a50", "tid": 35568, "ts": 11472733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df84e0", "tid": 35568, "ts": 11472819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6ae0", "tid": 35568, "ts": 11472906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df78b0", "tid": 35568, "ts": 11472993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df77e0", "tid": 35568, "ts": 11473080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9040", "tid": 35568, "ts": 11473166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8d00", "tid": 35568, "ts": 11473253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7710", "tid": 35568, "ts": 11473339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8c30", "tid": 35568, "ts": 11473426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8000", "tid": 35568, "ts": 11473513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7e60", "tid": 35568, "ts": 11473600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df95f0", "tid": 35568, "ts": 11473686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8dd0", "tid": 35568, "ts": 11473773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9ad0", "tid": 35568, "ts": 11473859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6ef0", "tid": 35568, "ts": 11473946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7090", "tid": 35568, "ts": 11474033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8b60", "tid": 35568, "ts": 11474120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df91e0", "tid": 35568, "ts": 11474206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9ba0", "tid": 35568, "ts": 11474292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df88f0", "tid": 35568, "ts": 11474379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6e20", "tid": 35568, "ts": 11474466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df74a0", "tid": 35568, "ts": 11474552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df73d0", "tid": 35568, "ts": 11474638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df67a0", "tid": 35568, "ts": 11474725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6120", "tid": 35568, "ts": 11474812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5de0", "tid": 35568, "ts": 11474899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5c40", "tid": 35568, "ts": 11474986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5010", "tid": 35568, "ts": 11475072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4f40", "tid": 35568, "ts": 11475159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5b70", "tid": 35568, "ts": 11475245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5f80", "tid": 35568, "ts": 11475333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5350", "tid": 35568, "ts": 11475420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df55c0", "tid": 35568, "ts": 11475507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4a60", "tid": 35568, "ts": 11475594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4650", "tid": 35568, "ts": 11475680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3af0", "tid": 35568, "ts": 11475767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4580", "tid": 35568, "ts": 11475853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df66d0", "tid": 35568, "ts": 11475939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5eb0", "tid": 35568, "ts": 11476025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df51b0", "tid": 35568, "ts": 11476112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4720", "tid": 35568, "ts": 11476199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df50e0", "tid": 35568, "ts": 11476286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4170", "tid": 35568, "ts": 11476373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3880", "tid": 35568, "ts": 11476460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3f00", "tid": 35568, "ts": 11476546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df54f0", "tid": 35568, "ts": 11476632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6390", "tid": 35568, "ts": 11476719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6870", "tid": 35568, "ts": 11476805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df44b0", "tid": 35568, "ts": 11476892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3d60", "tid": 35568, "ts": 11476979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df62c0", "tid": 35568, "ts": 11477066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3c90", "tid": 35568, "ts": 11477153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df36e0", "tid": 35568, "ts": 11477239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3e30", "tid": 35568, "ts": 11477326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5420", "tid": 35568, "ts": 11477412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2ec0", "tid": 35568, "ts": 11477498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df33a0", "tid": 35568, "ts": 11477585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2c50", "tid": 35568, "ts": 11477672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3130", "tid": 35568, "ts": 11477759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2500", "tid": 35568, "ts": 11477846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df06f0", "tid": 35568, "ts": 11477933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3200", "tid": 35568, "ts": 11478019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1db0", "tid": 35568, "ts": 11478106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1b40", "tid": 35568, "ts": 11478193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1a70", "tid": 35568, "ts": 11478280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df25d0", "tid": 35568, "ts": 11478370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0d70", "tid": 35568, "ts": 11478458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df07c0", "tid": 35568, "ts": 11478544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0960", "tid": 35568, "ts": 11478631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df02e0", "tid": 35568, "ts": 11478718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df19a0", "tid": 35568, "ts": 11478805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0550", "tid": 35568, "ts": 11478892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2430", "tid": 35568, "ts": 11478979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2df0", "tid": 35568, "ts": 11479066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1250", "tid": 35568, "ts": 11479152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df29e0", "tid": 35568, "ts": 11479240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1ce0", "tid": 35568, "ts": 11479326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0890", "tid": 35568, "ts": 11479412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df18d0", "tid": 35568, "ts": 11479498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1180", "tid": 35568, "ts": 11479585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df14c0", "tid": 35568, "ts": 11479671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2290", "tid": 35568, "ts": 11479757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df21c0", "tid": 35568, "ts": 11479844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3470", "tid": 35568, "ts": 11479931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df03b0", "tid": 35568, "ts": 11480018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2f90", "tid": 35568, "ts": 11480103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1590", "tid": 35568, "ts": 11480190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedbe0", "tid": 35568, "ts": 11480276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dece10", "tid": 35568, "ts": 11480364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedd80", "tid": 35568, "ts": 11480450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedb10", "tid": 35568, "ts": 11480536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deda40", "tid": 35568, "ts": 11480624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def920", "tid": 35568, "ts": 11480710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def780", "tid": 35568, "ts": 11480796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def6b0", "tid": 35568, "ts": 11480883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def9f0", "tid": 35568, "ts": 11480970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def5e0", "tid": 35568, "ts": 11481120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee740", "tid": 35568, "ts": 11481208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def370", "tid": 35568, "ts": 11481295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deec20", "tid": 35568, "ts": 11481381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deef60", "tid": 35568, "ts": 11481468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedcb0", "tid": 35568, "ts": 11481554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deffa0", "tid": 35568, "ts": 11481641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee670", "tid": 35568, "ts": 11481728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee400", "tid": 35568, "ts": 11481815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deea80", "tid": 35568, "ts": 11481901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee190", "tid": 35568, "ts": 11481988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded560", "tid": 35568, "ts": 11482074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0070", "tid": 35568, "ts": 11482160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded150", "tid": 35568, "ts": 11482247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deeb50", "tid": 35568, "ts": 11482334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deedc0", "tid": 35568, "ts": 11482421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded630", "tid": 35568, "ts": 11482508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decee0", "tid": 35568, "ts": 11482595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded2f0", "tid": 35568, "ts": 11482682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee330", "tid": 35568, "ts": 11482769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee260", "tid": 35568, "ts": 11482856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deee90", "tid": 35568, "ts": 11482942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee8e0", "tid": 35568, "ts": 11483029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea300", "tid": 35568, "ts": 11483116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9bb0", "tid": 35568, "ts": 11483202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decc70", "tid": 35568, "ts": 11483289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decba0", "tid": 35568, "ts": 11483376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deca00", "tid": 35568, "ts": 11483463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec6c0", "tid": 35568, "ts": 11483550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec5f0", "tid": 35568, "ts": 11483636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea160", "tid": 35568, "ts": 11483724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9fc0", "tid": 35568, "ts": 11483811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9940", "tid": 35568, "ts": 11483898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb000", "tid": 35568, "ts": 11483985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec1e0", "tid": 35568, "ts": 11484072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb410", "tid": 35568, "ts": 11484159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec040", "tid": 35568, "ts": 11484246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb340", "tid": 35568, "ts": 11484333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debea0", "tid": 35568, "ts": 11484419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea640", "tid": 35568, "ts": 11484506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec930", "tid": 35568, "ts": 11484592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea4a0", "tid": 35568, "ts": 11484679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debdd0", "tid": 35568, "ts": 11484765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb5b0", "tid": 35568, "ts": 11484852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debf70", "tid": 35568, "ts": 11484939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deaa50", "tid": 35568, "ts": 11485026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb8f0", "tid": 35568, "ts": 11485112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb820", "tid": 35568, "ts": 11485199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb4e0", "tid": 35568, "ts": 11485285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9e20", "tid": 35568, "ts": 11485372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb0d0", "tid": 35568, "ts": 11485459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea7e0", "tid": 35568, "ts": 11485546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debc30", "tid": 35568, "ts": 11485633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deacc0", "tid": 35568, "ts": 11485719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9c80", "tid": 35568, "ts": 11485806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7cd0", "tid": 35568, "ts": 11485892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de78c0", "tid": 35568, "ts": 11485979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de73e0", "tid": 35568, "ts": 11486066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7240", "tid": 35568, "ts": 11486153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6f00", "tid": 35568, "ts": 11486240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de74b0", "tid": 35568, "ts": 11486330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7990", "tid": 35568, "ts": 11486416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6af0", "tid": 35568, "ts": 11486504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de92c0", "tid": 35568, "ts": 11486591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7b30", "tid": 35568, "ts": 11486677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de91f0", "tid": 35568, "ts": 11486764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6d60", "tid": 35568, "ts": 11486850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8de0", "tid": 35568, "ts": 11486937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6880", "tid": 35568, "ts": 11487024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7f40", "tid": 35568, "ts": 11487110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8900", "tid": 35568, "ts": 11487196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6a20", "tid": 35568, "ts": 11487282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de77f0", "tid": 35568, "ts": 11487369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7720", "tid": 35568, "ts": 11487455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de67b0", "tid": 35568, "ts": 11487542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de97a0", "tid": 35568, "ts": 11487629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9120", "tid": 35568, "ts": 11487716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8280", "tid": 35568, "ts": 11487802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8f80", "tid": 35568, "ts": 11487889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de96d0", "tid": 35568, "ts": 11487976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8350", "tid": 35568, "ts": 11488062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7310", "tid": 35568, "ts": 11488149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de81b0", "tid": 35568, "ts": 11488235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9600", "tid": 35568, "ts": 11488321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6fd0", "tid": 35568, "ts": 11488408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7da0", "tid": 35568, "ts": 11488495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8eb0", "tid": 35568, "ts": 11488582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4c10", "tid": 35568, "ts": 11488668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4730", "tid": 35568, "ts": 11488755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4180", "tid": 35568, "ts": 11488842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de33b0", "tid": 35568, "ts": 11488928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6470", "tid": 35568, "ts": 11489015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3620", "tid": 35568, "ts": 11489101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4b40", "tid": 35568, "ts": 11489187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5f90", "tid": 35568, "ts": 11489274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5d20", "tid": 35568, "ts": 11489361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3fe0", "tid": 35568, "ts": 11489447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5ec0", "tid": 35568, "ts": 11489533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4590", "tid": 35568, "ts": 11489620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5c50", "tid": 35568, "ts": 11489706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5b80", "tid": 35568, "ts": 11489792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5910", "tid": 35568, "ts": 11489878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3ca0", "tid": 35568, "ts": 11489964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3b00", "tid": 35568, "ts": 11490050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de56a0", "tid": 35568, "ts": 11490136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5360", "tid": 35568, "ts": 11490223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de55d0", "tid": 35568, "ts": 11490309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de32e0", "tid": 35568, "ts": 11490396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5020", "tid": 35568, "ts": 11490483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4a70", "tid": 35568, "ts": 11490570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4320", "tid": 35568, "ts": 11490656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6200", "tid": 35568, "ts": 11490743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de43f0", "tid": 35568, "ts": 11490830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6130", "tid": 35568, "ts": 11490916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de36f0", "tid": 35568, "ts": 11491003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de49a0", "tid": 35568, "ts": 11491089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5430", "tid": 35568, "ts": 11491176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3bd0", "tid": 35568, "ts": 11491262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3890", "tid": 35568, "ts": 11491348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1c20", "tid": 35568, "ts": 11491435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1b50", "tid": 35568, "ts": 11491521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de02f0", "tid": 35568, "ts": 11491608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1a80", "tid": 35568, "ts": 11491695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de14d0", "tid": 35568, "ts": 11491781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0f20", "tid": 35568, "ts": 11491868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2ac0", "tid": 35568, "ts": 11491954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3070", "tid": 35568, "ts": 11492040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de08a0", "tid": 35568, "ts": 11492126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2510", "tid": 35568, "ts": 11492213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1cf0", "tid": 35568, "ts": 11492300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2920", "tid": 35568, "ts": 11492386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1f60", "tid": 35568, "ts": 11492473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1190", "tid": 35568, "ts": 11492560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2fa0", "tid": 35568, "ts": 11492646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0ff0", "tid": 35568, "ts": 11492733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1260", "tid": 35568, "ts": 11492820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0080", "tid": 35568, "ts": 11492906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfee0", "tid": 35568, "ts": 11492992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2780", "tid": 35568, "ts": 11493078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2e00", "tid": 35568, "ts": 11493164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de25e0", "tid": 35568, "ts": 11493251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0be0", "tid": 35568, "ts": 11493338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de22a0", "tid": 35568, "ts": 11493424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0700", "tid": 35568, "ts": 11493514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de21d0", "tid": 35568, "ts": 11493602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2100", "tid": 35568, "ts": 11493688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2d30", "tid": 35568, "ts": 11493775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1330", "tid": 35568, "ts": 11493862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0cb0", "tid": 35568, "ts": 11493948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfd40", "tid": 35568, "ts": 11494034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2030", "tid": 35568, "ts": 11494121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde340", "tid": 35568, "ts": 11494208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde1a0", "tid": 35568, "ts": 11494294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddf30", "tid": 35568, "ts": 11494380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddcc0", "tid": 35568, "ts": 11494466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd8b0", "tid": 35568, "ts": 11494576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd710", "tid": 35568, "ts": 11494675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcfc0", "tid": 35568, "ts": 11494762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcd50", "tid": 35568, "ts": 11494849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcbb0", "tid": 35568, "ts": 11494936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfc70", "tid": 35568, "ts": 11495023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfba0", "tid": 35568, "ts": 11495109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf5f0", "tid": 35568, "ts": 11495196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf2b0", "tid": 35568, "ts": 11495283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf040", "tid": 35568, "ts": 11495369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddde60", "tid": 35568, "ts": 11495455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddec30", "tid": 35568, "ts": 11495541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd230", "tid": 35568, "ts": 11495627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddeb60", "tid": 35568, "ts": 11495714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf380", "tid": 35568, "ts": 11495800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde5b0", "tid": 35568, "ts": 11495887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcef0", "tid": 35568, "ts": 11495973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddedd0", "tid": 35568, "ts": 11496061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd4a0", "tid": 35568, "ts": 11496151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddbf0", "tid": 35568, "ts": 11496238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde680", "tid": 35568, "ts": 11496325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcae0", "tid": 35568, "ts": 11496411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde750", "tid": 35568, "ts": 11496497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf790", "tid": 35568, "ts": 11496583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfa00", "tid": 35568, "ts": 11496701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd160", "tid": 35568, "ts": 11496788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddea90", "tid": 35568, "ts": 11496874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde9c0", "tid": 35568, "ts": 11496960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda990", "tid": 35568, "ts": 11497047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbc40", "tid": 35568, "ts": 11497133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda240", "tid": 35568, "ts": 11497219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc2c0", "tid": 35568, "ts": 11497306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9bc0", "tid": 35568, "ts": 11497392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbde0", "tid": 35568, "ts": 11497478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb690", "tid": 35568, "ts": 11497565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb0e0", "tid": 35568, "ts": 11497651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb010", "tid": 35568, "ts": 11497738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbaa0", "tid": 35568, "ts": 11497823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9f00", "tid": 35568, "ts": 11497909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc120", "tid": 35568, "ts": 11497996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9880", "tid": 35568, "ts": 11498084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd97b0", "tid": 35568, "ts": 11498170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddae70", "tid": 35568, "ts": 11498255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9fd0", "tid": 35568, "ts": 11498342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc050", "tid": 35568, "ts": 11498429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbf80", "tid": 35568, "ts": 11498515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbeb0", "tid": 35568, "ts": 11498601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb900", "tid": 35568, "ts": 11498688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb9d0", "tid": 35568, "ts": 11498773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc600", "tid": 35568, "ts": 11498860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda650", "tid": 35568, "ts": 11498947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9950", "tid": 35568, "ts": 11499033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddacd0", "tid": 35568, "ts": 11499120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbd10", "tid": 35568, "ts": 11499206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb830", "tid": 35568, "ts": 11499293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9d60", "tid": 35568, "ts": 11499379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda170", "tid": 35568, "ts": 11499466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda3e0", "tid": 35568, "ts": 11499552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc530", "tid": 35568, "ts": 11499638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc390", "tid": 35568, "ts": 11499725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd74c0", "tid": 35568, "ts": 11499812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7180", "tid": 35568, "ts": 11499899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6ca0", "tid": 35568, "ts": 11499984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd67c0", "tid": 35568, "ts": 11500070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6550", "tid": 35568, "ts": 11500157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7b40", "tid": 35568, "ts": 11500243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd92d0", "tid": 35568, "ts": 11500329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9200", "tid": 35568, "ts": 11500416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8840", "tid": 35568, "ts": 11500502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7a70", "tid": 35568, "ts": 11500589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd79a0", "tid": 35568, "ts": 11500676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8f90", "tid": 35568, "ts": 11500762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8290", "tid": 35568, "ts": 11500848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd78d0", "tid": 35568, "ts": 11500935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8b80", "tid": 35568, "ts": 11501021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd73f0", "tid": 35568, "ts": 11501107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6d70", "tid": 35568, "ts": 11501193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9470", "tid": 35568, "ts": 11501279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9130", "tid": 35568, "ts": 11501365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd66f0", "tid": 35568, "ts": 11501451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8d20", "tid": 35568, "ts": 11501538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd62e0", "tid": 35568, "ts": 11501624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8430", "tid": 35568, "ts": 11501710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8500", "tid": 35568, "ts": 11501796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8c50", "tid": 35568, "ts": 11501882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7ce0", "tid": 35568, "ts": 11501969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8df0", "tid": 35568, "ts": 11502055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6f10", "tid": 35568, "ts": 11502141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7660", "tid": 35568, "ts": 11502227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7590", "tid": 35568, "ts": 11502313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd86a0", "tid": 35568, "ts": 11502399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6620", "tid": 35568, "ts": 11502485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2fb0", "tid": 35568, "ts": 11502572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd59f0", "tid": 35568, "ts": 11502658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5440", "tid": 35568, "ts": 11502745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5c60", "tid": 35568, "ts": 11502831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5850", "tid": 35568, "ts": 11502917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd52a0", "tid": 35568, "ts": 11503003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd49b0", "tid": 35568, "ts": 11503089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4740", "tid": 35568, "ts": 11503176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5030", "tid": 35568, "ts": 11503262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6070", "tid": 35568, "ts": 11503348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd40c0", "tid": 35568, "ts": 11503434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4f60", "tid": 35568, "ts": 11503520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4dc0", "tid": 35568, "ts": 11503606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3e50", "tid": 35568, "ts": 11503693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd44d0", "tid": 35568, "ts": 11503779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd33c0", "tid": 35568, "ts": 11503865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3a40", "tid": 35568, "ts": 11503951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3970", "tid": 35568, "ts": 11504037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd38a0", "tid": 35568, "ts": 11504123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5fa0", "tid": 35568, "ts": 11504209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3ff0", "tid": 35568, "ts": 11504295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3150", "tid": 35568, "ts": 11504381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4330", "tid": 35568, "ts": 11504467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2ee0", "tid": 35568, "ts": 11504554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5e00", "tid": 35568, "ts": 11504641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd37d0", "tid": 35568, "ts": 11504728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4c20", "tid": 35568, "ts": 11504816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4260", "tid": 35568, "ts": 11504904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4b50", "tid": 35568, "ts": 11504991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3560", "tid": 35568, "ts": 11505087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5b90", "tid": 35568, "ts": 11505174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3220", "tid": 35568, "ts": 11505260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd26c0", "tid": 35568, "ts": 11505347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1820", "tid": 35568, "ts": 11505433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1340", "tid": 35568, "ts": 11505519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1dd0", "tid": 35568, "ts": 11505605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0f30", "tid": 35568, "ts": 11505691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0a50", "tid": 35568, "ts": 11505778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfef0", "tid": 35568, "ts": 11505864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd21e0", "tid": 35568, "ts": 11505950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf940", "tid": 35568, "ts": 11506041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0710", "tid": 35568, "ts": 11506128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1c30", "tid": 35568, "ts": 11506214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0bf0", "tid": 35568, "ts": 11506300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0980", "tid": 35568, "ts": 11506387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfa10", "tid": 35568, "ts": 11506473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2450", "tid": 35568, "ts": 11506559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2860", "tid": 35568, "ts": 11506645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0b20", "tid": 35568, "ts": 11506731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0570", "tid": 35568, "ts": 11506818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0300", "tid": 35568, "ts": 11506904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1750", "tid": 35568, "ts": 11506991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd22b0", "tid": 35568, "ts": 11507077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2040", "tid": 35568, "ts": 11507163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd19c0", "tid": 35568, "ts": 11507249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd04a0", "tid": 35568, "ts": 11507336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1ea0", "tid": 35568, "ts": 11507422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1000", "tid": 35568, "ts": 11507509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0230", "tid": 35568, "ts": 11507595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfc80", "tid": 35568, "ts": 11507681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd11a0", "tid": 35568, "ts": 11507768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd18f0", "tid": 35568, "ts": 11507853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1f70", "tid": 35568, "ts": 11507939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2790", "tid": 35568, "ts": 11508026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdda0", "tid": 35568, "ts": 11508112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd650", "tid": 35568, "ts": 11508198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd3e0", "tid": 35568, "ts": 11508284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd240", "tid": 35568, "ts": 11508370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dceaa0", "tid": 35568, "ts": 11508456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdc00", "tid": 35568, "ts": 11508542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccaf0", "tid": 35568, "ts": 11508629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc610", "tid": 35568, "ts": 11508715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce760", "tid": 35568, "ts": 11508801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd170", "tid": 35568, "ts": 11508887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf050", "tid": 35568, "ts": 11508974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcef80", "tid": 35568, "ts": 11509060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc540", "tid": 35568, "ts": 11509146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce690", "tid": 35568, "ts": 11509232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf7a0", "tid": 35568, "ts": 11509318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdb30", "tid": 35568, "ts": 11509404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc880", "tid": 35568, "ts": 11509490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dced10", "tid": 35568, "ts": 11509576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf870", "tid": 35568, "ts": 11509662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce1b0", "tid": 35568, "ts": 11509748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf1f0", "tid": 35568, "ts": 11509834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccf00", "tid": 35568, "ts": 11509920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce830", "tid": 35568, "ts": 11510005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf2c0", "tid": 35568, "ts": 11510092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce280", "tid": 35568, "ts": 11510178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdf40", "tid": 35568, "ts": 11510264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9d70", "tid": 35568, "ts": 11510351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9bd0", "tid": 35568, "ts": 11510438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb9e0", "tid": 35568, "ts": 11510524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb430", "tid": 35568, "ts": 11510610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc470", "tid": 35568, "ts": 11510696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcadb0", "tid": 35568, "ts": 11510782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbd20", "tid": 35568, "ts": 11510868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc200", "tid": 35568, "ts": 11510954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb5d0", "tid": 35568, "ts": 11511039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb360", "tid": 35568, "ts": 11511125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9a30", "tid": 35568, "ts": 11511212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcac10", "tid": 35568, "ts": 11511298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca4c0", "tid": 35568, "ts": 11511383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca9a0", "tid": 35568, "ts": 11511469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc130", "tid": 35568, "ts": 11511556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca3f0", "tid": 35568, "ts": 11511642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcaa70", "tid": 35568, "ts": 11511728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca800", "tid": 35568, "ts": 11511815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc3a0", "tid": 35568, "ts": 11511901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb910", "tid": 35568, "ts": 11511987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb020", "tid": 35568, "ts": 11512073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca730", "tid": 35568, "ts": 11512159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9890", "tid": 35568, "ts": 11512298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc060", "tid": 35568, "ts": 11512473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb1c0", "tid": 35568, "ts": 11512582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbdf0", "tid": 35568, "ts": 11512724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbb80", "tid": 35568, "ts": 11512861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca320", "tid": 35568, "ts": 11512974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca180", "tid": 35568, "ts": 11513083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca250", "tid": 35568, "ts": 11513221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca0b0", "tid": 35568, "ts": 11513387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcae80", "tid": 35568, "ts": 11513473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6cb0", "tid": 35568, "ts": 11513560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6630", "tid": 35568, "ts": 11513646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc78e0", "tid": 35568, "ts": 11513732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6490", "tid": 35568, "ts": 11513819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc63c0", "tid": 35568, "ts": 11513905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc62f0", "tid": 35568, "ts": 11513991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5fb0", "tid": 35568, "ts": 11514081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc68a0", "tid": 35568, "ts": 11514168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6220", "tid": 35568, "ts": 11514256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8b90", "tid": 35568, "ts": 11514342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc89f0", "tid": 35568, "ts": 11514428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8510", "tid": 35568, "ts": 11514514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8ed0", "tid": 35568, "ts": 11514601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc81d0", "tid": 35568, "ts": 11514687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6be0", "tid": 35568, "ts": 11514774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7f60", "tid": 35568, "ts": 11514860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6d80", "tid": 35568, "ts": 11514946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5e10", "tid": 35568, "ts": 11515032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc82a0", "tid": 35568, "ts": 11515118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6700", "tid": 35568, "ts": 11515204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7190", "tid": 35568, "ts": 11515291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5d40", "tid": 35568, "ts": 11515378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7cf0", "tid": 35568, "ts": 11515465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6080", "tid": 35568, "ts": 11515551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7330", "tid": 35568, "ts": 11515637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6f20", "tid": 35568, "ts": 11515723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc70c0", "tid": 35568, "ts": 11515810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8850", "tid": 35568, "ts": 11515896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6ff0", "tid": 35568, "ts": 11515983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7a80", "tid": 35568, "ts": 11516071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7670", "tid": 35568, "ts": 11516157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8440", "tid": 35568, "ts": 11516244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4820", "tid": 35568, "ts": 11516330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4680", "tid": 35568, "ts": 11516417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc38b0", "tid": 35568, "ts": 11516503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc44e0", "tid": 35568, "ts": 11516590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3570", "tid": 35568, "ts": 11516676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc34a0", "tid": 35568, "ts": 11516763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc40d0", "tid": 35568, "ts": 11516849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4340", "tid": 35568, "ts": 11516935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3640", "tid": 35568, "ts": 11517021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3230", "tid": 35568, "ts": 11517107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3160", "tid": 35568, "ts": 11517193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3a50", "tid": 35568, "ts": 11517279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3f30", "tid": 35568, "ts": 11517366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4d00", "tid": 35568, "ts": 11517456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5ba0", "tid": 35568, "ts": 11517543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc37e0", "tid": 35568, "ts": 11517630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5a00", "tid": 35568, "ts": 11517716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2ae0", "tid": 35568, "ts": 11517802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2a10", "tid": 35568, "ts": 11517890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4b60", "tid": 35568, "ts": 11517976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2940", "tid": 35568, "ts": 11518062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc41a0", "tid": 35568, "ts": 11518153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4a90", "tid": 35568, "ts": 11518240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc56c0", "tid": 35568, "ts": 11518327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5790", "tid": 35568, "ts": 11518413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc49c0", "tid": 35568, "ts": 11518499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5040", "tid": 35568, "ts": 11518585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc52b0", "tid": 35568, "ts": 11518671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5520", "tid": 35568, "ts": 11518757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2c80", "tid": 35568, "ts": 11518843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4f70", "tid": 35568, "ts": 11518930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4000", "tid": 35568, "ts": 11519015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0650", "tid": 35568, "ts": 11519102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0240", "tid": 35568, "ts": 11519188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0170", "tid": 35568, "ts": 11519274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbffd0", "tid": 35568, "ts": 11519360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfe30", "tid": 35568, "ts": 11519446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc27a0", "tid": 35568, "ts": 11519533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2460", "tid": 35568, "ts": 11519619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc26d0", "tid": 35568, "ts": 11519706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2390", "tid": 35568, "ts": 11519792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2050", "tid": 35568, "ts": 11519879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf7b0", "tid": 35568, "ts": 11519965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1de0", "tid": 35568, "ts": 11520051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf6e0", "tid": 35568, "ts": 11520136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1760", "tid": 35568, "ts": 11520223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf540", "tid": 35568, "ts": 11520309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0e70", "tid": 35568, "ts": 11520396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc14f0", "tid": 35568, "ts": 11520482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc22c0", "tid": 35568, "ts": 11520568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfa20", "tid": 35568, "ts": 11520654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1c40", "tid": 35568, "ts": 11520740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0da0", "tid": 35568, "ts": 11520826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0f40", "tid": 35568, "ts": 11520912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0310", "tid": 35568, "ts": 11520998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2530", "tid": 35568, "ts": 11521085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1420", "tid": 35568, "ts": 11521170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0a60", "tid": 35568, "ts": 11521256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0b30", "tid": 35568, "ts": 11521342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf610", "tid": 35568, "ts": 11521428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc07f0", "tid": 35568, "ts": 11521515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1690", "tid": 35568, "ts": 11521601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1900", "tid": 35568, "ts": 11521688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1280", "tid": 35568, "ts": 11521774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270020", "tid": 35568, "ts": 11521860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f180", "tid": 35568, "ts": 11521946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fdb0", "tid": 35568, "ts": 11522032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f0b0", "tid": 35568, "ts": 11522119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e960", "tid": 35568, "ts": 11522204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f730", "tid": 35568, "ts": 11522290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e620", "tid": 35568, "ts": 11522377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e480", "tid": 35568, "ts": 11522462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f320", "tid": 35568, "ts": 11522549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e6f0", "tid": 35568, "ts": 11522635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f4c0", "tid": 35568, "ts": 11522722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f800", "tid": 35568, "ts": 11522808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fc10", "tid": 35568, "ts": 11522894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270ec0", "tid": 35568, "ts": 11522980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ee40", "tid": 35568, "ts": 11523067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f8d0", "tid": 35568, "ts": 11523153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e3b0", "tid": 35568, "ts": 11523239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270d20", "tid": 35568, "ts": 11523326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26eca0", "tid": 35568, "ts": 11523412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270910", "tid": 35568, "ts": 11523498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270c50", "tid": 35568, "ts": 11523585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fe80", "tid": 35568, "ts": 11523671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ef10", "tid": 35568, "ts": 11523758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dd30", "tid": 35568, "ts": 11523844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270b80", "tid": 35568, "ts": 11523931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270ab0", "tid": 35568, "ts": 11524017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e210", "tid": 35568, "ts": 11524105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2709e0", "tid": 35568, "ts": 11524191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270770", "tid": 35568, "ts": 11524277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270290", "tid": 35568, "ts": 11524364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26eb00", "tid": 35568, "ts": 11524451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c810", "tid": 35568, "ts": 11524538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c330", "tid": 35568, "ts": 11524624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b490", "tid": 35568, "ts": 11524710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c190", "tid": 35568, "ts": 11524796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c740", "tid": 35568, "ts": 11524883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b080", "tid": 35568, "ts": 11524969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bff0", "tid": 35568, "ts": 11525055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26be50", "tid": 35568, "ts": 11525141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ca80", "tid": 35568, "ts": 11525228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bcb0", "tid": 35568, "ts": 11525314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c0c0", "tid": 35568, "ts": 11525400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ae10", "tid": 35568, "ts": 11525487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ccf0", "tid": 35568, "ts": 11525574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d9f0", "tid": 35568, "ts": 11525660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bd80", "tid": 35568, "ts": 11525747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bb10", "tid": 35568, "ts": 11525833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c9b0", "tid": 35568, "ts": 11525920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a930", "tid": 35568, "ts": 11526006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bbe0", "tid": 35568, "ts": 11526092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cf60", "tid": 35568, "ts": 11526179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b970", "tid": 35568, "ts": 11526265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c5a0", "tid": 35568, "ts": 11526352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cc20", "tid": 35568, "ts": 11526438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ce90", "tid": 35568, "ts": 11526525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b7d0", "tid": 35568, "ts": 11526611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d5e0", "tid": 35568, "ts": 11526697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dc60", "tid": 35568, "ts": 11526783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c400", "tid": 35568, "ts": 11526870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cdc0", "tid": 35568, "ts": 11526956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b700", "tid": 35568, "ts": 11527046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dac0", "tid": 35568, "ts": 11527133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d440", "tid": 35568, "ts": 11527219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268570", "tid": 35568, "ts": 11527306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267bb0", "tid": 35568, "ts": 11527392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2698f0", "tid": 35568, "ts": 11527478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267870", "tid": 35568, "ts": 11527565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267d50", "tid": 35568, "ts": 11527652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269680", "tid": 35568, "ts": 11527738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2694e0", "tid": 35568, "ts": 11527825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2684a0", "tid": 35568, "ts": 11527953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269820", "tid": 35568, "ts": 11528039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267ef0", "tid": 35568, "ts": 11528126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269410", "tid": 35568, "ts": 11528213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2683d0", "tid": 35568, "ts": 11528300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a6c0", "tid": 35568, "ts": 11528386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269340", "tid": 35568, "ts": 11528472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269270", "tid": 35568, "ts": 11528558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a5f0", "tid": 35568, "ts": 11528644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268cc0", "tid": 35568, "ts": 11528730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a1e0", "tid": 35568, "ts": 11528817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268b20", "tid": 35568, "ts": 11528903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268980", "tid": 35568, "ts": 11528989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a520", "tid": 35568, "ts": 11529075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267940", "tid": 35568, "ts": 11529161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a040", "tid": 35568, "ts": 11529247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269000", "tid": 35568, "ts": 11529333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267fc0", "tid": 35568, "ts": 11529420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269a90", "tid": 35568, "ts": 11529505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268f30", "tid": 35568, "ts": 11529592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269c30", "tid": 35568, "ts": 11529678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2699c0", "tid": 35568, "ts": 11529765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269750", "tid": 35568, "ts": 11529851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268a50", "tid": 35568, "ts": 11529938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2688b0", "tid": 35568, "ts": 11530024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2664f0", "tid": 35568, "ts": 11530110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266280", "tid": 35568, "ts": 11530196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265da0", "tid": 35568, "ts": 11530282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265e70", "tid": 35568, "ts": 11530368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265b30", "tid": 35568, "ts": 11530454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265990", "tid": 35568, "ts": 11530540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2657f0", "tid": 35568, "ts": 11530627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265310", "tid": 35568, "ts": 11530714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265240", "tid": 35568, "ts": 11530801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266aa0", "tid": 35568, "ts": 11530887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266760", "tid": 35568, "ts": 11530974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264d60", "tid": 35568, "ts": 11531081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266900", "tid": 35568, "ts": 11531169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266010", "tid": 35568, "ts": 11531256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264470", "tid": 35568, "ts": 11531343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265580", "tid": 35568, "ts": 11531429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264fd0", "tid": 35568, "ts": 11531515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264130", "tid": 35568, "ts": 11531602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265170", "tid": 35568, "ts": 11531688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266f80", "tid": 35568, "ts": 11531774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266d10", "tid": 35568, "ts": 11531860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264e30", "tid": 35568, "ts": 11531947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266690", "tid": 35568, "ts": 11532033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2647b0", "tid": 35568, "ts": 11532120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267390", "tid": 35568, "ts": 11532206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2672c0", "tid": 35568, "ts": 11532293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266de0", "tid": 35568, "ts": 11532379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264950", "tid": 35568, "ts": 11532466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267120", "tid": 35568, "ts": 11532552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267050", "tid": 35568, "ts": 11532639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264540", "tid": 35568, "ts": 11532726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263020", "tid": 35568, "ts": 11532812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262730", "tid": 35568, "ts": 11532899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261d70", "tid": 35568, "ts": 11532986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261bd0", "tid": 35568, "ts": 11533072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2639e0", "tid": 35568, "ts": 11533159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263840", "tid": 35568, "ts": 11533245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263b80", "tid": 35568, "ts": 11533331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261890", "tid": 35568, "ts": 11533417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262180", "tid": 35568, "ts": 11533503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261a30", "tid": 35568, "ts": 11533590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2629a0", "tid": 35568, "ts": 11533678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261960", "tid": 35568, "ts": 11533764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261fe0", "tid": 35568, "ts": 11533850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2636a0", "tid": 35568, "ts": 11533937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260d30", "tid": 35568, "ts": 11534024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2623f0", "tid": 35568, "ts": 11534110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263ab0", "tid": 35568, "ts": 11534197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262ce0", "tid": 35568, "ts": 11534284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263360", "tid": 35568, "ts": 11534371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263f90", "tid": 35568, "ts": 11534457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261f10", "tid": 35568, "ts": 11534543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2628d0", "tid": 35568, "ts": 11534629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263290", "tid": 35568, "ts": 11534715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263500", "tid": 35568, "ts": 11534801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263ec0", "tid": 35568, "ts": 11534888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262320", "tid": 35568, "ts": 11534975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263430", "tid": 35568, "ts": 11535061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261550", "tid": 35568, "ts": 11535148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262800", "tid": 35568, "ts": 11535235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263c50", "tid": 35568, "ts": 11535321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262660", "tid": 35568, "ts": 11535407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262a70", "tid": 35568, "ts": 11535493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dd40", "tid": 35568, "ts": 11535579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f4d0", "tid": 35568, "ts": 11535667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d930", "tid": 35568, "ts": 11535753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260c60", "tid": 35568, "ts": 11535839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260ac0", "tid": 35568, "ts": 11535926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2609f0", "tid": 35568, "ts": 11536013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260780", "tid": 35568, "ts": 11536100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260b90", "tid": 35568, "ts": 11536187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ee50", "tid": 35568, "ts": 11536274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dfb0", "tid": 35568, "ts": 11536361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fcf0", "tid": 35568, "ts": 11536447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25eb10", "tid": 35568, "ts": 11536533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fe90", "tid": 35568, "ts": 11536620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ea40", "tid": 35568, "ts": 11536707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ecb0", "tid": 35568, "ts": 11536794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dba0", "tid": 35568, "ts": 11536880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260440", "tid": 35568, "ts": 11536966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260100", "tid": 35568, "ts": 11537053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e220", "tid": 35568, "ts": 11537140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e150", "tid": 35568, "ts": 11537227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e8a0", "tid": 35568, "ts": 11537313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f810", "tid": 35568, "ts": 11537400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2602a0", "tid": 35568, "ts": 11537486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fa80", "tid": 35568, "ts": 11537573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25de10", "tid": 35568, "ts": 11537660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e560", "tid": 35568, "ts": 11537746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fc20", "tid": 35568, "ts": 11537833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ff60", "tid": 35568, "ts": 11537919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f260", "tid": 35568, "ts": 11538006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2606b0", "tid": 35568, "ts": 11538092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f5a0", "tid": 35568, "ts": 11538178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260920", "tid": 35568, "ts": 11538264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c9c0", "tid": 35568, "ts": 11538350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c820", "tid": 35568, "ts": 11538437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b710", "tid": 35568, "ts": 11538522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ca90", "tid": 35568, "ts": 11538609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ad50", "tid": 35568, "ts": 11538694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b8b0", "tid": 35568, "ts": 11538781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c1a0", "tid": 35568, "ts": 11538868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d040", "tid": 35568, "ts": 11538955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a7a0", "tid": 35568, "ts": 11539042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d520", "tid": 35568, "ts": 11539128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a530", "tid": 35568, "ts": 11539215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c0d0", "tid": 35568, "ts": 11539301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c4e0", "tid": 35568, "ts": 11539388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d5f0", "tid": 35568, "ts": 11539474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b3d0", "tid": 35568, "ts": 11539560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d110", "tid": 35568, "ts": 11539648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cc30", "tid": 35568, "ts": 11539734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bd90", "tid": 35568, "ts": 11539821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c270", "tid": 35568, "ts": 11539908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b160", "tid": 35568, "ts": 11539995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b230", "tid": 35568, "ts": 11540082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c000", "tid": 35568, "ts": 11540169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25afc0", "tid": 35568, "ts": 11540266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c680", "tid": 35568, "ts": 11540353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cdd0", "tid": 35568, "ts": 11540440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c410", "tid": 35568, "ts": 11540526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c340", "tid": 35568, "ts": 11540612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b090", "tid": 35568, "ts": 11540698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d450", "tid": 35568, "ts": 11540784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bbf0", "tid": 35568, "ts": 11540871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b980", "tid": 35568, "ts": 11540958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ba50", "tid": 35568, "ts": 11541044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257880", "tid": 35568, "ts": 11541130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259c40", "tid": 35568, "ts": 11541216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259aa0", "tid": 35568, "ts": 11541303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259eb0", "tid": 35568, "ts": 11541389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2599d0", "tid": 35568, "ts": 11541475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259690", "tid": 35568, "ts": 11541561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259420", "tid": 35568, "ts": 11541648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259010", "tid": 35568, "ts": 11541734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2580a0", "tid": 35568, "ts": 11541820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257fd0", "tid": 35568, "ts": 11541905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2594f0", "tid": 35568, "ts": 11541991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257540", "tid": 35568, "ts": 11542078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258a60", "tid": 35568, "ts": 11542164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a460", "tid": 35568, "ts": 11542251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259d10", "tid": 35568, "ts": 11542338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257470", "tid": 35568, "ts": 11542425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2573a0", "tid": 35568, "ts": 11542511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259b70", "tid": 35568, "ts": 11542597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259350", "tid": 35568, "ts": 11542684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2588c0", "tid": 35568, "ts": 11542770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258e70", "tid": 35568, "ts": 11542857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2595c0", "tid": 35568, "ts": 11542943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259830", "tid": 35568, "ts": 11543030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259280", "tid": 35568, "ts": 11543116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257af0", "tid": 35568, "ts": 11543202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258720", "tid": 35568, "ts": 11543289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257a20", "tid": 35568, "ts": 11543375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258c00", "tid": 35568, "ts": 11543462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259760", "tid": 35568, "ts": 11543596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258310", "tid": 35568, "ts": 11543683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257130", "tid": 35568, "ts": 11543770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a390", "tid": 35568, "ts": 11543857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254070", "tid": 35568, "ts": 11543944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253ed0", "tid": 35568, "ts": 11544030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2559a0", "tid": 35568, "ts": 11544117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256ec0", "tid": 35568, "ts": 11544203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256df0", "tid": 35568, "ts": 11544290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255ce0", "tid": 35568, "ts": 11544376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255800", "tid": 35568, "ts": 11544462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2547c0", "tid": 35568, "ts": 11544549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2542e0", "tid": 35568, "ts": 11544636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254480", "tid": 35568, "ts": 11544723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255730", "tid": 35568, "ts": 11544809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2553f0", "tid": 35568, "ts": 11544895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256500", "tid": 35568, "ts": 11544982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256f90", "tid": 35568, "ts": 11545069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256d20", "tid": 35568, "ts": 11545156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255f50", "tid": 35568, "ts": 11545242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255c10", "tid": 35568, "ts": 11545329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255180", "tid": 35568, "ts": 11545416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256b80", "tid": 35568, "ts": 11545502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255b40", "tid": 35568, "ts": 11545589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2550b0", "tid": 35568, "ts": 11545675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256ab0", "tid": 35568, "ts": 11545765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254210", "tid": 35568, "ts": 11545852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2569e0", "tid": 35568, "ts": 11545938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256430", "tid": 35568, "ts": 11546025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2558d0", "tid": 35568, "ts": 11546112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254960", "tid": 35568, "ts": 11546198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254a30", "tid": 35568, "ts": 11546285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2561c0", "tid": 35568, "ts": 11546373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254620", "tid": 35568, "ts": 11546459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256910", "tid": 35568, "ts": 11546546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2543b0", "tid": 35568, "ts": 11546632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2535e0", "tid": 35568, "ts": 11546718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253440", "tid": 35568, "ts": 11546804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252cf0", "tid": 35568, "ts": 11546889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251cb0", "tid": 35568, "ts": 11546976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252e90", "tid": 35568, "ts": 11547062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2531d0", "tid": 35568, "ts": 11547149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252b50", "tid": 35568, "ts": 11547235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251490", "tid": 35568, "ts": 11547321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251be0", "tid": 35568, "ts": 11547408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2513c0", "tid": 35568, "ts": 11547495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252810", "tid": 35568, "ts": 11547581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251a40", "tid": 35568, "ts": 11547667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251080", "tid": 35568, "ts": 11547754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251560", "tid": 35568, "ts": 11547840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250fb0", "tid": 35568, "ts": 11547926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251150", "tid": 35568, "ts": 11548013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250d40", "tid": 35568, "ts": 11548100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253780", "tid": 35568, "ts": 11548186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252740", "tid": 35568, "ts": 11548273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252670", "tid": 35568, "ts": 11548359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251d80", "tid": 35568, "ts": 11548445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2518a0", "tid": 35568, "ts": 11548532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250ee0", "tid": 35568, "ts": 11548619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250ad0", "tid": 35568, "ts": 11548705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252dc0", "tid": 35568, "ts": 11548791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252190", "tid": 35568, "ts": 11548877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250930", "tid": 35568, "ts": 11548963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253c60", "tid": 35568, "ts": 11549049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253b90", "tid": 35568, "ts": 11549135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251e50", "tid": 35568, "ts": 11549222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252f60", "tid": 35568, "ts": 11549308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2512f0", "tid": 35568, "ts": 11549393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e4a0", "tid": 35568, "ts": 11549480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e300", "tid": 35568, "ts": 11549566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e160", "tid": 35568, "ts": 11549653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24de20", "tid": 35568, "ts": 11549738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e090", "tid": 35568, "ts": 11549825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24da10", "tid": 35568, "ts": 11549911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d7a0", "tid": 35568, "ts": 11549997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f8f0", "tid": 35568, "ts": 11550083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2506c0", "tid": 35568, "ts": 11550169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f820", "tid": 35568, "ts": 11550256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e640", "tid": 35568, "ts": 11550342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f750", "tid": 35568, "ts": 11550428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f000", "tid": 35568, "ts": 11550515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e710", "tid": 35568, "ts": 11550601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250860", "tid": 35568, "ts": 11550688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f410", "tid": 35568, "ts": 11550774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250790", "tid": 35568, "ts": 11550861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d940", "tid": 35568, "ts": 11550947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e570", "tid": 35568, "ts": 11551033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f5b0", "tid": 35568, "ts": 11551119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ee60", "tid": 35568, "ts": 11551205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ebf0", "tid": 35568, "ts": 11551293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dbb0", "tid": 35568, "ts": 11551380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dd50", "tid": 35568, "ts": 11551466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fc30", "tid": 35568, "ts": 11551552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ef30", "tid": 35568, "ts": 11551639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250520", "tid": 35568, "ts": 11551725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e7e0", "tid": 35568, "ts": 11551811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d6d0", "tid": 35568, "ts": 11551897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e980", "tid": 35568, "ts": 11551984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250380", "tid": 35568, "ts": 11552071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f0d0", "tid": 35568, "ts": 11552158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a7b0", "tid": 35568, "ts": 11552245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a610", "tid": 35568, "ts": 11552331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d460", "tid": 35568, "ts": 11552418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24caa0", "tid": 35568, "ts": 11552504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b310", "tid": 35568, "ts": 11552590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ad60", "tid": 35568, "ts": 11552677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c9d0", "tid": 35568, "ts": 11552763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b0a0", "tid": 35568, "ts": 11552849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b7f0", "tid": 35568, "ts": 11552935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d1f0", "tid": 35568, "ts": 11553021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24abc0", "tid": 35568, "ts": 11553107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ae30", "tid": 35568, "ts": 11553194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d120", "tid": 35568, "ts": 11553281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b3e0", "tid": 35568, "ts": 11553367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c760", "tid": 35568, "ts": 11553454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ceb0", "tid": 35568, "ts": 11553541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24aaf0", "tid": 35568, "ts": 11553627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d050", "tid": 35568, "ts": 11553713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c900", "tid": 35568, "ts": 11553799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a470", "tid": 35568, "ts": 11553886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cb70", "tid": 35568, "ts": 11553972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b720", "tid": 35568, "ts": 11554058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b650", "tid": 35568, "ts": 11554144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b240", "tid": 35568, "ts": 11554231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ac90", "tid": 35568, "ts": 11554317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a2d0", "tid": 35568, "ts": 11554404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bda0", "tid": 35568, "ts": 11554490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c830", "tid": 35568, "ts": 11554576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bcd0", "tid": 35568, "ts": 11554663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c1b0", "tid": 35568, "ts": 11554748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cde0", "tid": 35568, "ts": 11554834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b990", "tid": 35568, "ts": 11554920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249290", "tid": 35568, "ts": 11555007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2490f0", "tid": 35568, "ts": 11555093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2488d0", "tid": 35568, "ts": 11555180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248e80", "tid": 35568, "ts": 11555266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2480b0", "tid": 35568, "ts": 11555353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247f10", "tid": 35568, "ts": 11555440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247a30", "tid": 35568, "ts": 11555531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247e40", "tid": 35568, "ts": 11555619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248660", "tid": 35568, "ts": 11555705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2476f0", "tid": 35568, "ts": 11555791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2477c0", "tid": 35568, "ts": 11555877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246d30", "tid": 35568, "ts": 11555963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249b80", "tid": 35568, "ts": 11556049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248b40", "tid": 35568, "ts": 11556136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248db0", "tid": 35568, "ts": 11556223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248ce0", "tid": 35568, "ts": 11556309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247d70", "tid": 35568, "ts": 11556395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247070", "tid": 35568, "ts": 11556481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a060", "tid": 35568, "ts": 11556567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246e00", "tid": 35568, "ts": 11556654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247620", "tid": 35568, "ts": 11556741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249d20", "tid": 35568, "ts": 11556827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248a70", "tid": 35568, "ts": 11556913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249ab0", "tid": 35568, "ts": 11557000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2489a0", "tid": 35568, "ts": 11557086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247480", "tid": 35568, "ts": 11557173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249770", "tid": 35568, "ts": 11557259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2484c0", "tid": 35568, "ts": 11557346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249430", "tid": 35568, "ts": 11557433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249c50", "tid": 35568, "ts": 11557518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2499e0", "tid": 35568, "ts": 11557604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2473b0", "tid": 35568, "ts": 11557691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244e50", "tid": 35568, "ts": 11557776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244cb0", "tid": 35568, "ts": 11557862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244be0", "tid": 35568, "ts": 11557948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2448a0", "tid": 35568, "ts": 11558034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245dc0", "tid": 35568, "ts": 11558120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243c70", "tid": 35568, "ts": 11558206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2447d0", "tid": 35568, "ts": 11558292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245c20", "tid": 35568, "ts": 11558378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245b50", "tid": 35568, "ts": 11558464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2459b0", "tid": 35568, "ts": 11558550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243ad0", "tid": 35568, "ts": 11558636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2443c0", "tid": 35568, "ts": 11558722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245260", "tid": 35568, "ts": 11558809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244560", "tid": 35568, "ts": 11558894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243ee0", "tid": 35568, "ts": 11558981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246100", "tid": 35568, "ts": 11559067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244150", "tid": 35568, "ts": 11559255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2450c0", "tid": 35568, "ts": 11559342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245a80", "tid": 35568, "ts": 11559428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2466b0", "tid": 35568, "ts": 11559515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2454d0", "tid": 35568, "ts": 11559601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246370", "tid": 35568, "ts": 11559687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243fb0", "tid": 35568, "ts": 11559773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246920", "tid": 35568, "ts": 11559860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244490", "tid": 35568, "ts": 11559946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246b90", "tid": 35568, "ts": 11560033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243930", "tid": 35568, "ts": 11560119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245810", "tid": 35568, "ts": 11560205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2458e0", "tid": 35568, "ts": 11560291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246ac0", "tid": 35568, "ts": 11560377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245190", "tid": 35568, "ts": 11560463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245740", "tid": 35568, "ts": 11560550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242410", "tid": 35568, "ts": 11560636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240940", "tid": 35568, "ts": 11560723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242270", "tid": 35568, "ts": 11560809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241a50", "tid": 35568, "ts": 11560895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240600", "tid": 35568, "ts": 11560982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241230", "tid": 35568, "ts": 11561074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243860", "tid": 35568, "ts": 11561161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243380", "tid": 35568, "ts": 11561247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2431e0", "tid": 35568, "ts": 11561334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242dd0", "tid": 35568, "ts": 11561420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240ef0", "tid": 35568, "ts": 11561507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2414a0", "tid": 35568, "ts": 11561593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240e20", "tid": 35568, "ts": 11561679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241980", "tid": 35568, "ts": 11561765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2432b0", "tid": 35568, "ts": 11561851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242000", "tid": 35568, "ts": 11561938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2418b0", "tid": 35568, "ts": 11562024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243040", "tid": 35568, "ts": 11562111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240d50", "tid": 35568, "ts": 11562197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2435f0", "tid": 35568, "ts": 11562283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241f30", "tid": 35568, "ts": 11562369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241bf0", "tid": 35568, "ts": 11562455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240bb0", "tid": 35568, "ts": 11562542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2425b0", "tid": 35568, "ts": 11562629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241160", "tid": 35568, "ts": 11562716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2424e0", "tid": 35568, "ts": 11562802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2428f0", "tid": 35568, "ts": 11562889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242c30", "tid": 35568, "ts": 11562975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242f70", "tid": 35568, "ts": 11563062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2407a0", "tid": 35568, "ts": 11563149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242750", "tid": 35568, "ts": 11563235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242b60", "tid": 35568, "ts": 11563321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f690", "tid": 35568, "ts": 11563407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f420", "tid": 35568, "ts": 11563493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f350", "tid": 35568, "ts": 11563579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f280", "tid": 35568, "ts": 11563665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ea60", "tid": 35568, "ts": 11563752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ee70", "tid": 35568, "ts": 11563838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d470", "tid": 35568, "ts": 11563923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e580", "tid": 35568, "ts": 11564009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d6e0", "tid": 35568, "ts": 11564096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f9d0", "tid": 35568, "ts": 11564182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d2d0", "tid": 35568, "ts": 11564268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ec00", "tid": 35568, "ts": 11564355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fd10", "tid": 35568, "ts": 11564441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23eb30", "tid": 35568, "ts": 11564528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f5c0", "tid": 35568, "ts": 11564613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d7b0", "tid": 35568, "ts": 11564700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dbc0", "tid": 35568, "ts": 11564786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d130", "tid": 35568, "ts": 11564871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f1b0", "tid": 35568, "ts": 11564957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d540", "tid": 35568, "ts": 11565043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f0e0", "tid": 35568, "ts": 11565131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240050", "tid": 35568, "ts": 11565217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d950", "tid": 35568, "ts": 11565303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e3e0", "tid": 35568, "ts": 11565390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e240", "tid": 35568, "ts": 11565476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e650", "tid": 35568, "ts": 11565562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e170", "tid": 35568, "ts": 11565648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240460", "tid": 35568, "ts": 11565734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f010", "tid": 35568, "ts": 11565821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240120", "tid": 35568, "ts": 11565907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23feb0", "tid": 35568, "ts": 11565993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e7f0", "tid": 35568, "ts": 11566080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b730", "tid": 35568, "ts": 11566167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a890", "tid": 35568, "ts": 11566252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a620", "tid": 35568, "ts": 11566340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a2e0", "tid": 35568, "ts": 11566426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b250", "tid": 35568, "ts": 11566512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239fa0", "tid": 35568, "ts": 11566598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bc10", "tid": 35568, "ts": 11566683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b180", "tid": 35568, "ts": 11566770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d060", "tid": 35568, "ts": 11566856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cf90", "tid": 35568, "ts": 11566943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c1c0", "tid": 35568, "ts": 11567029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c020", "tid": 35568, "ts": 11567115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b320", "tid": 35568, "ts": 11567201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c9e0", "tid": 35568, "ts": 11567288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a550", "tid": 35568, "ts": 11567374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bf50", "tid": 35568, "ts": 11567461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cc50", "tid": 35568, "ts": 11567548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a3b0", "tid": 35568, "ts": 11567633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cec0", "tid": 35568, "ts": 11567719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ad70", "tid": 35568, "ts": 11567809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bdb0", "tid": 35568, "ts": 11567896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bce0", "tid": 35568, "ts": 11567982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b3f0", "tid": 35568, "ts": 11568069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a480", "tid": 35568, "ts": 11568155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23abd0", "tid": 35568, "ts": 11568241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c5d0", "tid": 35568, "ts": 11568327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c430", "tid": 35568, "ts": 11568413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c290", "tid": 35568, "ts": 11568499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ab00", "tid": 35568, "ts": 11568586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ae40", "tid": 35568, "ts": 11568673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23afe0", "tid": 35568, "ts": 11568759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b800", "tid": 35568, "ts": 11568845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239030", "tid": 35568, "ts": 11568931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238c20", "tid": 35568, "ts": 11569017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237cb0", "tid": 35568, "ts": 11569103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237d80", "tid": 35568, "ts": 11569190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2389b0", "tid": 35568, "ts": 11569277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238b50", "tid": 35568, "ts": 11569363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236a00", "tid": 35568, "ts": 11569449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2388e0", "tid": 35568, "ts": 11569535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237a40", "tid": 35568, "ts": 11569621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2378a0", "tid": 35568, "ts": 11569707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237630", "tid": 35568, "ts": 11569794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237f20", "tid": 35568, "ts": 11569880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239ac0", "tid": 35568, "ts": 11569967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238a80", "tid": 35568, "ts": 11570053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238190", "tid": 35568, "ts": 11570139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237220", "tid": 35568, "ts": 11570225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237700", "tid": 35568, "ts": 11570311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237080", "tid": 35568, "ts": 11570397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237e50", "tid": 35568, "ts": 11570483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2396b0", "tid": 35568, "ts": 11570569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238670", "tid": 35568, "ts": 11570654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236ba0", "tid": 35568, "ts": 11570741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239510", "tid": 35568, "ts": 11570827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2373c0", "tid": 35568, "ts": 11570914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238740", "tid": 35568, "ts": 11571000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2377d0", "tid": 35568, "ts": 11571085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239440", "tid": 35568, "ts": 11571172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237560", "tid": 35568, "ts": 11571258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2395e0", "tid": 35568, "ts": 11571344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239370", "tid": 35568, "ts": 11571430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236d40", "tid": 35568, "ts": 11571516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239780", "tid": 35568, "ts": 11571602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234230", "tid": 35568, "ts": 11571689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236450", "tid": 35568, "ts": 11571775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233e20", "tid": 35568, "ts": 11571861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235dd0", "tid": 35568, "ts": 11571947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233870", "tid": 35568, "ts": 11572034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2354e0", "tid": 35568, "ts": 11572120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235000", "tid": 35568, "ts": 11572206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233600", "tid": 35568, "ts": 11572292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234d90", "tid": 35568, "ts": 11572378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233530", "tid": 35568, "ts": 11572464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235d00", "tid": 35568, "ts": 11572550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234980", "tid": 35568, "ts": 11572637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234160", "tid": 35568, "ts": 11572723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233d50", "tid": 35568, "ts": 11572809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234cc0", "tid": 35568, "ts": 11572895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2347e0", "tid": 35568, "ts": 11572982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234f30", "tid": 35568, "ts": 11573068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235750", "tid": 35568, "ts": 11573155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235ea0", "tid": 35568, "ts": 11573241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235680", "tid": 35568, "ts": 11573327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235c30", "tid": 35568, "ts": 11573414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234bf0", "tid": 35568, "ts": 11573500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2358f0", "tid": 35568, "ts": 11573586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234570", "tid": 35568, "ts": 11573672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233c80", "tid": 35568, "ts": 11573758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234090", "tid": 35568, "ts": 11573844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233ef0", "tid": 35568, "ts": 11573931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235340", "tid": 35568, "ts": 11574017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236790", "tid": 35568, "ts": 11574104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233940", "tid": 35568, "ts": 11574190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233bb0", "tid": 35568, "ts": 11574277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2366c0", "tid": 35568, "ts": 11574364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230a20", "tid": 35568, "ts": 11574450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2307b0", "tid": 35568, "ts": 11574536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230470", "tid": 35568, "ts": 11574623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2302d0", "tid": 35568, "ts": 11574710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232b70", "tid": 35568, "ts": 11574838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232830", "tid": 35568, "ts": 11574926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230610", "tid": 35568, "ts": 11575013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231da0", "tid": 35568, "ts": 11575108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2331f0", "tid": 35568, "ts": 11575195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231c00", "tid": 35568, "ts": 11575281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233390", "tid": 35568, "ts": 11575367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232eb0", "tid": 35568, "ts": 11575453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231a60", "tid": 35568, "ts": 11575540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230e30", "tid": 35568, "ts": 11575626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232350", "tid": 35568, "ts": 11575712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2332c0", "tid": 35568, "ts": 11575800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230540", "tid": 35568, "ts": 11575886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230200", "tid": 35568, "ts": 11575972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232280", "tid": 35568, "ts": 11576059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2320e0", "tid": 35568, "ts": 11576144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231580", "tid": 35568, "ts": 11576231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2313e0", "tid": 35568, "ts": 11576316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230fd0", "tid": 35568, "ts": 11576401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232010", "tid": 35568, "ts": 11576487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231e70", "tid": 35568, "ts": 11576573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231f40", "tid": 35568, "ts": 11576663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233050", "tid": 35568, "ts": 11576750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230950", "tid": 35568, "ts": 11576836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2314b0", "tid": 35568, "ts": 11576922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231720", "tid": 35568, "ts": 11577008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232f80", "tid": 35568, "ts": 11577094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231170", "tid": 35568, "ts": 11577180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50d60", "tid": 35568, "ts": 11577266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50bc0", "tid": 35568, "ts": 11577352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50610", "tid": 35568, "ts": 11577438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb503a0", "tid": 35568, "ts": 11577524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb524f0", "tid": 35568, "ts": 11577610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53460", "tid": 35568, "ts": 11577696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52d10", "tid": 35568, "ts": 11577782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52420", "tid": 35568, "ts": 11577868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb521b0", "tid": 35568, "ts": 11577954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb520e0", "tid": 35568, "ts": 11578040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb514b0", "tid": 35568, "ts": 11578125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51a60", "tid": 35568, "ts": 11578212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50950", "tid": 35568, "ts": 11578298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb518c0", "tid": 35568, "ts": 11578383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50880", "tid": 35568, "ts": 11578470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb502d0", "tid": 35568, "ts": 11578556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52690", "tid": 35568, "ts": 11578643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50200", "tid": 35568, "ts": 11578729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51e70", "tid": 35568, "ts": 11578814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50f00", "tid": 35568, "ts": 11578900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb529d0", "tid": 35568, "ts": 11578987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51240", "tid": 35568, "ts": 11579073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52eb0", "tid": 35568, "ts": 11579159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52b70", "tid": 35568, "ts": 11579245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51650", "tid": 35568, "ts": 11579330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51580", "tid": 35568, "ts": 11579417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52aa0", "tid": 35568, "ts": 11579502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51b30", "tid": 35568, "ts": 11579588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51cd0", "tid": 35568, "ts": 11579675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb531f0", "tid": 35568, "ts": 11579762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53120", "tid": 35568, "ts": 11579848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52de0", "tid": 35568, "ts": 11579934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8de00", "tid": 35568, "ts": 11580020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90910", "tid": 35568, "ts": 11580106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90840", "tid": 35568, "ts": 11580197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb906a0", "tid": 35568, "ts": 11580284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fb40", "tid": 35568, "ts": 11580370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ef10", "tid": 35568, "ts": 11580456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90ec0", "tid": 35568, "ts": 11580542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb905d0", "tid": 35568, "ts": 11580628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e960", "tid": 35568, "ts": 11580714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f800", "tid": 35568, "ts": 11580800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ee40", "tid": 35568, "ts": 11580886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e7c0", "tid": 35568, "ts": 11580973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e6f0", "tid": 35568, "ts": 11581059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fa70", "tid": 35568, "ts": 11581144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e210", "tid": 35568, "ts": 11581231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ff50", "tid": 35568, "ts": 11581317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fe80", "tid": 35568, "ts": 11581403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90360", "tid": 35568, "ts": 11581490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fc10", "tid": 35568, "ts": 11581575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e620", "tid": 35568, "ts": 11581661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8eb00", "tid": 35568, "ts": 11581748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dfa0", "tid": 35568, "ts": 11581834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e140", "tid": 35568, "ts": 11581920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f8d0", "tid": 35568, "ts": 11582006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f3f0", "tid": 35568, "ts": 11582092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e550", "tid": 35568, "ts": 11582178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ebd0", "tid": 35568, "ts": 11582264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f180", "tid": 35568, "ts": 11582350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f250", "tid": 35568, "ts": 11582436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb900f0", "tid": 35568, "ts": 11582522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e2e0", "tid": 35568, "ts": 11582608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bbe0", "tid": 35568, "ts": 11582694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b8a0", "tid": 35568, "ts": 11582781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b630", "tid": 35568, "ts": 11582867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cf60", "tid": 35568, "ts": 11582953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cdc0", "tid": 35568, "ts": 11583039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b3c0", "tid": 35568, "ts": 11583126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b150", "tid": 35568, "ts": 11583212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cc20", "tid": 35568, "ts": 11583298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aee0", "tid": 35568, "ts": 11583385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c4d0", "tid": 35568, "ts": 11583471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c400", "tid": 35568, "ts": 11583558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ae10", "tid": 35568, "ts": 11583644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aad0", "tid": 35568, "ts": 11583730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d510", "tid": 35568, "ts": 11583816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d2a0", "tid": 35568, "ts": 11583902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c9b0", "tid": 35568, "ts": 11583989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c670", "tid": 35568, "ts": 11584075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c810", "tid": 35568, "ts": 11584162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a930", "tid": 35568, "ts": 11584247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c260", "tid": 35568, "ts": 11584334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d1d0", "tid": 35568, "ts": 11584420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dac0", "tid": 35568, "ts": 11584506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d780", "tid": 35568, "ts": 11584591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d370", "tid": 35568, "ts": 11584677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dc60", "tid": 35568, "ts": 11584763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bff0", "tid": 35568, "ts": 11584849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c5a0", "tid": 35568, "ts": 11584935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d850", "tid": 35568, "ts": 11585021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ad40", "tid": 35568, "ts": 11585107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bd80", "tid": 35568, "ts": 11585194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d9f0", "tid": 35568, "ts": 11585280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8db90", "tid": 35568, "ts": 11585366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89d00", "tid": 35568, "ts": 11585452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87ef0", "tid": 35568, "ts": 11585538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89820", "tid": 35568, "ts": 11585624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87ae0", "tid": 35568, "ts": 11585710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87600", "tid": 35568, "ts": 11585796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb894e0", "tid": 35568, "ts": 11585882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a860", "tid": 35568, "ts": 11585968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a110", "tid": 35568, "ts": 11586055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a5f0", "tid": 35568, "ts": 11586142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87e20", "tid": 35568, "ts": 11586228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a040", "tid": 35568, "ts": 11586314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a450", "tid": 35568, "ts": 11586400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb884a0", "tid": 35568, "ts": 11586487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88e60", "tid": 35568, "ts": 11586573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89750", "tid": 35568, "ts": 11586660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87a10", "tid": 35568, "ts": 11586746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89ea0", "tid": 35568, "ts": 11586832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88090", "tid": 35568, "ts": 11586918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87c80", "tid": 35568, "ts": 11587003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88980", "tid": 35568, "ts": 11587090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89dd0", "tid": 35568, "ts": 11587176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb888b0", "tid": 35568, "ts": 11587262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89270", "tid": 35568, "ts": 11587348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb877a0", "tid": 35568, "ts": 11587435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87d50", "tid": 35568, "ts": 11587521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a520", "tid": 35568, "ts": 11587607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87530", "tid": 35568, "ts": 11587693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87940", "tid": 35568, "ts": 11587779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb895b0", "tid": 35568, "ts": 11587866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88230", "tid": 35568, "ts": 11587952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89680", "tid": 35568, "ts": 11588038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88a50", "tid": 35568, "ts": 11588124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86420", "tid": 35568, "ts": 11588210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85e70", "tid": 35568, "ts": 11588296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85a60", "tid": 35568, "ts": 11588382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb857f0", "tid": 35568, "ts": 11588469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85720", "tid": 35568, "ts": 11588555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84e30", "tid": 35568, "ts": 11588642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb842d0", "tid": 35568, "ts": 11588728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84200", "tid": 35568, "ts": 11588814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85310", "tid": 35568, "ts": 11588900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84d60", "tid": 35568, "ts": 11588985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86010", "tid": 35568, "ts": 11589071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85170", "tid": 35568, "ts": 11589158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84bc0", "tid": 35568, "ts": 11589243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84fd0", "tid": 35568, "ts": 11589330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87120", "tid": 35568, "ts": 11589416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84a20", "tid": 35568, "ts": 11589502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86f80", "tid": 35568, "ts": 11589589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86de0", "tid": 35568, "ts": 11589675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86aa0", "tid": 35568, "ts": 11589762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84880", "tid": 35568, "ts": 11589848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85650", "tid": 35568, "ts": 11589934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84f00", "tid": 35568, "ts": 11590020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86760", "tid": 35568, "ts": 11590106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb872c0", "tid": 35568, "ts": 11590191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86690", "tid": 35568, "ts": 11590278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb846e0", "tid": 35568, "ts": 11590401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87460", "tid": 35568, "ts": 11590500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86900", "tid": 35568, "ts": 11590586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb865c0", "tid": 35568, "ts": 11590673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85b30", "tid": 35568, "ts": 11590760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84610", "tid": 35568, "ts": 11590846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb853e0", "tid": 35568, "ts": 11590933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81a30", "tid": 35568, "ts": 11591019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb817c0", "tid": 35568, "ts": 11591106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb813b0", "tid": 35568, "ts": 11591192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb816f0", "tid": 35568, "ts": 11591278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80ed0", "tid": 35568, "ts": 11591364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83f90", "tid": 35568, "ts": 11591451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83b80", "tid": 35568, "ts": 11591537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83ab0", "tid": 35568, "ts": 11591623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81480", "tid": 35568, "ts": 11591709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81ca0", "tid": 35568, "ts": 11591795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83500", "tid": 35568, "ts": 11591882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83430", "tid": 35568, "ts": 11591969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83290", "tid": 35568, "ts": 11592056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82800", "tid": 35568, "ts": 11592142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83840", "tid": 35568, "ts": 11592229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81140", "tid": 35568, "ts": 11592319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81070", "tid": 35568, "ts": 11592406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82660", "tid": 35568, "ts": 11592493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82590", "tid": 35568, "ts": 11592583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb824c0", "tid": 35568, "ts": 11592670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82250", "tid": 35568, "ts": 11592757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb820b0", "tid": 35568, "ts": 11592843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83020", "tid": 35568, "ts": 11592930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82b40", "tid": 35568, "ts": 11593015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81bd0", "tid": 35568, "ts": 11593102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb828d0", "tid": 35568, "ts": 11593189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82180", "tid": 35568, "ts": 11593275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83360", "tid": 35568, "ts": 11593362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83d20", "tid": 35568, "ts": 11593448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83770", "tid": 35568, "ts": 11593535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82e80", "tid": 35568, "ts": 11593621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb836a0", "tid": 35568, "ts": 11593708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e7d0", "tid": 35568, "ts": 11593794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e220", "tid": 35568, "ts": 11593881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dc70", "tid": 35568, "ts": 11593967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dad0", "tid": 35568, "ts": 11594054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d930", "tid": 35568, "ts": 11594140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80850", "tid": 35568, "ts": 11594226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80370", "tid": 35568, "ts": 11594312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e630", "tid": 35568, "ts": 11594399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80780", "tid": 35568, "ts": 11594485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb806b0", "tid": 35568, "ts": 11594650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80440", "tid": 35568, "ts": 11594745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fe90", "tid": 35568, "ts": 11594832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fc20", "tid": 35568, "ts": 11594920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f8e0", "tid": 35568, "ts": 11595007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ea40", "tid": 35568, "ts": 11595094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f740", "tid": 35568, "ts": 11595180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ecb0", "tid": 35568, "ts": 11595266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f4d0", "tid": 35568, "ts": 11595352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f400", "tid": 35568, "ts": 11595439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f190", "tid": 35568, "ts": 11595526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ef20", "tid": 35568, "ts": 11595612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ebe0", "tid": 35568, "ts": 11595699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e490", "tid": 35568, "ts": 11595786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80c60", "tid": 35568, "ts": 11595872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb805e0", "tid": 35568, "ts": 11595959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e970", "tid": 35568, "ts": 11596045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb809f0", "tid": 35568, "ts": 11596132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ed80", "tid": 35568, "ts": 11596218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f810", "tid": 35568, "ts": 11596304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f670", "tid": 35568, "ts": 11596391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb801d0", "tid": 35568, "ts": 11596477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f260", "tid": 35568, "ts": 11596564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7abb0", "tid": 35568, "ts": 11596650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a7a0", "tid": 35568, "ts": 11596736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d450", "tid": 35568, "ts": 11596822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d380", "tid": 35568, "ts": 11596908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cb60", "tid": 35568, "ts": 11596995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c340", "tid": 35568, "ts": 11597081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c270", "tid": 35568, "ts": 11597167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c0d0", "tid": 35568, "ts": 11597253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d110", "tid": 35568, "ts": 11597339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7be60", "tid": 35568, "ts": 11597425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a940", "tid": 35568, "ts": 11597511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c410", "tid": 35568, "ts": 11597598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b710", "tid": 35568, "ts": 11597684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b300", "tid": 35568, "ts": 11597771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bb20", "tid": 35568, "ts": 11597858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b230", "tid": 35568, "ts": 11597944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cf70", "tid": 35568, "ts": 11598030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b640", "tid": 35568, "ts": 11598115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cea0", "tid": 35568, "ts": 11598202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bcc0", "tid": 35568, "ts": 11598288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7aef0", "tid": 35568, "ts": 11598374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ad50", "tid": 35568, "ts": 11598461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ca90", "tid": 35568, "ts": 11598547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c1a0", "tid": 35568, "ts": 11598634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b3d0", "tid": 35568, "ts": 11598719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b160", "tid": 35568, "ts": 11598806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d5f0", "tid": 35568, "ts": 11598893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ba50", "tid": 35568, "ts": 11598978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7aa10", "tid": 35568, "ts": 11599064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c750", "tid": 35568, "ts": 11599151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c9c0", "tid": 35568, "ts": 11599237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d520", "tid": 35568, "ts": 11599323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb780a0", "tid": 35568, "ts": 11599410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77e30", "tid": 35568, "ts": 11599496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77c90", "tid": 35568, "ts": 11599582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77a20", "tid": 35568, "ts": 11599668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77950", "tid": 35568, "ts": 11599755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a050", "tid": 35568, "ts": 11599841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79f80", "tid": 35568, "ts": 11599928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79eb0", "tid": 35568, "ts": 11600014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79280", "tid": 35568, "ts": 11600101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb791b0", "tid": 35568, "ts": 11600187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79d10", "tid": 35568, "ts": 11600273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb777b0", "tid": 35568, "ts": 11600359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79830", "tid": 35568, "ts": 11600445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb794f0", "tid": 35568, "ts": 11600531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77540", "tid": 35568, "ts": 11600618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77470", "tid": 35568, "ts": 11600704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78da0", "tid": 35568, "ts": 11600791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78c00", "tid": 35568, "ts": 11600877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77130", "tid": 35568, "ts": 11600964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78b30", "tid": 35568, "ts": 11601050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb784b0", "tid": 35568, "ts": 11601137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a460", "tid": 35568, "ts": 11601223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79c40", "tid": 35568, "ts": 11601309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78a60", "tid": 35568, "ts": 11601396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb788c0", "tid": 35568, "ts": 11601483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78f40", "tid": 35568, "ts": 11601568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb773a0", "tid": 35568, "ts": 11601654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79350", "tid": 35568, "ts": 11601741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb799d0", "tid": 35568, "ts": 11601827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a390", "tid": 35568, "ts": 11601914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb772d0", "tid": 35568, "ts": 11602001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79760", "tid": 35568, "ts": 11602087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74fe0", "tid": 35568, "ts": 11602174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74f10", "tid": 35568, "ts": 11602260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74ca0", "tid": 35568, "ts": 11602347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74620", "tid": 35568, "ts": 11602434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74480", "tid": 35568, "ts": 11602521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74070", "tid": 35568, "ts": 11602608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb765d0", "tid": 35568, "ts": 11602694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76430", "tid": 35568, "ts": 11602780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74b00", "tid": 35568, "ts": 11602866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75a70", "tid": 35568, "ts": 11602953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75800", "tid": 35568, "ts": 11603039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76360", "tid": 35568, "ts": 11603125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76500", "tid": 35568, "ts": 11603212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75660", "tid": 35568, "ts": 11603299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75f50", "tid": 35568, "ts": 11603385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb758d0", "tid": 35568, "ts": 11603472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73fa0", "tid": 35568, "ts": 11603558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76290", "tid": 35568, "ts": 11603644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76c50", "tid": 35568, "ts": 11603731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74a30", "tid": 35568, "ts": 11603816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76df0", "tid": 35568, "ts": 11603903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75180", "tid": 35568, "ts": 11603989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76b80", "tid": 35568, "ts": 11604075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb761c0", "tid": 35568, "ts": 11604161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76020", "tid": 35568, "ts": 11604247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb750b0", "tid": 35568, "ts": 11604333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74d70", "tid": 35568, "ts": 11604419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb746f0", "tid": 35568, "ts": 11604505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76ec0", "tid": 35568, "ts": 11604592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb747c0", "tid": 35568, "ts": 11604678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76f90", "tid": 35568, "ts": 11604764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb742e0", "tid": 35568, "ts": 11604854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb713c0", "tid": 35568, "ts": 11604941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70ba0", "tid": 35568, "ts": 11605028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73c60", "tid": 35568, "ts": 11605115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb712f0", "tid": 35568, "ts": 11605201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73780", "tid": 35568, "ts": 11605287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb736b0", "tid": 35568, "ts": 11605373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb724d0", "tid": 35568, "ts": 11605459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb735e0", "tid": 35568, "ts": 11605545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72260", "tid": 35568, "ts": 11605631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73370", "tid": 35568, "ts": 11605719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72b50", "tid": 35568, "ts": 11605805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71b10", "tid": 35568, "ts": 11605891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72190", "tid": 35568, "ts": 11606021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70fb0", "tid": 35568, "ts": 11606149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73100", "tid": 35568, "ts": 11606237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71150", "tid": 35568, "ts": 11606324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb717d0", "tid": 35568, "ts": 11606411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73030", "tid": 35568, "ts": 11606498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb728e0", "tid": 35568, "ts": 11606585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73920", "tid": 35568, "ts": 11606670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73ac0", "tid": 35568, "ts": 11606756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71d80", "tid": 35568, "ts": 11606841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72740", "tid": 35568, "ts": 11606928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71970", "tid": 35568, "ts": 11607015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71be0", "tid": 35568, "ts": 11607101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71cb0", "tid": 35568, "ts": 11607188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb718a0", "tid": 35568, "ts": 11607273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70a00", "tid": 35568, "ts": 11607359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71e50", "tid": 35568, "ts": 11607445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71700", "tid": 35568, "ts": 11607532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72cf0", "tid": 35568, "ts": 11607618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70d40", "tid": 35568, "ts": 11607704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d940", "tid": 35568, "ts": 11607790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ed90", "tid": 35568, "ts": 11607877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d530", "tid": 35568, "ts": 11607963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70860", "tid": 35568, "ts": 11608050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f750", "tid": 35568, "ts": 11608137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ebf0", "tid": 35568, "ts": 11608224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f270", "tid": 35568, "ts": 11608310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fdd0", "tid": 35568, "ts": 11608396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fa90", "tid": 35568, "ts": 11608482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6de20", "tid": 35568, "ts": 11608568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dc80", "tid": 35568, "ts": 11608654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e640", "tid": 35568, "ts": 11608740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6def0", "tid": 35568, "ts": 11608827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ef30", "tid": 35568, "ts": 11608913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dbb0", "tid": 35568, "ts": 11609000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f0d0", "tid": 35568, "ts": 11609086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e160", "tid": 35568, "ts": 11609173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb706c0", "tid": 35568, "ts": 11609259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f5b0", "tid": 35568, "ts": 11609344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f8f0", "tid": 35568, "ts": 11609430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb701e0", "tid": 35568, "ts": 11609516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f4e0", "tid": 35568, "ts": 11609603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb705f0", "tid": 35568, "ts": 11609690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e090", "tid": 35568, "ts": 11609777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70450", "tid": 35568, "ts": 11609865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6da10", "tid": 35568, "ts": 11609959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f820", "tid": 35568, "ts": 11610047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fea0", "tid": 35568, "ts": 11610133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fb60", "tid": 35568, "ts": 11610220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70040", "tid": 35568, "ts": 11610306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f9c0", "tid": 35568, "ts": 11610392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70790", "tid": 35568, "ts": 11610478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a950", "tid": 35568, "ts": 11610564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a200", "tid": 35568, "ts": 11610651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a880", "tid": 35568, "ts": 11610736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cf80", "tid": 35568, "ts": 11610822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c420", "tid": 35568, "ts": 11610908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c280", "tid": 35568, "ts": 11610994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c1b0", "tid": 35568, "ts": 11611079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6abc0", "tid": 35568, "ts": 11611165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bf40", "tid": 35568, "ts": 11611251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cc40", "tid": 35568, "ts": 11611342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6aaf0", "tid": 35568, "ts": 11611429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bda0", "tid": 35568, "ts": 11611515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cb70", "tid": 35568, "ts": 11611601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bcd0", "tid": 35568, "ts": 11611688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bc00", "tid": 35568, "ts": 11611774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ae30", "tid": 35568, "ts": 11611860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a130", "tid": 35568, "ts": 11611946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a610", "tid": 35568, "ts": 11612032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b990", "tid": 35568, "ts": 11612118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c830", "tid": 35568, "ts": 11612204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b0a0", "tid": 35568, "ts": 11612290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b720", "tid": 35568, "ts": 11612375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c690", "tid": 35568, "ts": 11612461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b650", "tid": 35568, "ts": 11612548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6afd0", "tid": 35568, "ts": 11612634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b3e0", "tid": 35568, "ts": 11612721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a3a0", "tid": 35568, "ts": 11612807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cd10", "tid": 35568, "ts": 11612894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b310", "tid": 35568, "ts": 11612980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b580", "tid": 35568, "ts": 11613067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a7b0", "tid": 35568, "ts": 11613153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c4f0", "tid": 35568, "ts": 11613238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67960", "tid": 35568, "ts": 11613325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb690f0", "tid": 35568, "ts": 11613411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67890", "tid": 35568, "ts": 11613497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67620", "tid": 35568, "ts": 11613582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67d70", "tid": 35568, "ts": 11613669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67070", "tid": 35568, "ts": 11613755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68590", "tid": 35568, "ts": 11613842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66fa0", "tid": 35568, "ts": 11613928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66d30", "tid": 35568, "ts": 11614014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb696a0", "tid": 35568, "ts": 11614105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67ca0", "tid": 35568, "ts": 11614192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69c50", "tid": 35568, "ts": 11614279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68e80", "tid": 35568, "ts": 11614366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69360", "tid": 35568, "ts": 11614452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69290", "tid": 35568, "ts": 11614538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69770", "tid": 35568, "ts": 11614624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb691c0", "tid": 35568, "ts": 11614711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb683f0", "tid": 35568, "ts": 11614797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb689a0", "tid": 35568, "ts": 11614883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69500", "tid": 35568, "ts": 11614970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb673b0", "tid": 35568, "ts": 11615056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69430", "tid": 35568, "ts": 11615141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68180", "tid": 35568, "ts": 11615227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a060", "tid": 35568, "ts": 11615313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67b00", "tid": 35568, "ts": 11615400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69ec0", "tid": 35568, "ts": 11615486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67210", "tid": 35568, "ts": 11615573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb680b0", "tid": 35568, "ts": 11615659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69840", "tid": 35568, "ts": 11615745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb672e0", "tid": 35568, "ts": 11615832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67f10", "tid": 35568, "ts": 11615918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67fe0", "tid": 35568, "ts": 11616004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65b50", "tid": 35568, "ts": 11616090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb659b0", "tid": 35568, "ts": 11616176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65810", "tid": 35568, "ts": 11616263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64ff0", "tid": 35568, "ts": 11616349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64970", "tid": 35568, "ts": 11616435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb655a0", "tid": 35568, "ts": 11616521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb647d0", "tid": 35568, "ts": 11616607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64560", "tid": 35568, "ts": 11616692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65400", "tid": 35568, "ts": 11616779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb650c0", "tid": 35568, "ts": 11616865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64490", "tid": 35568, "ts": 11616951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65e90", "tid": 35568, "ts": 11617037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64e50", "tid": 35568, "ts": 11617124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64d80", "tid": 35568, "ts": 11617210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66440", "tid": 35568, "ts": 11617296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63fb0", "tid": 35568, "ts": 11617381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63e10", "tid": 35568, "ts": 11617473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63d40", "tid": 35568, "ts": 11617559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb669f0", "tid": 35568, "ts": 11617646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66b90", "tid": 35568, "ts": 11617731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66850", "tid": 35568, "ts": 11617818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65dc0", "tid": 35568, "ts": 11617903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63c70", "tid": 35568, "ts": 11617990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63ad0", "tid": 35568, "ts": 11618076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66780", "tid": 35568, "ts": 11618162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65f60", "tid": 35568, "ts": 11618248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb666b0", "tid": 35568, "ts": 11618334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64a40", "tid": 35568, "ts": 11618420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64cb0", "tid": 35568, "ts": 11618507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66510", "tid": 35568, "ts": 11618593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb643c0", "tid": 35568, "ts": 11618679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63ba0", "tid": 35568, "ts": 11618764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb606d0", "tid": 35568, "ts": 11618850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63450", "tid": 35568, "ts": 11618936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61160", "tid": 35568, "ts": 11619023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62820", "tid": 35568, "ts": 11619109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62750", "tid": 35568, "ts": 11619195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb625b0", "tid": 35568, "ts": 11619281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61090", "tid": 35568, "ts": 11619367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63040", "tid": 35568, "ts": 11619453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63790", "tid": 35568, "ts": 11619539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61e60", "tid": 35568, "ts": 11619626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63380", "tid": 35568, "ts": 11619713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60e20", "tid": 35568, "ts": 11619799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62f70", "tid": 35568, "ts": 11619885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61d90", "tid": 35568, "ts": 11619971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb617e0", "tid": 35568, "ts": 11620057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62dd0", "tid": 35568, "ts": 11620143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62270", "tid": 35568, "ts": 11620229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61f30", "tid": 35568, "ts": 11620315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60ae0", "tid": 35568, "ts": 11620401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb607a0", "tid": 35568, "ts": 11620487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63520", "tid": 35568, "ts": 11620573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb613d0", "tid": 35568, "ts": 11620659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61bf0", "tid": 35568, "ts": 11620745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61570", "tid": 35568, "ts": 11620830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb618b0", "tid": 35568, "ts": 11620917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60940", "tid": 35568, "ts": 11621003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60600", "tid": 35568, "ts": 11621089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb631e0", "tid": 35568, "ts": 11621175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61cc0", "tid": 35568, "ts": 11621261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb614a0", "tid": 35568, "ts": 11621346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60c80", "tid": 35568, "ts": 11621433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb620d0", "tid": 35568, "ts": 11621518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f0e0", "tid": 35568, "ts": 11621666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ef40", "tid": 35568, "ts": 11621906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dbc0", "tid": 35568, "ts": 11622082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d470", "tid": 35568, "ts": 11622187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d3a0", "tid": 35568, "ts": 11622302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb601f0", "tid": 35568, "ts": 11622403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60120", "tid": 35568, "ts": 11622527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e8c0", "tid": 35568, "ts": 11622670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e650", "tid": 35568, "ts": 11622757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e310", "tid": 35568, "ts": 11622844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e240", "tid": 35568, "ts": 11622931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e580", "tid": 35568, "ts": 11623017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fc40", "tid": 35568, "ts": 11623104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5da20", "tid": 35568, "ts": 11623190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dfd0", "tid": 35568, "ts": 11623277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f9d0", "tid": 35568, "ts": 11623363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e4b0", "tid": 35568, "ts": 11623449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d2d0", "tid": 35568, "ts": 11623535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f830", "tid": 35568, "ts": 11623622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d610", "tid": 35568, "ts": 11623708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb602c0", "tid": 35568, "ts": 11623794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e3e0", "tid": 35568, "ts": 11623880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d200", "tid": 35568, "ts": 11623966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60390", "tid": 35568, "ts": 11624052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f5c0", "tid": 35568, "ts": 11624139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5df00", "tid": 35568, "ts": 11624226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ff80", "tid": 35568, "ts": 11624312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f4f0", "tid": 35568, "ts": 11624397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f690", "tid": 35568, "ts": 11624484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d540", "tid": 35568, "ts": 11624571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5feb0", "tid": 35568, "ts": 11624657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dd60", "tid": 35568, "ts": 11624743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a140", "tid": 35568, "ts": 11624829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bdb0", "tid": 35568, "ts": 11624916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bce0", "tid": 35568, "ts": 11625002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bb40", "tid": 35568, "ts": 11625087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b9a0", "tid": 35568, "ts": 11625173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b800", "tid": 35568, "ts": 11625259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b660", "tid": 35568, "ts": 11625345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b590", "tid": 35568, "ts": 11625431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a890", "tid": 35568, "ts": 11625517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bc10", "tid": 35568, "ts": 11625603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cb80", "tid": 35568, "ts": 11625690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cab0", "tid": 35568, "ts": 11625777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c9e0", "tid": 35568, "ts": 11625864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b180", "tid": 35568, "ts": 11625950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a210", "tid": 35568, "ts": 11626036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b0b0", "tid": 35568, "ts": 11626122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a480", "tid": 35568, "ts": 11626208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cf90", "tid": 35568, "ts": 11626294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c910", "tid": 35568, "ts": 11626380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ad70", "tid": 35568, "ts": 11626466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c770", "tid": 35568, "ts": 11626552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c6a0", "tid": 35568, "ts": 11626637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cdf0", "tid": 35568, "ts": 11626724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a960", "tid": 35568, "ts": 11626810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c360", "tid": 35568, "ts": 11626897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5af10", "tid": 35568, "ts": 11626983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c0f0", "tid": 35568, "ts": 11627107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59fa0", "tid": 35568, "ts": 11627204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ae40", "tid": 35568, "ts": 11627290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5aca0", "tid": 35568, "ts": 11627377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b320", "tid": 35568, "ts": 11627463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c1c0", "tid": 35568, "ts": 11627549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb591d0", "tid": 35568, "ts": 11627635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59030", "tid": 35568, "ts": 11627721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb573c0", "tid": 35568, "ts": 11627806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58f60", "tid": 35568, "ts": 11627892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59c60", "tid": 35568, "ts": 11627978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb599f0", "tid": 35568, "ts": 11628063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58e90", "tid": 35568, "ts": 11628150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb572f0", "tid": 35568, "ts": 11628236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58330", "tid": 35568, "ts": 11628322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb585a0", "tid": 35568, "ts": 11628408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59920", "tid": 35568, "ts": 11628493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb589b0", "tid": 35568, "ts": 11628580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57ff0", "tid": 35568, "ts": 11628666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57630", "tid": 35568, "ts": 11628752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56e10", "tid": 35568, "ts": 11628838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57f20", "tid": 35568, "ts": 11628924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56d40", "tid": 35568, "ts": 11629011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56c70", "tid": 35568, "ts": 11629096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59370", "tid": 35568, "ts": 11629182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57150", "tid": 35568, "ts": 11629268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56ba0", "tid": 35568, "ts": 11629354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58cf0", "tid": 35568, "ts": 11629440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58dc0", "tid": 35568, "ts": 11629526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb578a0", "tid": 35568, "ts": 11629612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57970", "tid": 35568, "ts": 11629698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59b90", "tid": 35568, "ts": 11629784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57be0", "tid": 35568, "ts": 11629870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58b50", "tid": 35568, "ts": 11629956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb596b0", "tid": 35568, "ts": 11630042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb595e0", "tid": 35568, "ts": 11630128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56a00", "tid": 35568, "ts": 11630214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57cb0", "tid": 35568, "ts": 11630307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55ea0", "tid": 35568, "ts": 11630394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb543d0", "tid": 35568, "ts": 11630481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54230", "tid": 35568, "ts": 11630567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb554e0", "tid": 35568, "ts": 11630651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53e20", "tid": 35568, "ts": 11630738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb551a0", "tid": 35568, "ts": 11630824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54300", "tid": 35568, "ts": 11630909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53d50", "tid": 35568, "ts": 11630996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54f30", "tid": 35568, "ts": 11631081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb565f0", "tid": 35568, "ts": 11631168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55000", "tid": 35568, "ts": 11631254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56520", "tid": 35568, "ts": 11631339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54a50", "tid": 35568, "ts": 11631425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56450", "tid": 35568, "ts": 11631510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54980", "tid": 35568, "ts": 11631596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53fc0", "tid": 35568, "ts": 11631682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53940", "tid": 35568, "ts": 11631768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54bf0", "tid": 35568, "ts": 11631854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53bb0", "tid": 35568, "ts": 11631939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56040", "tid": 35568, "ts": 11632026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55750", "tid": 35568, "ts": 11632112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54160", "tid": 35568, "ts": 11632237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54640", "tid": 35568, "ts": 11632324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb547e0", "tid": 35568, "ts": 11632410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56380", "tid": 35568, "ts": 11632495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53600", "tid": 35568, "ts": 11632581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55270", "tid": 35568, "ts": 11632667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55c30", "tid": 35568, "ts": 11632753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55a90", "tid": 35568, "ts": 11632839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb561e0", "tid": 35568, "ts": 11632926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55b60", "tid": 35568, "ts": 11633012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54b20", "tid": 35568, "ts": 11633097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490d90", "tid": 35568, "ts": 11633184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fbb0", "tid": 35568, "ts": 11633270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f940", "tid": 35568, "ts": 11633357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f530", "tid": 35568, "ts": 11633443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f1f0", "tid": 35568, "ts": 11633529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f120", "tid": 35568, "ts": 11633615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f050", "tid": 35568, "ts": 11633701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490980", "tid": 35568, "ts": 11633787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48eeb0", "tid": 35568, "ts": 11633873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4908b0", "tid": 35568, "ts": 11633959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ec40", "tid": 35568, "ts": 11634044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ede0", "tid": 35568, "ts": 11634131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4904a0", "tid": 35568, "ts": 11634217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48dda0", "tid": 35568, "ts": 11634303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48eaa0", "tid": 35568, "ts": 11634390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f460", "tid": 35568, "ts": 11634476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490b20", "tid": 35568, "ts": 11634561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fa10", "tid": 35568, "ts": 11634648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e5c0", "tid": 35568, "ts": 11634733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e4f0", "tid": 35568, "ts": 11634824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490160", "tid": 35568, "ts": 11634911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490710", "tid": 35568, "ts": 11634997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e900", "tid": 35568, "ts": 11635083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e010", "tid": 35568, "ts": 11635174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fc80", "tid": 35568, "ts": 11635262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f390", "tid": 35568, "ts": 11635348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e760", "tid": 35568, "ts": 11635434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ffc0", "tid": 35568, "ts": 11635520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e280", "tid": 35568, "ts": 11635606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f870", "tid": 35568, "ts": 11635693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f6d0", "tid": 35568, "ts": 11635779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c880", "tid": 35568, "ts": 11635866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c610", "tid": 35568, "ts": 11635952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b1c0", "tid": 35568, "ts": 11636038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c2d0", "tid": 35568, "ts": 11636124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ae80", "tid": 35568, "ts": 11636210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ab40", "tid": 35568, "ts": 11636295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d240", "tid": 35568, "ts": 11636381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c200", "tid": 35568, "ts": 11636467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48da60", "tid": 35568, "ts": 11636552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c060", "tid": 35568, "ts": 11636639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d170", "tid": 35568, "ts": 11636725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d8c0", "tid": 35568, "ts": 11636811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d720", "tid": 35568, "ts": 11636896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d7f0", "tid": 35568, "ts": 11636982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bec0", "tid": 35568, "ts": 11637068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d310", "tid": 35568, "ts": 11637154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c540", "tid": 35568, "ts": 11637275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cc90", "tid": 35568, "ts": 11637363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cbc0", "tid": 35568, "ts": 11637450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ac10", "tid": 35568, "ts": 11637536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48dcd0", "tid": 35568, "ts": 11637622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48caf0", "tid": 35568, "ts": 11637708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c6e0", "tid": 35568, "ts": 11637794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b430", "tid": 35568, "ts": 11637880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ce30", "tid": 35568, "ts": 11637966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d650", "tid": 35568, "ts": 11638052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b5d0", "tid": 35568, "ts": 11638139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b840", "tid": 35568, "ts": 11638225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d0a0", "tid": 35568, "ts": 11638312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b770", "tid": 35568, "ts": 11638398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ca20", "tid": 35568, "ts": 11638484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d580", "tid": 35568, "ts": 11638570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4875a0", "tid": 35568, "ts": 11638656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489fe0", "tid": 35568, "ts": 11638742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488b90", "tid": 35568, "ts": 11638828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488850", "tid": 35568, "ts": 11638913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488ac0", "tid": 35568, "ts": 11638998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489e40", "tid": 35568, "ts": 11639084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4882a0", "tid": 35568, "ts": 11639170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487740", "tid": 35568, "ts": 11639256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489d70", "tid": 35568, "ts": 11639341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488780", "tid": 35568, "ts": 11639427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4893b0", "tid": 35568, "ts": 11639513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489480", "tid": 35568, "ts": 11639599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489890", "tid": 35568, "ts": 11639685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488920", "tid": 35568, "ts": 11639772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4881d0", "tid": 35568, "ts": 11639858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4886b0", "tid": 35568, "ts": 11639944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488fa0", "tid": 35568, "ts": 11640030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488d30", "tid": 35568, "ts": 11640116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488ed0", "tid": 35568, "ts": 11640201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489070", "tid": 35568, "ts": 11640287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488100", "tid": 35568, "ts": 11640373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489620", "tid": 35568, "ts": 11640458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487a80", "tid": 35568, "ts": 11640544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487cf0", "tid": 35568, "ts": 11640630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487670", "tid": 35568, "ts": 11640716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4879b0", "tid": 35568, "ts": 11640802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487c20", "tid": 35568, "ts": 11640888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487810", "tid": 35568, "ts": 11640974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487f60", "tid": 35568, "ts": 11641060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488440", "tid": 35568, "ts": 11641146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488030", "tid": 35568, "ts": 11641232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489b00", "tid": 35568, "ts": 11641318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486cb0", "tid": 35568, "ts": 11641405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486b10", "tid": 35568, "ts": 11641490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486970", "tid": 35568, "ts": 11641575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484a90", "tid": 35568, "ts": 11641662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4849c0", "tid": 35568, "ts": 11641748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485a00", "tid": 35568, "ts": 11641834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4845b0", "tid": 35568, "ts": 11641920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484dd0", "tid": 35568, "ts": 11642005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4844e0", "tid": 35568, "ts": 11642092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485ba0", "tid": 35568, "ts": 11642179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484340", "tid": 35568, "ts": 11642265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486e50", "tid": 35568, "ts": 11642352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4874d0", "tid": 35568, "ts": 11642438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4868a0", "tid": 35568, "ts": 11642525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4856c0", "tid": 35568, "ts": 11642610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4851e0", "tid": 35568, "ts": 11642697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486150", "tid": 35568, "ts": 11642782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484270", "tid": 35568, "ts": 11642869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485110", "tid": 35568, "ts": 11642956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4855f0", "tid": 35568, "ts": 11643041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487190", "tid": 35568, "ts": 11643128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484c30", "tid": 35568, "ts": 11643214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484b60", "tid": 35568, "ts": 11643300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486f20", "tid": 35568, "ts": 11643385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4870c0", "tid": 35568, "ts": 11643471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485040", "tid": 35568, "ts": 11643557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484820", "tid": 35568, "ts": 11643643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486080", "tid": 35568, "ts": 11643729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485380", "tid": 35568, "ts": 11643814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486ff0", "tid": 35568, "ts": 11643900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485450", "tid": 35568, "ts": 11643986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484ea0", "tid": 35568, "ts": 11644072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482d50", "tid": 35568, "ts": 11644158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482a10", "tid": 35568, "ts": 11644245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482600", "tid": 35568, "ts": 11644331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481760", "tid": 35568, "ts": 11644417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482120", "tid": 35568, "ts": 11644503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482050", "tid": 35568, "ts": 11644589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483b20", "tid": 35568, "ts": 11644681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483d90", "tid": 35568, "ts": 11644768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4840d0", "tid": 35568, "ts": 11644854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483a50", "tid": 35568, "ts": 11644941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4821f0", "tid": 35568, "ts": 11645027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482390", "tid": 35568, "ts": 11645114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4838b0", "tid": 35568, "ts": 11645210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481c40", "tid": 35568, "ts": 11645296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4814f0", "tid": 35568, "ts": 11645382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483160", "tid": 35568, "ts": 11645467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481420", "tid": 35568, "ts": 11645553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480f40", "tid": 35568, "ts": 11645639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4833d0", "tid": 35568, "ts": 11645725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481280", "tid": 35568, "ts": 11645810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482ae0", "tid": 35568, "ts": 11645897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483230", "tid": 35568, "ts": 11645983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4810e0", "tid": 35568, "ts": 11646068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481d10", "tid": 35568, "ts": 11646155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483090", "tid": 35568, "ts": 11646240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482fc0", "tid": 35568, "ts": 11646327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483300", "tid": 35568, "ts": 11646412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4826d0", "tid": 35568, "ts": 11646498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482ef0", "tid": 35568, "ts": 11646583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483710", "tid": 35568, "ts": 11646669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480da0", "tid": 35568, "ts": 11646756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481de0", "tid": 35568, "ts": 11646841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ec50", "tid": 35568, "ts": 11646928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e9e0", "tid": 35568, "ts": 11647014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f6e0", "tid": 35568, "ts": 11647099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f880", "tid": 35568, "ts": 11647185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47db40", "tid": 35568, "ts": 11647270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480b30", "tid": 35568, "ts": 11647356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4800a0", "tid": 35568, "ts": 11647442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e500", "tid": 35568, "ts": 11647528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fd60", "tid": 35568, "ts": 11647613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4807f0", "tid": 35568, "ts": 11647699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480a60", "tid": 35568, "ts": 11647784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f470", "tid": 35568, "ts": 11647870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47da70", "tid": 35568, "ts": 11647955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47dce0", "tid": 35568, "ts": 11648041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e1c0", "tid": 35568, "ts": 11648127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fc90", "tid": 35568, "ts": 11648213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e6a0", "tid": 35568, "ts": 11648299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e5d0", "tid": 35568, "ts": 11648385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f130", "tid": 35568, "ts": 11648471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ffd0", "tid": 35568, "ts": 11648557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e430", "tid": 35568, "ts": 11648643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47eec0", "tid": 35568, "ts": 11648729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480310", "tid": 35568, "ts": 11648815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f7b0", "tid": 35568, "ts": 11648901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f950", "tid": 35568, "ts": 11648986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480720", "tid": 35568, "ts": 11649072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d9a0", "tid": 35568, "ts": 11649158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4803e0", "tid": 35568, "ts": 11649244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fbc0", "tid": 35568, "ts": 11649329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ff00", "tid": 35568, "ts": 11649415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480c00", "tid": 35568, "ts": 11649501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e840", "tid": 35568, "ts": 11649586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d730", "tid": 35568, "ts": 11649673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d590", "tid": 35568, "ts": 11649758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c890", "tid": 35568, "ts": 11649844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c070", "tid": 35568, "ts": 11649930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bd30", "tid": 35568, "ts": 11650016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d3f0", "tid": 35568, "ts": 11650103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b920", "tid": 35568, "ts": 11650189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b850", "tid": 35568, "ts": 11650276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47acf0", "tid": 35568, "ts": 11650362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d180", "tid": 35568, "ts": 11650448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cfe0", "tid": 35568, "ts": 11650533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c550", "tid": 35568, "ts": 11650619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b100", "tid": 35568, "ts": 11650705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47aa80", "tid": 35568, "ts": 11650790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cf10", "tid": 35568, "ts": 11650875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ce40", "tid": 35568, "ts": 11650961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c960", "tid": 35568, "ts": 11651047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bfa0", "tid": 35568, "ts": 11651133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b6b0", "tid": 35568, "ts": 11651219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cd70", "tid": 35568, "ts": 11651305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ac20", "tid": 35568, "ts": 11651391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c210", "tid": 35568, "ts": 11651477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d0b0", "tid": 35568, "ts": 11651562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b1d0", "tid": 35568, "ts": 11651647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b370", "tid": 35568, "ts": 11651733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c3b0", "tid": 35568, "ts": 11651819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ca30", "tid": 35568, "ts": 11651905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ae90", "tid": 35568, "ts": 11651991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cca0", "tid": 35568, "ts": 11652077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47af60", "tid": 35568, "ts": 11652162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c2e0", "tid": 35568, "ts": 11652247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c480", "tid": 35568, "ts": 11652334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4792f0", "tid": 35568, "ts": 11652419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478930", "tid": 35568, "ts": 11652505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478e10", "tid": 35568, "ts": 11652591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4786c0", "tid": 35568, "ts": 11652677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478520", "tid": 35568, "ts": 11652762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477c30", "tid": 35568, "ts": 11652895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4779c0", "tid": 35568, "ts": 11652995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477340", "tid": 35568, "ts": 11653080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479b10", "tid": 35568, "ts": 11653166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478c70", "tid": 35568, "ts": 11653252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477750", "tid": 35568, "ts": 11653338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478ba0", "tid": 35568, "ts": 11653424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4797d0", "tid": 35568, "ts": 11653510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4782b0", "tid": 35568, "ts": 11653597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479630", "tid": 35568, "ts": 11653682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477270", "tid": 35568, "ts": 11653768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a260", "tid": 35568, "ts": 11653854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479700", "tid": 35568, "ts": 11653940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479f20", "tid": 35568, "ts": 11654026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a190", "tid": 35568, "ts": 11654112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478ad0", "tid": 35568, "ts": 11654198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478a00", "tid": 35568, "ts": 11654284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479e50", "tid": 35568, "ts": 11654369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479490", "tid": 35568, "ts": 11654456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478450", "tid": 35568, "ts": 11654542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a0c0", "tid": 35568, "ts": 11654628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477d00", "tid": 35568, "ts": 11654714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478d40", "tid": 35568, "ts": 11654800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479d80", "tid": 35568, "ts": 11654886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477b60", "tid": 35568, "ts": 11654972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4771a0", "tid": 35568, "ts": 11655064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478040", "tid": 35568, "ts": 11655151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476f30", "tid": 35568, "ts": 11655236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474760", "tid": 35568, "ts": 11655322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473f40", "tid": 35568, "ts": 11655413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476a50", "tid": 35568, "ts": 11655500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475050", "tid": 35568, "ts": 11655586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476710", "tid": 35568, "ts": 11655672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475940", "tid": 35568, "ts": 11655758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473e70", "tid": 35568, "ts": 11655844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476570", "tid": 35568, "ts": 11655930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475a10", "tid": 35568, "ts": 11656016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474d10", "tid": 35568, "ts": 11656102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4764a0", "tid": 35568, "ts": 11656188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4744f0", "tid": 35568, "ts": 11656274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4770d0", "tid": 35568, "ts": 11656359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476300", "tid": 35568, "ts": 11656446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475460", "tid": 35568, "ts": 11656532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475390", "tid": 35568, "ts": 11656618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476090", "tid": 35568, "ts": 11656704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4741b0", "tid": 35568, "ts": 11656790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476230", "tid": 35568, "ts": 11656876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476cc0", "tid": 35568, "ts": 11656961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475530", "tid": 35568, "ts": 11657047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475fc0", "tid": 35568, "ts": 11657133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474b70", "tid": 35568, "ts": 11657218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476bf0", "tid": 35568, "ts": 11657304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476b20", "tid": 35568, "ts": 11657390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475e20", "tid": 35568, "ts": 11657476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475600", "tid": 35568, "ts": 11657562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474010", "tid": 35568, "ts": 11657648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4756d0", "tid": 35568, "ts": 11657735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474350", "tid": 35568, "ts": 11657821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474830", "tid": 35568, "ts": 11657908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472c90", "tid": 35568, "ts": 11657993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472af0", "tid": 35568, "ts": 11658079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472950", "tid": 35568, "ts": 11658166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4727b0", "tid": 35568, "ts": 11658252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471df0", "tid": 35568, "ts": 11658338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4733e0", "tid": 35568, "ts": 11658424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4719e0", "tid": 35568, "ts": 11658510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4716a0", "tid": 35568, "ts": 11658596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4711c0", "tid": 35568, "ts": 11658683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473310", "tid": 35568, "ts": 11658769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470f50", "tid": 35568, "ts": 11658856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473240", "tid": 35568, "ts": 11658942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470b40", "tid": 35568, "ts": 11659027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4730a0", "tid": 35568, "ts": 11659113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472200", "tid": 35568, "ts": 11659200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471f90", "tid": 35568, "ts": 11659286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471d20", "tid": 35568, "ts": 11659371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471500", "tid": 35568, "ts": 11659457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470e80", "tid": 35568, "ts": 11659544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473170", "tid": 35568, "ts": 11659631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473a60", "tid": 35568, "ts": 11659717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473b30", "tid": 35568, "ts": 11659802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472470", "tid": 35568, "ts": 11659888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473c00", "tid": 35568, "ts": 11659974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472d60", "tid": 35568, "ts": 11660059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4710f0", "tid": 35568, "ts": 11660145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4737f0", "tid": 35568, "ts": 11660231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473650", "tid": 35568, "ts": 11660317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4738c0", "tid": 35568, "ts": 11660404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4722d0", "tid": 35568, "ts": 11660489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470c10", "tid": 35568, "ts": 11660576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472f00", "tid": 35568, "ts": 11660662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ff10", "tid": 35568, "ts": 11660748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470320", "tid": 35568, "ts": 11660834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ed30", "tid": 35568, "ts": 11660919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e850", "tid": 35568, "ts": 11661006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e100", "tid": 35568, "ts": 11661092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e6b0", "tid": 35568, "ts": 11661178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d8e0", "tid": 35568, "ts": 11661264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ec60", "tid": 35568, "ts": 11661349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4708d0", "tid": 35568, "ts": 11661436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46df60", "tid": 35568, "ts": 11661521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470180", "tid": 35568, "ts": 11661607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f7c0", "tid": 35568, "ts": 11661694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46eac0", "tid": 35568, "ts": 11661780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ddc0", "tid": 35568, "ts": 11661866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f3b0", "tid": 35568, "ts": 11661952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f480", "tid": 35568, "ts": 11662038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470800", "tid": 35568, "ts": 11662124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e9f0", "tid": 35568, "ts": 11662209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fb00", "tid": 35568, "ts": 11662295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e370", "tid": 35568, "ts": 11662381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46eb90", "tid": 35568, "ts": 11662466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f2e0", "tid": 35568, "ts": 11662552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fa30", "tid": 35568, "ts": 11662637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470730", "tid": 35568, "ts": 11662724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e2a0", "tid": 35568, "ts": 11662810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f070", "tid": 35568, "ts": 11662896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46efa0", "tid": 35568, "ts": 11662982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470590", "tid": 35568, "ts": 11663068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46eed0", "tid": 35568, "ts": 11663154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46db50", "tid": 35568, "ts": 11663240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d670", "tid": 35568, "ts": 11663326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e1d0", "tid": 35568, "ts": 11663412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b520", "tid": 35568, "ts": 11663497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46add0", "tid": 35568, "ts": 11663583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c490", "tid": 35568, "ts": 11663669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ac30", "tid": 35568, "ts": 11663755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a410", "tid": 35568, "ts": 11663841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c2f0", "tid": 35568, "ts": 11663927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d190", "tid": 35568, "ts": 11664014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ba00", "tid": 35568, "ts": 11664100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d4d0", "tid": 35568, "ts": 11664185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b380", "tid": 35568, "ts": 11664275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ca40", "tid": 35568, "ts": 11664362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c080", "tid": 35568, "ts": 11664448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b5f0", "tid": 35568, "ts": 11664533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c700", "tid": 35568, "ts": 11664620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bad0", "tid": 35568, "ts": 11664705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c630", "tid": 35568, "ts": 11664791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c560", "tid": 35568, "ts": 11664877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a5b0", "tid": 35568, "ts": 11664963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b790", "tid": 35568, "ts": 11665049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b1e0", "tid": 35568, "ts": 11665135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c7d0", "tid": 35568, "ts": 11665221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cd80", "tid": 35568, "ts": 11665307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bee0", "tid": 35568, "ts": 11665393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46be10", "tid": 35568, "ts": 11665479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a4e0", "tid": 35568, "ts": 11665565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46af70", "tid": 35568, "ts": 11665651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a820", "tid": 35568, "ts": 11665737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a270", "tid": 35568, "ts": 11665823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46aea0", "tid": 35568, "ts": 11665908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bc70", "tid": 35568, "ts": 11665995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ccb0", "tid": 35568, "ts": 11666080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b110", "tid": 35568, "ts": 11666166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468e20", "tid": 35568, "ts": 11666252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468bb0", "tid": 35568, "ts": 11666337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468390", "tid": 35568, "ts": 11666423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468120", "tid": 35568, "ts": 11666509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469d90", "tid": 35568, "ts": 11666595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467eb0", "tid": 35568, "ts": 11666680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469cc0", "tid": 35568, "ts": 11666766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467b70", "tid": 35568, "ts": 11666852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4697e0", "tid": 35568, "ts": 11666937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467f80", "tid": 35568, "ts": 11667024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a0d0", "tid": 35568, "ts": 11667110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469640", "tid": 35568, "ts": 11667196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4693d0", "tid": 35568, "ts": 11667282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468600", "tid": 35568, "ts": 11667367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469710", "tid": 35568, "ts": 11667453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469230", "tid": 35568, "ts": 11667539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469160", "tid": 35568, "ts": 11667624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4674f0", "tid": 35568, "ts": 11667710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469090", "tid": 35568, "ts": 11667796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469980", "tid": 35568, "ts": 11667882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466e70", "tid": 35568, "ts": 11667968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467830", "tid": 35568, "ts": 11668054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469bf0", "tid": 35568, "ts": 11668139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468ae0", "tid": 35568, "ts": 11668225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4670e0", "tid": 35568, "ts": 11668311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467420", "tid": 35568, "ts": 11668397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467280", "tid": 35568, "ts": 11668588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468530", "tid": 35568, "ts": 11668720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466da0", "tid": 35568, "ts": 11668809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4671b0", "tid": 35568, "ts": 11668896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467010", "tid": 35568, "ts": 11668984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4698b0", "tid": 35568, "ts": 11669070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465c90", "tid": 35568, "ts": 11669158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465af0", "tid": 35568, "ts": 11669245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466170", "tid": 35568, "ts": 11669331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465a20", "tid": 35568, "ts": 11669418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463b40", "tid": 35568, "ts": 11669504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465880", "tid": 35568, "ts": 11669590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465060", "tid": 35568, "ts": 11669676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464f90", "tid": 35568, "ts": 11669763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4660a0", "tid": 35568, "ts": 11669849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466cd0", "tid": 35568, "ts": 11669936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4639a0", "tid": 35568, "ts": 11670022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464ec0", "tid": 35568, "ts": 11670108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466720", "tid": 35568, "ts": 11670195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464c50", "tid": 35568, "ts": 11670280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466990", "tid": 35568, "ts": 11670367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464910", "tid": 35568, "ts": 11670453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465130", "tid": 35568, "ts": 11670539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464840", "tid": 35568, "ts": 11670626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463db0", "tid": 35568, "ts": 11670711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4653a0", "tid": 35568, "ts": 11670797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464430", "tid": 35568, "ts": 11670883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464b80", "tid": 35568, "ts": 11670970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466c00", "tid": 35568, "ts": 11671061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4646a0", "tid": 35568, "ts": 11671149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4657b0", "tid": 35568, "ts": 11671236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464290", "tid": 35568, "ts": 11671322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463e80", "tid": 35568, "ts": 11671409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465e30", "tid": 35568, "ts": 11671496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4667f0", "tid": 35568, "ts": 11671584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4645d0", "tid": 35568, "ts": 11671670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4652d0", "tid": 35568, "ts": 11671756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4664b0", "tid": 35568, "ts": 11671843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462e40", "tid": 35568, "ts": 11671929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463660", "tid": 35568, "ts": 11672016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4623b0", "tid": 35568, "ts": 11672102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462ca0", "tid": 35568, "ts": 11672188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461b90", "tid": 35568, "ts": 11672274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4622e0", "tid": 35568, "ts": 11672360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4630b0", "tid": 35568, "ts": 11672446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4616b0", "tid": 35568, "ts": 11672533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462fe0", "tid": 35568, "ts": 11672619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461440", "tid": 35568, "ts": 11672705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4612a0", "tid": 35568, "ts": 11672791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462bd0", "tid": 35568, "ts": 11672877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462b00", "tid": 35568, "ts": 11672963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4638d0", "tid": 35568, "ts": 11673049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462140", "tid": 35568, "ts": 11673135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4633f0", "tid": 35568, "ts": 11673222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4619f0", "tid": 35568, "ts": 11673308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462960", "tid": 35568, "ts": 11673395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461920", "tid": 35568, "ts": 11673481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461030", "tid": 35568, "ts": 11673567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462f10", "tid": 35568, "ts": 11673653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461c60", "tid": 35568, "ts": 11673739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460dc0", "tid": 35568, "ts": 11673826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461d30", "tid": 35568, "ts": 11673913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460740", "tid": 35568, "ts": 11673999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4609b0", "tid": 35568, "ts": 11674086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463320", "tid": 35568, "ts": 11674177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4608e0", "tid": 35568, "ts": 11674264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4605a0", "tid": 35568, "ts": 11674351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463250", "tid": 35568, "ts": 11674437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460b50", "tid": 35568, "ts": 11674524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463180", "tid": 35568, "ts": 11674610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460260", "tid": 35568, "ts": 11674697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45eba0", "tid": 35568, "ts": 11674783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460190", "tid": 35568, "ts": 11674869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d410", "tid": 35568, "ts": 11674955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ea00", "tid": 35568, "ts": 11675040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ddd0", "tid": 35568, "ts": 11675127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ec70", "tid": 35568, "ts": 11675213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e380", "tid": 35568, "ts": 11675299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fff0", "tid": 35568, "ts": 11675385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ff20", "tid": 35568, "ts": 11675471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f560", "tid": 35568, "ts": 11675557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f490", "tid": 35568, "ts": 11675643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f3c0", "tid": 35568, "ts": 11675729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e450", "tid": 35568, "ts": 11675815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f080", "tid": 35568, "ts": 11675901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4600c0", "tid": 35568, "ts": 11675987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fb10", "tid": 35568, "ts": 11676073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e2b0", "tid": 35568, "ts": 11676160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d8f0", "tid": 35568, "ts": 11676246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d270", "tid": 35568, "ts": 11676332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ead0", "tid": 35568, "ts": 11676419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45dc30", "tid": 35568, "ts": 11676505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d750", "tid": 35568, "ts": 11676592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e6c0", "tid": 35568, "ts": 11676678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f630", "tid": 35568, "ts": 11676764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460400", "tid": 35568, "ts": 11676851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fcb0", "tid": 35568, "ts": 11676937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45dea0", "tid": 35568, "ts": 11677024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45da90", "tid": 35568, "ts": 11677109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fe50", "tid": 35568, "ts": 11677196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d4e0", "tid": 35568, "ts": 11677282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45dd00", "tid": 35568, "ts": 11677368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bd50", "tid": 35568, "ts": 11677454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bae0", "tid": 35568, "ts": 11677541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b7a0", "tid": 35568, "ts": 11677627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b530", "tid": 35568, "ts": 11677713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b460", "tid": 35568, "ts": 11677800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ade0", "tid": 35568, "ts": 11677886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c640", "tid": 35568, "ts": 11677973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c3d0", "tid": 35568, "ts": 11678060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c300", "tid": 35568, "ts": 11678145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c160", "tid": 35568, "ts": 11678232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c090", "tid": 35568, "ts": 11678318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b600", "tid": 35568, "ts": 11678404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ce60", "tid": 35568, "ts": 11678491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ccc0", "tid": 35568, "ts": 11678578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c570", "tid": 35568, "ts": 11678664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c7e0", "tid": 35568, "ts": 11678750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a760", "tid": 35568, "ts": 11678836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bc80", "tid": 35568, "ts": 11678923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a4f0", "tid": 35568, "ts": 11679009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ca50", "tid": 35568, "ts": 11679095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45be20", "tid": 35568, "ts": 11679181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c8b0", "tid": 35568, "ts": 11679267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a350", "tid": 35568, "ts": 11679354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bfc0", "tid": 35568, "ts": 11679441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b1f0", "tid": 35568, "ts": 11679527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459f40", "tid": 35568, "ts": 11679615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b050", "tid": 35568, "ts": 11679702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c230", "tid": 35568, "ts": 11679794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a9d0", "tid": 35568, "ts": 11679882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c4a0", "tid": 35568, "ts": 11679977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b2c0", "tid": 35568, "ts": 11680065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cf30", "tid": 35568, "ts": 11680151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459650", "tid": 35568, "ts": 11680237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4593e0", "tid": 35568, "ts": 11680324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458540", "tid": 35568, "ts": 11680410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459170", "tid": 35568, "ts": 11680496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459580", "tid": 35568, "ts": 11680582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4576a0", "tid": 35568, "ts": 11680667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458200", "tid": 35568, "ts": 11680754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457430", "tid": 35568, "ts": 11680840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458af0", "tid": 35568, "ts": 11680925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459240", "tid": 35568, "ts": 11681011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4598c0", "tid": 35568, "ts": 11681097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458950", "tid": 35568, "ts": 11681184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457360", "tid": 35568, "ts": 11681270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4587b0", "tid": 35568, "ts": 11681355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4571c0", "tid": 35568, "ts": 11681442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4570f0", "tid": 35568, "ts": 11681528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4590a0", "tid": 35568, "ts": 11681614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458c90", "tid": 35568, "ts": 11681700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457f90", "tid": 35568, "ts": 11681785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459b30", "tid": 35568, "ts": 11681872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457770", "tid": 35568, "ts": 11681958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456b40", "tid": 35568, "ts": 11682044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458880", "tid": 35568, "ts": 11682130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457910", "tid": 35568, "ts": 11682216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456a70", "tid": 35568, "ts": 11682302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456e80", "tid": 35568, "ts": 11682388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459720", "tid": 35568, "ts": 11682474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457b80", "tid": 35568, "ts": 11682560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457020", "tid": 35568, "ts": 11682646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456f50", "tid": 35568, "ts": 11682732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458d60", "tid": 35568, "ts": 11682818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4586e0", "tid": 35568, "ts": 11682905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456730", "tid": 35568, "ts": 11682990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455620", "tid": 35568, "ts": 11683076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455140", "tid": 35568, "ts": 11683161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4545e0", "tid": 35568, "ts": 11683247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454030", "tid": 35568, "ts": 11683333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453f60", "tid": 35568, "ts": 11683420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456320", "tid": 35568, "ts": 11683506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454ed0", "tid": 35568, "ts": 11683592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455480", "tid": 35568, "ts": 11683678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453dc0", "tid": 35568, "ts": 11683764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454d30", "tid": 35568, "ts": 11683850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453b50", "tid": 35568, "ts": 11683936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456660", "tid": 35568, "ts": 11684021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454440", "tid": 35568, "ts": 11684161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4553b0", "tid": 35568, "ts": 11684311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453a80", "tid": 35568, "ts": 11684401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453810", "tid": 35568, "ts": 11684489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4568d0", "tid": 35568, "ts": 11684578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454b90", "tid": 35568, "ts": 11684665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454920", "tid": 35568, "ts": 11684753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455890", "tid": 35568, "ts": 11684839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455ca0", "tid": 35568, "ts": 11684925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454850", "tid": 35568, "ts": 11685012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4552e0", "tid": 35568, "ts": 11685099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453740", "tid": 35568, "ts": 11685185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4538e0", "tid": 35568, "ts": 11685272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456590", "tid": 35568, "ts": 11685359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4535a0", "tid": 35568, "ts": 11685446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4557c0", "tid": 35568, "ts": 11685532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4560b0", "tid": 35568, "ts": 11685618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453c20", "tid": 35568, "ts": 11685705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455550", "tid": 35568, "ts": 11685792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452630", "tid": 35568, "ts": 11685878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451ba0", "tid": 35568, "ts": 11685966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451860", "tid": 35568, "ts": 11686053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452cb0", "tid": 35568, "ts": 11686139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450680", "tid": 35568, "ts": 11686225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4516c0", "tid": 35568, "ts": 11686312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451fb0", "tid": 35568, "ts": 11686399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452a40", "tid": 35568, "ts": 11686486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451450", "tid": 35568, "ts": 11686572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4505b0", "tid": 35568, "ts": 11686658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452490", "tid": 35568, "ts": 11686745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4522f0", "tid": 35568, "ts": 11686836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4511e0", "tid": 35568, "ts": 11686923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450b60", "tid": 35568, "ts": 11687010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450f70", "tid": 35568, "ts": 11687096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451ee0", "tid": 35568, "ts": 11687183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451c70", "tid": 35568, "ts": 11687269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450dd0", "tid": 35568, "ts": 11687355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453400", "tid": 35568, "ts": 11687442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4523c0", "tid": 35568, "ts": 11687528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450c30", "tid": 35568, "ts": 11687619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450340", "tid": 35568, "ts": 11687707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450270", "tid": 35568, "ts": 11687793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4509c0", "tid": 35568, "ts": 11687879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453260", "tid": 35568, "ts": 11687964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452700", "tid": 35568, "ts": 11688050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452150", "tid": 35568, "ts": 11688137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451930", "tid": 35568, "ts": 11688223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4501a0", "tid": 35568, "ts": 11688309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450d00", "tid": 35568, "ts": 11688396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450ea0", "tid": 35568, "ts": 11688483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451d40", "tid": 35568, "ts": 11688569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd809f0", "tid": 35568, "ts": 11688655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80850", "tid": 35568, "ts": 11688742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80440", "tid": 35568, "ts": 11688828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80030", "tid": 35568, "ts": 11688914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80370", "tid": 35568, "ts": 11689000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fdc0", "tid": 35568, "ts": 11689086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fa80", "tid": 35568, "ts": 11689172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f400", "tid": 35568, "ts": 11689258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e700", "tid": 35568, "ts": 11689344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e490", "tid": 35568, "ts": 11689430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80c60", "tid": 35568, "ts": 11689517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f4d0", "tid": 35568, "ts": 11689604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e3c0", "tid": 35568, "ts": 11689690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e220", "tid": 35568, "ts": 11689777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ee50", "tid": 35568, "ts": 11689864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ed80", "tid": 35568, "ts": 11689950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ecb0", "tid": 35568, "ts": 11690036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ebe0", "tid": 35568, "ts": 11690122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f260", "tid": 35568, "ts": 11690209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dee0", "tid": 35568, "ts": 11690295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dd40", "tid": 35568, "ts": 11690382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fb50", "tid": 35568, "ts": 11690468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f670", "tid": 35568, "ts": 11690554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fcf0", "tid": 35568, "ts": 11690640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e7d0", "tid": 35568, "ts": 11690726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7eb10", "tid": 35568, "ts": 11690812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80e00", "tid": 35568, "ts": 11690898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f8e0", "tid": 35568, "ts": 11690985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e970", "tid": 35568, "ts": 11691070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80ed0", "tid": 35568, "ts": 11691156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e150", "tid": 35568, "ts": 11691243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c8f0", "tid": 35568, "ts": 11691329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c340", "tid": 35568, "ts": 11691416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d040", "tid": 35568, "ts": 11691502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c0d0", "tid": 35568, "ts": 11691589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bcc0", "tid": 35568, "ts": 11691674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c820", "tid": 35568, "ts": 11691760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cf70", "tid": 35568, "ts": 11691847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c680", "tid": 35568, "ts": 11691933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7aae0", "tid": 35568, "ts": 11692019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ca90", "tid": 35568, "ts": 11692105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bd90", "tid": 35568, "ts": 11692191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b230", "tid": 35568, "ts": 11692283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d2b0", "tid": 35568, "ts": 11692370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b7e0", "tid": 35568, "ts": 11692456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cdd0", "tid": 35568, "ts": 11692543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d6c0", "tid": 35568, "ts": 11692629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d1e0", "tid": 35568, "ts": 11692716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b710", "tid": 35568, "ts": 11692802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c5b0", "tid": 35568, "ts": 11692889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d860", "tid": 35568, "ts": 11692976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c9c0", "tid": 35568, "ts": 11693062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d5f0", "tid": 35568, "ts": 11693148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c410", "tid": 35568, "ts": 11693234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b160", "tid": 35568, "ts": 11693320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b640", "tid": 35568, "ts": 11693407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b090", "tid": 35568, "ts": 11693493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dc70", "tid": 35568, "ts": 11693580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dba0", "tid": 35568, "ts": 11693666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d380", "tid": 35568, "ts": 11693752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b570", "tid": 35568, "ts": 11693838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d110", "tid": 35568, "ts": 11693925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d520", "tid": 35568, "ts": 11694011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79eb0", "tid": 35568, "ts": 11694097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd795c0", "tid": 35568, "ts": 11694184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd794f0", "tid": 35568, "ts": 11694271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77f00", "tid": 35568, "ts": 11694358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd790e0", "tid": 35568, "ts": 11694444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd776e0", "tid": 35568, "ts": 11694530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79900", "tid": 35568, "ts": 11694639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79b70", "tid": 35568, "ts": 11694725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79010", "tid": 35568, "ts": 11694811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a6d0", "tid": 35568, "ts": 11694897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78990", "tid": 35568, "ts": 11694983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd780a0", "tid": 35568, "ts": 11695069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79830", "tid": 35568, "ts": 11695155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79280", "tid": 35568, "ts": 11695241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd791b0", "tid": 35568, "ts": 11695327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a1f0", "tid": 35568, "ts": 11695413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd787f0", "tid": 35568, "ts": 11695499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78cd0", "tid": 35568, "ts": 11695585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd799d0", "tid": 35568, "ts": 11695671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77fd0", "tid": 35568, "ts": 11695758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77e30", "tid": 35568, "ts": 11695844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a600", "tid": 35568, "ts": 11695931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78650", "tid": 35568, "ts": 11696017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd777b0", "tid": 35568, "ts": 11696103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78f40", "tid": 35568, "ts": 11696189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78240", "tid": 35568, "ts": 11696276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a2c0", "tid": 35568, "ts": 11696362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78170", "tid": 35568, "ts": 11696447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd783e0", "tid": 35568, "ts": 11696533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a050", "tid": 35568, "ts": 11696618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77bc0", "tid": 35568, "ts": 11696705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77af0", "tid": 35568, "ts": 11696791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74bd0", "tid": 35568, "ts": 11696877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76770", "tid": 35568, "ts": 11696963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd765d0", "tid": 35568, "ts": 11697049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74a30", "tid": 35568, "ts": 11697135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76430", "tid": 35568, "ts": 11697221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd742e0", "tid": 35568, "ts": 11697306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77470", "tid": 35568, "ts": 11697393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd773a0", "tid": 35568, "ts": 11697479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75c10", "tid": 35568, "ts": 11697565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74960", "tid": 35568, "ts": 11697651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76290", "tid": 35568, "ts": 11697737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd761c0", "tid": 35568, "ts": 11697823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77060", "tid": 35568, "ts": 11697909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76ec0", "tid": 35568, "ts": 11697995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74890", "tid": 35568, "ts": 11698081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd759a0", "tid": 35568, "ts": 11698167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76f90", "tid": 35568, "ts": 11698253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75660", "tid": 35568, "ts": 11698339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74e40", "tid": 35568, "ts": 11698425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76d20", "tid": 35568, "ts": 11698511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75b40", "tid": 35568, "ts": 11698596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75180", "tid": 35568, "ts": 11698682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75800", "tid": 35568, "ts": 11698768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd747c0", "tid": 35568, "ts": 11698854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd746f0", "tid": 35568, "ts": 11698940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74fe0", "tid": 35568, "ts": 11699027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd753f0", "tid": 35568, "ts": 11699113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd772d0", "tid": 35568, "ts": 11699199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74480", "tid": 35568, "ts": 11699286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76840", "tid": 35568, "ts": 11699371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75db0", "tid": 35568, "ts": 11699458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76b80", "tid": 35568, "ts": 11699544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70fb0", "tid": 35568, "ts": 11699630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd739f0", "tid": 35568, "ts": 11699755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73780", "tid": 35568, "ts": 11699844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73b90", "tid": 35568, "ts": 11699930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd735e0", "tid": 35568, "ts": 11700016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73440", "tid": 35568, "ts": 11700103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd732a0", "tid": 35568, "ts": 11700189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73030", "tid": 35568, "ts": 11700275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd729b0", "tid": 35568, "ts": 11700362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73850", "tid": 35568, "ts": 11700447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72f60", "tid": 35568, "ts": 11700534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70e10", "tid": 35568, "ts": 11700620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72740", "tid": 35568, "ts": 11700706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd718a0", "tid": 35568, "ts": 11700792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72670", "tid": 35568, "ts": 11700878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71700", "tid": 35568, "ts": 11700965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd725a0", "tid": 35568, "ts": 11701051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73ac0", "tid": 35568, "ts": 11701138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70d40", "tid": 35568, "ts": 11701224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72dc0", "tid": 35568, "ts": 11701310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71b10", "tid": 35568, "ts": 11701396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd731d0", "tid": 35568, "ts": 11701482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71560", "tid": 35568, "ts": 11701568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71220", "tid": 35568, "ts": 11701654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71630", "tid": 35568, "ts": 11701740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71ff0", "tid": 35568, "ts": 11701826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd713c0", "tid": 35568, "ts": 11701912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71150", "tid": 35568, "ts": 11701998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72e90", "tid": 35568, "ts": 11702084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71e50", "tid": 35568, "ts": 11702170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71490", "tid": 35568, "ts": 11702256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73fa0", "tid": 35568, "ts": 11702342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70040", "tid": 35568, "ts": 11702428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fd00", "tid": 35568, "ts": 11702515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f8f0", "tid": 35568, "ts": 11702602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70930", "tid": 35568, "ts": 11702687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fb60", "tid": 35568, "ts": 11702773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f1a0", "tid": 35568, "ts": 11702858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ef30", "tid": 35568, "ts": 11702944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e230", "tid": 35568, "ts": 11703030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e570", "tid": 35568, "ts": 11703117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e160", "tid": 35568, "ts": 11703203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70790", "tid": 35568, "ts": 11703289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fea0", "tid": 35568, "ts": 11703375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f9c0", "tid": 35568, "ts": 11703461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e710", "tid": 35568, "ts": 11703547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd705f0", "tid": 35568, "ts": 11703633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e3d0", "tid": 35568, "ts": 11703719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6de20", "tid": 35568, "ts": 11703811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70ba0", "tid": 35568, "ts": 11703897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70520", "tid": 35568, "ts": 11703983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f820", "tid": 35568, "ts": 11704070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e640", "tid": 35568, "ts": 11704156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f0d0", "tid": 35568, "ts": 11704241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f4e0", "tid": 35568, "ts": 11704327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dbb0", "tid": 35568, "ts": 11704413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f410", "tid": 35568, "ts": 11704499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e7e0", "tid": 35568, "ts": 11704585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70110", "tid": 35568, "ts": 11704676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d940", "tid": 35568, "ts": 11704764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd701e0", "tid": 35568, "ts": 11704850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70450", "tid": 35568, "ts": 11704937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fdd0", "tid": 35568, "ts": 11705022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dd50", "tid": 35568, "ts": 11705108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b170", "tid": 35568, "ts": 11705195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c4f0", "tid": 35568, "ts": 11705281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a610", "tid": 35568, "ts": 11705367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d530", "tid": 35568, "ts": 11705454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bcd0", "tid": 35568, "ts": 11705539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d460", "tid": 35568, "ts": 11705630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a540", "tid": 35568, "ts": 11705718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ac90", "tid": 35568, "ts": 11705805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ceb0", "tid": 35568, "ts": 11705891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b0a0", "tid": 35568, "ts": 11705976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d6d0", "tid": 35568, "ts": 11706062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bda0", "tid": 35568, "ts": 11706148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6aaf0", "tid": 35568, "ts": 11706235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b650", "tid": 35568, "ts": 11706321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cc40", "tid": 35568, "ts": 11706407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cb70", "tid": 35568, "ts": 11706493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6abc0", "tid": 35568, "ts": 11706579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b310", "tid": 35568, "ts": 11706665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c5c0", "tid": 35568, "ts": 11706752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c900", "tid": 35568, "ts": 11706838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c1b0", "tid": 35568, "ts": 11706924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d600", "tid": 35568, "ts": 11707009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c350", "tid": 35568, "ts": 11707096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b7f0", "tid": 35568, "ts": 11707182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6aa20", "tid": 35568, "ts": 11707269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d7a0", "tid": 35568, "ts": 11707355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b4b0", "tid": 35568, "ts": 11707441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b8c0", "tid": 35568, "ts": 11707527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d050", "tid": 35568, "ts": 11707613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c010", "tid": 35568, "ts": 11707699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c760", "tid": 35568, "ts": 11707786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c690", "tid": 35568, "ts": 11707873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a2d0", "tid": 35568, "ts": 11707959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd695d0", "tid": 35568, "ts": 11708045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68800", "tid": 35568, "ts": 11708131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a200", "tid": 35568, "ts": 11708217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd684c0", "tid": 35568, "ts": 11708303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68ce0", "tid": 35568, "ts": 11708389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67d70", "tid": 35568, "ts": 11708476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd683f0", "tid": 35568, "ts": 11708562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a060", "tid": 35568, "ts": 11708648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68c10", "tid": 35568, "ts": 11708734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68b40", "tid": 35568, "ts": 11708820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68a70", "tid": 35568, "ts": 11708906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67960", "tid": 35568, "ts": 11708991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68250", "tid": 35568, "ts": 11709077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd689a0", "tid": 35568, "ts": 11709163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68f50", "tid": 35568, "ts": 11709270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69910", "tid": 35568, "ts": 11709358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68e80", "tid": 35568, "ts": 11709445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69df0", "tid": 35568, "ts": 11709532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68180", "tid": 35568, "ts": 11709619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd691c0", "tid": 35568, "ts": 11709705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67b00", "tid": 35568, "ts": 11709791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69290", "tid": 35568, "ts": 11709877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67fe0", "tid": 35568, "ts": 11709963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd690f0", "tid": 35568, "ts": 11710050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69ab0", "tid": 35568, "ts": 11710136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd688d0", "tid": 35568, "ts": 11710222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69840", "tid": 35568, "ts": 11710308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd699e0", "tid": 35568, "ts": 11710395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69b80", "tid": 35568, "ts": 11710480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69c50", "tid": 35568, "ts": 11710566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65f60", "tid": 35568, "ts": 11710653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64490", "tid": 35568, "ts": 11710740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65670", "tid": 35568, "ts": 11710826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd655a0", "tid": 35568, "ts": 11710913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd661d0", "tid": 35568, "ts": 11710999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd654d0", "tid": 35568, "ts": 11711085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64080", "tid": 35568, "ts": 11711172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64cb0", "tid": 35568, "ts": 11711258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65b50", "tid": 35568, "ts": 11711344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66d30", "tid": 35568, "ts": 11711431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd658e0", "tid": 35568, "ts": 11711518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65190", "tid": 35568, "ts": 11711604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65e90", "tid": 35568, "ts": 11711690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65400", "tid": 35568, "ts": 11711777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64220", "tid": 35568, "ts": 11711864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66030", "tid": 35568, "ts": 11711950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd642f0", "tid": 35568, "ts": 11712035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66440", "tid": 35568, "ts": 11712122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66850", "tid": 35568, "ts": 11712208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66370", "tid": 35568, "ts": 11712294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64970", "tid": 35568, "ts": 11712380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64d80", "tid": 35568, "ts": 11712466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64f20", "tid": 35568, "ts": 11712553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd648a0", "tid": 35568, "ts": 11712639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65a80", "tid": 35568, "ts": 11712726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66780", "tid": 35568, "ts": 11712812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65c20", "tid": 35568, "ts": 11712899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65260", "tid": 35568, "ts": 11712985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66ed0", "tid": 35568, "ts": 11713071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd647d0", "tid": 35568, "ts": 11713158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66920", "tid": 35568, "ts": 11713244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64630", "tid": 35568, "ts": 11713330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63110", "tid": 35568, "ts": 11713417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62f70", "tid": 35568, "ts": 11713503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62ea0", "tid": 35568, "ts": 11713590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd629c0", "tid": 35568, "ts": 11713676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd624e0", "tid": 35568, "ts": 11713762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60ef0", "tid": 35568, "ts": 11713848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63c70", "tid": 35568, "ts": 11713934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63930", "tid": 35568, "ts": 11714020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61710", "tid": 35568, "ts": 11714106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62410", "tid": 35568, "ts": 11714192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61570", "tid": 35568, "ts": 11714279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63790", "tid": 35568, "ts": 11714366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62820", "tid": 35568, "ts": 11714453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63520", "tid": 35568, "ts": 11714540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60ae0", "tid": 35568, "ts": 11714628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62680", "tid": 35568, "ts": 11714714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd632b0", "tid": 35568, "ts": 11714811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61cc0", "tid": 35568, "ts": 11714898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61f30", "tid": 35568, "ts": 11714984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61a50", "tid": 35568, "ts": 11715070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd625b0", "tid": 35568, "ts": 11715155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63ad0", "tid": 35568, "ts": 11715241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60fc0", "tid": 35568, "ts": 11715327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60c80", "tid": 35568, "ts": 11715490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63380", "tid": 35568, "ts": 11715579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62270", "tid": 35568, "ts": 11715666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60940", "tid": 35568, "ts": 11715753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61980", "tid": 35568, "ts": 11715840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60bb0", "tid": 35568, "ts": 11715926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60d50", "tid": 35568, "ts": 11716012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd617e0", "tid": 35568, "ts": 11716099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62340", "tid": 35568, "ts": 11716186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d7b0", "tid": 35568, "ts": 11716273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f9d0", "tid": 35568, "ts": 11716359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f900", "tid": 35568, "ts": 11716446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f280", "tid": 35568, "ts": 11716532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f0e0", "tid": 35568, "ts": 11716618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60530", "tid": 35568, "ts": 11716705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ecd0", "tid": 35568, "ts": 11716792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fc40", "tid": 35568, "ts": 11716878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e170", "tid": 35568, "ts": 11716965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ec00", "tid": 35568, "ts": 11717052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd601f0", "tid": 35568, "ts": 11717138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f830", "tid": 35568, "ts": 11717225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f420", "tid": 35568, "ts": 11717311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e4b0", "tid": 35568, "ts": 11717398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60050", "tid": 35568, "ts": 11717485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f010", "tid": 35568, "ts": 11717572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e310", "tid": 35568, "ts": 11717658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e0a0", "tid": 35568, "ts": 11717745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dfd0", "tid": 35568, "ts": 11717832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fd10", "tid": 35568, "ts": 11717919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f350", "tid": 35568, "ts": 11718005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fde0", "tid": 35568, "ts": 11718092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5faa0", "tid": 35568, "ts": 11718178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d540", "tid": 35568, "ts": 11718265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d880", "tid": 35568, "ts": 11718351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e7f0", "tid": 35568, "ts": 11718438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5eda0", "tid": 35568, "ts": 11718523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60870", "tid": 35568, "ts": 11718610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e240", "tid": 35568, "ts": 11718696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ff80", "tid": 35568, "ts": 11718783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e650", "tid": 35568, "ts": 11718869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f690", "tid": 35568, "ts": 11718956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c910", "tid": 35568, "ts": 11719043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b800", "tid": 35568, "ts": 11719129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b4c0", "tid": 35568, "ts": 11719215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b730", "tid": 35568, "ts": 11719301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cf90", "tid": 35568, "ts": 11719387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c5d0", "tid": 35568, "ts": 11719473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5aca0", "tid": 35568, "ts": 11719559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c430", "tid": 35568, "ts": 11719646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a7c0", "tid": 35568, "ts": 11719732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d3a0", "tid": 35568, "ts": 11719818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c360", "tid": 35568, "ts": 11719904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5abd0", "tid": 35568, "ts": 11719990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c1c0", "tid": 35568, "ts": 11720077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5be80", "tid": 35568, "ts": 11720163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cab0", "tid": 35568, "ts": 11720249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a480", "tid": 35568, "ts": 11720335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5afe0", "tid": 35568, "ts": 11720421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b180", "tid": 35568, "ts": 11720507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c770", "tid": 35568, "ts": 11720593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c6a0", "tid": 35568, "ts": 11720680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b0b0", "tid": 35568, "ts": 11720766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5aa30", "tid": 35568, "ts": 11720852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cdf0", "tid": 35568, "ts": 11720939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a140", "tid": 35568, "ts": 11721025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c020", "tid": 35568, "ts": 11721112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d470", "tid": 35568, "ts": 11721198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a2e0", "tid": 35568, "ts": 11721285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d130", "tid": 35568, "ts": 11721371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d060", "tid": 35568, "ts": 11721457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a550", "tid": 35568, "ts": 11721544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bb40", "tid": 35568, "ts": 11721630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c840", "tid": 35568, "ts": 11721717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd584d0", "tid": 35568, "ts": 11721804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57ff0", "tid": 35568, "ts": 11721891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd589b0", "tid": 35568, "ts": 11721977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56e10", "tid": 35568, "ts": 11722063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd599f0", "tid": 35568, "ts": 11722149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59920", "tid": 35568, "ts": 11722236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd596b0", "tid": 35568, "ts": 11722323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd588e0", "tid": 35568, "ts": 11722409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57a40", "tid": 35568, "ts": 11722496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58810", "tid": 35568, "ts": 11722582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58190", "tid": 35568, "ts": 11722669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd595e0", "tid": 35568, "ts": 11722756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59440", "tid": 35568, "ts": 11722842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59fa0", "tid": 35568, "ts": 11722928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59370", "tid": 35568, "ts": 11723015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57b10", "tid": 35568, "ts": 11723102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58e90", "tid": 35568, "ts": 11723188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd580c0", "tid": 35568, "ts": 11723275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56fb0", "tid": 35568, "ts": 11723361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd572f0", "tid": 35568, "ts": 11723447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58f60", "tid": 35568, "ts": 11723533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58260", "tid": 35568, "ts": 11723620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd577d0", "tid": 35568, "ts": 11723706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58c20", "tid": 35568, "ts": 11723792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58740", "tid": 35568, "ts": 11723879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57220", "tid": 35568, "ts": 11723965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59030", "tid": 35568, "ts": 11724051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59ac0", "tid": 35568, "ts": 11724137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58330", "tid": 35568, "ts": 11724222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57630", "tid": 35568, "ts": 11724309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57d80", "tid": 35568, "ts": 11724395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57560", "tid": 35568, "ts": 11724482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53c80", "tid": 35568, "ts": 11724570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53a10", "tid": 35568, "ts": 11724656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56ad0", "tid": 35568, "ts": 11724742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd551a0", "tid": 35568, "ts": 11724829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54710", "tid": 35568, "ts": 11724916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd565f0", "tid": 35568, "ts": 11725002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56110", "tid": 35568, "ts": 11725088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54300", "tid": 35568, "ts": 11725174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55f70", "tid": 35568, "ts": 11725260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54980", "tid": 35568, "ts": 11725346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53e20", "tid": 35568, "ts": 11725433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56380", "tid": 35568, "ts": 11725520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55ea0", "tid": 35568, "ts": 11725606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55680", "tid": 35568, "ts": 11725693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55820", "tid": 35568, "ts": 11725778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd562b0", "tid": 35568, "ts": 11725865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56a00", "tid": 35568, "ts": 11725952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55410", "tid": 35568, "ts": 11726037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54160", "tid": 35568, "ts": 11726124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd561e0", "tid": 35568, "ts": 11726210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54a50", "tid": 35568, "ts": 11726296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55270", "tid": 35568, "ts": 11726383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55c30", "tid": 35568, "ts": 11726469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56860", "tid": 35568, "ts": 11726556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd554e0", "tid": 35568, "ts": 11726642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55340", "tid": 35568, "ts": 11726729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd547e0", "tid": 35568, "ts": 11726815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54b20", "tid": 35568, "ts": 11726901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55b60", "tid": 35568, "ts": 11726988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd558f0", "tid": 35568, "ts": 11727074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd559c0", "tid": 35568, "ts": 11727160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56790", "tid": 35568, "ts": 11727246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53870", "tid": 35568, "ts": 11727334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51cd0", "tid": 35568, "ts": 11727420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50fd0", "tid": 35568, "ts": 11727506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd537a0", "tid": 35568, "ts": 11727593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd536d0", "tid": 35568, "ts": 11727679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53600", "tid": 35568, "ts": 11727764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50f00", "tid": 35568, "ts": 11727850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51da0", "tid": 35568, "ts": 11727937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52350", "tid": 35568, "ts": 11728023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52760", "tid": 35568, "ts": 11728110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53390", "tid": 35568, "ts": 11728195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50880", "tid": 35568, "ts": 11728282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50af0", "tid": 35568, "ts": 11728369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51b30", "tid": 35568, "ts": 11728454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd521b0", "tid": 35568, "ts": 11728540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52280", "tid": 35568, "ts": 11728626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52d10", "tid": 35568, "ts": 11728713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd507b0", "tid": 35568, "ts": 11728799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53050", "tid": 35568, "ts": 11728885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52830", "tid": 35568, "ts": 11728972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51720", "tid": 35568, "ts": 11729058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52c40", "tid": 35568, "ts": 11729144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52eb0", "tid": 35568, "ts": 11729230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51f40", "tid": 35568, "ts": 11729317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53460", "tid": 35568, "ts": 11729404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd506e0", "tid": 35568, "ts": 11729495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51310", "tid": 35568, "ts": 11729582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51240", "tid": 35568, "ts": 11729669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51650", "tid": 35568, "ts": 11729755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50d60", "tid": 35568, "ts": 11729842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52b70", "tid": 35568, "ts": 11729927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50950", "tid": 35568, "ts": 11730013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f500", "tid": 35568, "ts": 11730099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f430", "tid": 35568, "ts": 11730186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f1c0", "tid": 35568, "ts": 11730271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f6a0", "tid": 35568, "ts": 11730358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dbd0", "tid": 35568, "ts": 11730444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f290", "tid": 35568, "ts": 11730531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f5d0", "tid": 35568, "ts": 11730617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4da30", "tid": 35568, "ts": 11730703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e9a0", "tid": 35568, "ts": 11730789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d960", "tid": 35568, "ts": 11730875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d3b0", "tid": 35568, "ts": 11730978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d140", "tid": 35568, "ts": 11731191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e800", "tid": 35568, "ts": 11731341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d480", "tid": 35568, "ts": 11731487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f840", "tid": 35568, "ts": 11731601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e730", "tid": 35568, "ts": 11731699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e0b0", "tid": 35568, "ts": 11731848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dd70", "tid": 35568, "ts": 11731961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4edb0", "tid": 35568, "ts": 11732048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e250", "tid": 35568, "ts": 11732136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fd20", "tid": 35568, "ts": 11732222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ece0", "tid": 35568, "ts": 11732308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4eb40", "tid": 35568, "ts": 11732394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e8d0", "tid": 35568, "ts": 11732480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50200", "tid": 35568, "ts": 11732566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e4c0", "tid": 35568, "ts": 11732653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fec0", "tid": 35568, "ts": 11732739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e660", "tid": 35568, "ts": 11732826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e3f0", "tid": 35568, "ts": 11732912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f9e0", "tid": 35568, "ts": 11732999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d890", "tid": 35568, "ts": 11733084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e590", "tid": 35568, "ts": 11733171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b260", "tid": 35568, "ts": 11733256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4acb0", "tid": 35568, "ts": 11733343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4aa40", "tid": 35568, "ts": 11733429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49d40", "tid": 35568, "ts": 11733515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d070", "tid": 35568, "ts": 11733602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ab10", "tid": 35568, "ts": 11733688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bc20", "tid": 35568, "ts": 11733774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b9b0", "tid": 35568, "ts": 11733859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4aff0", "tid": 35568, "ts": 11733946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c2a0", "tid": 35568, "ts": 11734033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cac0", "tid": 35568, "ts": 11734120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b0c0", "tid": 35568, "ts": 11734206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c6b0", "tid": 35568, "ts": 11734292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4be90", "tid": 35568, "ts": 11734378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ce00", "tid": 35568, "ts": 11734464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bf60", "tid": 35568, "ts": 11734551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a560", "tid": 35568, "ts": 11734636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a700", "tid": 35568, "ts": 11734722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c850", "tid": 35568, "ts": 11734808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cd30", "tid": 35568, "ts": 11734895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bb50", "tid": 35568, "ts": 11734981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c100", "tid": 35568, "ts": 11735067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cc60", "tid": 35568, "ts": 11735154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a3c0", "tid": 35568, "ts": 11735240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b670", "tid": 35568, "ts": 11735327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cb90", "tid": 35568, "ts": 11735413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c370", "tid": 35568, "ts": 11735500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b5a0", "tid": 35568, "ts": 11735586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b4d0", "tid": 35568, "ts": 11735672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b400", "tid": 35568, "ts": 11735758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49ee0", "tid": 35568, "ts": 11735844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a7d0", "tid": 35568, "ts": 11735930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46a10", "tid": 35568, "ts": 11736016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48820", "tid": 35568, "ts": 11736103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46bb0", "tid": 35568, "ts": 11736189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49450", "tid": 35568, "ts": 11736276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48ea0", "tid": 35568, "ts": 11736361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46940", "tid": 35568, "ts": 11736448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48680", "tid": 35568, "ts": 11736534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47090", "tid": 35568, "ts": 11736620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49c70", "tid": 35568, "ts": 11736706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd492b0", "tid": 35568, "ts": 11736792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47640", "tid": 35568, "ts": 11736878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47bf0", "tid": 35568, "ts": 11736964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49ba0", "tid": 35568, "ts": 11737050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49ad0", "tid": 35568, "ts": 11737137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47160", "tid": 35568, "ts": 11737223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd489c0", "tid": 35568, "ts": 11737308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48000", "tid": 35568, "ts": 11737395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48a90", "tid": 35568, "ts": 11737480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49110", "tid": 35568, "ts": 11737567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47b20", "tid": 35568, "ts": 11737653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47e60", "tid": 35568, "ts": 11737739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47a50", "tid": 35568, "ts": 11737826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49040", "tid": 35568, "ts": 11737912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd488f0", "tid": 35568, "ts": 11737998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd474a0", "tid": 35568, "ts": 11738084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd480d0", "tid": 35568, "ts": 11738171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48410", "tid": 35568, "ts": 11738257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49930", "tid": 35568, "ts": 11738343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47230", "tid": 35568, "ts": 11738430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48c30", "tid": 35568, "ts": 11738515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd477e0", "tid": 35568, "ts": 11738601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47d90", "tid": 35568, "ts": 11738687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46050", "tid": 35568, "ts": 11738773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd455c0", "tid": 35568, "ts": 11738859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44c00", "tid": 35568, "ts": 11738945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45420", "tid": 35568, "ts": 11739032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44650", "tid": 35568, "ts": 11739119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43d60", "tid": 35568, "ts": 11739204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45de0", "tid": 35568, "ts": 11739290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43bc0", "tid": 35568, "ts": 11739376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43880", "tid": 35568, "ts": 11739462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45280", "tid": 35568, "ts": 11739548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45f80", "tid": 35568, "ts": 11739634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd451b0", "tid": 35568, "ts": 11739721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44170", "tid": 35568, "ts": 11739806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd454f0", "tid": 35568, "ts": 11739892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46460", "tid": 35568, "ts": 11739978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd467a0", "tid": 35568, "ts": 11740064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43af0", "tid": 35568, "ts": 11740150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44da0", "tid": 35568, "ts": 11740238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd461f0", "tid": 35568, "ts": 11740324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45b70", "tid": 35568, "ts": 11740411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd444b0", "tid": 35568, "ts": 11740497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd459d0", "tid": 35568, "ts": 11740583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44990", "tid": 35568, "ts": 11740669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44720", "tid": 35568, "ts": 11740756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44cd0", "tid": 35568, "ts": 11740842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44310", "tid": 35568, "ts": 11740927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43540", "tid": 35568, "ts": 11741013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45010", "tid": 35568, "ts": 11741099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45690", "tid": 35568, "ts": 11741186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45830", "tid": 35568, "ts": 11741273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd450e0", "tid": 35568, "ts": 11741359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44f40", "tid": 35568, "ts": 11741445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd407c0", "tid": 35568, "ts": 11741532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41800", "tid": 35568, "ts": 11741618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40480", "tid": 35568, "ts": 11741704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42ec0", "tid": 35568, "ts": 11741792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40bd0", "tid": 35568, "ts": 11741878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41730", "tid": 35568, "ts": 11741964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd414c0", "tid": 35568, "ts": 11742050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40b00", "tid": 35568, "ts": 11742136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd406f0", "tid": 35568, "ts": 11742227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42360", "tid": 35568, "ts": 11742315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43470", "tid": 35568, "ts": 11742402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40140", "tid": 35568, "ts": 11742489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41320", "tid": 35568, "ts": 11742575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd410b0", "tid": 35568, "ts": 11742661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd420f0", "tid": 35568, "ts": 11742748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42df0", "tid": 35568, "ts": 11742834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd402e0", "tid": 35568, "ts": 11742922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd421c0", "tid": 35568, "ts": 11743008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42020", "tid": 35568, "ts": 11743095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41c10", "tid": 35568, "ts": 11743182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40fe0", "tid": 35568, "ts": 11743269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40550", "tid": 35568, "ts": 11743355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41f50", "tid": 35568, "ts": 11743441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42770", "tid": 35568, "ts": 11743528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41e80", "tid": 35568, "ts": 11743615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42500", "tid": 35568, "ts": 11743701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42910", "tid": 35568, "ts": 11743787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42f90", "tid": 35568, "ts": 11743875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40e40", "tid": 35568, "ts": 11743961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd426a0", "tid": 35568, "ts": 11744048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40f10", "tid": 35568, "ts": 11744134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41180", "tid": 35568, "ts": 11744221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f7f0", "tid": 35568, "ts": 11744308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f650", "tid": 35568, "ts": 11744395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650eb0", "tid": 35568, "ts": 11744481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ed60", "tid": 35568, "ts": 11744567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650aa0", "tid": 35568, "ts": 11744654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ebc0", "tid": 35568, "ts": 11744740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64eaf0", "tid": 35568, "ts": 11744826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650900", "tid": 35568, "ts": 11744912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650830", "tid": 35568, "ts": 11744998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e610", "tid": 35568, "ts": 11745085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ea20", "tid": 35568, "ts": 11745171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e470", "tid": 35568, "ts": 11745257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650c40", "tid": 35568, "ts": 11745343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650f80", "tid": 35568, "ts": 11745429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650420", "tid": 35568, "ts": 11745515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650010", "tid": 35568, "ts": 11745601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6504f0", "tid": 35568, "ts": 11745688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e130", "tid": 35568, "ts": 11745775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651390", "tid": 35568, "ts": 11745861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fa60", "tid": 35568, "ts": 11745947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e7b0", "tid": 35568, "ts": 11746033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e950", "tid": 35568, "ts": 11746118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650350", "tid": 35568, "ts": 11746205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650280", "tid": 35568, "ts": 11746291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fda0", "tid": 35568, "ts": 11746377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f310", "tid": 35568, "ts": 11746463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650b70", "tid": 35568, "ts": 11746549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e880", "tid": 35568, "ts": 11746668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fc00", "tid": 35568, "ts": 11746756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651050", "tid": 35568, "ts": 11746842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fcd0", "tid": 35568, "ts": 11746929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f240", "tid": 35568, "ts": 11747014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d320", "tid": 35568, "ts": 11747101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cf10", "tid": 35568, "ts": 11747188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cd70", "tid": 35568, "ts": 11747274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ca30", "tid": 35568, "ts": 11747361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c550", "tid": 35568, "ts": 11747448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c3b0", "tid": 35568, "ts": 11747534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c210", "tid": 35568, "ts": 11747620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c140", "tid": 35568, "ts": 11747707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68eb80", "tid": 35568, "ts": 11747793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e9e0", "tid": 35568, "ts": 11747879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e910", "tid": 35568, "ts": 11747965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e6a0", "tid": 35568, "ts": 11748052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e1c0", "tid": 35568, "ts": 11748138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e0f0", "tid": 35568, "ts": 11748224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68db40", "tid": 35568, "ts": 11748310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bed0", "tid": 35568, "ts": 11748398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68eec0", "tid": 35568, "ts": 11748484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d9a0", "tid": 35568, "ts": 11748570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bd30", "tid": 35568, "ts": 11748656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d250", "tid": 35568, "ts": 11748742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e500", "tid": 35568, "ts": 11748828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d3f0", "tid": 35568, "ts": 11748914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68dce0", "tid": 35568, "ts": 11749001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d800", "tid": 35568, "ts": 11749087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68dc10", "tid": 35568, "ts": 11749173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d660", "tid": 35568, "ts": 11749260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d730", "tid": 35568, "ts": 11749346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e840", "tid": 35568, "ts": 11749432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d0b0", "tid": 35568, "ts": 11749519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68de80", "tid": 35568, "ts": 11749606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c890", "tid": 35568, "ts": 11749698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689e50", "tid": 35568, "ts": 11749786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689cb0", "tid": 35568, "ts": 11749874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6892f0", "tid": 35568, "ts": 11749970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6897d0", "tid": 35568, "ts": 11750057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a190", "tid": 35568, "ts": 11750143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689be0", "tid": 35568, "ts": 11750229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689b10", "tid": 35568, "ts": 11750315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b6b0", "tid": 35568, "ts": 11750402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b5e0", "tid": 35568, "ts": 11750488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688fb0", "tid": 35568, "ts": 11750575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b370", "tid": 35568, "ts": 11750661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689150", "tid": 35568, "ts": 11750747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b2a0", "tid": 35568, "ts": 11750833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bac0", "tid": 35568, "ts": 11750919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ae90", "tid": 35568, "ts": 11751005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6893c0", "tid": 35568, "ts": 11751093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b9f0", "tid": 35568, "ts": 11751178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a400", "tid": 35568, "ts": 11751265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68acf0", "tid": 35568, "ts": 11751376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688ba0", "tid": 35568, "ts": 11751490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b920", "tid": 35568, "ts": 11751638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a0c0", "tid": 35568, "ts": 11751725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a260", "tid": 35568, "ts": 11751811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689490", "tid": 35568, "ts": 11751896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a670", "tid": 35568, "ts": 11751983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b510", "tid": 35568, "ts": 11752069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688ad0", "tid": 35568, "ts": 11752155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a5a0", "tid": 35568, "ts": 11752241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68aa80", "tid": 35568, "ts": 11752327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689630", "tid": 35568, "ts": 11752413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b780", "tid": 35568, "ts": 11752499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a9b0", "tid": 35568, "ts": 11752585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6882b0", "tid": 35568, "ts": 11752671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685e20", "tid": 35568, "ts": 11752758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688040", "tid": 35568, "ts": 11752844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685ae0", "tid": 35568, "ts": 11752930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687ea0", "tid": 35568, "ts": 11753017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6868b0", "tid": 35568, "ts": 11753103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685530", "tid": 35568, "ts": 11753190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687dd0", "tid": 35568, "ts": 11753276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6870d0", "tid": 35568, "ts": 11753368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687d00", "tid": 35568, "ts": 11753455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688520", "tid": 35568, "ts": 11753541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686570", "tid": 35568, "ts": 11753628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6863d0", "tid": 35568, "ts": 11753714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686300", "tid": 35568, "ts": 11753800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686a50", "tid": 35568, "ts": 11753886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686230", "tid": 35568, "ts": 11753972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6886c0", "tid": 35568, "ts": 11754057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686160", "tid": 35568, "ts": 11754144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686b20", "tid": 35568, "ts": 11754231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687000", "tid": 35568, "ts": 11754316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686710", "tid": 35568, "ts": 11754402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6885f0", "tid": 35568, "ts": 11754489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687680", "tid": 35568, "ts": 11754575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686980", "tid": 35568, "ts": 11754661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6879c0", "tid": 35568, "ts": 11754747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688790", "tid": 35568, "ts": 11754834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685d50", "tid": 35568, "ts": 11754919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688110", "tid": 35568, "ts": 11755005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686d90", "tid": 35568, "ts": 11755092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6875b0", "tid": 35568, "ts": 11755178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6864a0", "tid": 35568, "ts": 11755264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686090", "tid": 35568, "ts": 11755350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6838c0", "tid": 35568, "ts": 11755435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6833e0", "tid": 35568, "ts": 11755522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682f00", "tid": 35568, "ts": 11755608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683580", "tid": 35568, "ts": 11755694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682a20", "tid": 35568, "ts": 11755780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683990", "tid": 35568, "ts": 11755866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682610", "tid": 35568, "ts": 11755953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684de0", "tid": 35568, "ts": 11756038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682880", "tid": 35568, "ts": 11756125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6845c0", "tid": 35568, "ts": 11756211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682e30", "tid": 35568, "ts": 11756297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6823a0", "tid": 35568, "ts": 11756383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683170", "tid": 35568, "ts": 11756469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682200", "tid": 35568, "ts": 11756555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683da0", "tid": 35568, "ts": 11756642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683240", "tid": 35568, "ts": 11756728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684b70", "tid": 35568, "ts": 11756814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684c40", "tid": 35568, "ts": 11756900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685460", "tid": 35568, "ts": 11756987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684aa0", "tid": 35568, "ts": 11757073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684f80", "tid": 35568, "ts": 11757159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683f40", "tid": 35568, "ts": 11757246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6826e0", "tid": 35568, "ts": 11757332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684d10", "tid": 35568, "ts": 11757418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6837f0", "tid": 35568, "ts": 11757504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6851f0", "tid": 35568, "ts": 11757590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685120", "tid": 35568, "ts": 11757675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684420", "tid": 35568, "ts": 11757762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6830a0", "tid": 35568, "ts": 11757848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684690", "tid": 35568, "ts": 11757934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683cd0", "tid": 35568, "ts": 11758020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6822d0", "tid": 35568, "ts": 11758106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ff10", "tid": 35568, "ts": 11758192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fca0", "tid": 35568, "ts": 11758278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681840", "tid": 35568, "ts": 11758365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fb00", "tid": 35568, "ts": 11758452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681360", "tid": 35568, "ts": 11758538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680f50", "tid": 35568, "ts": 11758624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681770", "tid": 35568, "ts": 11758710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680e80", "tid": 35568, "ts": 11758796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f7c0", "tid": 35568, "ts": 11758882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f6f0", "tid": 35568, "ts": 11758968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682060", "tid": 35568, "ts": 11759054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fd70", "tid": 35568, "ts": 11759140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681910", "tid": 35568, "ts": 11759226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681f90", "tid": 35568, "ts": 11759312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680c10", "tid": 35568, "ts": 11759399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6803f0", "tid": 35568, "ts": 11759485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681500", "tid": 35568, "ts": 11759571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680b40", "tid": 35568, "ts": 11759657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f140", "tid": 35568, "ts": 11759743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67efa0", "tid": 35568, "ts": 11759830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6808d0", "tid": 35568, "ts": 11759916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6809a0", "tid": 35568, "ts": 11760002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680180", "tid": 35568, "ts": 11760089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67eed0", "tid": 35568, "ts": 11760174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f550", "tid": 35568, "ts": 11760261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6800b0", "tid": 35568, "ts": 11760348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681d20", "tid": 35568, "ts": 11760434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680590", "tid": 35568, "ts": 11760520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6815d0", "tid": 35568, "ts": 11760606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6810f0", "tid": 35568, "ts": 11760692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681c50", "tid": 35568, "ts": 11760778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6804c0", "tid": 35568, "ts": 11760864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c7d0", "tid": 35568, "ts": 11760950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c3c0", "tid": 35568, "ts": 11761038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bfb0", "tid": 35568, "ts": 11761124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67be10", "tid": 35568, "ts": 11761210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bba0", "tid": 35568, "ts": 11761297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ec60", "tid": 35568, "ts": 11761383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e6b0", "tid": 35568, "ts": 11761469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e100", "tid": 35568, "ts": 11761555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e030", "tid": 35568, "ts": 11761641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e5e0", "tid": 35568, "ts": 11761728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bd40", "tid": 35568, "ts": 11761814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67de90", "tid": 35568, "ts": 11761901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cff0", "tid": 35568, "ts": 11761987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67dcf0", "tid": 35568, "ts": 11762073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d810", "tid": 35568, "ts": 11762160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67eb90", "tid": 35568, "ts": 11762308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d740", "tid": 35568, "ts": 11762431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c560", "tid": 35568, "ts": 11762519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67db50", "tid": 35568, "ts": 11762607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d190", "tid": 35568, "ts": 11762695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d5a0", "tid": 35568, "ts": 11762781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c220", "tid": 35568, "ts": 11762869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b930", "tid": 35568, "ts": 11762956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c150", "tid": 35568, "ts": 11763043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d260", "tid": 35568, "ts": 11763131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c970", "tid": 35568, "ts": 11763221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d9b0", "tid": 35568, "ts": 11763315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ccb0", "tid": 35568, "ts": 11763402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cb10", "tid": 35568, "ts": 11763489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d4d0", "tid": 35568, "ts": 11763576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c080", "tid": 35568, "ts": 11763663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c490", "tid": 35568, "ts": 11763751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679640", "tid": 35568, "ts": 11763837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6793d0", "tid": 35568, "ts": 11763924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679160", "tid": 35568, "ts": 11764011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678bb0", "tid": 35568, "ts": 11764097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678940", "tid": 35568, "ts": 11764184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678530", "tid": 35568, "ts": 11764270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b790", "tid": 35568, "ts": 11764357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678870", "tid": 35568, "ts": 11764444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a680", "tid": 35568, "ts": 11764531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b1e0", "tid": 35568, "ts": 11764617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678e20", "tid": 35568, "ts": 11764732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ad00", "tid": 35568, "ts": 11764848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678c80", "tid": 35568, "ts": 11764935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b520", "tid": 35568, "ts": 11765021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678a10", "tid": 35568, "ts": 11765107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679300", "tid": 35568, "ts": 11765193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b450", "tid": 35568, "ts": 11765280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679b20", "tid": 35568, "ts": 11765366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a9c0", "tid": 35568, "ts": 11765452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b380", "tid": 35568, "ts": 11765539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a5b0", "tid": 35568, "ts": 11765633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ab60", "tid": 35568, "ts": 11765720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67aa90", "tid": 35568, "ts": 11765807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679f30", "tid": 35568, "ts": 11765893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679e60", "tid": 35568, "ts": 11765980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678d50", "tid": 35568, "ts": 11766066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6786d0", "tid": 35568, "ts": 11766153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6798b0", "tid": 35568, "ts": 11766239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a0d0", "tid": 35568, "ts": 11766326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b040", "tid": 35568, "ts": 11766413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6797e0", "tid": 35568, "ts": 11766498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a8f0", "tid": 35568, "ts": 11766584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676310", "tid": 35568, "ts": 11766670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6760a0", "tid": 35568, "ts": 11766756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675f00", "tid": 35568, "ts": 11766843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6756e0", "tid": 35568, "ts": 11766930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676b30", "tid": 35568, "ts": 11767017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675130", "tid": 35568, "ts": 11767103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678460", "tid": 35568, "ts": 11767190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676a60", "tid": 35568, "ts": 11767276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675200", "tid": 35568, "ts": 11767362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675880", "tid": 35568, "ts": 11767449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677b70", "tid": 35568, "ts": 11767535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6753a0", "tid": 35568, "ts": 11767622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6763e0", "tid": 35568, "ts": 11767709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675d60", "tid": 35568, "ts": 11767795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676cd0", "tid": 35568, "ts": 11767882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675a20", "tid": 35568, "ts": 11767968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6767f0", "tid": 35568, "ts": 11768055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677350", "tid": 35568, "ts": 11768142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6757b0", "tid": 35568, "ts": 11768229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677010", "tid": 35568, "ts": 11768316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6752d0", "tid": 35568, "ts": 11768402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6782c0", "tid": 35568, "ts": 11768489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675c90", "tid": 35568, "ts": 11768576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6774f0", "tid": 35568, "ts": 11768662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676240", "tid": 35568, "ts": 11768748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677eb0", "tid": 35568, "ts": 11768835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678120", "tid": 35568, "ts": 11768922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677760", "tid": 35568, "ts": 11769008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677420", "tid": 35568, "ts": 11769095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6768c0", "tid": 35568, "ts": 11769181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6779d0", "tid": 35568, "ts": 11769267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677690", "tid": 35568, "ts": 11769354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672bd0", "tid": 35568, "ts": 11769441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6722e0", "tid": 35568, "ts": 11769528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671fa0", "tid": 35568, "ts": 11769614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671d30", "tid": 35568, "ts": 11769701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672960", "tid": 35568, "ts": 11769788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675060", "tid": 35568, "ts": 11769876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6749e0", "tid": 35568, "ts": 11769961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674430", "tid": 35568, "ts": 11770048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672550", "tid": 35568, "ts": 11770134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6738d0", "tid": 35568, "ts": 11770222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674ec0", "tid": 35568, "ts": 11770308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674d20", "tid": 35568, "ts": 11770394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6740f0", "tid": 35568, "ts": 11770481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674f90", "tid": 35568, "ts": 11770568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673320", "tid": 35568, "ts": 11770654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673b40", "tid": 35568, "ts": 11770740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672fe0", "tid": 35568, "ts": 11770827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674910", "tid": 35568, "ts": 11770914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673f50", "tid": 35568, "ts": 11771000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6733f0", "tid": 35568, "ts": 11771086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674b80", "tid": 35568, "ts": 11771173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672b00", "tid": 35568, "ts": 11771260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672210", "tid": 35568, "ts": 11771347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674290", "tid": 35568, "ts": 11771433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6726f0", "tid": 35568, "ts": 11771519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672890", "tid": 35568, "ts": 11771606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674020", "tid": 35568, "ts": 11771693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6745d0", "tid": 35568, "ts": 11771779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674c50", "tid": 35568, "ts": 11771866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672070", "tid": 35568, "ts": 11771952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672d70", "tid": 35568, "ts": 11772038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673db0", "tid": 35568, "ts": 11772125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f8a0", "tid": 35568, "ts": 11772211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f630", "tid": 35568, "ts": 11772297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f220", "tid": 35568, "ts": 11772384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66eee0", "tid": 35568, "ts": 11772470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ead0", "tid": 35568, "ts": 11772556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fbe0", "tid": 35568, "ts": 11772642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f2f0", "tid": 35568, "ts": 11772741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ee10", "tid": 35568, "ts": 11772840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670b50", "tid": 35568, "ts": 11772928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670a80", "tid": 35568, "ts": 11773014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671030", "tid": 35568, "ts": 11773101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ff20", "tid": 35568, "ts": 11773193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f150", "tid": 35568, "ts": 11773279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670810", "tid": 35568, "ts": 11773366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f7d0", "tid": 35568, "ts": 11773453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6704d0", "tid": 35568, "ts": 11773539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670f60", "tid": 35568, "ts": 11773625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fe50", "tid": 35568, "ts": 11773711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6719f0", "tid": 35568, "ts": 11773797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671780", "tid": 35568, "ts": 11773883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670e90", "tid": 35568, "ts": 11773969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670dc0", "tid": 35568, "ts": 11774055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670cf0", "tid": 35568, "ts": 11774142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670330", "tid": 35568, "ts": 11774228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671100", "tid": 35568, "ts": 11774314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e930", "tid": 35568, "ts": 11774400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671850", "tid": 35568, "ts": 11774487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ec70", "tid": 35568, "ts": 11774573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6705a0", "tid": 35568, "ts": 11774660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f970", "tid": 35568, "ts": 11774759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6700c0", "tid": 35568, "ts": 11774890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f3c0", "tid": 35568, "ts": 11774977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e110", "tid": 35568, "ts": 11775063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bfc0", "tid": 35568, "ts": 11775150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ddd0", "tid": 35568, "ts": 11775236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c640", "tid": 35568, "ts": 11775322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d340", "tid": 35568, "ts": 11775409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e040", "tid": 35568, "ts": 11775495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d270", "tid": 35568, "ts": 11775582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66dc30", "tid": 35568, "ts": 11775668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d000", "tid": 35568, "ts": 11775754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e790", "tid": 35568, "ts": 11775840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c710", "tid": 35568, "ts": 11775927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e5f0", "tid": 35568, "ts": 11776013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bc80", "tid": 35568, "ts": 11776099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cb20", "tid": 35568, "ts": 11776185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bd50", "tid": 35568, "ts": 11776271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cd90", "tid": 35568, "ts": 11776357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66df70", "tid": 35568, "ts": 11776444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b870", "tid": 35568, "ts": 11776531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e2b0", "tid": 35568, "ts": 11776618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e520", "tid": 35568, "ts": 11776704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e380", "tid": 35568, "ts": 11776791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d9c0", "tid": 35568, "ts": 11776877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c160", "tid": 35568, "ts": 11776964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e1e0", "tid": 35568, "ts": 11777050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c570", "tid": 35568, "ts": 11777137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b940", "tid": 35568, "ts": 11777223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c7e0", "tid": 35568, "ts": 11777309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ce60", "tid": 35568, "ts": 11777395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66be20", "tid": 35568, "ts": 11777482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66da90", "tid": 35568, "ts": 11777567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e860", "tid": 35568, "ts": 11777653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d1a0", "tid": 35568, "ts": 11777739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668c90", "tid": 35568, "ts": 11777826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6686e0", "tid": 35568, "ts": 11777954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668540", "tid": 35568, "ts": 11778041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b390", "tid": 35568, "ts": 11778128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a9d0", "tid": 35568, "ts": 11778214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a1b0", "tid": 35568, "ts": 11778301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669990", "tid": 35568, "ts": 11778388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6698c0", "tid": 35568, "ts": 11778474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668950", "tid": 35568, "ts": 11778560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669170", "tid": 35568, "ts": 11778646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a830", "tid": 35568, "ts": 11778733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a760", "tid": 35568, "ts": 11778819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669580", "tid": 35568, "ts": 11778905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a4f0", "tid": 35568, "ts": 11778992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b2c0", "tid": 35568, "ts": 11779078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668e30", "tid": 35568, "ts": 11779164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669b30", "tid": 35568, "ts": 11779250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66aeb0", "tid": 35568, "ts": 11779336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669650", "tid": 35568, "ts": 11779422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b050", "tid": 35568, "ts": 11779508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668f00", "tid": 35568, "ts": 11779595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668a20", "tid": 35568, "ts": 11779681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669e70", "tid": 35568, "ts": 11779768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668af0", "tid": 35568, "ts": 11779854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b120", "tid": 35568, "ts": 11779940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669da0", "tid": 35568, "ts": 11780026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66aaa0", "tid": 35568, "ts": 11780112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668200", "tid": 35568, "ts": 11780198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6693e0", "tid": 35568, "ts": 11780284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ade0", "tid": 35568, "ts": 11780370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668fd0", "tid": 35568, "ts": 11780456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b460", "tid": 35568, "ts": 11780542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6669a0", "tid": 35568, "ts": 11780628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665a30", "tid": 35568, "ts": 11780715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666730", "tid": 35568, "ts": 11780801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665890", "tid": 35568, "ts": 11780887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6656f0", "tid": 35568, "ts": 11780974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665550", "tid": 35568, "ts": 11781061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6652e0", "tid": 35568, "ts": 11781147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664fa0", "tid": 35568, "ts": 11781232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666800", "tid": 35568, "ts": 11781322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664e00", "tid": 35568, "ts": 11781409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667df0", "tid": 35568, "ts": 11781495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666180", "tid": 35568, "ts": 11781582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6660b0", "tid": 35568, "ts": 11781668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6663f0", "tid": 35568, "ts": 11781754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665140", "tid": 35568, "ts": 11781841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6670f0", "tid": 35568, "ts": 11781927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666c10", "tid": 35568, "ts": 11782013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667b80", "tid": 35568, "ts": 11782099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665f10", "tid": 35568, "ts": 11782186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666f50", "tid": 35568, "ts": 11782273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667910", "tid": 35568, "ts": 11782360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666320", "tid": 35568, "ts": 11782446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665e40", "tid": 35568, "ts": 11782545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6679e0", "tid": 35568, "ts": 11782678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6675d0", "tid": 35568, "ts": 11782766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667f90", "tid": 35568, "ts": 11782853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667020", "tid": 35568, "ts": 11782940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667d20", "tid": 35568, "ts": 11783027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6671c0", "tid": 35568, "ts": 11783113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6676a0", "tid": 35568, "ts": 11783205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667290", "tid": 35568, "ts": 11783292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667ec0", "tid": 35568, "ts": 11783378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6649f0", "tid": 35568, "ts": 11783464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6634d0", "tid": 35568, "ts": 11783551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664440", "tid": 35568, "ts": 11783637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663330", "tid": 35568, "ts": 11783723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664370", "tid": 35568, "ts": 11783809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6628a0", "tid": 35568, "ts": 11783895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6638e0", "tid": 35568, "ts": 11783983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664100", "tid": 35568, "ts": 11784069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6627d0", "tid": 35568, "ts": 11784154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662700", "tid": 35568, "ts": 11784241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663740", "tid": 35568, "ts": 11784327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6642a0", "tid": 35568, "ts": 11784413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662cb0", "tid": 35568, "ts": 11784500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663f60", "tid": 35568, "ts": 11784587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663e90", "tid": 35568, "ts": 11784675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662490", "tid": 35568, "ts": 11784805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663b50", "tid": 35568, "ts": 11784940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6623c0", "tid": 35568, "ts": 11785056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662b10", "tid": 35568, "ts": 11785184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6635a0", "tid": 35568, "ts": 11785329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662be0", "tid": 35568, "ts": 11785447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661c70", "tid": 35568, "ts": 11785593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662080", "tid": 35568, "ts": 11785710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661fb0", "tid": 35568, "ts": 11785828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663810", "tid": 35568, "ts": 11785956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663cf0", "tid": 35568, "ts": 11786090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663c20", "tid": 35568, "ts": 11786204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664780", "tid": 35568, "ts": 11786332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663dc0", "tid": 35568, "ts": 11786465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662220", "tid": 35568, "ts": 11786581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663a80", "tid": 35568, "ts": 11786726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6641d0", "tid": 35568, "ts": 11786844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fa50", "tid": 35568, "ts": 11786973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f4a0", "tid": 35568, "ts": 11787090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f710", "tid": 35568, "ts": 11787221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f160", "tid": 35568, "ts": 11787336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e940", "tid": 35568, "ts": 11787422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660f70", "tid": 35568, "ts": 11787508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ec80", "tid": 35568, "ts": 11787594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660ea0", "tid": 35568, "ts": 11787680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660750", "tid": 35568, "ts": 11787765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f570", "tid": 35568, "ts": 11787852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661110", "tid": 35568, "ts": 11787938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e870", "tid": 35568, "ts": 11788023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ebb0", "tid": 35568, "ts": 11788109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6605b0", "tid": 35568, "ts": 11788196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660000", "tid": 35568, "ts": 11788281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660c30", "tid": 35568, "ts": 11788367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6600d0", "tid": 35568, "ts": 11788453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660410", "tid": 35568, "ts": 11788539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ea10", "tid": 35568, "ts": 11788626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6615f0", "tid": 35568, "ts": 11788712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6604e0", "tid": 35568, "ts": 11788798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ff30", "tid": 35568, "ts": 11788884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660340", "tid": 35568, "ts": 11788970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f3d0", "tid": 35568, "ts": 11789055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fe60", "tid": 35568, "ts": 11789141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e600", "tid": 35568, "ts": 11789227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6616c0", "tid": 35568, "ts": 11789313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661520", "tid": 35568, "ts": 11789400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e530", "tid": 35568, "ts": 11789486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660270", "tid": 35568, "ts": 11789572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6608f0", "tid": 35568, "ts": 11789658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660820", "tid": 35568, "ts": 11789744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e050", "tid": 35568, "ts": 11789830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65dc40", "tid": 35568, "ts": 11789917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d9d0", "tid": 35568, "ts": 11790003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d830", "tid": 35568, "ts": 11790089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cb30", "tid": 35568, "ts": 11790175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ca60", "tid": 35568, "ts": 11790261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c8c0", "tid": 35568, "ts": 11790348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c720", "tid": 35568, "ts": 11790435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cc00", "tid": 35568, "ts": 11790521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d690", "tid": 35568, "ts": 11790608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65df80", "tid": 35568, "ts": 11790694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65baf0", "tid": 35568, "ts": 11790780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c0a0", "tid": 35568, "ts": 11790866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d4f0", "tid": 35568, "ts": 11790951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b880", "tid": 35568, "ts": 11791038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bd60", "tid": 35568, "ts": 11791123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bc90", "tid": 35568, "ts": 11791210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ce70", "tid": 35568, "ts": 11791297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d350", "tid": 35568, "ts": 11791384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b950", "tid": 35568, "ts": 11791470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ccd0", "tid": 35568, "ts": 11791557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c650", "tid": 35568, "ts": 11791643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b540", "tid": 35568, "ts": 11791729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b470", "tid": 35568, "ts": 11791816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b2d0", "tid": 35568, "ts": 11791902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65dde0", "tid": 35568, "ts": 11791988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bfd0", "tid": 35568, "ts": 11792074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65daa0", "tid": 35568, "ts": 11792160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d010", "tid": 35568, "ts": 11792246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b3a0", "tid": 35568, "ts": 11792331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e2c0", "tid": 35568, "ts": 11792417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e390", "tid": 35568, "ts": 11792503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658620", "tid": 35568, "ts": 11792588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658480", "tid": 35568, "ts": 11792675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658bd0", "tid": 35568, "ts": 11792761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657e00", "tid": 35568, "ts": 11792847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ab80", "tid": 35568, "ts": 11792933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658ca0", "tid": 35568, "ts": 11793020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a910", "tid": 35568, "ts": 11793106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a290", "tid": 35568, "ts": 11793191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a1c0", "tid": 35568, "ts": 11793278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659f50", "tid": 35568, "ts": 11793364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a840", "tid": 35568, "ts": 11793451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659c10", "tid": 35568, "ts": 11793603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659730", "tid": 35568, "ts": 11793690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65aab0", "tid": 35568, "ts": 11793776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65af90", "tid": 35568, "ts": 11793868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659ce0", "tid": 35568, "ts": 11793977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659320", "tid": 35568, "ts": 11794090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659250", "tid": 35568, "ts": 11794191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658140", "tid": 35568, "ts": 11794302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658210", "tid": 35568, "ts": 11794400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659e80", "tid": 35568, "ts": 11794487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65aec0", "tid": 35568, "ts": 11794586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658890", "tid": 35568, "ts": 11794676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6593f0", "tid": 35568, "ts": 11794800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a020", "tid": 35568, "ts": 11794947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658e40", "tid": 35568, "ts": 11795089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a360", "tid": 35568, "ts": 11795191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658960", "tid": 35568, "ts": 11795288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65adf0", "tid": 35568, "ts": 11795375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ac50", "tid": 35568, "ts": 11795462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658070", "tid": 35568, "ts": 11795549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659b40", "tid": 35568, "ts": 11795661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654fb0", "tid": 35568, "ts": 11795748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654a00", "tid": 35568, "ts": 11795835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657c60", "tid": 35568, "ts": 11795921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6579f0", "tid": 35568, "ts": 11796008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657780", "tid": 35568, "ts": 11796094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657510", "tid": 35568, "ts": 11796180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656e90", "tid": 35568, "ts": 11796266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657370", "tid": 35568, "ts": 11796352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656330", "tid": 35568, "ts": 11796439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6571d0", "tid": 35568, "ts": 11796525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656cf0", "tid": 35568, "ts": 11796611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656740", "tid": 35568, "ts": 11796697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654ee0", "tid": 35568, "ts": 11796784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656dc0", "tid": 35568, "ts": 11796870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655a40", "tid": 35568, "ts": 11796956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6564d0", "tid": 35568, "ts": 11797041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656400", "tid": 35568, "ts": 11797127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6553c0", "tid": 35568, "ts": 11797227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657100", "tid": 35568, "ts": 11797331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657030", "tid": 35568, "ts": 11797417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655e50", "tid": 35568, "ts": 11797504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6565a0", "tid": 35568, "ts": 11797589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657ac0", "tid": 35568, "ts": 11797675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654d40", "tid": 35568, "ts": 11797760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6572a0", "tid": 35568, "ts": 11797846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655970", "tid": 35568, "ts": 11797932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655be0", "tid": 35568, "ts": 11798019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655150", "tid": 35568, "ts": 11798104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6552f0", "tid": 35568, "ts": 11798190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6557d0", "tid": 35568, "ts": 11798277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6569b0", "tid": 35568, "ts": 11798364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654ad0", "tid": 35568, "ts": 11798450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651fc0", "tid": 35568, "ts": 11798536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651e20", "tid": 35568, "ts": 11798623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654040", "tid": 35568, "ts": 11798708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653d00", "tid": 35568, "ts": 11798795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6538f0", "tid": 35568, "ts": 11798881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653680", "tid": 35568, "ts": 11798967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651c80", "tid": 35568, "ts": 11799054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651600", "tid": 35568, "ts": 11799140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651530", "tid": 35568, "ts": 11799227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652f30", "tid": 35568, "ts": 11799313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652b20", "tid": 35568, "ts": 11799400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6531a0", "tid": 35568, "ts": 11799486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6530d0", "tid": 35568, "ts": 11799572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653b60", "tid": 35568, "ts": 11799658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651d50", "tid": 35568, "ts": 11799744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652090", "tid": 35568, "ts": 11799829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6546c0", "tid": 35568, "ts": 11799915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6539c0", "tid": 35568, "ts": 11800001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653ea0", "tid": 35568, "ts": 11800087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654860", "tid": 35568, "ts": 11800173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653a90", "tid": 35568, "ts": 11800259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652cc0", "tid": 35568, "ts": 11800346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654790", "tid": 35568, "ts": 11800432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6541e0", "tid": 35568, "ts": 11800517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651870", "tid": 35568, "ts": 11800603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653270", "tid": 35568, "ts": 11800689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6524a0", "tid": 35568, "ts": 11800775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654450", "tid": 35568, "ts": 11800861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652e60", "tid": 35568, "ts": 11800947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652640", "tid": 35568, "ts": 11801033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654110", "tid": 35568, "ts": 11801119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652bf0", "tid": 35568, "ts": 11801205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b501c0", "tid": 35568, "ts": 11801304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e2e0", "tid": 35568, "ts": 11801391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b500f0", "tid": 35568, "ts": 11801478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dfa0", "tid": 35568, "ts": 11801564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f4c0", "tid": 35568, "ts": 11801651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50360", "tid": 35568, "ts": 11801737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fce0", "tid": 35568, "ts": 11801823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f250", "tid": 35568, "ts": 11801909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fe80", "tid": 35568, "ts": 11801995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e7c0", "tid": 35568, "ts": 11802080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50b80", "tid": 35568, "ts": 11802166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ed70", "tid": 35568, "ts": 11802252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4efe0", "tid": 35568, "ts": 11802337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e620", "tid": 35568, "ts": 11802423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50ec0", "tid": 35568, "ts": 11802509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fb40", "tid": 35568, "ts": 11802594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4de00", "tid": 35568, "ts": 11802681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e550", "tid": 35568, "ts": 11802767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e3b0", "tid": 35568, "ts": 11802853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f9a0", "tid": 35568, "ts": 11802940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50d20", "tid": 35568, "ts": 11803026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ea30", "tid": 35568, "ts": 11803113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f660", "tid": 35568, "ts": 11803199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50ab0", "tid": 35568, "ts": 11803286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50290", "tid": 35568, "ts": 11803372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ff50", "tid": 35568, "ts": 11803458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f0b0", "tid": 35568, "ts": 11803545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ebd0", "tid": 35568, "ts": 11803630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e890", "tid": 35568, "ts": 11803716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50770", "tid": 35568, "ts": 11803802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f590", "tid": 35568, "ts": 11803948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4afb0", "tid": 35568, "ts": 11804035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dc60", "tid": 35568, "ts": 11804122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b8a0", "tid": 35568, "ts": 11804208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ccf0", "tid": 35568, "ts": 11804295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d440", "tid": 35568, "ts": 11804381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d920", "tid": 35568, "ts": 11804467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d850", "tid": 35568, "ts": 11804554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ad40", "tid": 35568, "ts": 11804639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b970", "tid": 35568, "ts": 11804725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c8e0", "tid": 35568, "ts": 11804812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c400", "tid": 35568, "ts": 11804897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c330", "tid": 35568, "ts": 11804984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d6b0", "tid": 35568, "ts": 11805070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d510", "tid": 35568, "ts": 11805156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d9f0", "tid": 35568, "ts": 11805241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b490", "tid": 35568, "ts": 11805327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cc20", "tid": 35568, "ts": 11805413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c0c0", "tid": 35568, "ts": 11805499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ac70", "tid": 35568, "ts": 11805585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aba0", "tid": 35568, "ts": 11805671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c260", "tid": 35568, "ts": 11805757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d5e0", "tid": 35568, "ts": 11805849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c190", "tid": 35568, "ts": 11805935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cdc0", "tid": 35568, "ts": 11806021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b2f0", "tid": 35568, "ts": 11806107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ba40", "tid": 35568, "ts": 11806193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d780", "tid": 35568, "ts": 11806279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aa00", "tid": 35568, "ts": 11806365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c4d0", "tid": 35568, "ts": 11806451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aad0", "tid": 35568, "ts": 11806537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b630", "tid": 35568, "ts": 11806623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c810", "tid": 35568, "ts": 11806709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48090", "tid": 35568, "ts": 11806795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a6c0", "tid": 35568, "ts": 11806880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a520", "tid": 35568, "ts": 11806967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a450", "tid": 35568, "ts": 11807053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b484a0", "tid": 35568, "ts": 11807139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47bb0", "tid": 35568, "ts": 11807225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49c30", "tid": 35568, "ts": 11807311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a040", "tid": 35568, "ts": 11807397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49a90", "tid": 35568, "ts": 11807484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b499c0", "tid": 35568, "ts": 11807571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48f30", "tid": 35568, "ts": 11807657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b488b0", "tid": 35568, "ts": 11807744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49820", "tid": 35568, "ts": 11807829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47ae0", "tid": 35568, "ts": 11807915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48300", "tid": 35568, "ts": 11808001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48d90", "tid": 35568, "ts": 11808087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b476d0", "tid": 35568, "ts": 11808173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48e60", "tid": 35568, "ts": 11808259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49270", "tid": 35568, "ts": 11808345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47940", "tid": 35568, "ts": 11808431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b483d0", "tid": 35568, "ts": 11808518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a5f0", "tid": 35568, "ts": 11808603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49d00", "tid": 35568, "ts": 11808689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47870", "tid": 35568, "ts": 11808775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48640", "tid": 35568, "ts": 11808861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47d50", "tid": 35568, "ts": 11808947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49ea0", "tid": 35568, "ts": 11809033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49000", "tid": 35568, "ts": 11809187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47600", "tid": 35568, "ts": 11809275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48b20", "tid": 35568, "ts": 11809361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49680", "tid": 35568, "ts": 11809447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a790", "tid": 35568, "ts": 11809533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45310", "tid": 35568, "ts": 11809619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45170", "tid": 35568, "ts": 11809705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44fd0", "tid": 35568, "ts": 11809791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45720", "tid": 35568, "ts": 11809877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45650", "tid": 35568, "ts": 11809963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44d60", "tid": 35568, "ts": 11810050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46b70", "tid": 35568, "ts": 11810135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46900", "tid": 35568, "ts": 11810221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46760", "tid": 35568, "ts": 11810309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44af0", "tid": 35568, "ts": 11810395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b465c0", "tid": 35568, "ts": 11810481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44950", "tid": 35568, "ts": 11810567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b460e0", "tid": 35568, "ts": 11810653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44610", "tid": 35568, "ts": 11810739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b461b0", "tid": 35568, "ts": 11810826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47460", "tid": 35568, "ts": 11810911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44470", "tid": 35568, "ts": 11810997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45f40", "tid": 35568, "ts": 11811083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b446e0", "tid": 35568, "ts": 11811169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b457f0", "tid": 35568, "ts": 11811254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46010", "tid": 35568, "ts": 11811341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b443a0", "tid": 35568, "ts": 11811427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45cd0", "tid": 35568, "ts": 11811513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46420", "tid": 35568, "ts": 11811600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47120", "tid": 35568, "ts": 11811686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46eb0", "tid": 35568, "ts": 11811773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45580", "tid": 35568, "ts": 11811859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46d10", "tid": 35568, "ts": 11811945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47050", "tid": 35568, "ts": 11812031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b469d0", "tid": 35568, "ts": 11812117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b447b0", "tid": 35568, "ts": 11812203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45a60", "tid": 35568, "ts": 11812289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41b00", "tid": 35568, "ts": 11812375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43ab0", "tid": 35568, "ts": 11812461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43c50", "tid": 35568, "ts": 11812548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43910", "tid": 35568, "ts": 11812634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43770", "tid": 35568, "ts": 11812720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42730", "tid": 35568, "ts": 11812806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b435d0", "tid": 35568, "ts": 11812892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43df0", "tid": 35568, "ts": 11812978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43360", "tid": 35568, "ts": 11813064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b424c0", "tid": 35568, "ts": 11813151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41070", "tid": 35568, "ts": 11813237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41480", "tid": 35568, "ts": 11813323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43290", "tid": 35568, "ts": 11813409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42320", "tid": 35568, "ts": 11813495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43500", "tid": 35568, "ts": 11813582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41960", "tid": 35568, "ts": 11813668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40e00", "tid": 35568, "ts": 11813754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b430f0", "tid": 35568, "ts": 11813840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42f50", "tid": 35568, "ts": 11813926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b417c0", "tid": 35568, "ts": 11814012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42db0", "tid": 35568, "ts": 11814098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43ec0", "tid": 35568, "ts": 11814185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40fa0", "tid": 35568, "ts": 11814271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42b40", "tid": 35568, "ts": 11814357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b428d0", "tid": 35568, "ts": 11814444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41f10", "tid": 35568, "ts": 11814529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42ce0", "tid": 35568, "ts": 11814617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b416f0", "tid": 35568, "ts": 11814703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42180", "tid": 35568, "ts": 11814789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43f90", "tid": 35568, "ts": 11814875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42800", "tid": 35568, "ts": 11814961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40d30", "tid": 35568, "ts": 11815048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f8e0", "tid": 35568, "ts": 11815135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f670", "tid": 35568, "ts": 11815221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e3c0", "tid": 35568, "ts": 11815308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40ac0", "tid": 35568, "ts": 11815394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e490", "tid": 35568, "ts": 11815480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40030", "tid": 35568, "ts": 11815566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40b90", "tid": 35568, "ts": 11815652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fe90", "tid": 35568, "ts": 11815738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b409f0", "tid": 35568, "ts": 11815824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f400", "tid": 35568, "ts": 11815911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40920", "tid": 35568, "ts": 11815997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40780", "tid": 35568, "ts": 11816083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b401d0", "tid": 35568, "ts": 11816168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b406b0", "tid": 35568, "ts": 11816254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3eb10", "tid": 35568, "ts": 11816340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ed80", "tid": 35568, "ts": 11816426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fb50", "tid": 35568, "ts": 11816512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3de10", "tid": 35568, "ts": 11816598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ef20", "tid": 35568, "ts": 11816684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ee50", "tid": 35568, "ts": 11816771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b405e0", "tid": 35568, "ts": 11816858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ea40", "tid": 35568, "ts": 11816944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d930", "tid": 35568, "ts": 11817030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fa80", "tid": 35568, "ts": 11817116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ebe0", "tid": 35568, "ts": 11817203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40510", "tid": 35568, "ts": 11817289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dd40", "tid": 35568, "ts": 11817375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b402a0", "tid": 35568, "ts": 11817461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3eff0", "tid": 35568, "ts": 11817547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dc70", "tid": 35568, "ts": 11817633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fdc0", "tid": 35568, "ts": 11817718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40370", "tid": 35568, "ts": 11817805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d790", "tid": 35568, "ts": 11817891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d5f0", "tid": 35568, "ts": 11817976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d450", "tid": 35568, "ts": 11818062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cd00", "tid": 35568, "ts": 11818148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c0d0", "tid": 35568, "ts": 11818241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bbf0", "tid": 35568, "ts": 11818328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b710", "tid": 35568, "ts": 11818413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b8b0", "tid": 35568, "ts": 11818499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3aae0", "tid": 35568, "ts": 11818585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c000", "tid": 35568, "ts": 11818671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a7a0", "tid": 35568, "ts": 11818758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ca90", "tid": 35568, "ts": 11818844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b4a0", "tid": 35568, "ts": 11818930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c9c0", "tid": 35568, "ts": 11819017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cc30", "tid": 35568, "ts": 11819103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c8f0", "tid": 35568, "ts": 11819189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b3d0", "tid": 35568, "ts": 11819276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c820", "tid": 35568, "ts": 11819362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b980", "tid": 35568, "ts": 11819448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a870", "tid": 35568, "ts": 11819534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d2b0", "tid": 35568, "ts": 11819620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c5b0", "tid": 35568, "ts": 11819706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cdd0", "tid": 35568, "ts": 11819792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a6d0", "tid": 35568, "ts": 11819879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c4e0", "tid": 35568, "ts": 11819965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d040", "tid": 35568, "ts": 11820051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b7e0", "tid": 35568, "ts": 11820137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ae20", "tid": 35568, "ts": 11820223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c340", "tid": 35568, "ts": 11820308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c680", "tid": 35568, "ts": 11820395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c410", "tid": 35568, "ts": 11820481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ad50", "tid": 35568, "ts": 11820566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37540", "tid": 35568, "ts": 11820653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b372d0", "tid": 35568, "ts": 11820740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37610", "tid": 35568, "ts": 11820827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39830", "tid": 35568, "ts": 11820913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39760", "tid": 35568, "ts": 11821000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37200", "tid": 35568, "ts": 11821088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37bc0", "tid": 35568, "ts": 11821184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b395c0", "tid": 35568, "ts": 11821271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38720", "tid": 35568, "ts": 11821356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b380a0", "tid": 35568, "ts": 11821442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37130", "tid": 35568, "ts": 11821528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b391b0", "tid": 35568, "ts": 11821613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39350", "tid": 35568, "ts": 11821699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39d10", "tid": 35568, "ts": 11821785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a390", "tid": 35568, "ts": 11821871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39010", "tid": 35568, "ts": 11821957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39f80", "tid": 35568, "ts": 11822070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39c40", "tid": 35568, "ts": 11822156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b377b0", "tid": 35568, "ts": 11822242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38310", "tid": 35568, "ts": 11822328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38e70", "tid": 35568, "ts": 11822414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39de0", "tid": 35568, "ts": 11822500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b376e0", "tid": 35568, "ts": 11822586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b394f0", "tid": 35568, "ts": 11822672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38cd0", "tid": 35568, "ts": 11822758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a2c0", "tid": 35568, "ts": 11822844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38650", "tid": 35568, "ts": 11822929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38c00", "tid": 35568, "ts": 11823015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38b30", "tid": 35568, "ts": 11823101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37d60", "tid": 35568, "ts": 11823187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b384b0", "tid": 35568, "ts": 11823273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37880", "tid": 35568, "ts": 11823358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36ec0", "tid": 35568, "ts": 11823444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35320", "tid": 35568, "ts": 11823531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35250", "tid": 35568, "ts": 11823616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35180", "tid": 35568, "ts": 11823702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34ca0", "tid": 35568, "ts": 11823788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35590", "tid": 35568, "ts": 11823875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34960", "tid": 35568, "ts": 11823961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36ab0", "tid": 35568, "ts": 11824047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36910", "tid": 35568, "ts": 11824133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34140", "tid": 35568, "ts": 11824219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b366a0", "tid": 35568, "ts": 11824304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33ed0", "tid": 35568, "ts": 11824390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36430", "tid": 35568, "ts": 11824475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35f50", "tid": 35568, "ts": 11824561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34fe0", "tid": 35568, "ts": 11824646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36360", "tid": 35568, "ts": 11824802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35db0", "tid": 35568, "ts": 11824944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35730", "tid": 35568, "ts": 11825035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b347c0", "tid": 35568, "ts": 11825123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34f10", "tid": 35568, "ts": 11825210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34070", "tid": 35568, "ts": 11825297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34890", "tid": 35568, "ts": 11825384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35ce0", "tid": 35568, "ts": 11825471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b358d0", "tid": 35568, "ts": 11825557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33d30", "tid": 35568, "ts": 11825644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35c10", "tid": 35568, "ts": 11825730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36c50", "tid": 35568, "ts": 11825816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36290", "tid": 35568, "ts": 11825902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36500", "tid": 35568, "ts": 11825988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36020", "tid": 35568, "ts": 11826074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36f90", "tid": 35568, "ts": 11826160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34620", "tid": 35568, "ts": 11826246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33920", "tid": 35568, "ts": 11826332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33510", "tid": 35568, "ts": 11826418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b331d0", "tid": 35568, "ts": 11826505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33030", "tid": 35568, "ts": 11826591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b325a0", "tid": 35568, "ts": 11826676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31ff0", "tid": 35568, "ts": 11826763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b324d0", "tid": 35568, "ts": 11826849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32810", "tid": 35568, "ts": 11826935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31f20", "tid": 35568, "ts": 11827022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30fb0", "tid": 35568, "ts": 11827133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31d80", "tid": 35568, "ts": 11827220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33100", "tid": 35568, "ts": 11827306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b336b0", "tid": 35568, "ts": 11827391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b317d0", "tid": 35568, "ts": 11827477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30ee0", "tid": 35568, "ts": 11827564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31e50", "tid": 35568, "ts": 11827650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30930", "tid": 35568, "ts": 11827737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b312f0", "tid": 35568, "ts": 11827823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31cb0", "tid": 35568, "ts": 11827909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32190", "tid": 35568, "ts": 11827995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32740", "tid": 35568, "ts": 11828081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32b50", "tid": 35568, "ts": 11828167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31220", "tid": 35568, "ts": 11828254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30e10", "tid": 35568, "ts": 11828340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32260", "tid": 35568, "ts": 11828426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32dc0", "tid": 35568, "ts": 11828513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32cf0", "tid": 35568, "ts": 11828599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33370", "tid": 35568, "ts": 11828685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32a80", "tid": 35568, "ts": 11828771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b332a0", "tid": 35568, "ts": 11828857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32670", "tid": 35568, "ts": 11828943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31a40", "tid": 35568, "ts": 11829029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2da10", "tid": 35568, "ts": 11829115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d6d0", "tid": 35568, "ts": 11829201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30040", "tid": 35568, "ts": 11829287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d600", "tid": 35568, "ts": 11829373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2def0", "tid": 35568, "ts": 11829459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e230", "tid": 35568, "ts": 11829545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30860", "tid": 35568, "ts": 11829631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e4a0", "tid": 35568, "ts": 11829717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b306c0", "tid": 35568, "ts": 11829804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d530", "tid": 35568, "ts": 11829890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f680", "tid": 35568, "ts": 11829976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b305f0", "tid": 35568, "ts": 11830061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f4e0", "tid": 35568, "ts": 11830147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f750", "tid": 35568, "ts": 11830232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f000", "tid": 35568, "ts": 11830319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f270", "tid": 35568, "ts": 11830405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f410", "tid": 35568, "ts": 11830491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fc30", "tid": 35568, "ts": 11830577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fd00", "tid": 35568, "ts": 11830663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e8b0", "tid": 35568, "ts": 11830756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ed90", "tid": 35568, "ts": 11830842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30380", "tid": 35568, "ts": 11830928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f8f0", "tid": 35568, "ts": 11831014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e980", "tid": 35568, "ts": 11831100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dd50", "tid": 35568, "ts": 11831186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f820", "tid": 35568, "ts": 11831273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e090", "tid": 35568, "ts": 11831359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e7e0", "tid": 35568, "ts": 11831445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ee60", "tid": 35568, "ts": 11831531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e3d0", "tid": 35568, "ts": 11831617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ea50", "tid": 35568, "ts": 11831703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ecc0", "tid": 35568, "ts": 11831789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ae30", "tid": 35568, "ts": 11831875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b7f0", "tid": 35568, "ts": 11831961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2aa20", "tid": 35568, "ts": 11832048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a540", "tid": 35568, "ts": 11832133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d120", "tid": 35568, "ts": 11832218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c9d0", "tid": 35568, "ts": 11832305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a470", "tid": 35568, "ts": 11832391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c0e0", "tid": 35568, "ts": 11832477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b720", "tid": 35568, "ts": 11832563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bcd0", "tid": 35568, "ts": 11832649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cf80", "tid": 35568, "ts": 11832735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cc40", "tid": 35568, "ts": 11832820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c1b0", "tid": 35568, "ts": 11832907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a2d0", "tid": 35568, "ts": 11832993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c4f0", "tid": 35568, "ts": 11833080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ad60", "tid": 35568, "ts": 11833166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2af00", "tid": 35568, "ts": 11833253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bf40", "tid": 35568, "ts": 11833338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b170", "tid": 35568, "ts": 11833425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c280", "tid": 35568, "ts": 11833511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cde0", "tid": 35568, "ts": 11833597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bb30", "tid": 35568, "ts": 11833683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b4b0", "tid": 35568, "ts": 11833770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2be70", "tid": 35568, "ts": 11833856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ceb0", "tid": 35568, "ts": 11833943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d460", "tid": 35568, "ts": 11834028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c830", "tid": 35568, "ts": 11834115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b240", "tid": 35568, "ts": 11834200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d2c0", "tid": 35568, "ts": 11834286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a130", "tid": 35568, "ts": 11834372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cb70", "tid": 35568, "ts": 11834458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c760", "tid": 35568, "ts": 11834544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27d70", "tid": 35568, "ts": 11834630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b277c0", "tid": 35568, "ts": 11834716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27480", "tid": 35568, "ts": 11834802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27210", "tid": 35568, "ts": 11834888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26ed0", "tid": 35568, "ts": 11834974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29d20", "tid": 35568, "ts": 11835061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29b80", "tid": 35568, "ts": 11835147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27bd0", "tid": 35568, "ts": 11835234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29770", "tid": 35568, "ts": 11835321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b283f0", "tid": 35568, "ts": 11835407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29290", "tid": 35568, "ts": 11835493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29020", "tid": 35568, "ts": 11835579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28180", "tid": 35568, "ts": 11835665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27140", "tid": 35568, "ts": 11835751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27fe0", "tid": 35568, "ts": 11835837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28ce0", "tid": 35568, "ts": 11835923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27a30", "tid": 35568, "ts": 11836009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27070", "tid": 35568, "ts": 11836095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28a70", "tid": 35568, "ts": 11836181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26e00", "tid": 35568, "ts": 11836267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b289a0", "tid": 35568, "ts": 11836353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29360", "tid": 35568, "ts": 11836438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29910", "tid": 35568, "ts": 11836525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29500", "tid": 35568, "ts": 11836611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28c10", "tid": 35568, "ts": 11836697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a060", "tid": 35568, "ts": 11836783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b288d0", "tid": 35568, "ts": 11836869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28660", "tid": 35568, "ts": 11836956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28e80", "tid": 35568, "ts": 11837041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b290f0", "tid": 35568, "ts": 11837128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27ca0", "tid": 35568, "ts": 11837214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29ec0", "tid": 35568, "ts": 11837301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23a00", "tid": 35568, "ts": 11837386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26920", "tid": 35568, "ts": 11837472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24e50", "tid": 35568, "ts": 11837559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26440", "tid": 35568, "ts": 11837644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24a40", "tid": 35568, "ts": 11837730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24d80", "tid": 35568, "ts": 11837816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24700", "tid": 35568, "ts": 11837903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24630", "tid": 35568, "ts": 11837989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26780", "tid": 35568, "ts": 11838075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b248a0", "tid": 35568, "ts": 11838160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b258e0", "tid": 35568, "ts": 11838247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26370", "tid": 35568, "ts": 11838333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25740", "tid": 35568, "ts": 11838419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25c20", "tid": 35568, "ts": 11838505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b243c0", "tid": 35568, "ts": 11838591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23fb0", "tid": 35568, "ts": 11838677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25400", "tid": 35568, "ts": 11838763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25260", "tid": 35568, "ts": 11838849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b266b0", "tid": 35568, "ts": 11838935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24080", "tid": 35568, "ts": 11839021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24560", "tid": 35568, "ts": 11839107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24150", "tid": 35568, "ts": 11839193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24cb0", "tid": 35568, "ts": 11839280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24be0", "tid": 35568, "ts": 11839366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25190", "tid": 35568, "ts": 11839452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b250c0", "tid": 35568, "ts": 11839538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24220", "tid": 35568, "ts": 11839624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25e90", "tid": 35568, "ts": 11839711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24ff0", "tid": 35568, "ts": 11839797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26b90", "tid": 35568, "ts": 11839882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23d40", "tid": 35568, "ts": 11839968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26ac0", "tid": 35568, "ts": 11840054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21090", "tid": 35568, "ts": 11840140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20bb0", "tid": 35568, "ts": 11840226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b206d0", "tid": 35568, "ts": 11840313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22ea0", "tid": 35568, "ts": 11840492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22dd0", "tid": 35568, "ts": 11840635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b235f0", "tid": 35568, "ts": 11840728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23450", "tid": 35568, "ts": 11840820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23790", "tid": 35568, "ts": 11840923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b229c0", "tid": 35568, "ts": 11841024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b214a0", "tid": 35568, "ts": 11841148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20a10", "tid": 35568, "ts": 11841280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22680", "tid": 35568, "ts": 11841377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20c80", "tid": 35568, "ts": 11841474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21230", "tid": 35568, "ts": 11841572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22000", "tid": 35568, "ts": 11841670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21bf0", "tid": 35568, "ts": 11841804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22c30", "tid": 35568, "ts": 11841932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b224e0", "tid": 35568, "ts": 11842018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21e60", "tid": 35568, "ts": 11842107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b218b0", "tid": 35568, "ts": 11842224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b236c0", "tid": 35568, "ts": 11842311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22410", "tid": 35568, "ts": 11842461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23380", "tid": 35568, "ts": 11842616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21cc0", "tid": 35568, "ts": 11842730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21a50", "tid": 35568, "ts": 11842815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21570", "tid": 35568, "ts": 11842902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b217e0", "tid": 35568, "ts": 11842989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b232b0", "tid": 35568, "ts": 11843075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21710", "tid": 35568, "ts": 11843161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b221a0", "tid": 35568, "ts": 11843247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23110", "tid": 35568, "ts": 11843333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21d90", "tid": 35568, "ts": 11843419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e240", "tid": 35568, "ts": 11843505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d950", "tid": 35568, "ts": 11843591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d540", "tid": 35568, "ts": 11843677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d7b0", "tid": 35568, "ts": 11843788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e310", "tid": 35568, "ts": 11843874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d200", "tid": 35568, "ts": 11843961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20390", "tid": 35568, "ts": 11844049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ff80", "tid": 35568, "ts": 11846567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f4f0", "tid": 35568, "ts": 11846741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f420", "tid": 35568, "ts": 11846869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e650", "tid": 35568, "ts": 11846988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f280", "tid": 35568, "ts": 11847101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fd10", "tid": 35568, "ts": 11847208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e170", "tid": 35568, "ts": 11847312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f9d0", "tid": 35568, "ts": 11847413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fc40", "tid": 35568, "ts": 11847510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b202c0", "tid": 35568, "ts": 11847606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f1b0", "tid": 35568, "ts": 11847700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e0a0", "tid": 35568, "ts": 11847794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d6e0", "tid": 35568, "ts": 11847887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e4b0", "tid": 35568, "ts": 11847980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b201f0", "tid": 35568, "ts": 11848071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e990", "tid": 35568, "ts": 11848162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f0e0", "tid": 35568, "ts": 11848252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20050", "tid": 35568, "ts": 11848342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1eda0", "tid": 35568, "ts": 11848432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e8c0", "tid": 35568, "ts": 11848522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fb70", "tid": 35568, "ts": 11848611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d470", "tid": 35568, "ts": 11848736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ef40", "tid": 35568, "ts": 11848827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f760", "tid": 35568, "ts": 11848915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1faa0", "tid": 35568, "ts": 11849002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b4c0", "tid": 35568, "ts": 11849114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b0b0", "tid": 35568, "ts": 11849201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1afe0", "tid": 35568, "ts": 11849288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a890", "tid": 35568, "ts": 11849376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b8d0", "tid": 35568, "ts": 11849462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ad70", "tid": 35568, "ts": 11849549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1be80", "tid": 35568, "ts": 11849637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b660", "tid": 35568, "ts": 11849724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19fa0", "tid": 35568, "ts": 11849810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bce0", "tid": 35568, "ts": 11849897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cf90", "tid": 35568, "ts": 11849996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a620", "tid": 35568, "ts": 11850117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19e00", "tid": 35568, "ts": 11850205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b730", "tid": 35568, "ts": 11850328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cd20", "tid": 35568, "ts": 11850426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1abd0", "tid": 35568, "ts": 11850512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a7c0", "tid": 35568, "ts": 11850598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b320", "tid": 35568, "ts": 11850684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ba70", "tid": 35568, "ts": 11850771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b3f0", "tid": 35568, "ts": 11850858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1af10", "tid": 35568, "ts": 11850943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cb80", "tid": 35568, "ts": 11851029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19d30", "tid": 35568, "ts": 11851116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b250", "tid": 35568, "ts": 11851202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a2e0", "tid": 35568, "ts": 11851288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bdb0", "tid": 35568, "ts": 11851373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1aa30", "tid": 35568, "ts": 11851459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cec0", "tid": 35568, "ts": 11851545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d060", "tid": 35568, "ts": 11851631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b180", "tid": 35568, "ts": 11851718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c6a0", "tid": 35568, "ts": 11851805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c910", "tid": 35568, "ts": 11851893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b184d0", "tid": 35568, "ts": 11851979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b180c0", "tid": 35568, "ts": 11852066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18190", "tid": 35568, "ts": 11852152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17970", "tid": 35568, "ts": 11852239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b173c0", "tid": 35568, "ts": 11852326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b172f0", "tid": 35568, "ts": 11852412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16ee0", "tid": 35568, "ts": 11852498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b195e0", "tid": 35568, "ts": 11852584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19440", "tid": 35568, "ts": 11852670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16e10", "tid": 35568, "ts": 11852756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19370", "tid": 35568, "ts": 11852842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17f20", "tid": 35568, "ts": 11852929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16c70", "tid": 35568, "ts": 11853015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16a00", "tid": 35568, "ts": 11853102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19b90", "tid": 35568, "ts": 11853189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18740", "tid": 35568, "ts": 11853276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b178a0", "tid": 35568, "ts": 11853362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17e50", "tid": 35568, "ts": 11853448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16930", "tid": 35568, "ts": 11853535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17700", "tid": 35568, "ts": 11853621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17080", "tid": 35568, "ts": 11853707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17560", "tid": 35568, "ts": 11853793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19920", "tid": 35568, "ts": 11853879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18dc0", "tid": 35568, "ts": 11853966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18cf0", "tid": 35568, "ts": 11854051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16ad0", "tid": 35568, "ts": 11854138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18c20", "tid": 35568, "ts": 11854224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19100", "tid": 35568, "ts": 11854311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16fb0", "tid": 35568, "ts": 11854397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b185a0", "tid": 35568, "ts": 11854483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17150", "tid": 35568, "ts": 11854569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16d40", "tid": 35568, "ts": 11854655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14e60", "tid": 35568, "ts": 11854741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14d90", "tid": 35568, "ts": 11854827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14cc0", "tid": 35568, "ts": 11854913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14b20", "tid": 35568, "ts": 11854999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b148b0", "tid": 35568, "ts": 11855086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15340", "tid": 35568, "ts": 11855173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14710", "tid": 35568, "ts": 11855260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14640", "tid": 35568, "ts": 11855346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15270", "tid": 35568, "ts": 11855433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b150d0", "tid": 35568, "ts": 11855519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15680", "tid": 35568, "ts": 11855605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14300", "tid": 35568, "ts": 11855691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13530", "tid": 35568, "ts": 11855776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b155b0", "tid": 35568, "ts": 11855863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15c30", "tid": 35568, "ts": 11855951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14160", "tid": 35568, "ts": 11856111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b166c0", "tid": 35568, "ts": 11856230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13e20", "tid": 35568, "ts": 11856319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14f30", "tid": 35568, "ts": 11856408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13870", "tid": 35568, "ts": 11856497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16520", "tid": 35568, "ts": 11856588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16450", "tid": 35568, "ts": 11856678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b151a0", "tid": 35568, "ts": 11856767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14980", "tid": 35568, "ts": 11856856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15f70", "tid": 35568, "ts": 11856959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16040", "tid": 35568, "ts": 11857048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b161e0", "tid": 35568, "ts": 11857138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13bb0", "tid": 35568, "ts": 11857226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13a10", "tid": 35568, "ts": 11857315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b143d0", "tid": 35568, "ts": 11857403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b162b0", "tid": 35568, "ts": 11857493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13fc0", "tid": 35568, "ts": 11857582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12420", "tid": 35568, "ts": 11857671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12280", "tid": 35568, "ts": 11857760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13460", "tid": 35568, "ts": 11857849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11310", "tid": 35568, "ts": 11857937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13390", "tid": 35568, "ts": 11858026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b110a0", "tid": 35568, "ts": 11858116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11da0", "tid": 35568, "ts": 11858204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11cd0", "tid": 35568, "ts": 11858293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10610", "tid": 35568, "ts": 11858382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10c90", "tid": 35568, "ts": 11858471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11580", "tid": 35568, "ts": 11858560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12b70", "tid": 35568, "ts": 11858648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12aa0", "tid": 35568, "ts": 11858738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b121b0", "tid": 35568, "ts": 11858827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10bc0", "tid": 35568, "ts": 11858925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13050", "tid": 35568, "ts": 11859011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b129d0", "tid": 35568, "ts": 11859098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11c00", "tid": 35568, "ts": 11859183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b125c0", "tid": 35568, "ts": 11859270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11b30", "tid": 35568, "ts": 11859357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b117f0", "tid": 35568, "ts": 11859444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12c40", "tid": 35568, "ts": 11859532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10fd0", "tid": 35568, "ts": 11859619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12010", "tid": 35568, "ts": 11859716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11170", "tid": 35568, "ts": 11859803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10540", "tid": 35568, "ts": 11859890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12830", "tid": 35568, "ts": 11859975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10130", "tid": 35568, "ts": 11860062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10200", "tid": 35568, "ts": 11860147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12760", "tid": 35568, "ts": 11860234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12900", "tid": 35568, "ts": 11860320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11990", "tid": 35568, "ts": 11860406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea200", "tid": 35568, "ts": 11860504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc360", "tid": 35568, "ts": 11860592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09deda0", "tid": 35568, "ts": 11860678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de990", "tid": 35568, "ts": 11860764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df350", "tid": 35568, "ts": 11860850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cd70", "tid": 35568, "ts": 11860936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ca30", "tid": 35568, "ts": 11861022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e6a0", "tid": 35568, "ts": 11861108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48dc10", "tid": 35568, "ts": 11861194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f2d0", "tid": 35568, "ts": 11861280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c7c0", "tid": 35568, "ts": 11861366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48db40", "tid": 35568, "ts": 11861452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48da70", "tid": 35568, "ts": 11861538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f060", "tid": 35568, "ts": 11861624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48eec0", "tid": 35568, "ts": 11861710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c620", "tid": 35568, "ts": 11861796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e500", "tid": 35568, "ts": 11861882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d9a0", "tid": 35568, "ts": 11861969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48eab0", "tid": 35568, "ts": 11862055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cf10", "tid": 35568, "ts": 11862141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e290", "tid": 35568, "ts": 11862226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ec50", "tid": 35568, "ts": 11862312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d800", "tid": 35568, "ts": 11862399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e9e0", "tid": 35568, "ts": 11862484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e1c0", "tid": 35568, "ts": 11862571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ddb0", "tid": 35568, "ts": 11862657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c6f0", "tid": 35568, "ts": 11862743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d660", "tid": 35568, "ts": 11862829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d590", "tid": 35568, "ts": 11862915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c480", "tid": 35568, "ts": 11863001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f3a0", "tid": 35568, "ts": 11863088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d4c0", "tid": 35568, "ts": 11863174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c3b0", "tid": 35568, "ts": 11863260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e910", "tid": 35568, "ts": 11863346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e840", "tid": 35568, "ts": 11863433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ed20", "tid": 35568, "ts": 11863519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d0b0", "tid": 35568, "ts": 11863605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca8a0", "tid": 35568, "ts": 11863690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca560", "tid": 35568, "ts": 11863777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cce00", "tid": 35568, "ts": 11863863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccc60", "tid": 35568, "ts": 11863948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc440", "tid": 35568, "ts": 11864034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbe90", "tid": 35568, "ts": 11864120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbcf0", "tid": 35568, "ts": 11864206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb810", "tid": 35568, "ts": 11864292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca3c0", "tid": 35568, "ts": 11864378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbc20", "tid": 35568, "ts": 11864464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccb90", "tid": 35568, "ts": 11864550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc920", "tid": 35568, "ts": 11864640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca150", "tid": 35568, "ts": 11864727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb400", "tid": 35568, "ts": 11864814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca7d0", "tid": 35568, "ts": 11864900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca080", "tid": 35568, "ts": 11864986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbb50", "tid": 35568, "ts": 11865073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb330", "tid": 35568, "ts": 11865160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9ee0", "tid": 35568, "ts": 11865246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cae50", "tid": 35568, "ts": 11865332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4caf20", "tid": 35568, "ts": 11865418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cad80", "tid": 35568, "ts": 11865504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb0c0", "tid": 35568, "ts": 11865590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc100", "tid": 35568, "ts": 11865675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4caff0", "tid": 35568, "ts": 11865762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb740", "tid": 35568, "ts": 11865847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb670", "tid": 35568, "ts": 11865933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb190", "tid": 35568, "ts": 11866019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9d40", "tid": 35568, "ts": 11866105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc780", "tid": 35568, "ts": 11866191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cabe0", "tid": 35568, "ts": 11866277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c80d0", "tid": 35568, "ts": 11866363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8000", "tid": 35568, "ts": 11866448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8f70", "tid": 35568, "ts": 11866534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7a50", "tid": 35568, "ts": 11866621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c95f0", "tid": 35568, "ts": 11866707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7570", "tid": 35568, "ts": 11866793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c73d0", "tid": 35568, "ts": 11866879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6e20", "tid": 35568, "ts": 11866964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c89c0", "tid": 35568, "ts": 11867050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7b20", "tid": 35568, "ts": 11867136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8340", "tid": 35568, "ts": 11867222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6ae0", "tid": 35568, "ts": 11867309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c88f0", "tid": 35568, "ts": 11867395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8410", "tid": 35568, "ts": 11867481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8270", "tid": 35568, "ts": 11867567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9c70", "tid": 35568, "ts": 11867653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6940", "tid": 35568, "ts": 11867738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9a00", "tid": 35568, "ts": 11867824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8820", "tid": 35568, "ts": 11867910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c85b0", "tid": 35568, "ts": 11867997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7160", "tid": 35568, "ts": 11868082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c77e0", "tid": 35568, "ts": 11868168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9ad0", "tid": 35568, "ts": 11868254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9930", "tid": 35568, "ts": 11868339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9860", "tid": 35568, "ts": 11868425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9ba0", "tid": 35568, "ts": 11868511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c92b0", "tid": 35568, "ts": 11868597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9040", "tid": 35568, "ts": 11868684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7e60", "tid": 35568, "ts": 11868770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c81a0", "tid": 35568, "ts": 11868856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9450", "tid": 35568, "ts": 11868943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7090", "tid": 35568, "ts": 11869028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4f40", "tid": 35568, "ts": 11869114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3fd0", "tid": 35568, "ts": 11869200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3f00", "tid": 35568, "ts": 11869286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5830", "tid": 35568, "ts": 11869373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4720", "tid": 35568, "ts": 11869458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3540", "tid": 35568, "ts": 11869544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c67a0", "tid": 35568, "ts": 11869630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c50e0", "tid": 35568, "ts": 11869716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3950", "tid": 35568, "ts": 11869802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c66d0", "tid": 35568, "ts": 11869888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c43e0", "tid": 35568, "ts": 11869974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6390", "tid": 35568, "ts": 11870060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4310", "tid": 35568, "ts": 11870146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5760", "tid": 35568, "ts": 11870232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5350", "tid": 35568, "ts": 11870318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5900", "tid": 35568, "ts": 11870404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3d60", "tid": 35568, "ts": 11870490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5eb0", "tid": 35568, "ts": 11870577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5f80", "tid": 35568, "ts": 11870662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6600", "tid": 35568, "ts": 11870749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c48c0", "tid": 35568, "ts": 11870836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5b70", "tid": 35568, "ts": 11870922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5aa0", "tid": 35568, "ts": 11871008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c47f0", "tid": 35568, "ts": 11871094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3a20", "tid": 35568, "ts": 11871181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4650", "tid": 35568, "ts": 11871267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6120", "tid": 35568, "ts": 11871353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5de0", "tid": 35568, "ts": 11871439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c59d0", "tid": 35568, "ts": 11871532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c55c0", "tid": 35568, "ts": 11871667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4240", "tid": 35568, "ts": 11871754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c40a0", "tid": 35568, "ts": 11871839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1800", "tid": 35568, "ts": 11871925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1660", "tid": 35568, "ts": 11872011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0fe0", "tid": 35568, "ts": 11872097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1590", "tid": 35568, "ts": 11872183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1ce0", "tid": 35568, "ts": 11872269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c19a0", "tid": 35568, "ts": 11872355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0b00", "tid": 35568, "ts": 11872441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0890", "tid": 35568, "ts": 11872527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c20f0", "tid": 35568, "ts": 11872614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1b40", "tid": 35568, "ts": 11872699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2df0", "tid": 35568, "ts": 11872785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2d20", "tid": 35568, "ts": 11872871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2ab0", "tid": 35568, "ts": 11872957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0f10", "tid": 35568, "ts": 11873043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3060", "tid": 35568, "ts": 11873129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0960", "tid": 35568, "ts": 11873215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1f50", "tid": 35568, "ts": 11873301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0480", "tid": 35568, "ts": 11873387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c29e0", "tid": 35568, "ts": 11873473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c06f0", "tid": 35568, "ts": 11873559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1e80", "tid": 35568, "ts": 11873645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0e40", "tid": 35568, "ts": 11873731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2910", "tid": 35568, "ts": 11873817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1db0", "tid": 35568, "ts": 11873903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0620", "tid": 35568, "ts": 11873989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3130", "tid": 35568, "ts": 11874075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2360", "tid": 35568, "ts": 11874161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c02e0", "tid": 35568, "ts": 11874247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c03b0", "tid": 35568, "ts": 11874333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2290", "tid": 35568, "ts": 11874419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0bd0", "tid": 35568, "ts": 11874506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c26a0", "tid": 35568, "ts": 11874592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd490", "tid": 35568, "ts": 11874678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfb90", "tid": 35568, "ts": 11874764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdbe0", "tid": 35568, "ts": 11874850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf850", "tid": 35568, "ts": 11874936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd150", "tid": 35568, "ts": 11875023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be670", "tid": 35568, "ts": 11875109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf6b0", "tid": 35568, "ts": 11875195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be5a0", "tid": 35568, "ts": 11875281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bec20", "tid": 35568, "ts": 11875367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be400", "tid": 35568, "ts": 11875455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be330", "tid": 35568, "ts": 11875541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf1d0", "tid": 35568, "ts": 11875627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be260", "tid": 35568, "ts": 11875713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd080", "tid": 35568, "ts": 11875800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4beb50", "tid": 35568, "ts": 11875886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be190", "tid": 35568, "ts": 11875972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd7d0", "tid": 35568, "ts": 11876057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be9b0", "tid": 35568, "ts": 11876142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcee0", "tid": 35568, "ts": 11876228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf100", "tid": 35568, "ts": 11876314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bce10", "tid": 35568, "ts": 11876400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bea80", "tid": 35568, "ts": 11876485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdd80", "tid": 35568, "ts": 11876571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd970", "tid": 35568, "ts": 11876657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf370", "tid": 35568, "ts": 11876743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd220", "tid": 35568, "ts": 11876828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4becf0", "tid": 35568, "ts": 11876915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfe00", "tid": 35568, "ts": 11877001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdf20", "tid": 35568, "ts": 11877086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdcb0", "tid": 35568, "ts": 11877172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bda40", "tid": 35568, "ts": 11877257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd8a0", "tid": 35568, "ts": 11877343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba8b0", "tid": 35568, "ts": 11877429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9c80", "tid": 35568, "ts": 11877515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9a10", "tid": 35568, "ts": 11877601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcc70", "tid": 35568, "ts": 11877687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba640", "tid": 35568, "ts": 11877773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc450", "tid": 35568, "ts": 11877860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba160", "tid": 35568, "ts": 11877946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc6c0", "tid": 35568, "ts": 11878032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4babf0", "tid": 35568, "ts": 11878118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb1a0", "tid": 35568, "ts": 11878204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbb60", "tid": 35568, "ts": 11878290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba4a0", "tid": 35568, "ts": 11878376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba3d0", "tid": 35568, "ts": 11878462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9fc0", "tid": 35568, "ts": 11878548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bba90", "tid": 35568, "ts": 11878634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9ef0", "tid": 35568, "ts": 11878720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb8f0", "tid": 35568, "ts": 11878805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc5f0", "tid": 35568, "ts": 11878891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbd00", "tid": 35568, "ts": 11878977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc520", "tid": 35568, "ts": 11879062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba710", "tid": 35568, "ts": 11879148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb750", "tid": 35568, "ts": 11879234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb340", "tid": 35568, "ts": 11879320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc110", "tid": 35568, "ts": 11879405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb4e0", "tid": 35568, "ts": 11879491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb000", "tid": 35568, "ts": 11879576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbc30", "tid": 35568, "ts": 11879663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4baf30", "tid": 35568, "ts": 11879749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb680", "tid": 35568, "ts": 11879835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bacc0", "tid": 35568, "ts": 11879921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb410", "tid": 35568, "ts": 11880007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc2b0", "tid": 35568, "ts": 11880093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7cd0", "tid": 35568, "ts": 11880178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6540", "tid": 35568, "ts": 11880269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b96d0", "tid": 35568, "ts": 11880356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9600", "tid": 35568, "ts": 11880443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7650", "tid": 35568, "ts": 11880529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8900", "tid": 35568, "ts": 11880614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7580", "tid": 35568, "ts": 11880700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7a60", "tid": 35568, "ts": 11880786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b84f0", "tid": 35568, "ts": 11880873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b74b0", "tid": 35568, "ts": 11880959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b73e0", "tid": 35568, "ts": 11881046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b78c0", "tid": 35568, "ts": 11881131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6c90", "tid": 35568, "ts": 11881217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9050", "tid": 35568, "ts": 11881302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7b30", "tid": 35568, "ts": 11881388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b89d0", "tid": 35568, "ts": 11881474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8420", "tid": 35568, "ts": 11881560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6a20", "tid": 35568, "ts": 11881646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8d10", "tid": 35568, "ts": 11881732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b70a0", "tid": 35568, "ts": 11881819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7240", "tid": 35568, "ts": 11881904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8aa0", "tid": 35568, "ts": 11881990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8eb0", "tid": 35568, "ts": 11882077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8350", "tid": 35568, "ts": 11882162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b66e0", "tid": 35568, "ts": 11882248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7170", "tid": 35568, "ts": 11882334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b67b0", "tid": 35568, "ts": 11882421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7e70", "tid": 35568, "ts": 11882508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6e30", "tid": 35568, "ts": 11882593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9530", "tid": 35568, "ts": 11882678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9460", "tid": 35568, "ts": 11882764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7310", "tid": 35568, "ts": 11882850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4660", "tid": 35568, "ts": 11882935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3a30", "tid": 35568, "ts": 11883021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6200", "tid": 35568, "ts": 11883107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6130", "tid": 35568, "ts": 11883193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3210", "tid": 35568, "ts": 11883279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5770", "tid": 35568, "ts": 11883365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b51c0", "tid": 35568, "ts": 11883451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4db0", "tid": 35568, "ts": 11883536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5f90", "tid": 35568, "ts": 11883622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4590", "tid": 35568, "ts": 11883708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b62d0", "tid": 35568, "ts": 11883794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b50f0", "tid": 35568, "ts": 11883892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3fe0", "tid": 35568, "ts": 11883978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5500", "tid": 35568, "ts": 11884064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b43f0", "tid": 35568, "ts": 11884150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b32e0", "tid": 35568, "ts": 11884236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5430", "tid": 35568, "ts": 11884322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b49a0", "tid": 35568, "ts": 11884408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3550", "tid": 35568, "ts": 11884494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5020", "tid": 35568, "ts": 11884580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4320", "tid": 35568, "ts": 11884666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5360", "tid": 35568, "ts": 11884752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5b80", "tid": 35568, "ts": 11884838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5ab0", "tid": 35568, "ts": 11884924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4f50", "tid": 35568, "ts": 11885010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b40b0", "tid": 35568, "ts": 11885096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3e40", "tid": 35568, "ts": 11885182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b33b0", "tid": 35568, "ts": 11885268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3ca0", "tid": 35568, "ts": 11885353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3bd0", "tid": 35568, "ts": 11885440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b48d0", "tid": 35568, "ts": 11885526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b59e0", "tid": 35568, "ts": 11885612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b14d0", "tid": 35568, "ts": 11885699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0080", "tid": 35568, "ts": 11885786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0700", "tid": 35568, "ts": 11885872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afe10", "tid": 35568, "ts": 11885958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2ed0", "tid": 35568, "ts": 11886044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2e00", "tid": 35568, "ts": 11886130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2c60", "tid": 35568, "ts": 11886216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2b90", "tid": 35568, "ts": 11886302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0630", "tid": 35568, "ts": 11886387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2ac0", "tid": 35568, "ts": 11886473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2440", "tid": 35568, "ts": 11886559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0490", "tid": 35568, "ts": 11886645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1670", "tid": 35568, "ts": 11886731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0cb0", "tid": 35568, "ts": 11886817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2370", "tid": 35568, "ts": 11886903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1b50", "tid": 35568, "ts": 11886989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1740", "tid": 35568, "ts": 11887076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1190", "tid": 35568, "ts": 11887162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2920", "tid": 35568, "ts": 11887283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2850", "tid": 35568, "ts": 11887370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b21d0", "tid": 35568, "ts": 11887456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b22a0", "tid": 35568, "ts": 11887542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0220", "tid": 35568, "ts": 11887628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1dc0", "tid": 35568, "ts": 11887714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0970", "tid": 35568, "ts": 11887799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b25e0", "tid": 35568, "ts": 11887885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0b10", "tid": 35568, "ts": 11887972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1e90", "tid": 35568, "ts": 11888058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0560", "tid": 35568, "ts": 11888143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1a80", "tid": 35568, "ts": 11888229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1c20", "tid": 35568, "ts": 11888316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b07d0", "tid": 35568, "ts": 11888402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af860", "tid": 35568, "ts": 11888488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af6c0", "tid": 35568, "ts": 11888574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af520", "tid": 35568, "ts": 11888660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae0d0", "tid": 35568, "ts": 11888746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adf30", "tid": 35568, "ts": 11888831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4add90", "tid": 35568, "ts": 11888917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad570", "tid": 35568, "ts": 11889002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad4a0", "tid": 35568, "ts": 11889087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af1e0", "tid": 35568, "ts": 11889173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af2b0", "tid": 35568, "ts": 11889259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad230", "tid": 35568, "ts": 11889345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aca10", "tid": 35568, "ts": 11889431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae4e0", "tid": 35568, "ts": 11889517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aeea0", "tid": 35568, "ts": 11889603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afad0", "tid": 35568, "ts": 11889688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac940", "tid": 35568, "ts": 11889773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aeb60", "tid": 35568, "ts": 11889859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acd50", "tid": 35568, "ts": 11889945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad7e0", "tid": 35568, "ts": 11890032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae680", "tid": 35568, "ts": 11890118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acef0", "tid": 35568, "ts": 11890203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad160", "tid": 35568, "ts": 11890290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad710", "tid": 35568, "ts": 11890485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae340", "tid": 35568, "ts": 11890573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae9c0", "tid": 35568, "ts": 11890659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae8f0", "tid": 35568, "ts": 11890745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af930", "tid": 35568, "ts": 11890831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acae0", "tid": 35568, "ts": 11890917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ada50", "tid": 35568, "ts": 11891002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adbf0", "tid": 35568, "ts": 11891088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad8b0", "tid": 35568, "ts": 11891175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae820", "tid": 35568, "ts": 11891261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac050", "tid": 35568, "ts": 11891347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abb70", "tid": 35568, "ts": 11891433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab010", "tid": 35568, "ts": 11891519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aab30", "tid": 35568, "ts": 11891605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aaa60", "tid": 35568, "ts": 11891691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aaf40", "tid": 35568, "ts": 11891777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aae70", "tid": 35568, "ts": 11891863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa720", "tid": 35568, "ts": 11891949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab5c0", "tid": 35568, "ts": 11892035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab4f0", "tid": 35568, "ts": 11892121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab760", "tid": 35568, "ts": 11892207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac460", "tid": 35568, "ts": 11892293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa170", "tid": 35568, "ts": 11892379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9d60", "tid": 35568, "ts": 11892464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac120", "tid": 35568, "ts": 11892568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9af0", "tid": 35568, "ts": 11892654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa580", "tid": 35568, "ts": 11892742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab350", "tid": 35568, "ts": 11892828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9e30", "tid": 35568, "ts": 11892915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab900", "tid": 35568, "ts": 11893001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9fd0", "tid": 35568, "ts": 11893086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9880", "tid": 35568, "ts": 11893173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abd10", "tid": 35568, "ts": 11893259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac7a0", "tid": 35568, "ts": 11893345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac870", "tid": 35568, "ts": 11893431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa7f0", "tid": 35568, "ts": 11893517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab9d0", "tid": 35568, "ts": 11893603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac2c0", "tid": 35568, "ts": 11893690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aacd0", "tid": 35568, "ts": 11893776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a97b0", "tid": 35568, "ts": 11893863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a96e0", "tid": 35568, "ts": 11893950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6890", "tid": 35568, "ts": 11894037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6620", "tid": 35568, "ts": 11894123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a85d0", "tid": 35568, "ts": 11894211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6480", "tid": 35568, "ts": 11894299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a62e0", "tid": 35568, "ts": 11894386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a73f0", "tid": 35568, "ts": 11894481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a93a0", "tid": 35568, "ts": 11894568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6d70", "tid": 35568, "ts": 11894677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7320", "tid": 35568, "ts": 11894763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8d20", "tid": 35568, "ts": 11894849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9200", "tid": 35568, "ts": 11894935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6210", "tid": 35568, "ts": 11895021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8ab0", "tid": 35568, "ts": 11895107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a78d0", "tid": 35568, "ts": 11895192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7590", "tid": 35568, "ts": 11895277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8290", "tid": 35568, "ts": 11895364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8b80", "tid": 35568, "ts": 11895449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6960", "tid": 35568, "ts": 11895535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7ce0", "tid": 35568, "ts": 11895621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8ec0", "tid": 35568, "ts": 11895707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6e40", "tid": 35568, "ts": 11895793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8c50", "tid": 35568, "ts": 11895879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a79a0", "tid": 35568, "ts": 11895965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7180", "tid": 35568, "ts": 11896051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8840", "tid": 35568, "ts": 11896136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7730", "tid": 35568, "ts": 11896222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6f10", "tid": 35568, "ts": 11896307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5100", "tid": 35568, "ts": 11896393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5c60", "tid": 35568, "ts": 11896479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3f20", "tid": 35568, "ts": 11896565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a51d0", "tid": 35568, "ts": 11896650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3630", "tid": 35568, "ts": 11896737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3d80", "tid": 35568, "ts": 11896823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5370", "tid": 35568, "ts": 11896909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4e90", "tid": 35568, "ts": 11896995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5850", "tid": 35568, "ts": 11897080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4cf0", "tid": 35568, "ts": 11897167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4b50", "tid": 35568, "ts": 11897252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a44d0", "tid": 35568, "ts": 11897338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5920", "tid": 35568, "ts": 11897423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6070", "tid": 35568, "ts": 11897509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a37d0", "tid": 35568, "ts": 11897595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2fb0", "tid": 35568, "ts": 11897681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3cb0", "tid": 35568, "ts": 11897767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5b90", "tid": 35568, "ts": 11897854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3490", "tid": 35568, "ts": 11897939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4a80", "tid": 35568, "ts": 11898025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a40c0", "tid": 35568, "ts": 11898110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2ee0", "tid": 35568, "ts": 11898196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a38a0", "tid": 35568, "ts": 11898281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2e10", "tid": 35568, "ts": 11898367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5510", "tid": 35568, "ts": 11898453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3b10", "tid": 35568, "ts": 11898539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4740", "tid": 35568, "ts": 11898625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3700", "tid": 35568, "ts": 11898710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3560", "tid": 35568, "ts": 11898795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3a40", "tid": 35568, "ts": 11898882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4670", "tid": 35568, "ts": 11898968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4dc0", "tid": 35568, "ts": 11899053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fe20", "tid": 35568, "ts": 11899139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2790", "tid": 35568, "ts": 11899225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a04a0", "tid": 35568, "ts": 11899310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0640", "tid": 35568, "ts": 11899396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2380", "tid": 35568, "ts": 11899482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1d00", "tid": 35568, "ts": 11899568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1dd0", "tid": 35568, "ts": 11899654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a03d0", "tid": 35568, "ts": 11899739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2ba0", "tid": 35568, "ts": 11899826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a07e0", "tid": 35568, "ts": 11899912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f940", "tid": 35568, "ts": 11899998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a26c0", "tid": 35568, "ts": 11900084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1270", "tid": 35568, "ts": 11900169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fc80", "tid": 35568, "ts": 11900255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a19c0", "tid": 35568, "ts": 11900341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a11a0", "tid": 35568, "ts": 11900427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1c30", "tid": 35568, "ts": 11900513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a18f0", "tid": 35568, "ts": 11900599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ffc0", "tid": 35568, "ts": 11900685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0710", "tid": 35568, "ts": 11900771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0e60", "tid": 35568, "ts": 11900857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1340", "tid": 35568, "ts": 11900943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1820", "tid": 35568, "ts": 11901029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0090", "tid": 35568, "ts": 11901115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2110", "tid": 35568, "ts": 11901201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0d90", "tid": 35568, "ts": 11901287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0980", "tid": 35568, "ts": 11901373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1680", "tid": 35568, "ts": 11901459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fae0", "tid": 35568, "ts": 11901545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1f70", "tid": 35568, "ts": 11901631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fef0", "tid": 35568, "ts": 11901717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a15b0", "tid": 35568, "ts": 11901803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e760", "tid": 35568, "ts": 11901888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e420", "tid": 35568, "ts": 11901973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ce30", "tid": 35568, "ts": 11902059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e5c0", "tid": 35568, "ts": 11902144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d990", "tid": 35568, "ts": 11902231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d8c0", "tid": 35568, "ts": 11902317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ede0", "tid": 35568, "ts": 11902402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cc90", "tid": 35568, "ts": 11902488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c7b0", "tid": 35568, "ts": 11902574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d720", "tid": 35568, "ts": 11902659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e1b0", "tid": 35568, "ts": 11902745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49caf0", "tid": 35568, "ts": 11902840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ec40", "tid": 35568, "ts": 11902927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d650", "tid": 35568, "ts": 11903013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d580", "tid": 35568, "ts": 11903099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f530", "tid": 35568, "ts": 11903185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c950", "tid": 35568, "ts": 11903270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d0a0", "tid": 35568, "ts": 11903356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d310", "tid": 35568, "ts": 11903441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e010", "tid": 35568, "ts": 11903527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e900", "tid": 35568, "ts": 11903613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f050", "tid": 35568, "ts": 11903699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ef80", "tid": 35568, "ts": 11903784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49da60", "tid": 35568, "ts": 11903871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f7a0", "tid": 35568, "ts": 11903957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f2c0", "tid": 35568, "ts": 11904043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c540", "tid": 35568, "ts": 11904129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f870", "tid": 35568, "ts": 11904216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d240", "tid": 35568, "ts": 11904301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49db30", "tid": 35568, "ts": 11904387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49eaa0", "tid": 35568, "ts": 11904473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e0e0", "tid": 35568, "ts": 11904559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499550", "tid": 35568, "ts": 11904645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c3a0", "tid": 35568, "ts": 11904731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b500", "tid": 35568, "ts": 11904817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ab40", "tid": 35568, "ts": 11904902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499480", "tid": 35568, "ts": 11904989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b360", "tid": 35568, "ts": 11905075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c200", "tid": 35568, "ts": 11905161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b290", "tid": 35568, "ts": 11905247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c060", "tid": 35568, "ts": 11905333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49aa70", "tid": 35568, "ts": 11905420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499e40", "tid": 35568, "ts": 11905505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bf90", "tid": 35568, "ts": 11905591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ace0", "tid": 35568, "ts": 11905677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499a30", "tid": 35568, "ts": 11905762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499890", "tid": 35568, "ts": 11905848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499210", "tid": 35568, "ts": 11905934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a320", "tid": 35568, "ts": 11906019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b9e0", "tid": 35568, "ts": 11906105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bc50", "tid": 35568, "ts": 11906191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b430", "tid": 35568, "ts": 11906277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a660", "tid": 35568, "ts": 11906363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4993b0", "tid": 35568, "ts": 11906449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499b00", "tid": 35568, "ts": 11906534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bb80", "tid": 35568, "ts": 11906620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4997c0", "tid": 35568, "ts": 11906705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bec0", "tid": 35568, "ts": 11906791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499bd0", "tid": 35568, "ts": 11906877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bd20", "tid": 35568, "ts": 11906963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b5d0", "tid": 35568, "ts": 11907049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b020", "tid": 35568, "ts": 11907135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b840", "tid": 35568, "ts": 11907221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4996f0", "tid": 35568, "ts": 11907307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496080", "tid": 35568, "ts": 11907392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495fb0", "tid": 35568, "ts": 11907478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495d40", "tid": 35568, "ts": 11907563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496970", "tid": 35568, "ts": 11907649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498e00", "tid": 35568, "ts": 11907735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498b90", "tid": 35568, "ts": 11907822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498d30", "tid": 35568, "ts": 11907907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497f60", "tid": 35568, "ts": 11907993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496220", "tid": 35568, "ts": 11908079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498920", "tid": 35568, "ts": 11908165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497c20", "tid": 35568, "ts": 11908251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497b50", "tid": 35568, "ts": 11908337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498ac0", "tid": 35568, "ts": 11908423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497a80", "tid": 35568, "ts": 11908509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496b10", "tid": 35568, "ts": 11908601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498780", "tid": 35568, "ts": 11908687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496a40", "tid": 35568, "ts": 11908773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497670", "tid": 35568, "ts": 11908859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498c60", "tid": 35568, "ts": 11908944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497810", "tid": 35568, "ts": 11909029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498100", "tid": 35568, "ts": 11909115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498850", "tid": 35568, "ts": 11909201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4968a0", "tid": 35568, "ts": 11909287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497260", "tid": 35568, "ts": 11909373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498440", "tid": 35568, "ts": 11909459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496ff0", "tid": 35568, "ts": 11909546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4986b0", "tid": 35568, "ts": 11909631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498510", "tid": 35568, "ts": 11909717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495e10", "tid": 35568, "ts": 11909803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496d80", "tid": 35568, "ts": 11909889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496e50", "tid": 35568, "ts": 11909975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4963c0", "tid": 35568, "ts": 11910061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495ba0", "tid": 35568, "ts": 11910147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495a00", "tid": 35568, "ts": 11910232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495380", "tid": 35568, "ts": 11910318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494f70", "tid": 35568, "ts": 11910404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4949c0", "tid": 35568, "ts": 11910489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494750", "tid": 35568, "ts": 11910575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492d50", "tid": 35568, "ts": 11910661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4941a0", "tid": 35568, "ts": 11910747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494b60", "tid": 35568, "ts": 11910833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4940d0", "tid": 35568, "ts": 11910918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4944e0", "tid": 35568, "ts": 11911004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495790", "tid": 35568, "ts": 11911089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493640", "tid": 35568, "ts": 11911175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492c80", "tid": 35568, "ts": 11911261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495110", "tid": 35568, "ts": 11911347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4956c0", "tid": 35568, "ts": 11911433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493570", "tid": 35568, "ts": 11911519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494a90", "tid": 35568, "ts": 11911605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492ef0", "tid": 35568, "ts": 11911691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493230", "tid": 35568, "ts": 11911777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493f30", "tid": 35568, "ts": 11911863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493160", "tid": 35568, "ts": 11911949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493710", "tid": 35568, "ts": 11912035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493090", "tid": 35568, "ts": 11912121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493a50", "tid": 35568, "ts": 11912207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493e60", "tid": 35568, "ts": 11912293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493980", "tid": 35568, "ts": 11912378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493cc0", "tid": 35568, "ts": 11912464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494ea0", "tid": 35568, "ts": 11912550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492940", "tid": 35568, "ts": 11912637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494d00", "tid": 35568, "ts": 11912723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494410", "tid": 35568, "ts": 11912809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fd60", "tid": 35568, "ts": 11912894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fc90", "tid": 35568, "ts": 11912980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f880", "tid": 35568, "ts": 11913066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f7b0", "tid": 35568, "ts": 11913151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4927a0", "tid": 35568, "ts": 11913238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4921f0", "tid": 35568, "ts": 11913323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491eb0", "tid": 35568, "ts": 11913409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491de0", "tid": 35568, "ts": 11913494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492530", "tid": 35568, "ts": 11913580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491c40", "tid": 35568, "ts": 11913665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4922c0", "tid": 35568, "ts": 11913751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491280", "tid": 35568, "ts": 11913837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490e70", "tid": 35568, "ts": 11913923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490580", "tid": 35568, "ts": 11914009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4904b0", "tid": 35568, "ts": 11914094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48faf0", "tid": 35568, "ts": 11914179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490b30", "tid": 35568, "ts": 11914265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492600", "tid": 35568, "ts": 11914351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4911b0", "tid": 35568, "ts": 11914437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491900", "tid": 35568, "ts": 11914523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491f80", "tid": 35568, "ts": 11914610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490720", "tid": 35568, "ts": 11914696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4915c0", "tid": 35568, "ts": 11914781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4926d0", "tid": 35568, "ts": 11914867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491010", "tid": 35568, "ts": 11914953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491350", "tid": 35568, "ts": 11915039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492460", "tid": 35568, "ts": 11915125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ffd0", "tid": 35568, "ts": 11915211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ff00", "tid": 35568, "ts": 11915297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490cd0", "tid": 35568, "ts": 11915383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f610", "tid": 35568, "ts": 11915469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4907f0", "tid": 35568, "ts": 11915555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36ba0", "tid": 35568, "ts": 11915641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36a00", "tid": 35568, "ts": 11915727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34090", "tid": 35568, "ts": 11915813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b362b0", "tid": 35568, "ts": 11915899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36930", "tid": 35568, "ts": 11915984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36860", "tid": 35568, "ts": 11916069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36040", "tid": 35568, "ts": 11916155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36450", "tid": 35568, "ts": 11916242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36520", "tid": 35568, "ts": 11916327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b359c0", "tid": 35568, "ts": 11916413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34bf0", "tid": 35568, "ts": 11916499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b361e0", "tid": 35568, "ts": 11916584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35b60", "tid": 35568, "ts": 11916670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b347e0", "tid": 35568, "ts": 11916756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33d50", "tid": 35568, "ts": 11916841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35680", "tid": 35568, "ts": 11916927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36c70", "tid": 35568, "ts": 11917013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35a90", "tid": 35568, "ts": 11917099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b343d0", "tid": 35568, "ts": 11917184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b350d0", "tid": 35568, "ts": 11917270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35270", "tid": 35568, "ts": 11917356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34710", "tid": 35568, "ts": 11917442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34a50", "tid": 35568, "ts": 11917528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34640", "tid": 35568, "ts": 11917613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33fc0", "tid": 35568, "ts": 11917699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b365f0", "tid": 35568, "ts": 11917785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35820", "tid": 35568, "ts": 11917871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34cc0", "tid": 35568, "ts": 11917957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35410", "tid": 35568, "ts": 11918044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36380", "tid": 35568, "ts": 11918129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34b20", "tid": 35568, "ts": 11918215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31170", "tid": 35568, "ts": 11918301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b310a0", "tid": 35568, "ts": 11918387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30f00", "tid": 35568, "ts": 11918498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32010", "tid": 35568, "ts": 11918615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b317f0", "tid": 35568, "ts": 11918700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33870", "tid": 35568, "ts": 11918787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b336d0", "tid": 35568, "ts": 11918872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33600", "tid": 35568, "ts": 11918958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31f40", "tid": 35568, "ts": 11919044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33530", "tid": 35568, "ts": 11919130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30e30", "tid": 35568, "ts": 11919216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33460", "tid": 35568, "ts": 11919302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31580", "tid": 35568, "ts": 11919387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32b70", "tid": 35568, "ts": 11919473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32830", "tid": 35568, "ts": 11919558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33a10", "tid": 35568, "ts": 11919645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32aa0", "tid": 35568, "ts": 11919730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32690", "tid": 35568, "ts": 11919816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31da0", "tid": 35568, "ts": 11919902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31310", "tid": 35568, "ts": 11919987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b329d0", "tid": 35568, "ts": 11920073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31b30", "tid": 35568, "ts": 11920158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32c40", "tid": 35568, "ts": 11920244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b314b0", "tid": 35568, "ts": 11920330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33bb0", "tid": 35568, "ts": 11920417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31990", "tid": 35568, "ts": 11920503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30a20", "tid": 35568, "ts": 11920589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32de0", "tid": 35568, "ts": 11920675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b324f0", "tid": 35568, "ts": 11920761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b313e0", "tid": 35568, "ts": 11920846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33c80", "tid": 35568, "ts": 11920945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30c90", "tid": 35568, "ts": 11921033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ea70", "tid": 35568, "ts": 11921120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d620", "tid": 35568, "ts": 11921206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30610", "tid": 35568, "ts": 11921292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e180", "tid": 35568, "ts": 11921377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2de40", "tid": 35568, "ts": 11921464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e0b0", "tid": 35568, "ts": 11921550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f1c0", "tid": 35568, "ts": 11921636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30200", "tid": 35568, "ts": 11921722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fdf0", "tid": 35568, "ts": 11921808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fd20", "tid": 35568, "ts": 11921894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e590", "tid": 35568, "ts": 11921980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30880", "tid": 35568, "ts": 11922066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dfe0", "tid": 35568, "ts": 11922158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f9e0", "tid": 35568, "ts": 11922245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dca0", "tid": 35568, "ts": 11922331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e9a0", "tid": 35568, "ts": 11922417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f840", "tid": 35568, "ts": 11922503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2df10", "tid": 35568, "ts": 11922588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ff90", "tid": 35568, "ts": 11922675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f6a0", "tid": 35568, "ts": 11922760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f5d0", "tid": 35568, "ts": 11922845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e320", "tid": 35568, "ts": 11922932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ece0", "tid": 35568, "ts": 11923017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30470", "tid": 35568, "ts": 11923103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f910", "tid": 35568, "ts": 11923189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dbd0", "tid": 35568, "ts": 11923275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2db00", "tid": 35568, "ts": 11923361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e8d0", "tid": 35568, "ts": 11923447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d960", "tid": 35568, "ts": 11923533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b307b0", "tid": 35568, "ts": 11923619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ec10", "tid": 35568, "ts": 11923706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f500", "tid": 35568, "ts": 11923793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a970", "tid": 35568, "ts": 11923879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c370", "tid": 35568, "ts": 11923965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c2a0", "tid": 35568, "ts": 11924051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cfa0", "tid": 35568, "ts": 11924136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a7d0", "tid": 35568, "ts": 11924222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b400", "tid": 35568, "ts": 11924309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a700", "tid": 35568, "ts": 11924394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2be90", "tid": 35568, "ts": 11924480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a630", "tid": 35568, "ts": 11924565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ad80", "tid": 35568, "ts": 11924651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c510", "tid": 35568, "ts": 11924738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bdc0", "tid": 35568, "ts": 11924823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cc60", "tid": 35568, "ts": 11924910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c1d0", "tid": 35568, "ts": 11924996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2aff0", "tid": 35568, "ts": 11925081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bcf0", "tid": 35568, "ts": 11925167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ab10", "tid": 35568, "ts": 11925254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b810", "tid": 35568, "ts": 11925339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d2e0", "tid": 35568, "ts": 11925425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b8e0", "tid": 35568, "ts": 11925512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b260", "tid": 35568, "ts": 11925597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c850", "tid": 35568, "ts": 11925683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cd30", "tid": 35568, "ts": 11925769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a490", "tid": 35568, "ts": 11925855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a560", "tid": 35568, "ts": 11925942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b5a0", "tid": 35568, "ts": 11926028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b4d0", "tid": 35568, "ts": 11926114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b9b0", "tid": 35568, "ts": 11926200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d070", "tid": 35568, "ts": 11926286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cac0", "tid": 35568, "ts": 11926371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a220", "tid": 35568, "ts": 11926457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ae50", "tid": 35568, "ts": 11926543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27bf0", "tid": 35568, "ts": 11926629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27a50", "tid": 35568, "ts": 11926715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29790", "tid": 35568, "ts": 11926801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b295f0", "tid": 35568, "ts": 11926887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27980", "tid": 35568, "ts": 11926972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b289c0", "tid": 35568, "ts": 11927058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29380", "tid": 35568, "ts": 11927144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26ef0", "tid": 35568, "ts": 11927230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26d50", "tid": 35568, "ts": 11927316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b291e0", "tid": 35568, "ts": 11927402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28ea0", "tid": 35568, "ts": 11927488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29fb0", "tid": 35568, "ts": 11927574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27710", "tid": 35568, "ts": 11927660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28410", "tid": 35568, "ts": 11927746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28000", "tid": 35568, "ts": 11927833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b273d0", "tid": 35568, "ts": 11927920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29520", "tid": 35568, "ts": 11928006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28340", "tid": 35568, "ts": 11928092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27cc0", "tid": 35568, "ts": 11928178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26e20", "tid": 35568, "ts": 11928263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28270", "tid": 35568, "ts": 11928350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28c30", "tid": 35568, "ts": 11928435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29d40", "tid": 35568, "ts": 11928521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29ee0", "tid": 35568, "ts": 11928608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28f70", "tid": 35568, "ts": 11928694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28b60", "tid": 35568, "ts": 11928780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27160", "tid": 35568, "ts": 11928867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27300", "tid": 35568, "ts": 11928954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27f30", "tid": 35568, "ts": 11929050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29930", "tid": 35568, "ts": 11929136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29860", "tid": 35568, "ts": 11929222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b277e0", "tid": 35568, "ts": 11929307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26050", "tid": 35568, "ts": 11929394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25280", "tid": 35568, "ts": 11929480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b266d0", "tid": 35568, "ts": 11929565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b251b0", "tid": 35568, "ts": 11929651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25de0", "tid": 35568, "ts": 11929737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24f40", "tid": 35568, "ts": 11929823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24c00", "tid": 35568, "ts": 11929909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23c90", "tid": 35568, "ts": 11929995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25690", "tid": 35568, "ts": 11930081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24990", "tid": 35568, "ts": 11930167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b248c0", "tid": 35568, "ts": 11930253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24720", "tid": 35568, "ts": 11930339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23950", "tid": 35568, "ts": 11930425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25b70", "tid": 35568, "ts": 11930511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25aa0", "tid": 35568, "ts": 11930597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25010", "tid": 35568, "ts": 11930684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23fd0", "tid": 35568, "ts": 11930770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26c80", "tid": 35568, "ts": 11930856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26600", "tid": 35568, "ts": 11930942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23a20", "tid": 35568, "ts": 11931028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26ae0", "tid": 35568, "ts": 11931114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24cd0", "tid": 35568, "ts": 11931200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26390", "tid": 35568, "ts": 11931285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25830", "tid": 35568, "ts": 11931371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25420", "tid": 35568, "ts": 11931456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b259d0", "tid": 35568, "ts": 11931543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24240", "tid": 35568, "ts": 11931629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25900", "tid": 35568, "ts": 11931715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26870", "tid": 35568, "ts": 11931801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b243e0", "tid": 35568, "ts": 11931887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24310", "tid": 35568, "ts": 11931973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25760", "tid": 35568, "ts": 11932059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b219a0", "tid": 35568, "ts": 11932145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21800", "tid": 35568, "ts": 11932230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b213f0", "tid": 35568, "ts": 11932316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21590", "tid": 35568, "ts": 11932403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b206f0", "tid": 35568, "ts": 11932489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21ce0", "tid": 35568, "ts": 11932575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22ec0", "tid": 35568, "ts": 11932661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20ca0", "tid": 35568, "ts": 11932747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22ab0", "tid": 35568, "ts": 11932833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23880", "tid": 35568, "ts": 11932919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20b00", "tid": 35568, "ts": 11933004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22430", "tid": 35568, "ts": 11933090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22f90", "tid": 35568, "ts": 11933177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23470", "tid": 35568, "ts": 11933267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23610", "tid": 35568, "ts": 11933354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21db0", "tid": 35568, "ts": 11933439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22910", "tid": 35568, "ts": 11933525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22df0", "tid": 35568, "ts": 11933611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22d20", "tid": 35568, "ts": 11933696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21180", "tid": 35568, "ts": 11933782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22b80", "tid": 35568, "ts": 11933867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23130", "tid": 35568, "ts": 11933954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21b40", "tid": 35568, "ts": 11934039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b237b0", "tid": 35568, "ts": 11934199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22770", "tid": 35568, "ts": 11934286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23200", "tid": 35568, "ts": 11934372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b225d0", "tid": 35568, "ts": 11934457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21e80", "tid": 35568, "ts": 11934543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20960", "tid": 35568, "ts": 11934629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21660", "tid": 35568, "ts": 11934715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20620", "tid": 35568, "ts": 11934801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b226a0", "tid": 35568, "ts": 11934887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f780", "tid": 35568, "ts": 11934972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ee90", "tid": 35568, "ts": 11935058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f2a0", "tid": 35568, "ts": 11935143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e740", "tid": 35568, "ts": 11935229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d220", "tid": 35568, "ts": 11935315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e670", "tid": 35568, "ts": 11935401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e4d0", "tid": 35568, "ts": 11935486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ec20", "tid": 35568, "ts": 11935572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e190", "tid": 35568, "ts": 11935658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d560", "tid": 35568, "ts": 11935744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d7d0", "tid": 35568, "ts": 11935830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e0c0", "tid": 35568, "ts": 11935915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dff0", "tid": 35568, "ts": 11936001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e9b0", "tid": 35568, "ts": 11936087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f510", "tid": 35568, "ts": 11936173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1df20", "tid": 35568, "ts": 11936258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d970", "tid": 35568, "ts": 11936344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f5e0", "tid": 35568, "ts": 11936430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b202e0", "tid": 35568, "ts": 11936516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f920", "tid": 35568, "ts": 11936602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20140", "tid": 35568, "ts": 11936688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e400", "tid": 35568, "ts": 11936774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dd80", "tid": 35568, "ts": 11936860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1db10", "tid": 35568, "ts": 11936945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e810", "tid": 35568, "ts": 11937031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1eb50", "tid": 35568, "ts": 11937116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20210", "tid": 35568, "ts": 11937202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e330", "tid": 35568, "ts": 11937287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f440", "tid": 35568, "ts": 11937373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1de50", "tid": 35568, "ts": 11937459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f030", "tid": 35568, "ts": 11937546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ef60", "tid": 35568, "ts": 11937631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1acc0", "tid": 35568, "ts": 11937717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ab20", "tid": 35568, "ts": 11937803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a570", "tid": 35568, "ts": 11937888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19ef0", "tid": 35568, "ts": 11937973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cfb0", "tid": 35568, "ts": 11938059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c380", "tid": 35568, "ts": 11938144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cc70", "tid": 35568, "ts": 11938230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a300", "tid": 35568, "ts": 11938316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19d50", "tid": 35568, "ts": 11938402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a8b0", "tid": 35568, "ts": 11938487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b5b0", "tid": 35568, "ts": 11938572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cba0", "tid": 35568, "ts": 11938658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b410", "tid": 35568, "ts": 11938744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c110", "tid": 35568, "ts": 11938830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c040", "tid": 35568, "ts": 11938916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bb60", "tid": 35568, "ts": 11939002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b340", "tid": 35568, "ts": 11939088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b750", "tid": 35568, "ts": 11939173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bea0", "tid": 35568, "ts": 11939259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a980", "tid": 35568, "ts": 11939344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b0d0", "tid": 35568, "ts": 11939430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a710", "tid": 35568, "ts": 11939515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b4e0", "tid": 35568, "ts": 11939602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ba90", "tid": 35568, "ts": 11939687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a230", "tid": 35568, "ts": 11939772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d080", "tid": 35568, "ts": 11939858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c5f0", "tid": 35568, "ts": 11939943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ce10", "tid": 35568, "ts": 11940029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c930", "tid": 35568, "ts": 11940114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c520", "tid": 35568, "ts": 11940201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bd00", "tid": 35568, "ts": 11940286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a7e0", "tid": 35568, "ts": 11940372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19bb0", "tid": 35568, "ts": 11940458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19a10", "tid": 35568, "ts": 11940544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19530", "tid": 35568, "ts": 11940629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19390", "tid": 35568, "ts": 11940715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19050", "tid": 35568, "ts": 11940802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18010", "tid": 35568, "ts": 11940888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18690", "tid": 35568, "ts": 11940974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19870", "tid": 35568, "ts": 11941060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b192c0", "tid": 35568, "ts": 11941145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17b30", "tid": 35568, "ts": 11941232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17720", "tid": 35568, "ts": 11941317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b177f0", "tid": 35568, "ts": 11941404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18d10", "tid": 35568, "ts": 11941489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18aa0", "tid": 35568, "ts": 11941575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17170", "tid": 35568, "ts": 11941662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18280", "tid": 35568, "ts": 11941747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b170a0", "tid": 35568, "ts": 11941833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17580", "tid": 35568, "ts": 11941918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16af0", "tid": 35568, "ts": 11942004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18c40", "tid": 35568, "ts": 11942089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17da0", "tid": 35568, "ts": 11942175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19c80", "tid": 35568, "ts": 11942260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16a20", "tid": 35568, "ts": 11942346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17310", "tid": 35568, "ts": 11942432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17240", "tid": 35568, "ts": 11942519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b184f0", "tid": 35568, "ts": 11942609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18760", "tid": 35568, "ts": 11942696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18350", "tid": 35568, "ts": 11942782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16fd0", "tid": 35568, "ts": 11942868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18eb0", "tid": 35568, "ts": 11942954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b180e0", "tid": 35568, "ts": 11943040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19940", "tid": 35568, "ts": 11943126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13620", "tid": 35568, "ts": 11943211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16880", "tid": 35568, "ts": 11943297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16470", "tid": 35568, "ts": 11943383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16130", "tid": 35568, "ts": 11943469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b148d0", "tid": 35568, "ts": 11943555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15f90", "tid": 35568, "ts": 11943642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15ec0", "tid": 35568, "ts": 11943728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14180", "tid": 35568, "ts": 11943813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b159e0", "tid": 35568, "ts": 11943899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16200", "tid": 35568, "ts": 11943985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b163a0", "tid": 35568, "ts": 11944070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13960", "tid": 35568, "ts": 11944156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b149a0", "tid": 35568, "ts": 11944241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15840", "tid": 35568, "ts": 11944327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b143f0", "tid": 35568, "ts": 11944413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14800", "tid": 35568, "ts": 11944499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14320", "tid": 35568, "ts": 11944585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b150f0", "tid": 35568, "ts": 11944671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14f50", "tid": 35568, "ts": 11944756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13d70", "tid": 35568, "ts": 11944841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13ca0", "tid": 35568, "ts": 11944928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b155d0", "tid": 35568, "ts": 11945014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13bd0", "tid": 35568, "ts": 11945100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15500", "tid": 35568, "ts": 11945187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14c10", "tid": 35568, "ts": 11945279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13b00", "tid": 35568, "ts": 11945366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b137c0", "tid": 35568, "ts": 11945452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14a70", "tid": 35568, "ts": 11945538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14250", "tid": 35568, "ts": 11945624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b166e0", "tid": 35568, "ts": 11945710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b167b0", "tid": 35568, "ts": 11945795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15b80", "tid": 35568, "ts": 11945881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13210", "tid": 35568, "ts": 11945967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b119b0", "tid": 35568, "ts": 11946052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11400", "tid": 35568, "ts": 11946138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11810", "tid": 35568, "ts": 11946224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13140", "tid": 35568, "ts": 11946310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11190", "tid": 35568, "ts": 11946396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10ff0", "tid": 35568, "ts": 11946480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10700", "tid": 35568, "ts": 11946566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10150", "tid": 35568, "ts": 11946652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b129f0", "tid": 35568, "ts": 11946738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12780", "tid": 35568, "ts": 11946823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12510", "tid": 35568, "ts": 11946908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10630", "tid": 35568, "ts": 11946994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11670", "tid": 35568, "ts": 11947080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b108a0", "tid": 35568, "ts": 11947165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b122a0", "tid": 35568, "ts": 11947250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10490", "tid": 35568, "ts": 11947336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10f20", "tid": 35568, "ts": 11947421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10e50", "tid": 35568, "ts": 11947507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13480", "tid": 35568, "ts": 11947593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10d80", "tid": 35568, "ts": 11947679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11dc0", "tid": 35568, "ts": 11947764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b103c0", "tid": 35568, "ts": 11947849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12c60", "tid": 35568, "ts": 11947935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b121d0", "tid": 35568, "ts": 11948021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12030", "tid": 35568, "ts": 11948106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11c20", "tid": 35568, "ts": 11948192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b114d0", "tid": 35568, "ts": 11948277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11b50", "tid": 35568, "ts": 11948364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12fa0", "tid": 35568, "ts": 11948450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b102f0", "tid": 35568, "ts": 11948535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11260", "tid": 35568, "ts": 11948621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f450", "tid": 35568, "ts": 11948707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e4e0", "tid": 35568, "ts": 11948792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e410", "tid": 35568, "ts": 11948878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e9c0", "tid": 35568, "ts": 11948964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d7e0", "tid": 35568, "ts": 11949050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d3d0", "tid": 35568, "ts": 11949135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0df30", "tid": 35568, "ts": 11949220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d570", "tid": 35568, "ts": 11949306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d4a0", "tid": 35568, "ts": 11949392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0dcc0", "tid": 35568, "ts": 11949478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cfc0", "tid": 35568, "ts": 11949563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0edd0", "tid": 35568, "ts": 11949648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f930", "tid": 35568, "ts": 11949803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f110", "tid": 35568, "ts": 11949998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0dd90", "tid": 35568, "ts": 11950111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e680", "tid": 35568, "ts": 11950237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0db20", "tid": 35568, "ts": 11950362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f5f0", "tid": 35568, "ts": 11950448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f860", "tid": 35568, "ts": 11950568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fd40", "tid": 35568, "ts": 11950723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ec30", "tid": 35568, "ts": 11950831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cd50", "tid": 35568, "ts": 11950918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e8f0", "tid": 35568, "ts": 11951004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e750", "tid": 35568, "ts": 11951090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d230", "tid": 35568, "ts": 11951176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d710", "tid": 35568, "ts": 11951262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10080", "tid": 35568, "ts": 11951348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0da50", "tid": 35568, "ts": 11951434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d640", "tid": 35568, "ts": 11951520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0eb60", "tid": 35568, "ts": 11951606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e820", "tid": 35568, "ts": 11951692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fc70", "tid": 35568, "ts": 11951778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c940", "tid": 35568, "ts": 11951864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0acd0", "tid": 35568, "ts": 11951950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c6d0", "tid": 35568, "ts": 11952036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b830", "tid": 35568, "ts": 11952122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a310", "tid": 35568, "ts": 11952208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b900", "tid": 35568, "ts": 11952294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a3e0", "tid": 35568, "ts": 11952380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b760", "tid": 35568, "ts": 11952466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b0e0", "tid": 35568, "ts": 11952552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a0a0", "tid": 35568, "ts": 11952639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0aa60", "tid": 35568, "ts": 11952725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09d60", "tid": 35568, "ts": 11952811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c390", "tid": 35568, "ts": 11952897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09bc0", "tid": 35568, "ts": 11952983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cbb0", "tid": 35568, "ts": 11953069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b420", "tid": 35568, "ts": 11953154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c600", "tid": 35568, "ts": 11953241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bc40", "tid": 35568, "ts": 11953326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a720", "tid": 35568, "ts": 11953412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09c90", "tid": 35568, "ts": 11953497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c870", "tid": 35568, "ts": 11953583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09a20", "tid": 35568, "ts": 11953669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b690", "tid": 35568, "ts": 11953755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0af40", "tid": 35568, "ts": 11953841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a580", "tid": 35568, "ts": 11953927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a4b0", "tid": 35568, "ts": 11954013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b5c0", "tid": 35568, "ts": 11954099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09e30", "tid": 35568, "ts": 11954185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a990", "tid": 35568, "ts": 11954271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b1b0", "tid": 35568, "ts": 11954357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c120", "tid": 35568, "ts": 11954442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b9d0", "tid": 35568, "ts": 11954528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07db0", "tid": 35568, "ts": 11954614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b079a0", "tid": 35568, "ts": 11954700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07c10", "tid": 35568, "ts": 11954786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09610", "tid": 35568, "ts": 11954873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b092d0", "tid": 35568, "ts": 11954960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07660", "tid": 35568, "ts": 11955045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09060", "tid": 35568, "ts": 11955132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08c50", "tid": 35568, "ts": 11955218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06fe0", "tid": 35568, "ts": 11955304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06f10", "tid": 35568, "ts": 11955400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08b80", "tid": 35568, "ts": 11955486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08ab0", "tid": 35568, "ts": 11955573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06a30", "tid": 35568, "ts": 11955659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b066f0", "tid": 35568, "ts": 11955744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06620", "tid": 35568, "ts": 11955830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b067c0", "tid": 35568, "ts": 11955916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08290", "tid": 35568, "ts": 11956002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06550", "tid": 35568, "ts": 11956088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07730", "tid": 35568, "ts": 11956175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09470", "tid": 35568, "ts": 11956260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08f90", "tid": 35568, "ts": 11956346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08ec0", "tid": 35568, "ts": 11956433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08020", "tid": 35568, "ts": 11956519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06d70", "tid": 35568, "ts": 11956605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06ca0", "tid": 35568, "ts": 11956691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08d20", "tid": 35568, "ts": 11956777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b093a0", "tid": 35568, "ts": 11956863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b086a0", "tid": 35568, "ts": 11956948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07f50", "tid": 35568, "ts": 11957034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07800", "tid": 35568, "ts": 11957120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08500", "tid": 35568, "ts": 11957206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06e40", "tid": 35568, "ts": 11957292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05850", "tid": 35568, "ts": 11957378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05780", "tid": 35568, "ts": 11957464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b032f0", "tid": 35568, "ts": 11957550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04cf0", "tid": 35568, "ts": 11957636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06140", "tid": 35568, "ts": 11957722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05e00", "tid": 35568, "ts": 11957808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04c20", "tid": 35568, "ts": 11957894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03b10", "tid": 35568, "ts": 11957980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b062e0", "tid": 35568, "ts": 11958067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b055e0", "tid": 35568, "ts": 11958152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04e90", "tid": 35568, "ts": 11958238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05d30", "tid": 35568, "ts": 11958324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05c60", "tid": 35568, "ts": 11958411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b045a0", "tid": 35568, "ts": 11958500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05ac0", "tid": 35568, "ts": 11958586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04190", "tid": 35568, "ts": 11958672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03630", "tid": 35568, "ts": 11958758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03490", "tid": 35568, "ts": 11958844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04b50", "tid": 35568, "ts": 11958930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b037d0", "tid": 35568, "ts": 11959015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03f20", "tid": 35568, "ts": 11959101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b063b0", "tid": 35568, "ts": 11959188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b051d0", "tid": 35568, "ts": 11959273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03cb0", "tid": 35568, "ts": 11959358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04670", "tid": 35568, "ts": 11959444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03be0", "tid": 35568, "ts": 11959530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05440", "tid": 35568, "ts": 11959616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05ed0", "tid": 35568, "ts": 11959702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05370", "tid": 35568, "ts": 11959788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b059f0", "tid": 35568, "ts": 11959874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05100", "tid": 35568, "ts": 11959960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05030", "tid": 35568, "ts": 11960045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00300", "tid": 35568, "ts": 11960131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afffc0", "tid": 35568, "ts": 11960216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03080", "tid": 35568, "ts": 11960302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00090", "tid": 35568, "ts": 11960387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01750", "tid": 35568, "ts": 11960473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02ee0", "tid": 35568, "ts": 11960558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02d40", "tid": 35568, "ts": 11960644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02380", "tid": 35568, "ts": 11960730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02a00", "tid": 35568, "ts": 11960816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01410", "tid": 35568, "ts": 11960901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b026c0", "tid": 35568, "ts": 11960987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00980", "tid": 35568, "ts": 11961073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01000", "tid": 35568, "ts": 11961159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b019c0", "tid": 35568, "ts": 11961246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01b60", "tid": 35568, "ts": 11961331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02860", "tid": 35568, "ts": 11961417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b008b0", "tid": 35568, "ts": 11961503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02790", "tid": 35568, "ts": 11961588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01680", "tid": 35568, "ts": 11961674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01d00", "tid": 35568, "ts": 11961760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00a50", "tid": 35568, "ts": 11961846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02520", "tid": 35568, "ts": 11961931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02040", "tid": 35568, "ts": 11962018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02ad0", "tid": 35568, "ts": 11962104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b003d0", "tid": 35568, "ts": 11962190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02930", "tid": 35568, "ts": 11962276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00cc0", "tid": 35568, "ts": 11962361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01ea0", "tid": 35568, "ts": 11962447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00f30", "tid": 35568, "ts": 11962532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01c30", "tid": 35568, "ts": 11962619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00640", "tid": 35568, "ts": 11962704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01dd0", "tid": 35568, "ts": 11962790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcbc0", "tid": 35568, "ts": 11962876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff600", "tid": 35568, "ts": 11962962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff390", "tid": 35568, "ts": 11963048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdc00", "tid": 35568, "ts": 11963134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdb30", "tid": 35568, "ts": 11963220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe280", "tid": 35568, "ts": 11963306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcaf0", "tid": 35568, "ts": 11963392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff1f0", "tid": 35568, "ts": 11963479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd3e0", "tid": 35568, "ts": 11963565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd170", "tid": 35568, "ts": 11963652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afda60", "tid": 35568, "ts": 11963739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe0e0", "tid": 35568, "ts": 11963826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd310", "tid": 35568, "ts": 11963913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afed10", "tid": 35568, "ts": 11964009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afec40", "tid": 35568, "ts": 11964095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe420", "tid": 35568, "ts": 11964181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afce30", "tid": 35568, "ts": 11964266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd7f0", "tid": 35568, "ts": 11964351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe350", "tid": 35568, "ts": 11964437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff7a0", "tid": 35568, "ts": 11964522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afde70", "tid": 35568, "ts": 11964608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff530", "tid": 35568, "ts": 11964694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd0a0", "tid": 35568, "ts": 11964779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcd60", "tid": 35568, "ts": 11964864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe900", "tid": 35568, "ts": 11964950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affc80", "tid": 35568, "ts": 11965035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdcd0", "tid": 35568, "ts": 11965121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdda0", "tid": 35568, "ts": 11965217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afeaa0", "tid": 35568, "ts": 11965303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe9d0", "tid": 35568, "ts": 11965422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd580", "tid": 35568, "ts": 11965508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe690", "tid": 35568, "ts": 11965593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afaf50", "tid": 35568, "ts": 11965679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb910", "tid": 35568, "ts": 11965765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9d70", "tid": 35568, "ts": 11965851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa590", "tid": 35568, "ts": 11965936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9bd0", "tid": 35568, "ts": 11966022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa3f0", "tid": 35568, "ts": 11966108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbdf0", "tid": 35568, "ts": 11966194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc610", "tid": 35568, "ts": 11966281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9fe0", "tid": 35568, "ts": 11966367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9e40", "tid": 35568, "ts": 11966453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc470", "tid": 35568, "ts": 11966538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9a30", "tid": 35568, "ts": 11966624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc7b0", "tid": 35568, "ts": 11966710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa8d0", "tid": 35568, "ts": 11966796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb840", "tid": 35568, "ts": 11966882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc880", "tid": 35568, "ts": 11966967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af97c0", "tid": 35568, "ts": 11967053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa320", "tid": 35568, "ts": 11967139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb360", "tid": 35568, "ts": 11967226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb0f0", "tid": 35568, "ts": 11967311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbf90", "tid": 35568, "ts": 11967397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbd20", "tid": 35568, "ts": 11967483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afab40", "tid": 35568, "ts": 11967569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc540", "tid": 35568, "ts": 11967654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc2d0", "tid": 35568, "ts": 11967740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9890", "tid": 35568, "ts": 11967826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9620", "tid": 35568, "ts": 11967912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa180", "tid": 35568, "ts": 11967997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa0b0", "tid": 35568, "ts": 11968083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb290", "tid": 35568, "ts": 11968168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa660", "tid": 35568, "ts": 11968254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc060", "tid": 35568, "ts": 11968339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7c20", "tid": 35568, "ts": 11968425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6ff0", "tid": 35568, "ts": 11968510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6cb0", "tid": 35568, "ts": 11968597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af70c0", "tid": 35568, "ts": 11968683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6be0", "tid": 35568, "ts": 11968769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6630", "tid": 35568, "ts": 11968855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6490", "tid": 35568, "ts": 11968941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7810", "tid": 35568, "ts": 11969027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af63c0", "tid": 35568, "ts": 11969113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6220", "tid": 35568, "ts": 11969199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af92e0", "tid": 35568, "ts": 11969286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9140", "tid": 35568, "ts": 11969371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6a40", "tid": 35568, "ts": 11969457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8c60", "tid": 35568, "ts": 11969543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7400", "tid": 35568, "ts": 11969629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7b50", "tid": 35568, "ts": 11969715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8850", "tid": 35568, "ts": 11969801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8440", "tid": 35568, "ts": 11969887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8780", "tid": 35568, "ts": 11969972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7f60", "tid": 35568, "ts": 11970058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af85e0", "tid": 35568, "ts": 11970144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8030", "tid": 35568, "ts": 11970230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7a80", "tid": 35568, "ts": 11970316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af68a0", "tid": 35568, "ts": 11970402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8e00", "tid": 35568, "ts": 11970487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9480", "tid": 35568, "ts": 11970573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7330", "tid": 35568, "ts": 11970659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af86b0", "tid": 35568, "ts": 11970745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8d30", "tid": 35568, "ts": 11970831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8920", "tid": 35568, "ts": 11970917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7670", "tid": 35568, "ts": 11971003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7260", "tid": 35568, "ts": 11971089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f69e0", "tid": 35568, "ts": 11971181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5250", "tid": 35568, "ts": 11971268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6c50", "tid": 35568, "ts": 11971354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4b00", "tid": 35568, "ts": 11971440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6910", "tid": 35568, "ts": 11971525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4f10", "tid": 35568, "ts": 11971611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f50b0", "tid": 35568, "ts": 11971697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f46f0", "tid": 35568, "ts": 11971783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4ca0", "tid": 35568, "ts": 11971869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f47c0", "tid": 35568, "ts": 11971955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4620", "tid": 35568, "ts": 11972041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3ed0", "tid": 35568, "ts": 11972127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5320", "tid": 35568, "ts": 11972213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f65d0", "tid": 35568, "ts": 11972299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4550", "tid": 35568, "ts": 11972384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3d30", "tid": 35568, "ts": 11972471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6020", "tid": 35568, "ts": 11972557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4070", "tid": 35568, "ts": 11972642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4960", "tid": 35568, "ts": 11972728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6500", "tid": 35568, "ts": 11972815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5800", "tid": 35568, "ts": 11972901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5db0", "tid": 35568, "ts": 11972987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4e40", "tid": 35568, "ts": 11973073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f60f0", "tid": 35568, "ts": 11973158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5c10", "tid": 35568, "ts": 11973244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f58d0", "tid": 35568, "ts": 11973330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6430", "tid": 35568, "ts": 11973417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5b40", "tid": 35568, "ts": 11973503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6d20", "tid": 35568, "ts": 11973589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5590", "tid": 35568, "ts": 11973676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f42e0", "tid": 35568, "ts": 11973762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1970", "tid": 35568, "ts": 11973847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1700", "tid": 35568, "ts": 11973933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0a00", "tid": 35568, "ts": 11974018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f39f0", "tid": 35568, "ts": 11974113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f36b0", "tid": 35568, "ts": 11974199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3510", "tid": 35568, "ts": 11974285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3440", "tid": 35568, "ts": 11974371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1e50", "tid": 35568, "ts": 11974457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3370", "tid": 35568, "ts": 11974543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2e90", "tid": 35568, "ts": 11974629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3c60", "tid": 35568, "ts": 11974714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1f20", "tid": 35568, "ts": 11974800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f25a0", "tid": 35568, "ts": 11974886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1560", "tid": 35568, "ts": 11974972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1b10", "tid": 35568, "ts": 11975057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2400", "tid": 35568, "ts": 11975144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2b50", "tid": 35568, "ts": 11975229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3920", "tid": 35568, "ts": 11975315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2260", "tid": 35568, "ts": 11975401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3850", "tid": 35568, "ts": 11975487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f17d0", "tid": 35568, "ts": 11975573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2a80", "tid": 35568, "ts": 11975659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2f60", "tid": 35568, "ts": 11975745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2190", "tid": 35568, "ts": 11975830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3b90", "tid": 35568, "ts": 11975917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1ff0", "tid": 35568, "ts": 11976003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3030", "tid": 35568, "ts": 11976089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0fb0", "tid": 35568, "ts": 11976175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1150", "tid": 35568, "ts": 11976261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f20c0", "tid": 35568, "ts": 11976346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0e10", "tid": 35568, "ts": 11976431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1490", "tid": 35568, "ts": 11976517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee710", "tid": 35568, "ts": 11976603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0860", "tid": 35568, "ts": 11976689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f01e0", "tid": 35568, "ts": 11976775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef750", "tid": 35568, "ts": 11976861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee3d0", "tid": 35568, "ts": 11976946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efdd0", "tid": 35568, "ts": 11977032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee160", "tid": 35568, "ts": 11977119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edfc0", "tid": 35568, "ts": 11977204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f05f0", "tid": 35568, "ts": 11977290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef5b0", "tid": 35568, "ts": 11977376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edc80", "tid": 35568, "ts": 11977462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef4e0", "tid": 35568, "ts": 11977548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edbb0", "tid": 35568, "ts": 11977634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0450", "tid": 35568, "ts": 11977720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee090", "tid": 35568, "ts": 11977805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed870", "tid": 35568, "ts": 11977891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0380", "tid": 35568, "ts": 11977977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed940", "tid": 35568, "ts": 11978063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee8b0", "tid": 35568, "ts": 11978148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef340", "tid": 35568, "ts": 11978235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0040", "tid": 35568, "ts": 11978320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efa90", "tid": 35568, "ts": 11978406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efb60", "tid": 35568, "ts": 11978492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eff70", "tid": 35568, "ts": 11978577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efea0", "tid": 35568, "ts": 11978662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef0d0", "tid": 35568, "ts": 11978748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee640", "tid": 35568, "ts": 11978834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed6d0", "tid": 35568, "ts": 11978920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eda10", "tid": 35568, "ts": 11979006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eef30", "tid": 35568, "ts": 11979092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed600", "tid": 35568, "ts": 11979177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee570", "tid": 35568, "ts": 11979263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed120", "tid": 35568, "ts": 11979349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebb30", "tid": 35568, "ts": 11979435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec420", "tid": 35568, "ts": 11979520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb990", "tid": 35568, "ts": 11979606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec350", "tid": 35568, "ts": 11979691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb310", "tid": 35568, "ts": 11979777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecde0", "tid": 35568, "ts": 11979864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec0e0", "tid": 35568, "ts": 11979949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb170", "tid": 35568, "ts": 11980035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebe70", "tid": 35568, "ts": 11980120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecb70", "tid": 35568, "ts": 11980206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eaf00", "tid": 35568, "ts": 11980292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eafd0", "tid": 35568, "ts": 11980378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecaa0", "tid": 35568, "ts": 11980470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ead60", "tid": 35568, "ts": 11980557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecc40", "tid": 35568, "ts": 11980643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea130", "tid": 35568, "ts": 11980729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eac90", "tid": 35568, "ts": 11980814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb240", "tid": 35568, "ts": 11980900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eaaf0", "tid": 35568, "ts": 11981025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eaa20", "tid": 35568, "ts": 11981112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebf40", "tid": 35568, "ts": 11981197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec830", "tid": 35568, "ts": 11981303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec900", "tid": 35568, "ts": 11981390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb4b0", "tid": 35568, "ts": 11981476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec760", "tid": 35568, "ts": 11981563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea880", "tid": 35568, "ts": 11981649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebcd0", "tid": 35568, "ts": 11981735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed460", "tid": 35568, "ts": 11981821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea3a0", "tid": 35568, "ts": 11981907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea7b0", "tid": 35568, "ts": 11981993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8660", "tid": 35568, "ts": 11982079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e84c0", "tid": 35568, "ts": 11982164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7f10", "tid": 35568, "ts": 11982251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7bd0", "tid": 35568, "ts": 11982337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e76f0", "tid": 35568, "ts": 11982423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e73b0", "tid": 35568, "ts": 11982509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e72e0", "tid": 35568, "ts": 11982596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9df0", "tid": 35568, "ts": 11982682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8250", "tid": 35568, "ts": 11982767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7210", "tid": 35568, "ts": 11982853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9d20", "tid": 35568, "ts": 11982940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9290", "tid": 35568, "ts": 11983025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9430", "tid": 35568, "ts": 11983112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9b80", "tid": 35568, "ts": 11983198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7480", "tid": 35568, "ts": 11983284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6ed0", "tid": 35568, "ts": 11983370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7a30", "tid": 35568, "ts": 11983455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8db0", "tid": 35568, "ts": 11983541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6e00", "tid": 35568, "ts": 11983627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8ce0", "tid": 35568, "ts": 11983714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e99e0", "tid": 35568, "ts": 11983799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9770", "tid": 35568, "ts": 11983885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8c10", "tid": 35568, "ts": 11983971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9f90", "tid": 35568, "ts": 11984057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9ec0", "tid": 35568, "ts": 11984142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9840", "tid": 35568, "ts": 11984227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea060", "tid": 35568, "ts": 11984313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e91c0", "tid": 35568, "ts": 11984399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e95d0", "tid": 35568, "ts": 11984485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7fe0", "tid": 35568, "ts": 11984571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e77c0", "tid": 35568, "ts": 11984657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8180", "tid": 35568, "ts": 11984743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4150", "tid": 35568, "ts": 11984829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3fb0", "tid": 35568, "ts": 11984916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5740", "tid": 35568, "ts": 11985002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3c70", "tid": 35568, "ts": 11985088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3a00", "tid": 35568, "ts": 11985173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5670", "tid": 35568, "ts": 11985259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6c60", "tid": 35568, "ts": 11985346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e54d0", "tid": 35568, "ts": 11985432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4a40", "tid": 35568, "ts": 11985519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e66b0", "tid": 35568, "ts": 11985604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3e10", "tid": 35568, "ts": 11985690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e62a0", "tid": 35568, "ts": 11985775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e61d0", "tid": 35568, "ts": 11985861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4970", "tid": 35568, "ts": 11985947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4490", "tid": 35568, "ts": 11986033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4ff0", "tid": 35568, "ts": 11986119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6920", "tid": 35568, "ts": 11986205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4d80", "tid": 35568, "ts": 11986292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6850", "tid": 35568, "ts": 11986378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4be0", "tid": 35568, "ts": 11986464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4700", "tid": 35568, "ts": 11986550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4f20", "tid": 35568, "ts": 11986636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e59b0", "tid": 35568, "ts": 11986722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5810", "tid": 35568, "ts": 11986807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5e90", "tid": 35568, "ts": 11986893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5c20", "tid": 35568, "ts": 11986979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5260", "tid": 35568, "ts": 11987065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e58e0", "tid": 35568, "ts": 11987151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e55a0", "tid": 35568, "ts": 11987236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4e50", "tid": 35568, "ts": 11987322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6780", "tid": 35568, "ts": 11987409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e65e0", "tid": 35568, "ts": 11987496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1980", "tid": 35568, "ts": 11987582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1e60", "tid": 35568, "ts": 11987668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1710", "tid": 35568, "ts": 11987754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1cc0", "tid": 35568, "ts": 11987840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e07a0", "tid": 35568, "ts": 11987926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1570", "tid": 35568, "ts": 11988012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e31e0", "tid": 35568, "ts": 11988098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e06d0", "tid": 35568, "ts": 11988184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2f70", "tid": 35568, "ts": 11988270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3040", "tid": 35568, "ts": 11988355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3860", "tid": 35568, "ts": 11988441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2c30", "tid": 35568, "ts": 11988527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e24e0", "tid": 35568, "ts": 11988613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3790", "tid": 35568, "ts": 11988699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1230", "tid": 35568, "ts": 11988785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1160", "tid": 35568, "ts": 11988871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2b60", "tid": 35568, "ts": 11988957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2820", "tid": 35568, "ts": 11989043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2340", "tid": 35568, "ts": 11989129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2750", "tid": 35568, "ts": 11989216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0ef0", "tid": 35568, "ts": 11989302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e36c0", "tid": 35568, "ts": 11989387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0fc0", "tid": 35568, "ts": 11989474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0a10", "tid": 35568, "ts": 11989560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e13d0", "tid": 35568, "ts": 11989648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1d90", "tid": 35568, "ts": 11989733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e35f0", "tid": 35568, "ts": 11989820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e29c0", "tid": 35568, "ts": 11989906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0bb0", "tid": 35568, "ts": 11989992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0e20", "tid": 35568, "ts": 11990078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2680", "tid": 35568, "ts": 11990163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0530", "tid": 35568, "ts": 11990249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de310", "tid": 35568, "ts": 11990336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de0a0", "tid": 35568, "ts": 11990422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd880", "tid": 35568, "ts": 11990509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddfd0", "tid": 35568, "ts": 11990595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df1b0", "tid": 35568, "ts": 11990681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd6e0", "tid": 35568, "ts": 11990767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfeb0", "tid": 35568, "ts": 11990853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df280", "tid": 35568, "ts": 11990939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33decd0", "tid": 35568, "ts": 11991025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dea60", "tid": 35568, "ts": 11991111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de170", "tid": 35568, "ts": 11991197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd950", "tid": 35568, "ts": 11991283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfaa0", "tid": 35568, "ts": 11991369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de990", "tid": 35568, "ts": 11991455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de4b0", "tid": 35568, "ts": 11991541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dde30", "tid": 35568, "ts": 11991627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0120", "tid": 35568, "ts": 11991713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dee70", "tid": 35568, "ts": 11991799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df690", "tid": 35568, "ts": 11991886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de8c0", "tid": 35568, "ts": 11991971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd7b0", "tid": 35568, "ts": 11992057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd3a0", "tid": 35568, "ts": 11992144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df830", "tid": 35568, "ts": 11992231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddd60", "tid": 35568, "ts": 11992318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de7f0", "tid": 35568, "ts": 11992404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfb70", "tid": 35568, "ts": 11992490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddaf0", "tid": 35568, "ts": 11992576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd2d0", "tid": 35568, "ts": 11992663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df350", "tid": 35568, "ts": 11992748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de580", "tid": 35568, "ts": 11992835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0050", "tid": 35568, "ts": 11992922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df900", "tid": 35568, "ts": 11993008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9d30", "tid": 35568, "ts": 11993095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcec0", "tid": 35568, "ts": 11993181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcab0", "tid": 35568, "ts": 11993268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc840", "tid": 35568, "ts": 11993354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc430", "tid": 35568, "ts": 11993440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbdb0", "tid": 35568, "ts": 11993526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc360", "tid": 35568, "ts": 11993613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db9a0", "tid": 35568, "ts": 11993699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db730", "tid": 35568, "ts": 11993785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da6f0", "tid": 35568, "ts": 11993871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db660", "tid": 35568, "ts": 11993957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db590", "tid": 35568, "ts": 11994042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db0b0", "tid": 35568, "ts": 11994128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc290", "tid": 35568, "ts": 11994214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbb40", "tid": 35568, "ts": 11994301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc500", "tid": 35568, "ts": 11994387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db4c0", "tid": 35568, "ts": 11994473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9fa0", "tid": 35568, "ts": 11994559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da2e0", "tid": 35568, "ts": 11994757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da550", "tid": 35568, "ts": 11994844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dae40", "tid": 35568, "ts": 11994930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc020", "tid": 35568, "ts": 11995016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33daca0", "tid": 35568, "ts": 11995102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da620", "tid": 35568, "ts": 11995188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9ed0", "tid": 35568, "ts": 11995274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da890", "tid": 35568, "ts": 11995360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da960", "tid": 35568, "ts": 11995453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd060", "tid": 35568, "ts": 11995540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc9e0", "tid": 35568, "ts": 11995625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db320", "tid": 35568, "ts": 11995712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc5d0", "tid": 35568, "ts": 11995798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da140", "tid": 35568, "ts": 11995884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8190", "tid": 35568, "ts": 11995970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9ac0", "tid": 35568, "ts": 11996057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7150", "tid": 35568, "ts": 11996143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7ff0", "tid": 35568, "ts": 11996229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d99f0", "tid": 35568, "ts": 11996314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8a80", "tid": 35568, "ts": 11996400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7f20", "tid": 35568, "ts": 11996486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6e10", "tid": 35568, "ts": 11996608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7be0", "tid": 35568, "ts": 11996720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9920", "tid": 35568, "ts": 11996807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6ad0", "tid": 35568, "ts": 11996893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9510", "tid": 35568, "ts": 11996980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d96b0", "tid": 35568, "ts": 11997067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9b90", "tid": 35568, "ts": 11997153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7220", "tid": 35568, "ts": 11997239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6a00", "tid": 35568, "ts": 11997325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6c70", "tid": 35568, "ts": 11997411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d89b0", "tid": 35568, "ts": 11997498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8e90", "tid": 35568, "ts": 11997584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7630", "tid": 35568, "ts": 11997670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9440", "tid": 35568, "ts": 11997756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8670", "tid": 35568, "ts": 11997842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7d80", "tid": 35568, "ts": 11997928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d84d0", "tid": 35568, "ts": 11998014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d88e0", "tid": 35568, "ts": 11998101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7cb0", "tid": 35568, "ts": 11998188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d73c0", "tid": 35568, "ts": 11998276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d92a0", "tid": 35568, "ts": 11998363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d91d0", "tid": 35568, "ts": 11998449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8810", "tid": 35568, "ts": 11998537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9850", "tid": 35568, "ts": 11998624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6d40", "tid": 35568, "ts": 11998711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5750", "tid": 35568, "ts": 11998808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d55b0", "tid": 35568, "ts": 11998895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d51a0", "tid": 35568, "ts": 11998982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4e60", "tid": 35568, "ts": 11999067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d37a0", "tid": 35568, "ts": 11999153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d36d0", "tid": 35568, "ts": 11999239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4710", "tid": 35568, "ts": 11999325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3600", "tid": 35568, "ts": 11999412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3530", "tid": 35568, "ts": 11999498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4980", "tid": 35568, "ts": 11999584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d65f0", "tid": 35568, "ts": 11999670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d54e0", "tid": 35568, "ts": 11999756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4570", "tid": 35568, "ts": 11999842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d61e0", "tid": 35568, "ts": 11999928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3ef0", "tid": 35568, "ts": 12000014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d48b0", "tid": 35568, "ts": 12000100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6110", "tid": 35568, "ts": 12000185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6040", "tid": 35568, "ts": 12000272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6790", "tid": 35568, "ts": 12000358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3870", "tid": 35568, "ts": 12000444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5d00", "tid": 35568, "ts": 12000530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d62b0", "tid": 35568, "ts": 12000616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5b60", "tid": 35568, "ts": 12000701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d59c0", "tid": 35568, "ts": 12000787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4230", "tid": 35568, "ts": 12000874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4a50", "tid": 35568, "ts": 12000960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4160", "tid": 35568, "ts": 12001045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5410", "tid": 35568, "ts": 12001132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d43d0", "tid": 35568, "ts": 12001218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4300", "tid": 35568, "ts": 12001304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5dd0", "tid": 35568, "ts": 12001389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3fc0", "tid": 35568, "ts": 12001476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1b30", "tid": 35568, "ts": 12001562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1310", "tid": 35568, "ts": 12001647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d17f0", "tid": 35568, "ts": 12001733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0d60", "tid": 35568, "ts": 12001820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0880", "tid": 35568, "ts": 12001905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d07b0", "tid": 35568, "ts": 12001991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0130", "tid": 35568, "ts": 12002078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d32c0", "tid": 35568, "ts": 12002164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d31f0", "tid": 35568, "ts": 12002250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1a60", "tid": 35568, "ts": 12002336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d21b0", "tid": 35568, "ts": 12002422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1c00", "tid": 35568, "ts": 12002508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2350", "tid": 35568, "ts": 12002594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2eb0", "tid": 35568, "ts": 12002680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2de0", "tid": 35568, "ts": 12002766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1240", "tid": 35568, "ts": 12002851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2010", "tid": 35568, "ts": 12002938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1720", "tid": 35568, "ts": 12003023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0610", "tid": 35568, "ts": 12003110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2b70", "tid": 35568, "ts": 12003196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2aa0", "tid": 35568, "ts": 12003282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0f00", "tid": 35568, "ts": 12003368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2c40", "tid": 35568, "ts": 12003454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d25c0", "tid": 35568, "ts": 12003540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1650", "tid": 35568, "ts": 12003626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2420", "tid": 35568, "ts": 12003712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0470", "tid": 35568, "ts": 12003798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0af0", "tid": 35568, "ts": 12003884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d02d0", "tid": 35568, "ts": 12003970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2760", "tid": 35568, "ts": 12004056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d14b0", "tid": 35568, "ts": 12004142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0bc0", "tid": 35568, "ts": 12004228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce800", "tid": 35568, "ts": 12004314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdfe0", "tid": 35568, "ts": 12004400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cda30", "tid": 35568, "ts": 12004496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdca0", "tid": 35568, "ts": 12004584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd890", "tid": 35568, "ts": 12004670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdf10", "tid": 35568, "ts": 12004756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf430", "tid": 35568, "ts": 12004843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce730", "tid": 35568, "ts": 12004930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf360", "tid": 35568, "ts": 12005016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd070", "tid": 35568, "ts": 12005102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce590", "tid": 35568, "ts": 12005188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf020", "tid": 35568, "ts": 12005273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf290", "tid": 35568, "ts": 12005360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf0f0", "tid": 35568, "ts": 12005446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce0b0", "tid": 35568, "ts": 12005532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf770", "tid": 35568, "ts": 12005617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd6f0", "tid": 35568, "ts": 12005703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf6a0", "tid": 35568, "ts": 12005790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfd20", "tid": 35568, "ts": 12005876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0060", "tid": 35568, "ts": 12005962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdb00", "tid": 35568, "ts": 12006048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce3f0", "tid": 35568, "ts": 12006133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cee80", "tid": 35568, "ts": 12006219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfdf0", "tid": 35568, "ts": 12006305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce320", "tid": 35568, "ts": 12006391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd480", "tid": 35568, "ts": 12006476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccd30", "tid": 35568, "ts": 12006562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ceb40", "tid": 35568, "ts": 12006648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfab0", "tid": 35568, "ts": 12006734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cde40", "tid": 35568, "ts": 12006819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdbd0", "tid": 35568, "ts": 12006905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfec0", "tid": 35568, "ts": 12006991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb4d0", "tid": 35568, "ts": 12007078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb260", "tid": 35568, "ts": 12007164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca490", "tid": 35568, "ts": 12007250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9ee0", "tid": 35568, "ts": 12007336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9ad0", "tid": 35568, "ts": 12007421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccb90", "tid": 35568, "ts": 12007508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca2f0", "tid": 35568, "ts": 12007593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca150", "tid": 35568, "ts": 12007680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca220", "tid": 35568, "ts": 12007766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca970", "tid": 35568, "ts": 12007852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb9b0", "tid": 35568, "ts": 12007939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca8a0", "tid": 35568, "ts": 12008025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9d40", "tid": 35568, "ts": 12008111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9ba0", "tid": 35568, "ts": 12008197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc510", "tid": 35568, "ts": 12008283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb740", "tid": 35568, "ts": 12008369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc440", "tid": 35568, "ts": 12008455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc370", "tid": 35568, "ts": 12008541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc2a0", "tid": 35568, "ts": 12008627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc9f0", "tid": 35568, "ts": 12008714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca7d0", "tid": 35568, "ts": 12008799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cad80", "tid": 35568, "ts": 12008885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9fb0", "tid": 35568, "ts": 12008971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc920", "tid": 35568, "ts": 12009057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbc20", "tid": 35568, "ts": 12009143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbb50", "tid": 35568, "ts": 12009229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbf60", "tid": 35568, "ts": 12009315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9930", "tid": 35568, "ts": 12009401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb400", "tid": 35568, "ts": 12009487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb8e0", "tid": 35568, "ts": 12009573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cba80", "tid": 35568, "ts": 12009659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc1d0", "tid": 35568, "ts": 12009745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8750", "tid": 35568, "ts": 12009831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c81a0", "tid": 35568, "ts": 12009918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7bf0", "tid": 35568, "ts": 12010003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c84e0", "tid": 35568, "ts": 12010090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6fc0", "tid": 35568, "ts": 12010175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6e20", "tid": 35568, "ts": 12010262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c92b0", "tid": 35568, "ts": 12010348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8340", "tid": 35568, "ts": 12010434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7090", "tid": 35568, "ts": 12010519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c91e0", "tid": 35568, "ts": 12010605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6c80", "tid": 35568, "ts": 12010691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7e60", "tid": 35568, "ts": 12010777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6a10", "tid": 35568, "ts": 12010864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7d90", "tid": 35568, "ts": 12010950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c73d0", "tid": 35568, "ts": 12011035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8680", "tid": 35568, "ts": 12011121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9520", "tid": 35568, "ts": 12011206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9790", "tid": 35568, "ts": 12011293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9110", "tid": 35568, "ts": 12011379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8270", "tid": 35568, "ts": 12011465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7160", "tid": 35568, "ts": 12011552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7230", "tid": 35568, "ts": 12011637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9860", "tid": 35568, "ts": 12011722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6ef0", "tid": 35568, "ts": 12011808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9040", "tid": 35568, "ts": 12011894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8f70", "tid": 35568, "ts": 12011980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9450", "tid": 35568, "ts": 12012066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8410", "tid": 35568, "ts": 12012152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6600", "tid": 35568, "ts": 12012273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7a50", "tid": 35568, "ts": 12012372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8b60", "tid": 35568, "ts": 12012484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c66d0", "tid": 35568, "ts": 12012612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3950", "tid": 35568, "ts": 12012698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3880", "tid": 35568, "ts": 12012784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c36e0", "tid": 35568, "ts": 12012871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3540", "tid": 35568, "ts": 12012956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3bc0", "tid": 35568, "ts": 12013042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c32d0", "tid": 35568, "ts": 12013127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3f00", "tid": 35568, "ts": 12013212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6460", "tid": 35568, "ts": 12013299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5f80", "tid": 35568, "ts": 12013385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5900", "tid": 35568, "ts": 12013471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4c00", "tid": 35568, "ts": 12013556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5de0", "tid": 35568, "ts": 12013642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6390", "tid": 35568, "ts": 12013728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5350", "tid": 35568, "ts": 12013814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c48c0", "tid": 35568, "ts": 12013899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c54f0", "tid": 35568, "ts": 12013985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c47f0", "tid": 35568, "ts": 12014071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6050", "tid": 35568, "ts": 12014157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c33a0", "tid": 35568, "ts": 12014243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4e70", "tid": 35568, "ts": 12014335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c62c0", "tid": 35568, "ts": 12014421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4a60", "tid": 35568, "ts": 12014507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3a20", "tid": 35568, "ts": 12014593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3e30", "tid": 35568, "ts": 12014678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3fd0", "tid": 35568, "ts": 12014764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c55c0", "tid": 35568, "ts": 12014850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5760", "tid": 35568, "ts": 12014936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c51b0", "tid": 35568, "ts": 12015021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6120", "tid": 35568, "ts": 12015107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3af0", "tid": 35568, "ts": 12015192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4240", "tid": 35568, "ts": 12015278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4720", "tid": 35568, "ts": 12015363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1320", "tid": 35568, "ts": 12015450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0f10", "tid": 35568, "ts": 12015535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfd30", "tid": 35568, "ts": 12015621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2ec0", "tid": 35568, "ts": 12015707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfe00", "tid": 35568, "ts": 12015792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1a70", "tid": 35568, "ts": 12015878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2b80", "tid": 35568, "ts": 12015964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0bd0", "tid": 35568, "ts": 12016056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3060", "tid": 35568, "ts": 12016144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c10b0", "tid": 35568, "ts": 12016230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0b00", "tid": 35568, "ts": 12016316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0a30", "tid": 35568, "ts": 12016401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0e40", "tid": 35568, "ts": 12016487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2c50", "tid": 35568, "ts": 12016572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c18d0", "tid": 35568, "ts": 12016657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1590", "tid": 35568, "ts": 12016743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1250", "tid": 35568, "ts": 12016828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1f50", "tid": 35568, "ts": 12016914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c07c0", "tid": 35568, "ts": 12017000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0480", "tid": 35568, "ts": 12017086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c19a0", "tid": 35568, "ts": 12017171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2500", "tid": 35568, "ts": 12017257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2360", "tid": 35568, "ts": 12017342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c06f0", "tid": 35568, "ts": 12017428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfed0", "tid": 35568, "ts": 12017514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1ce0", "tid": 35568, "ts": 12017599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0070", "tid": 35568, "ts": 12017685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c02e0", "tid": 35568, "ts": 12017771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c13f0", "tid": 35568, "ts": 12017856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1e80", "tid": 35568, "ts": 12017942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c03b0", "tid": 35568, "ts": 12018028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2df0", "tid": 35568, "ts": 12018112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be5a0", "tid": 35568, "ts": 12018197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfb90", "tid": 35568, "ts": 12018283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be330", "tid": 35568, "ts": 12018369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be190", "tid": 35568, "ts": 12018455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdcb0", "tid": 35568, "ts": 12018540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd3c0", "tid": 35568, "ts": 12018626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf920", "tid": 35568, "ts": 12018712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf850", "tid": 35568, "ts": 12018799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be4d0", "tid": 35568, "ts": 12018884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf6b0", "tid": 35568, "ts": 12018970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33beb50", "tid": 35568, "ts": 12019056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd490", "tid": 35568, "ts": 12019143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bee90", "tid": 35568, "ts": 12019230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd2f0", "tid": 35568, "ts": 12019316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd150", "tid": 35568, "ts": 12019401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf510", "tid": 35568, "ts": 12019487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf2a0", "tid": 35568, "ts": 12019572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be8e0", "tid": 35568, "ts": 12019659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bde50", "tid": 35568, "ts": 12019744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcc70", "tid": 35568, "ts": 12019829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf100", "tid": 35568, "ts": 12019915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf440", "tid": 35568, "ts": 12020001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd700", "tid": 35568, "ts": 12020086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf1d0", "tid": 35568, "ts": 12020173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf9f0", "tid": 35568, "ts": 12020258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf030", "tid": 35568, "ts": 12020344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33becf0", "tid": 35568, "ts": 12020431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be740", "tid": 35568, "ts": 12020516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd7d0", "tid": 35568, "ts": 12020602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be670", "tid": 35568, "ts": 12020688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd220", "tid": 35568, "ts": 12020774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcfb0", "tid": 35568, "ts": 12020860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb820", "tid": 35568, "ts": 12020946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbc30", "tid": 35568, "ts": 12021033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb410", "tid": 35568, "ts": 12021119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb000", "tid": 35568, "ts": 12021205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bae60", "tid": 35568, "ts": 12021291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9fc0", "tid": 35568, "ts": 12021376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9ef0", "tid": 35568, "ts": 12021463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9c80", "tid": 35568, "ts": 12021548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bba90", "tid": 35568, "ts": 12021634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba8b0", "tid": 35568, "ts": 12021720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba160", "tid": 35568, "ts": 12021806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba710", "tid": 35568, "ts": 12021892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb9c0", "tid": 35568, "ts": 12021978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba090", "tid": 35568, "ts": 12022064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bab20", "tid": 35568, "ts": 12022149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9600", "tid": 35568, "ts": 12022235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbf70", "tid": 35568, "ts": 12022320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb0d0", "tid": 35568, "ts": 12022406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc6c0", "tid": 35568, "ts": 12022493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb4e0", "tid": 35568, "ts": 12022578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b97a0", "tid": 35568, "ts": 12022665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb8f0", "tid": 35568, "ts": 12022750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba300", "tid": 35568, "ts": 12022836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba230", "tid": 35568, "ts": 12022921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bad90", "tid": 35568, "ts": 12023007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9870", "tid": 35568, "ts": 12023093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba640", "tid": 35568, "ts": 12023179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb270", "tid": 35568, "ts": 12023265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba4a0", "tid": 35568, "ts": 12023351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9a10", "tid": 35568, "ts": 12023437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba980", "tid": 35568, "ts": 12023523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba3d0", "tid": 35568, "ts": 12023609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6e30", "tid": 35568, "ts": 12023695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9390", "tid": 35568, "ts": 12023780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b91f0", "tid": 35568, "ts": 12023867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b92c0", "tid": 35568, "ts": 12023952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7cd0", "tid": 35568, "ts": 12024038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7c00", "tid": 35568, "ts": 12024128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8900", "tid": 35568, "ts": 12024214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9460", "tid": 35568, "ts": 12024300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6540", "tid": 35568, "ts": 12024386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8f80", "tid": 35568, "ts": 12024471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6130", "tid": 35568, "ts": 12024557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7a60", "tid": 35568, "ts": 12024643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8350", "tid": 35568, "ts": 12024729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6950", "tid": 35568, "ts": 12024814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6880", "tid": 35568, "ts": 12024900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7170", "tid": 35568, "ts": 12024986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8280", "tid": 35568, "ts": 12025072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8420", "tid": 35568, "ts": 12025158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6bc0", "tid": 35568, "ts": 12025244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6d60", "tid": 35568, "ts": 12025330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7310", "tid": 35568, "ts": 12025416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b74b0", "tid": 35568, "ts": 12025501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b73e0", "tid": 35568, "ts": 12025587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8760", "tid": 35568, "ts": 12025673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6af0", "tid": 35568, "ts": 12025759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7240", "tid": 35568, "ts": 12025845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7650", "tid": 35568, "ts": 12025931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7f40", "tid": 35568, "ts": 12026017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b81b0", "tid": 35568, "ts": 12026103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b85c0", "tid": 35568, "ts": 12026189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9050", "tid": 35568, "ts": 12026275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b84f0", "tid": 35568, "ts": 12026360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30690d0", "tid": 35568, "ts": 12026447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068bf0", "tid": 35568, "ts": 12026533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068a50", "tid": 35568, "ts": 12026619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30687e0", "tid": 35568, "ts": 12026705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066280", "tid": 35568, "ts": 12026791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068160", "tid": 35568, "ts": 12026877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067d50", "tid": 35568, "ts": 12026963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068710", "tid": 35568, "ts": 12027049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067c80", "tid": 35568, "ts": 12027146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067ae0", "tid": 35568, "ts": 12027244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30677a0", "tid": 35568, "ts": 12027330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067ef0", "tid": 35568, "ts": 12027415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066830", "tid": 35568, "ts": 12027501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30661b0", "tid": 35568, "ts": 12027586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30664f0", "tid": 35568, "ts": 12027672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066420", "tid": 35568, "ts": 12027758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067390", "tid": 35568, "ts": 12027865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066aa0", "tid": 35568, "ts": 12027968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066b70", "tid": 35568, "ts": 12028054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067460", "tid": 35568, "ts": 12028139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067120", "tid": 35568, "ts": 12028225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066760", "tid": 35568, "ts": 12028311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067870", "tid": 35568, "ts": 12028397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067940", "tid": 35568, "ts": 12028483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066900", "tid": 35568, "ts": 12028569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068230", "tid": 35568, "ts": 12028655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068640", "tid": 35568, "ts": 12028741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067050", "tid": 35568, "ts": 12028827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068d90", "tid": 35568, "ts": 12028913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30684a0", "tid": 35568, "ts": 12028999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30691a0", "tid": 35568, "ts": 12029085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066690", "tid": 35568, "ts": 12029171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085970", "tid": 35568, "ts": 12029257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085e50", "tid": 35568, "ts": 12029342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085700", "tid": 35568, "ts": 12029429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30853c0", "tid": 35568, "ts": 12029515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084860", "tid": 35568, "ts": 12029601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083680", "tid": 35568, "ts": 12029686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084e10", "tid": 35568, "ts": 12029772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085cb0", "tid": 35568, "ts": 12029859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083f70", "tid": 35568, "ts": 12029945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084930", "tid": 35568, "ts": 12030031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084ee0", "tid": 35568, "ts": 12030117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084790", "tid": 35568, "ts": 12030202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083ea0", "tid": 35568, "ts": 12030288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084450", "tid": 35568, "ts": 12030373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084d40", "tid": 35568, "ts": 12030459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085be0", "tid": 35568, "ts": 12030546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085490", "tid": 35568, "ts": 12030631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30839c0", "tid": 35568, "ts": 12030717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084ba0", "tid": 35568, "ts": 12030803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083a90", "tid": 35568, "ts": 12030889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083750", "tid": 35568, "ts": 12030975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084110", "tid": 35568, "ts": 12031060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085f20", "tid": 35568, "ts": 12031146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085150", "tid": 35568, "ts": 12031232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30842b0", "tid": 35568, "ts": 12031317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085560", "tid": 35568, "ts": 12031403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30828b0", "tid": 35568, "ts": 12031489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082640", "tid": 35568, "ts": 12031576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082300", "tid": 35568, "ts": 12031662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081fc0", "tid": 35568, "ts": 12031748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081d50", "tid": 35568, "ts": 12031834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081a10", "tid": 35568, "ts": 12031920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081940", "tid": 35568, "ts": 12032006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30817a0", "tid": 35568, "ts": 12032092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080f80", "tid": 35568, "ts": 12032178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081c80", "tid": 35568, "ts": 12032264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080d10", "tid": 35568, "ts": 12032349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080b70", "tid": 35568, "ts": 12032436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080900", "tid": 35568, "ts": 12032521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081050", "tid": 35568, "ts": 12032607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080690", "tid": 35568, "ts": 12032694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30804f0", "tid": 35568, "ts": 12032779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30801b0", "tid": 35568, "ts": 12032865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082980", "tid": 35568, "ts": 12032951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083410", "tid": 35568, "ts": 12033038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082f30", "tid": 35568, "ts": 12033125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30831a0", "tid": 35568, "ts": 12033211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080280", "tid": 35568, "ts": 12033298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30805c0", "tid": 35568, "ts": 12033385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082e60", "tid": 35568, "ts": 12033481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082090", "tid": 35568, "ts": 12033569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082710", "tid": 35568, "ts": 12033655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080830", "tid": 35568, "ts": 12033741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082230", "tid": 35568, "ts": 12033826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082a50", "tid": 35568, "ts": 12033921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080760", "tid": 35568, "ts": 12034008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083270", "tid": 35568, "ts": 12034095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082cc0", "tid": 35568, "ts": 12034181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fa60", "tid": 35568, "ts": 12034267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f8c0", "tid": 35568, "ts": 12034353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f580", "tid": 35568, "ts": 12034439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f310", "tid": 35568, "ts": 12034525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d0f0", "tid": 35568, "ts": 12034610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307efd0", "tid": 35568, "ts": 12034695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dec0", "tid": 35568, "ts": 12034781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cf50", "tid": 35568, "ts": 12034866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ddf0", "tid": 35568, "ts": 12034952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ef00", "tid": 35568, "ts": 12035038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cdb0", "tid": 35568, "ts": 12035125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dd20", "tid": 35568, "ts": 12035210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e200", "tid": 35568, "ts": 12035295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d9e0", "tid": 35568, "ts": 12035381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080010", "tid": 35568, "ts": 12035467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e060", "tid": 35568, "ts": 12035552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ff40", "tid": 35568, "ts": 12035637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fe70", "tid": 35568, "ts": 12035722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d500", "tid": 35568, "ts": 12035808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d1c0", "tid": 35568, "ts": 12035894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d360", "tid": 35568, "ts": 12035979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d6a0", "tid": 35568, "ts": 12036064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e540", "tid": 35568, "ts": 12036150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ec90", "tid": 35568, "ts": 12036236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f3e0", "tid": 35568, "ts": 12036322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f240", "tid": 35568, "ts": 12036407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dc50", "tid": 35568, "ts": 12036493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e3a0", "tid": 35568, "ts": 12036586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307eaf0", "tid": 35568, "ts": 12036673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fb30", "tid": 35568, "ts": 12036759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d430", "tid": 35568, "ts": 12036844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307db80", "tid": 35568, "ts": 12036930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b6f0", "tid": 35568, "ts": 12037015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b550", "tid": 35568, "ts": 12037101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b2e0", "tid": 35568, "ts": 12037186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079dc0", "tid": 35568, "ts": 12037272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079c20", "tid": 35568, "ts": 12037358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30799b0", "tid": 35568, "ts": 12037443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cc10", "tid": 35568, "ts": 12037529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c3f0", "tid": 35568, "ts": 12037614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a920", "tid": 35568, "ts": 12037700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b210", "tid": 35568, "ts": 12037786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c250", "tid": 35568, "ts": 12037871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b960", "tid": 35568, "ts": 12037956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a6b0", "tid": 35568, "ts": 12038041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ca70", "tid": 35568, "ts": 12038126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b070", "tid": 35568, "ts": 12038212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a440", "tid": 35568, "ts": 12038297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a370", "tid": 35568, "ts": 12038383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b7c0", "tid": 35568, "ts": 12038468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b140", "tid": 35568, "ts": 12038553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a1d0", "tid": 35568, "ts": 12038639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a030", "tid": 35568, "ts": 12038725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c0b0", "tid": 35568, "ts": 12038810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c730", "tid": 35568, "ts": 12038896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a100", "tid": 35568, "ts": 12038981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079f60", "tid": 35568, "ts": 12039066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bfe0", "tid": 35568, "ts": 12039153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079cf0", "tid": 35568, "ts": 12039239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307be40", "tid": 35568, "ts": 12039324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a2a0", "tid": 35568, "ts": 12039410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ad30", "tid": 35568, "ts": 12039497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c590", "tid": 35568, "ts": 12039582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bf10", "tid": 35568, "ts": 12039668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079400", "tid": 35568, "ts": 12039754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079260", "tid": 35568, "ts": 12039840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078a40", "tid": 35568, "ts": 12039925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078560", "tid": 35568, "ts": 12040011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079190", "tid": 35568, "ts": 12040096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076c30", "tid": 35568, "ts": 12040183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30790c0", "tid": 35568, "ts": 12040268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078e50", "tid": 35568, "ts": 12040355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077380", "tid": 35568, "ts": 12040441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077ad0", "tid": 35568, "ts": 12040527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078700", "tid": 35568, "ts": 12040613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078490", "tid": 35568, "ts": 12040699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078cb0", "tid": 35568, "ts": 12040785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079740", "tid": 35568, "ts": 12040871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078080", "tid": 35568, "ts": 12040957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077ba0", "tid": 35568, "ts": 12041042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078be0", "tid": 35568, "ts": 12041129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076d00", "tid": 35568, "ts": 12041214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076750", "tid": 35568, "ts": 12041300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078220", "tid": 35568, "ts": 12041385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30776c0", "tid": 35568, "ts": 12041471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078ff0", "tid": 35568, "ts": 12041557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077fb0", "tid": 35568, "ts": 12041641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30794d0", "tid": 35568, "ts": 12041728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076a90", "tid": 35568, "ts": 12041813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076680", "tid": 35568, "ts": 12041900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078150", "tid": 35568, "ts": 12041985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077040", "tid": 35568, "ts": 12042070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078630", "tid": 35568, "ts": 12042156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079670", "tid": 35568, "ts": 12042243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076dd0", "tid": 35568, "ts": 12042329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077450", "tid": 35568, "ts": 12042414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075300", "tid": 35568, "ts": 12042501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074e20", "tid": 35568, "ts": 12042586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074c80", "tid": 35568, "ts": 12042671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073eb0", "tid": 35568, "ts": 12042757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30742c0", "tid": 35568, "ts": 12042842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074ae0", "tid": 35568, "ts": 12042929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074a10", "tid": 35568, "ts": 12043014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30730e0", "tid": 35568, "ts": 12043099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075d90", "tid": 35568, "ts": 12043185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30753d0", "tid": 35568, "ts": 12043270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073350", "tid": 35568, "ts": 12043357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074fc0", "tid": 35568, "ts": 12043457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073690", "tid": 35568, "ts": 12043588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073d10", "tid": 35568, "ts": 12043674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30739d0", "tid": 35568, "ts": 12043760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30747a0", "tid": 35568, "ts": 12043846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075cc0", "tid": 35568, "ts": 12043932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075e60", "tid": 35568, "ts": 12044018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074bb0", "tid": 35568, "ts": 12044104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073280", "tid": 35568, "ts": 12044190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074120", "tid": 35568, "ts": 12044276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30746d0", "tid": 35568, "ts": 12044362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073c40", "tid": 35568, "ts": 12044448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30731b0", "tid": 35568, "ts": 12044533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073f80", "tid": 35568, "ts": 12044620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075b20", "tid": 35568, "ts": 12044706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073aa0", "tid": 35568, "ts": 12044792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073900", "tid": 35568, "ts": 12044877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075bf0", "tid": 35568, "ts": 12044968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075570", "tid": 35568, "ts": 12045055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30754a0", "tid": 35568, "ts": 12045140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073760", "tid": 35568, "ts": 12045226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30724b0", "tid": 35568, "ts": 12045312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071bc0", "tid": 35568, "ts": 12045398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30717b0", "tid": 35568, "ts": 12045484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071610", "tid": 35568, "ts": 12045570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071200", "tid": 35568, "ts": 12045656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070f90", "tid": 35568, "ts": 12045742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070ec0", "tid": 35568, "ts": 12045827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072a60", "tid": 35568, "ts": 12045913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30727f0", "tid": 35568, "ts": 12045998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072240", "tid": 35568, "ts": 12046084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070c50", "tid": 35568, "ts": 12046170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070290", "tid": 35568, "ts": 12046255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30701c0", "tid": 35568, "ts": 12046341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073010", "tid": 35568, "ts": 12046427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071c90", "tid": 35568, "ts": 12046513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072580", "tid": 35568, "ts": 12046599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071540", "tid": 35568, "ts": 12046685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071e30", "tid": 35568, "ts": 12046772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072cd0", "tid": 35568, "ts": 12046858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070840", "tid": 35568, "ts": 12046944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070ab0", "tid": 35568, "ts": 12047029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30713a0", "tid": 35568, "ts": 12047115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072720", "tid": 35568, "ts": 12047201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072b30", "tid": 35568, "ts": 12047287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072f40", "tid": 35568, "ts": 12047373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30723e0", "tid": 35568, "ts": 12047458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072e70", "tid": 35568, "ts": 12047544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071130", "tid": 35568, "ts": 12047629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30728c0", "tid": 35568, "ts": 12047715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071f00", "tid": 35568, "ts": 12047801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070500", "tid": 35568, "ts": 12047887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071470", "tid": 35568, "ts": 12047972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f660", "tid": 35568, "ts": 12048058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f4c0", "tid": 35568, "ts": 12048144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306efe0", "tid": 35568, "ts": 12048230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f3f0", "tid": 35568, "ts": 12048315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ebd0", "tid": 35568, "ts": 12048401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e3b0", "tid": 35568, "ts": 12048487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d370", "tid": 35568, "ts": 12048573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dd30", "tid": 35568, "ts": 12048658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d1d0", "tid": 35568, "ts": 12048744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306db90", "tid": 35568, "ts": 12048830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dac0", "tid": 35568, "ts": 12048916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d100", "tid": 35568, "ts": 12049002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f180", "tid": 35568, "ts": 12049088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e7c0", "tid": 35568, "ts": 12049174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ccf0", "tid": 35568, "ts": 12049260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306eb00", "tid": 35568, "ts": 12049345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c8e0", "tid": 35568, "ts": 12049432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f800", "tid": 35568, "ts": 12049518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cc20", "tid": 35568, "ts": 12049603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ea30", "tid": 35568, "ts": 12049689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ce90", "tid": 35568, "ts": 12049775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e140", "tid": 35568, "ts": 12049861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d5e0", "tid": 35568, "ts": 12049948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d510", "tid": 35568, "ts": 12050034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ca80", "tid": 35568, "ts": 12050120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d780", "tid": 35568, "ts": 12050206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d850", "tid": 35568, "ts": 12050291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cb50", "tid": 35568, "ts": 12050378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fb40", "tid": 35568, "ts": 12050463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fa70", "tid": 35568, "ts": 12050549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dc60", "tid": 35568, "ts": 12050635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e070", "tid": 35568, "ts": 12050721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bb10", "tid": 35568, "ts": 12050807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b970", "tid": 35568, "ts": 12050893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b700", "tid": 35568, "ts": 12050979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aba0", "tid": 35568, "ts": 12051064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c4d0", "tid": 35568, "ts": 12051151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a860", "tid": 35568, "ts": 12051237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069f70", "tid": 35568, "ts": 12051328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069dd0", "tid": 35568, "ts": 12051415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a110", "tid": 35568, "ts": 12051501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b3c0", "tid": 35568, "ts": 12051587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30699c0", "tid": 35568, "ts": 12051673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a5f0", "tid": 35568, "ts": 12051760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c260", "tid": 35568, "ts": 12051845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a450", "tid": 35568, "ts": 12051932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a040", "tid": 35568, "ts": 12052018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c670", "tid": 35568, "ts": 12052104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bff0", "tid": 35568, "ts": 12052190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bcb0", "tid": 35568, "ts": 12052275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069d00", "tid": 35568, "ts": 12052361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30694e0", "tid": 35568, "ts": 12052446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b220", "tid": 35568, "ts": 12052532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c400", "tid": 35568, "ts": 12052618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30698f0", "tid": 35568, "ts": 12052704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ad40", "tid": 35568, "ts": 12052789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b150", "tid": 35568, "ts": 12052875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b080", "tid": 35568, "ts": 12052961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069c30", "tid": 35568, "ts": 12053046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c330", "tid": 35568, "ts": 12053132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069750", "tid": 35568, "ts": 12053218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ae10", "tid": 35568, "ts": 12053303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aa00", "tid": 35568, "ts": 12053390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bf20", "tid": 35568, "ts": 12053475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e350", "tid": 35568, "ts": 12053561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e280", "tid": 35568, "ts": 12053648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f2c0", "tid": 35568, "ts": 12053734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f050", "tid": 35568, "ts": 12053820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120710", "tid": 35568, "ts": 12053905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120d90", "tid": 35568, "ts": 12053992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120bf0", "tid": 35568, "ts": 12054077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fe20", "tid": 35568, "ts": 12054163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fd50", "tid": 35568, "ts": 12054249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011eeb0", "tid": 35568, "ts": 12054335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120640", "tid": 35568, "ts": 12054422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e900", "tid": 35568, "ts": 12054507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120f30", "tid": 35568, "ts": 12054594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fc80", "tid": 35568, "ts": 12054680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f7a0", "tid": 35568, "ts": 12054766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01208b0", "tid": 35568, "ts": 12054852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e690", "tid": 35568, "ts": 12054938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f6d0", "tid": 35568, "ts": 12055024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fa10", "tid": 35568, "ts": 12055109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e760", "tid": 35568, "ts": 12055195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120a50", "tid": 35568, "ts": 12055281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f600", "tid": 35568, "ts": 12055367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fef0", "tid": 35568, "ts": 12055452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ed10", "tid": 35568, "ts": 12055538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ec40", "tid": 35568, "ts": 12055624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e830", "tid": 35568, "ts": 12055709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ede0", "tid": 35568, "ts": 12055795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120b20", "tid": 35568, "ts": 12055881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01207e0", "tid": 35568, "ts": 12055967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120980", "tid": 35568, "ts": 12056053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120230", "tid": 35568, "ts": 12056140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e5c0", "tid": 35568, "ts": 12056226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013db10", "tid": 35568, "ts": 12056312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ce10", "tid": 35568, "ts": 12056397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cad0", "tid": 35568, "ts": 12056483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c520", "tid": 35568, "ts": 12056569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c450", "tid": 35568, "ts": 12056655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c2b0", "tid": 35568, "ts": 12056741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bf70", "tid": 35568, "ts": 12056827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bea0", "tid": 35568, "ts": 12056912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bd00", "tid": 35568, "ts": 12056997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b4e0", "tid": 35568, "ts": 12057083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d560", "tid": 35568, "ts": 12057169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c860", "tid": 35568, "ts": 12057260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c040", "tid": 35568, "ts": 12057347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cee0", "tid": 35568, "ts": 12057433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b9c0", "tid": 35568, "ts": 12057520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bc30", "tid": 35568, "ts": 12057606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d970", "tid": 35568, "ts": 12057691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013de50", "tid": 35568, "ts": 12057777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bdd0", "tid": 35568, "ts": 12057863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d3c0", "tid": 35568, "ts": 12057949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c5f0", "tid": 35568, "ts": 12058035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d8a0", "tid": 35568, "ts": 12058121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013dd80", "tid": 35568, "ts": 12058207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c930", "tid": 35568, "ts": 12058293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b680", "tid": 35568, "ts": 12058379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d220", "tid": 35568, "ts": 12058465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bb60", "tid": 35568, "ts": 12058551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013abf0", "tid": 35568, "ts": 12058637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a090", "tid": 35568, "ts": 12058723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139ef0", "tid": 35568, "ts": 12058809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ab20", "tid": 35568, "ts": 12058895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139460", "tid": 35568, "ts": 12058982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139390", "tid": 35568, "ts": 12059101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013aa50", "tid": 35568, "ts": 12059277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138eb0", "tid": 35568, "ts": 12059450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a8b0", "tid": 35568, "ts": 12059598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138d10", "tid": 35568, "ts": 12059735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139050", "tid": 35568, "ts": 12059833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138830", "tid": 35568, "ts": 12059968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138420", "tid": 35568, "ts": 12060084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a640", "tid": 35568, "ts": 12060170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138de0", "tid": 35568, "ts": 12060257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b410", "tid": 35568, "ts": 12060342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a300", "tid": 35568, "ts": 12060429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a710", "tid": 35568, "ts": 12060514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139530", "tid": 35568, "ts": 12060600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139ae0", "tid": 35568, "ts": 12060686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b340", "tid": 35568, "ts": 12060772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b270", "tid": 35568, "ts": 12060858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01380e0", "tid": 35568, "ts": 12060945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ae60", "tid": 35568, "ts": 12061031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138760", "tid": 35568, "ts": 12061117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139a10", "tid": 35568, "ts": 12061204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b1a0", "tid": 35568, "ts": 12061290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b0d0", "tid": 35568, "ts": 12061376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01389d0", "tid": 35568, "ts": 12061462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013af30", "tid": 35568, "ts": 12061548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138350", "tid": 35568, "ts": 12061635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ad90", "tid": 35568, "ts": 12061720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136d60", "tid": 35568, "ts": 12061806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01373e0", "tid": 35568, "ts": 12061892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135ec0", "tid": 35568, "ts": 12061979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137310", "tid": 35568, "ts": 12062065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136bc0", "tid": 35568, "ts": 12062151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135df0", "tid": 35568, "ts": 12062238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135ab0", "tid": 35568, "ts": 12062324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137990", "tid": 35568, "ts": 12062410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135b80", "tid": 35568, "ts": 12062496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01351c0", "tid": 35568, "ts": 12062582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01359e0", "tid": 35568, "ts": 12062678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01363a0", "tid": 35568, "ts": 12062764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137a60", "tid": 35568, "ts": 12062851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01350f0", "tid": 35568, "ts": 12062937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137f40", "tid": 35568, "ts": 12063022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135910", "tid": 35568, "ts": 12063108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136880", "tid": 35568, "ts": 12063194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136470", "tid": 35568, "ts": 12063280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137650", "tid": 35568, "ts": 12063367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135770", "tid": 35568, "ts": 12063453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136200", "tid": 35568, "ts": 12063539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136950", "tid": 35568, "ts": 12063625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01374b0", "tid": 35568, "ts": 12063711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137580", "tid": 35568, "ts": 12063797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136130", "tid": 35568, "ts": 12063883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01366e0", "tid": 35568, "ts": 12063969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01362d0", "tid": 35568, "ts": 12064055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01367b0", "tid": 35568, "ts": 12064141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135d20", "tid": 35568, "ts": 12064227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136610", "tid": 35568, "ts": 12064314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135290", "tid": 35568, "ts": 12064400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136f00", "tid": 35568, "ts": 12064486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133bd0", "tid": 35568, "ts": 12064571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01337c0", "tid": 35568, "ts": 12064657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133550", "tid": 35568, "ts": 12064743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132e00", "tid": 35568, "ts": 12064828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132c60", "tid": 35568, "ts": 12064915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132ac0", "tid": 35568, "ts": 12065001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133210", "tid": 35568, "ts": 12065087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132920", "tid": 35568, "ts": 12065173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133fe0", "tid": 35568, "ts": 12065259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132510", "tid": 35568, "ts": 12065345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01321d0", "tid": 35568, "ts": 12065431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132100", "tid": 35568, "ts": 12065517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131cf0", "tid": 35568, "ts": 12065602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131a80", "tid": 35568, "ts": 12065688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132370", "tid": 35568, "ts": 12065774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01343f0", "tid": 35568, "ts": 12065859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131dc0", "tid": 35568, "ts": 12065944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132ed0", "tid": 35568, "ts": 12066030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133d70", "tid": 35568, "ts": 12066116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134800", "tid": 35568, "ts": 12066201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131e90", "tid": 35568, "ts": 12066287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133b00", "tid": 35568, "ts": 12066372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134250", "tid": 35568, "ts": 12066464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134660", "tid": 35568, "ts": 12066551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132fa0", "tid": 35568, "ts": 12066637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01344c0", "tid": 35568, "ts": 12066723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133620", "tid": 35568, "ts": 12066809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01326b0", "tid": 35568, "ts": 12066894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01349a0", "tid": 35568, "ts": 12066980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133140", "tid": 35568, "ts": 12067066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133e40", "tid": 35568, "ts": 12067151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133480", "tid": 35568, "ts": 12067237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130f20", "tid": 35568, "ts": 12067323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130560", "tid": 35568, "ts": 12067410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ffb0", "tid": 35568, "ts": 12067495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fba0", "tid": 35568, "ts": 12067582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f860", "tid": 35568, "ts": 12067668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130d80", "tid": 35568, "ts": 12067754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f6c0", "tid": 35568, "ts": 12067839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130220", "tid": 35568, "ts": 12067925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130700", "tid": 35568, "ts": 12068010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130e50", "tid": 35568, "ts": 12068097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ed00", "tid": 35568, "ts": 12068183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130cb0", "tid": 35568, "ts": 12068271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01308a0", "tid": 35568, "ts": 12068357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fe10", "tid": 35568, "ts": 12068444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e680", "tid": 35568, "ts": 12068541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ec30", "tid": 35568, "ts": 12068627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130b10", "tid": 35568, "ts": 12068713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e4e0", "tid": 35568, "ts": 12068799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f110", "tid": 35568, "ts": 12068885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fc70", "tid": 35568, "ts": 12068970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131400", "tid": 35568, "ts": 12069056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f2b0", "tid": 35568, "ts": 12069142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01314d0", "tid": 35568, "ts": 12069228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012eb60", "tid": 35568, "ts": 12069313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f930", "tid": 35568, "ts": 12069399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131260", "tid": 35568, "ts": 12069484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130490", "tid": 35568, "ts": 12069570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131670", "tid": 35568, "ts": 12069656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01302f0", "tid": 35568, "ts": 12069742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130630", "tid": 35568, "ts": 12069828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e820", "tid": 35568, "ts": 12069913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f380", "tid": 35568, "ts": 12070005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cae0", "tid": 35568, "ts": 12070091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c460", "tid": 35568, "ts": 12070176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c2c0", "tid": 35568, "ts": 12070276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012beb0", "tid": 35568, "ts": 12070363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bde0", "tid": 35568, "ts": 12070449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bb70", "tid": 35568, "ts": 12070534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012dd90", "tid": 35568, "ts": 12070619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d570", "tid": 35568, "ts": 12070705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b1b0", "tid": 35568, "ts": 12070791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d7e0", "tid": 35568, "ts": 12070877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cef0", "tid": 35568, "ts": 12070962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cbb0", "tid": 35568, "ts": 12071048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b690", "tid": 35568, "ts": 12071133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c870", "tid": 35568, "ts": 12071219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d980", "tid": 35568, "ts": 12071305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c7a0", "tid": 35568, "ts": 12071390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012dbf0", "tid": 35568, "ts": 12071474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012de60", "tid": 35568, "ts": 12071560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b0e0", "tid": 35568, "ts": 12071646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bc40", "tid": 35568, "ts": 12071731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c1f0", "tid": 35568, "ts": 12071817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e340", "tid": 35568, "ts": 12071903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d710", "tid": 35568, "ts": 12071987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012da50", "tid": 35568, "ts": 12072073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e1a0", "tid": 35568, "ts": 12072159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e270", "tid": 35568, "ts": 12072245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cfc0", "tid": 35568, "ts": 12072330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d230", "tid": 35568, "ts": 12072415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b4f0", "tid": 35568, "ts": 12072501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d300", "tid": 35568, "ts": 12072586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b900", "tid": 35568, "ts": 12072671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a7f0", "tid": 35568, "ts": 12072756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129060", "tid": 35568, "ts": 12072842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128f90", "tid": 35568, "ts": 12072928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128500", "tid": 35568, "ts": 12073014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a4b0", "tid": 35568, "ts": 12073099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129610", "tid": 35568, "ts": 12073184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129540", "tid": 35568, "ts": 12073269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a0a0", "tid": 35568, "ts": 12073356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a240", "tid": 35568, "ts": 12073441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128ab0", "tid": 35568, "ts": 12073527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128df0", "tid": 35568, "ts": 12073613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128290", "tid": 35568, "ts": 12073698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129200", "tid": 35568, "ts": 12073784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01293a0", "tid": 35568, "ts": 12073870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a310", "tid": 35568, "ts": 12073955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01296e0", "tid": 35568, "ts": 12074041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01289e0", "tid": 35568, "ts": 12074126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129af0", "tid": 35568, "ts": 12074211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129950", "tid": 35568, "ts": 12074297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129a20", "tid": 35568, "ts": 12074383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a580", "tid": 35568, "ts": 12074468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012af40", "tid": 35568, "ts": 12074553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129470", "tid": 35568, "ts": 12074638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128b80", "tid": 35568, "ts": 12074815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01281c0", "tid": 35568, "ts": 12074911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128840", "tid": 35568, "ts": 12074999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01292d0", "tid": 35568, "ts": 12075086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ab30", "tid": 35568, "ts": 12075172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128020", "tid": 35568, "ts": 12075259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ac00", "tid": 35568, "ts": 12075346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127ce0", "tid": 35568, "ts": 12075432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012aa60", "tid": 35568, "ts": 12075519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01273f0", "tid": 35568, "ts": 12075605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127180", "tid": 35568, "ts": 12075691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126ca0", "tid": 35568, "ts": 12075778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126a30", "tid": 35568, "ts": 12075864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127660", "tid": 35568, "ts": 12075951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125440", "tid": 35568, "ts": 12076037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126e40", "tid": 35568, "ts": 12076123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01263b0", "tid": 35568, "ts": 12076209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127590", "tid": 35568, "ts": 12076295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124a80", "tid": 35568, "ts": 12076381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127a70", "tid": 35568, "ts": 12076467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125030", "tid": 35568, "ts": 12076554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126140", "tid": 35568, "ts": 12076640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01278d0", "tid": 35568, "ts": 12076727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126070", "tid": 35568, "ts": 12076813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126f10", "tid": 35568, "ts": 12076899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125850", "tid": 35568, "ts": 12076986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01256b0", "tid": 35568, "ts": 12077072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125c60", "tid": 35568, "ts": 12077159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127800", "tid": 35568, "ts": 12077245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125e00", "tid": 35568, "ts": 12077332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127c10", "tid": 35568, "ts": 12077417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126210", "tid": 35568, "ts": 12077504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127250", "tid": 35568, "ts": 12077591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127b40", "tid": 35568, "ts": 12077676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125b90", "tid": 35568, "ts": 12077762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01251d0", "tid": 35568, "ts": 12077849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124b50", "tid": 35568, "ts": 12077935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124c20", "tid": 35568, "ts": 12078020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01249b0", "tid": 35568, "ts": 12078107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125d30", "tid": 35568, "ts": 12078193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125100", "tid": 35568, "ts": 12078280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121d00", "tid": 35568, "ts": 12078366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121c30", "tid": 35568, "ts": 12078452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121b60", "tid": 35568, "ts": 12078538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123e50", "tid": 35568, "ts": 12078624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123a40", "tid": 35568, "ts": 12078711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01237d0", "tid": 35568, "ts": 12078797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123630", "tid": 35568, "ts": 12078884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123490", "tid": 35568, "ts": 12078970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123150", "tid": 35568, "ts": 12079056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122860", "tid": 35568, "ts": 12079142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01238a0", "tid": 35568, "ts": 12079228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121ea0", "tid": 35568, "ts": 12079314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121a90", "tid": 35568, "ts": 12079400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01245a0", "tid": 35568, "ts": 12079486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123080", "tid": 35568, "ts": 12079573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124260", "tid": 35568, "ts": 12079658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122ee0", "tid": 35568, "ts": 12079745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01225f0", "tid": 35568, "ts": 12079831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123be0", "tid": 35568, "ts": 12079918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123d80", "tid": 35568, "ts": 12080004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122e10", "tid": 35568, "ts": 12080090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123f20", "tid": 35568, "ts": 12080176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124740", "tid": 35568, "ts": 12080262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01221e0", "tid": 35568, "ts": 12080348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122ba0", "tid": 35568, "ts": 12080434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01219c0", "tid": 35568, "ts": 12080520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122ad0", "tid": 35568, "ts": 12080605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124400", "tid": 35568, "ts": 12080691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01218f0", "tid": 35568, "ts": 12080778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121750", "tid": 35568, "ts": 12080863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122d40", "tid": 35568, "ts": 12080949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122930", "tid": 35568, "ts": 12081034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06786a0", "tid": 35568, "ts": 12081121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792d50", "tid": 35568, "ts": 12081208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792bb0", "tid": 35568, "ts": 12081294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792120", "tid": 35568, "ts": 12081380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1d90", "tid": 35568, "ts": 12081466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1710", "tid": 35568, "ts": 12081553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1570", "tid": 35568, "ts": 12081639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1300", "tid": 35568, "ts": 12081725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1a50", "tid": 35568, "ts": 12081811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e14a0", "tid": 35568, "ts": 12081897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1160", "tid": 35568, "ts": 12081983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0600", "tid": 35568, "ts": 12082069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0ae0", "tid": 35568, "ts": 12082155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0460", "tid": 35568, "ts": 12082242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0a10", "tid": 35568, "ts": 12082328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e02c0", "tid": 35568, "ts": 12082414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dff80", "tid": 35568, "ts": 12082500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0bb0", "tid": 35568, "ts": 12082586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0390", "tid": 35568, "ts": 12082671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0ef0", "tid": 35568, "ts": 12082758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df690", "tid": 35568, "ts": 12082845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1f30", "tid": 35568, "ts": 12082930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e07a0", "tid": 35568, "ts": 12083016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0d50", "tid": 35568, "ts": 12083103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfd10", "tid": 35568, "ts": 12083189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0120", "tid": 35568, "ts": 12083275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e06d0", "tid": 35568, "ts": 12083361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1090", "tid": 35568, "ts": 12083447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df9d0", "tid": 35568, "ts": 12083532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df830", "tid": 35568, "ts": 12083618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd130", "tid": 35568, "ts": 12083704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcec0", "tid": 35568, "ts": 12083790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcc50", "tid": 35568, "ts": 12083876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc840", "tid": 35568, "ts": 12083963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddf00", "tid": 35568, "ts": 12084048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc0f0", "tid": 35568, "ts": 12084135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de4b0", "tid": 35568, "ts": 12084221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dde30", "tid": 35568, "ts": 12084307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df010", "tid": 35568, "ts": 12084394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09def40", "tid": 35568, "ts": 12084480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc430", "tid": 35568, "ts": 12084567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dec00", "tid": 35568, "ts": 12084653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd2d0", "tid": 35568, "ts": 12084740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd7b0", "tid": 35568, "ts": 12084826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de240", "tid": 35568, "ts": 12084912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09deb30", "tid": 35568, "ts": 12084998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df280", "tid": 35568, "ts": 12085084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc500", "tid": 35568, "ts": 12085170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddc90", "tid": 35568, "ts": 12085256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd610", "tid": 35568, "ts": 12085343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc5d0", "tid": 35568, "ts": 12085429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dea60", "tid": 35568, "ts": 12085516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de7f0", "tid": 35568, "ts": 12085602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd540", "tid": 35568, "ts": 12085687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de3e0", "tid": 35568, "ts": 12085774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de720", "tid": 35568, "ts": 12085860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd950", "tid": 35568, "ts": 12085946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcdf0", "tid": 35568, "ts": 12086032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d95e0", "tid": 35568, "ts": 12086118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9370", "tid": 35568, "ts": 12086204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d91d0", "tid": 35568, "ts": 12086290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8e90", "tid": 35568, "ts": 12086375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d96b0", "tid": 35568, "ts": 12086462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dab00", "tid": 35568, "ts": 12086548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc020", "tid": 35568, "ts": 12086634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9920", "tid": 35568, "ts": 12086720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbe80", "tid": 35568, "ts": 12086806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbdb0", "tid": 35568, "ts": 12086892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbb40", "tid": 35568, "ts": 12086978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db660", "tid": 35568, "ts": 12087064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9c60", "tid": 35568, "ts": 12087150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9030", "tid": 35568, "ts": 12087236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db0b0", "tid": 35568, "ts": 12087322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da6f0", "tid": 35568, "ts": 12087408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9850", "tid": 35568, "ts": 12087495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db590", "tid": 35568, "ts": 12087581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da7c0", "tid": 35568, "ts": 12087668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9b90", "tid": 35568, "ts": 12087753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da3b0", "tid": 35568, "ts": 12087840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da210", "tid": 35568, "ts": 12087926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da890", "tid": 35568, "ts": 12088012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dabd0", "tid": 35568, "ts": 12088098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db250", "tid": 35568, "ts": 12088184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9fa0", "tid": 35568, "ts": 12088270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da070", "tid": 35568, "ts": 12088356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dae40", "tid": 35568, "ts": 12088441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9d30", "tid": 35568, "ts": 12088527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db9a0", "tid": 35568, "ts": 12088613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da960", "tid": 35568, "ts": 12088700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db3f0", "tid": 35568, "ts": 12088786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6d40", "tid": 35568, "ts": 12088871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d62b0", "tid": 35568, "ts": 12088957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5d00", "tid": 35568, "ts": 12089043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5c30", "tid": 35568, "ts": 12089129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7700", "tid": 35568, "ts": 12089216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7630", "tid": 35568, "ts": 12089302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6ba0", "tid": 35568, "ts": 12089388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7b10", "tid": 35568, "ts": 12089474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d61e0", "tid": 35568, "ts": 12089561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8a80", "tid": 35568, "ts": 12089647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8740", "tid": 35568, "ts": 12089733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5b60", "tid": 35568, "ts": 12089819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6790", "tid": 35568, "ts": 12089906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7f20", "tid": 35568, "ts": 12089991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d80c0", "tid": 35568, "ts": 12090077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d72f0", "tid": 35568, "ts": 12090164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7e50", "tid": 35568, "ts": 12090250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7ff0", "tid": 35568, "ts": 12090348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8670", "tid": 35568, "ts": 12090436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d88e0", "tid": 35568, "ts": 12090522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7d80", "tid": 35568, "ts": 12090608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6ee0", "tid": 35568, "ts": 12090694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d89b0", "tid": 35568, "ts": 12090780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7be0", "tid": 35568, "ts": 12090866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d58f0", "tid": 35568, "ts": 12090952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6e10", "tid": 35568, "ts": 12091038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7560", "tid": 35568, "ts": 12091124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6040", "tid": 35568, "ts": 12091210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8260", "tid": 35568, "ts": 12091296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d77d0", "tid": 35568, "ts": 12091382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d84d0", "tid": 35568, "ts": 12091468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6860", "tid": 35568, "ts": 12091554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2f80", "tid": 35568, "ts": 12091640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2c40", "tid": 35568, "ts": 12091726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d54e0", "tid": 35568, "ts": 12091812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d50d0", "tid": 35568, "ts": 12091897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4a50", "tid": 35568, "ts": 12091984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3ef0", "tid": 35568, "ts": 12092070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4f30", "tid": 35568, "ts": 12092156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4710", "tid": 35568, "ts": 12092242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4640", "tid": 35568, "ts": 12092328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2830", "tid": 35568, "ts": 12092414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4d90", "tid": 35568, "ts": 12092499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4570", "tid": 35568, "ts": 12092585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5270", "tid": 35568, "ts": 12092672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d36d0", "tid": 35568, "ts": 12092758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4980", "tid": 35568, "ts": 12092844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4e60", "tid": 35568, "ts": 12092930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3600", "tid": 35568, "ts": 12093022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3d50", "tid": 35568, "ts": 12093110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3460", "tid": 35568, "ts": 12093196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3940", "tid": 35568, "ts": 12093282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d24f0", "tid": 35568, "ts": 12093368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5820", "tid": 35568, "ts": 12093454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d51a0", "tid": 35568, "ts": 12093540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4bf0", "tid": 35568, "ts": 12093626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4300", "tid": 35568, "ts": 12093712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4160", "tid": 35568, "ts": 12093799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d31f0", "tid": 35568, "ts": 12093885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d32c0", "tid": 35568, "ts": 12093970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d43d0", "tid": 35568, "ts": 12094057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d37a0", "tid": 35568, "ts": 12094143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3530", "tid": 35568, "ts": 12094228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3050", "tid": 35568, "ts": 12094314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d03a0", "tid": 35568, "ts": 12094400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1650", "tid": 35568, "ts": 12094486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d02d0", "tid": 35568, "ts": 12094573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0130", "tid": 35568, "ts": 12094681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0880", "tid": 35568, "ts": 12094767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1310", "tid": 35568, "ts": 12094853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d14b0", "tid": 35568, "ts": 12094939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0c90", "tid": 35568, "ts": 12095025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfc50", "tid": 35568, "ts": 12095111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfab0", "tid": 35568, "ts": 12095197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf910", "tid": 35568, "ts": 12095283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf770", "tid": 35568, "ts": 12095370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf5d0", "tid": 35568, "ts": 12095456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf430", "tid": 35568, "ts": 12095541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1c00", "tid": 35568, "ts": 12095629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d18c0", "tid": 35568, "ts": 12095714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf290", "tid": 35568, "ts": 12095800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d07b0", "tid": 35568, "ts": 12095886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2010", "tid": 35568, "ts": 12095973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cff90", "tid": 35568, "ts": 12096058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1170", "tid": 35568, "ts": 12096145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf0f0", "tid": 35568, "ts": 12096231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0540", "tid": 35568, "ts": 12096317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf840", "tid": 35568, "ts": 12096403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1a60", "tid": 35568, "ts": 12096489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d20e0", "tid": 35568, "ts": 12096576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2420", "tid": 35568, "ts": 12096662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0fd0", "tid": 35568, "ts": 12096749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0e30", "tid": 35568, "ts": 12096836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0d60", "tid": 35568, "ts": 12096922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0a20", "tid": 35568, "ts": 12097008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1da0", "tid": 35568, "ts": 12097095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce3f0", "tid": 35568, "ts": 12097180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccd30", "tid": 35568, "ts": 12097266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce320", "tid": 35568, "ts": 12097352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc6b0", "tid": 35568, "ts": 12097438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdfe0", "tid": 35568, "ts": 12097525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cde40", "tid": 35568, "ts": 12097611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdbd0", "tid": 35568, "ts": 12097697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdd70", "tid": 35568, "ts": 12097783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cece0", "tid": 35568, "ts": 12097870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbf60", "tid": 35568, "ts": 12097956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdca0", "tid": 35568, "ts": 12098042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdb00", "tid": 35568, "ts": 12098127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd140", "tid": 35568, "ts": 12098213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ceb40", "tid": 35568, "ts": 12098299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cec10", "tid": 35568, "ts": 12098385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd890", "tid": 35568, "ts": 12098471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cda30", "tid": 35568, "ts": 12098556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc370", "tid": 35568, "ts": 12098642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce590", "tid": 35568, "ts": 12098728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc440", "tid": 35568, "ts": 12098814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccfa0", "tid": 35568, "ts": 12098900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccac0", "tid": 35568, "ts": 12098986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc920", "tid": 35568, "ts": 12099072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cea70", "tid": 35568, "ts": 12099158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc9f0", "tid": 35568, "ts": 12099244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd620", "tid": 35568, "ts": 12099331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd6f0", "tid": 35568, "ts": 12099416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd2e0", "tid": 35568, "ts": 12099503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce8d0", "tid": 35568, "ts": 12099589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cced0", "tid": 35568, "ts": 12099674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd550", "tid": 35568, "ts": 12099761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc780", "tid": 35568, "ts": 12099847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9c70", "tid": 35568, "ts": 12099935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9860", "tid": 35568, "ts": 12100021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9450", "tid": 35568, "ts": 12100107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c91e0", "tid": 35568, "ts": 12100192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9110", "tid": 35568, "ts": 12100278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb0c0", "tid": 35568, "ts": 12100364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cae50", "tid": 35568, "ts": 12100450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cab10", "tid": 35568, "ts": 12100536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca970", "tid": 35568, "ts": 12100622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cad80", "tid": 35568, "ts": 12100709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9ba0", "tid": 35568, "ts": 12100795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8a90", "tid": 35568, "ts": 12100880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb260", "tid": 35568, "ts": 12100967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca630", "tid": 35568, "ts": 12101053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb330", "tid": 35568, "ts": 12101140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca150", "tid": 35568, "ts": 12101226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9790", "tid": 35568, "ts": 12101312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb810", "tid": 35568, "ts": 12101399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c88f0", "tid": 35568, "ts": 12101485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca7d0", "tid": 35568, "ts": 12101571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9e10", "tid": 35568, "ts": 12101657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbb50", "tid": 35568, "ts": 12101743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9fb0", "tid": 35568, "ts": 12101829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb190", "tid": 35568, "ts": 12101915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09caf20", "tid": 35568, "ts": 12102001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb670", "tid": 35568, "ts": 12102087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8b60", "tid": 35568, "ts": 12102173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca080", "tid": 35568, "ts": 12102259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9ad0", "tid": 35568, "ts": 12102346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb9b0", "tid": 35568, "ts": 12102432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb5a0", "tid": 35568, "ts": 12102518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9380", "tid": 35568, "ts": 12102604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6ae0", "tid": 35568, "ts": 12102691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6460", "tid": 35568, "ts": 12102778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6c80", "tid": 35568, "ts": 12102876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6050", "tid": 35568, "ts": 12102964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6870", "tid": 35568, "ts": 12103051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7160", "tid": 35568, "ts": 12103148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7f30", "tid": 35568, "ts": 12103236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6390", "tid": 35568, "ts": 12103321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6ef0", "tid": 35568, "ts": 12103407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6e20", "tid": 35568, "ts": 12103493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5c40", "tid": 35568, "ts": 12103579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c59d0", "tid": 35568, "ts": 12103665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7bf0", "tid": 35568, "ts": 12103751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6d50", "tid": 35568, "ts": 12103837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c77e0", "tid": 35568, "ts": 12103923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8680", "tid": 35568, "ts": 12104009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7710", "tid": 35568, "ts": 12104094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7300", "tid": 35568, "ts": 12104181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7b20", "tid": 35568, "ts": 12104267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5de0", "tid": 35568, "ts": 12104352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c66d0", "tid": 35568, "ts": 12104438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8820", "tid": 35568, "ts": 12104524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6fc0", "tid": 35568, "ts": 12104610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8270", "tid": 35568, "ts": 12104696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7980", "tid": 35568, "ts": 12104782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c61f0", "tid": 35568, "ts": 12104869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5760", "tid": 35568, "ts": 12104955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7570", "tid": 35568, "ts": 12105041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6600", "tid": 35568, "ts": 12105127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5b70", "tid": 35568, "ts": 12105213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5690", "tid": 35568, "ts": 12105299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6940", "tid": 35568, "ts": 12105385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c37b0", "tid": 35568, "ts": 12105471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c36e0", "tid": 35568, "ts": 12105557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c29e0", "tid": 35568, "ts": 12105643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3610", "tid": 35568, "ts": 12105728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c25d0", "tid": 35568, "ts": 12105814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4cd0", "tid": 35568, "ts": 12105900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3540", "tid": 35568, "ts": 12106038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3060", "tid": 35568, "ts": 12106126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2f90", "tid": 35568, "ts": 12106213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2c50", "tid": 35568, "ts": 12106299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3130", "tid": 35568, "ts": 12106386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3a20", "tid": 35568, "ts": 12106471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c44b0", "tid": 35568, "ts": 12106557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4e70", "tid": 35568, "ts": 12106642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c40a0", "tid": 35568, "ts": 12106728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c43e0", "tid": 35568, "ts": 12106814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4f40", "tid": 35568, "ts": 12106900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3950", "tid": 35568, "ts": 12106986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3bc0", "tid": 35568, "ts": 12107072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3c90", "tid": 35568, "ts": 12107158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4da0", "tid": 35568, "ts": 12107244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3e30", "tid": 35568, "ts": 12107330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c20f0", "tid": 35568, "ts": 12107421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2d20", "tid": 35568, "ts": 12107508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c50e0", "tid": 35568, "ts": 12107593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5420", "tid": 35568, "ts": 12107680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c47f0", "tid": 35568, "ts": 12107765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5010", "tid": 35568, "ts": 12107851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3d60", "tid": 35568, "ts": 12107937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3af0", "tid": 35568, "ts": 12108022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c26a0", "tid": 35568, "ts": 12108108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4240", "tid": 35568, "ts": 12108193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fa20", "tid": 35568, "ts": 12108279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f2d0", "tid": 35568, "ts": 12108364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f880", "tid": 35568, "ts": 12108450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f060", "tid": 35568, "ts": 12108536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e770", "tid": 35568, "ts": 12108622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e5d0", "tid": 35568, "ts": 12108708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e500", "tid": 35568, "ts": 12108794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ff00", "tid": 35568, "ts": 12108880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e840", "tid": 35568, "ts": 12108965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e1c0", "tid": 35568, "ts": 12109051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660720", "tid": 35568, "ts": 12109136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e0f0", "tid": 35568, "ts": 12109222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661350", "tid": 35568, "ts": 12109307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f6e0", "tid": 35568, "ts": 12109393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660e70", "tid": 35568, "ts": 12109478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fd60", "tid": 35568, "ts": 12109563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f610", "tid": 35568, "ts": 12109649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06604b0", "tid": 35568, "ts": 12109734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065eec0", "tid": 35568, "ts": 12109820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e6a0", "tid": 35568, "ts": 12109905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661010", "tid": 35568, "ts": 12109990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06608c0", "tid": 35568, "ts": 12110076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06607f0", "tid": 35568, "ts": 12110162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e430", "tid": 35568, "ts": 12110248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e9e0", "tid": 35568, "ts": 12110334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660b30", "tid": 35568, "ts": 12110420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f7b0", "tid": 35568, "ts": 12110506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fe30", "tid": 35568, "ts": 12110592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06610e0", "tid": 35568, "ts": 12110678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660310", "tid": 35568, "ts": 12110764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e910", "tid": 35568, "ts": 12110849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f3a0", "tid": 35568, "ts": 12110934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bf80", "tid": 35568, "ts": 12111019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bc40", "tid": 35568, "ts": 12111105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b760", "tid": 35568, "ts": 12111191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d570", "tid": 35568, "ts": 12111276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cbb0", "tid": 35568, "ts": 12111362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b5c0", "tid": 35568, "ts": 12111447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d3d0", "tid": 35568, "ts": 12111533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d090", "tid": 35568, "ts": 12111618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cae0", "tid": 35568, "ts": 12111704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d160", "tid": 35568, "ts": 12111789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c870", "tid": 35568, "ts": 12111874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c7a0", "tid": 35568, "ts": 12111959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067da50", "tid": 35568, "ts": 12112045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c6d0", "tid": 35568, "ts": 12112131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d980", "tid": 35568, "ts": 12112216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067dd90", "tid": 35568, "ts": 12112306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d8b0", "tid": 35568, "ts": 12112393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ce20", "tid": 35568, "ts": 12112478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cd50", "tid": 35568, "ts": 12112564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bd10", "tid": 35568, "ts": 12112656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cc80", "tid": 35568, "ts": 12112742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c390", "tid": 35568, "ts": 12112828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c050", "tid": 35568, "ts": 12112914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c600", "tid": 35568, "ts": 12113001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c1f0", "tid": 35568, "ts": 12113086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d710", "tid": 35568, "ts": 12113172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cfc0", "tid": 35568, "ts": 12113258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678d20", "tid": 35568, "ts": 12113344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678c50", "tid": 35568, "ts": 12113429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678360", "tid": 35568, "ts": 12113515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679950", "tid": 35568, "ts": 12113601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a8c0", "tid": 35568, "ts": 12113688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678910", "tid": 35568, "ts": 12113773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678430", "tid": 35568, "ts": 12113859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a650", "tid": 35568, "ts": 12113944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679880", "tid": 35568, "ts": 12114030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b420", "tid": 35568, "ts": 12114115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a4b0", "tid": 35568, "ts": 12114201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a0a0", "tid": 35568, "ts": 12114288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b1b0", "tid": 35568, "ts": 12114374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679af0", "tid": 35568, "ts": 12114460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679f00", "tid": 35568, "ts": 12114566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06785d0", "tid": 35568, "ts": 12114653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678840", "tid": 35568, "ts": 12114740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679060", "tid": 35568, "ts": 12114826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679c90", "tid": 35568, "ts": 12114912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a580", "tid": 35568, "ts": 12114997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a170", "tid": 35568, "ts": 12115083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067aa60", "tid": 35568, "ts": 12115169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678f90", "tid": 35568, "ts": 12115255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06789e0", "tid": 35568, "ts": 12115340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679d60", "tid": 35568, "ts": 12115426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679470", "tid": 35568, "ts": 12115512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b350", "tid": 35568, "ts": 12115598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06792d0", "tid": 35568, "ts": 12115684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678ec0", "tid": 35568, "ts": 12115770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a240", "tid": 35568, "ts": 12115856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678df0", "tid": 35568, "ts": 12115942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06770b0", "tid": 35568, "ts": 12116028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676a30", "tid": 35568, "ts": 12116114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674e90", "tid": 35568, "ts": 12116200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676890", "tid": 35568, "ts": 12116286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674dc0", "tid": 35568, "ts": 12116372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06766f0", "tid": 35568, "ts": 12116457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06773f0", "tid": 35568, "ts": 12116543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677ce0", "tid": 35568, "ts": 12116629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677c10", "tid": 35568, "ts": 12116716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677e80", "tid": 35568, "ts": 12116801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675c60", "tid": 35568, "ts": 12116888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675b90", "tid": 35568, "ts": 12116974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06762e0", "tid": 35568, "ts": 12117059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675100", "tid": 35568, "ts": 12117144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675920", "tid": 35568, "ts": 12117230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675370", "tid": 35568, "ts": 12117317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676bd0", "tid": 35568, "ts": 12117402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677730", "tid": 35568, "ts": 12117488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675ac0", "tid": 35568, "ts": 12117574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677800", "tid": 35568, "ts": 12117660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677660", "tid": 35568, "ts": 12117745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675ed0", "tid": 35568, "ts": 12117830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675fa0", "tid": 35568, "ts": 12117916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06763b0", "tid": 35568, "ts": 12118001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06759f0", "tid": 35568, "ts": 12118088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06774c0", "tid": 35568, "ts": 12118173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677250", "tid": 35568, "ts": 12118259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06779a0", "tid": 35568, "ts": 12118346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676f10", "tid": 35568, "ts": 12118432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06755e0", "tid": 35568, "ts": 12118518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676e40", "tid": 35568, "ts": 12118604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675e00", "tid": 35568, "ts": 12118690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672860", "tid": 35568, "ts": 12118776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06725f0", "tid": 35568, "ts": 12118861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06722b0", "tid": 35568, "ts": 12118947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672110", "tid": 35568, "ts": 12119033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671d00", "tid": 35568, "ts": 12119118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671b60", "tid": 35568, "ts": 12119204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673630", "tid": 35568, "ts": 12119290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674330", "tid": 35568, "ts": 12119375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673ff0", "tid": 35568, "ts": 12119461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671a90", "tid": 35568, "ts": 12119547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673a40", "tid": 35568, "ts": 12119632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672380", "tid": 35568, "ts": 12119718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672fb0", "tid": 35568, "ts": 12119804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673cb0", "tid": 35568, "ts": 12119890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674c20", "tid": 35568, "ts": 12119976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672790", "tid": 35568, "ts": 12120062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672ee0", "tid": 35568, "ts": 12120148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672040", "tid": 35568, "ts": 12120233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06737d0", "tid": 35568, "ts": 12120320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674810", "tid": 35568, "ts": 12120406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673150", "tid": 35568, "ts": 12120492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672ad0", "tid": 35568, "ts": 12120578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674b50", "tid": 35568, "ts": 12120664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673b10", "tid": 35568, "ts": 12120750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06749b0", "tid": 35568, "ts": 12120836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672d40", "tid": 35568, "ts": 12120922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06748e0", "tid": 35568, "ts": 12121008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673560", "tid": 35568, "ts": 12121093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673be0", "tid": 35568, "ts": 12121180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674670", "tid": 35568, "ts": 12121266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06740c0", "tid": 35568, "ts": 12121351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673080", "tid": 35568, "ts": 12121438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e9d0", "tid": 35568, "ts": 12121523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670300", "tid": 35568, "ts": 12121658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fef0", "tid": 35568, "ts": 12121745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fd50", "tid": 35568, "ts": 12121831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06715b0", "tid": 35568, "ts": 12121917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671340", "tid": 35568, "ts": 12122003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670bf0", "tid": 35568, "ts": 12122089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670a50", "tid": 35568, "ts": 12122175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fae0", "tid": 35568, "ts": 12122261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fa10", "tid": 35568, "ts": 12122347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670d90", "tid": 35568, "ts": 12122433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671410", "tid": 35568, "ts": 12122518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f460", "tid": 35568, "ts": 12122605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e4f0", "tid": 35568, "ts": 12122690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f2c0", "tid": 35568, "ts": 12122776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671270", "tid": 35568, "ts": 12122862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ef80", "tid": 35568, "ts": 12122948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06714e0", "tid": 35568, "ts": 12123033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670640", "tid": 35568, "ts": 12123119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06711a0", "tid": 35568, "ts": 12123204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e760", "tid": 35568, "ts": 12123290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06708b0", "tid": 35568, "ts": 12123375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ffc0", "tid": 35568, "ts": 12123461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f390", "tid": 35568, "ts": 12123547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670cc0", "tid": 35568, "ts": 12123633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ec40", "tid": 35568, "ts": 12123719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e690", "tid": 35568, "ts": 12123805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e5c0", "tid": 35568, "ts": 12123891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f6d0", "tid": 35568, "ts": 12123976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670f30", "tid": 35568, "ts": 12124062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671000", "tid": 35568, "ts": 12124148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06704a0", "tid": 35568, "ts": 12124235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b430", "tid": 35568, "ts": 12124320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d7f0", "tid": 35568, "ts": 12124407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d4b0", "tid": 35568, "ts": 12124493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d310", "tid": 35568, "ts": 12124579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b360", "tid": 35568, "ts": 12124665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b5d0", "tid": 35568, "ts": 12124751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b1c0", "tid": 35568, "ts": 12124837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e420", "tid": 35568, "ts": 12124923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cfd0", "tid": 35568, "ts": 12125009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ca20", "tid": 35568, "ts": 12125095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e350", "tid": 35568, "ts": 12125181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c7b0", "tid": 35568, "ts": 12125267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c610", "tid": 35568, "ts": 12125353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066dc00", "tid": 35568, "ts": 12125439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c950", "tid": 35568, "ts": 12125525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c200", "tid": 35568, "ts": 12125610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d650", "tid": 35568, "ts": 12125696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d8c0", "tid": 35568, "ts": 12125782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e0e0", "tid": 35568, "ts": 12125869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066db30", "tid": 35568, "ts": 12125955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cf00", "tid": 35568, "ts": 12126041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c060", "tid": 35568, "ts": 12126127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bf90", "tid": 35568, "ts": 12126213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b910", "tid": 35568, "ts": 12126299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066da60", "tid": 35568, "ts": 12126385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d240", "tid": 35568, "ts": 12126471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bd20", "tid": 35568, "ts": 12126557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bb80", "tid": 35568, "ts": 12126643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d0a0", "tid": 35568, "ts": 12126728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bc50", "tid": 35568, "ts": 12126814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c2d0", "tid": 35568, "ts": 12126900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c880", "tid": 35568, "ts": 12126985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667dc0", "tid": 35568, "ts": 12127071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ae80", "tid": 35568, "ts": 12127157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06681d0", "tid": 35568, "ts": 12127243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669fe0", "tid": 35568, "ts": 12127329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669bd0", "tid": 35568, "ts": 12127415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669b00", "tid": 35568, "ts": 12127500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668ac0", "tid": 35568, "ts": 12127586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a800", "tid": 35568, "ts": 12127672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a8d0", "tid": 35568, "ts": 12127759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b020", "tid": 35568, "ts": 12127844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669f10", "tid": 35568, "ts": 12127930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668d30", "tid": 35568, "ts": 12128015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06697c0", "tid": 35568, "ts": 12128101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06682a0", "tid": 35568, "ts": 12128186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a3f0", "tid": 35568, "ts": 12128272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668030", "tid": 35568, "ts": 12128358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a9a0", "tid": 35568, "ts": 12128444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669550", "tid": 35568, "ts": 12128530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668780", "tid": 35568, "ts": 12128617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668b90", "tid": 35568, "ts": 12128703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669210", "tid": 35568, "ts": 12128789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a250", "tid": 35568, "ts": 12128874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a320", "tid": 35568, "ts": 12128960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669480", "tid": 35568, "ts": 12129046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a590", "tid": 35568, "ts": 12129132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667f60", "tid": 35568, "ts": 12129218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668c60", "tid": 35568, "ts": 12129303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669070", "tid": 35568, "ts": 12129389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668ed0", "tid": 35568, "ts": 12129475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a730", "tid": 35568, "ts": 12129561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668510", "tid": 35568, "ts": 12129647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668850", "tid": 35568, "ts": 12129734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667a80", "tid": 35568, "ts": 12129820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667810", "tid": 35568, "ts": 12129905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666f20", "tid": 35568, "ts": 12129992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664c30", "tid": 35568, "ts": 12130077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664d00", "tid": 35568, "ts": 12130163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06667d0", "tid": 35568, "ts": 12130249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06662f0", "tid": 35568, "ts": 12130335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666490", "tid": 35568, "ts": 12130420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666080", "tid": 35568, "ts": 12130506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667740", "tid": 35568, "ts": 12130593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665e10", "tid": 35568, "ts": 12130678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665d40", "tid": 35568, "ts": 12130765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667260", "tid": 35568, "ts": 12130851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06651e0", "tid": 35568, "ts": 12130937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665110", "tid": 35568, "ts": 12131022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666e50", "tid": 35568, "ts": 12131107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665fb0", "tid": 35568, "ts": 12131193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666970", "tid": 35568, "ts": 12131278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06655f0", "tid": 35568, "ts": 12131364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665040", "tid": 35568, "ts": 12131450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06663c0", "tid": 35568, "ts": 12131536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664f70", "tid": 35568, "ts": 12131622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665a00", "tid": 35568, "ts": 12131709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666a40", "tid": 35568, "ts": 12131795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665380", "tid": 35568, "ts": 12131881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664a90", "tid": 35568, "ts": 12131966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664dd0", "tid": 35568, "ts": 12132052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667670", "tid": 35568, "ts": 12132145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06678e0", "tid": 35568, "ts": 12132233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667330", "tid": 35568, "ts": 12132319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665ba0", "tid": 35568, "ts": 12132404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665790", "tid": 35568, "ts": 12132490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664410", "tid": 35568, "ts": 12132576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664000", "tid": 35568, "ts": 12132662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664820", "tid": 35568, "ts": 12132749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663b20", "tid": 35568, "ts": 12132835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663980", "tid": 35568, "ts": 12132921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06637e0", "tid": 35568, "ts": 12133006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06614f0", "tid": 35568, "ts": 12133093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663640", "tid": 35568, "ts": 12133178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663570", "tid": 35568, "ts": 12133264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06641a0", "tid": 35568, "ts": 12133349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06634a0", "tid": 35568, "ts": 12133435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662ef0", "tid": 35568, "ts": 12133521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663d90", "tid": 35568, "ts": 12133607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662600", "tid": 35568, "ts": 12133693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661f80", "tid": 35568, "ts": 12133778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663cc0", "tid": 35568, "ts": 12133864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662c80", "tid": 35568, "ts": 12133950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06633d0", "tid": 35568, "ts": 12134035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662530", "tid": 35568, "ts": 12134121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663090", "tid": 35568, "ts": 12134206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662fc0", "tid": 35568, "ts": 12134292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661b70", "tid": 35568, "ts": 12134378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662120", "tid": 35568, "ts": 12134463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06626d0", "tid": 35568, "ts": 12134550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06622c0", "tid": 35568, "ts": 12134635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662460", "tid": 35568, "ts": 12134721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662390", "tid": 35568, "ts": 12134807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661d10", "tid": 35568, "ts": 12134893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662870", "tid": 35568, "ts": 12134979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06627a0", "tid": 35568, "ts": 12135065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663f30", "tid": 35568, "ts": 12135151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664680", "tid": 35568, "ts": 12135237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b09b0", "tid": 35568, "ts": 12135323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0740", "tid": 35568, "ts": 12135409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0e90", "tid": 35568, "ts": 12135496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0330", "tid": 35568, "ts": 12135583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b08e0", "tid": 35568, "ts": 12135668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0260", "tid": 35568, "ts": 12135755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aefb0", "tid": 35568, "ts": 12135841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afd80", "tid": 35568, "ts": 12135926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af630", "tid": 35568, "ts": 12136012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afe50", "tid": 35568, "ts": 12136097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0dc0", "tid": 35568, "ts": 12136183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0190", "tid": 35568, "ts": 12136270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af3c0", "tid": 35568, "ts": 12136356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0c20", "tid": 35568, "ts": 12136442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af2f0", "tid": 35568, "ts": 12136530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afb10", "tid": 35568, "ts": 12136616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af220", "tid": 35568, "ts": 12136713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aead0", "tid": 35568, "ts": 12136800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae6c0", "tid": 35568, "ts": 12136886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afbe0", "tid": 35568, "ts": 12136972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af560", "tid": 35568, "ts": 12137058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae930", "tid": 35568, "ts": 12137143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0810", "tid": 35568, "ts": 12137268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae040", "tid": 35568, "ts": 12137355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae520", "tid": 35568, "ts": 12137441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0a80", "tid": 35568, "ts": 12137527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af7d0", "tid": 35568, "ts": 12137613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0b50", "tid": 35568, "ts": 12137698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae790", "tid": 35568, "ts": 12137783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adea0", "tid": 35568, "ts": 12137869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad9c0", "tid": 35568, "ts": 12137955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad820", "tid": 35568, "ts": 12138041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad340", "tid": 35568, "ts": 12138126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803addd0", "tid": 35568, "ts": 12138212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad0d0", "tid": 35568, "ts": 12138298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803accc0", "tid": 35568, "ts": 12138384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac980", "tid": 35568, "ts": 12138470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abd50", "tid": 35568, "ts": 12138555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803add00", "tid": 35568, "ts": 12138641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aaf80", "tid": 35568, "ts": 12138726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab940", "tid": 35568, "ts": 12138812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abbb0", "tid": 35568, "ts": 12138897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac570", "tid": 35568, "ts": 12138984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acbf0", "tid": 35568, "ts": 12139069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab530", "tid": 35568, "ts": 12139155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aaeb0", "tid": 35568, "ts": 12139239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac4a0", "tid": 35568, "ts": 12139325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ada90", "tid": 35568, "ts": 12139411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aac40", "tid": 35568, "ts": 12139496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac300", "tid": 35568, "ts": 12139582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abfc0", "tid": 35568, "ts": 12139669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abef0", "tid": 35568, "ts": 12139754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab460", "tid": 35568, "ts": 12139839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac230", "tid": 35568, "ts": 12139925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab1f0", "tid": 35568, "ts": 12140011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abc80", "tid": 35568, "ts": 12140096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acb20", "tid": 35568, "ts": 12140182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab7a0", "tid": 35568, "ts": 12140267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab120", "tid": 35568, "ts": 12140352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ace60", "tid": 35568, "ts": 12140437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab6d0", "tid": 35568, "ts": 12140524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a90a0", "tid": 35568, "ts": 12140610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aab70", "tid": 35568, "ts": 12140696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa830", "tid": 35568, "ts": 12140782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8f00", "tid": 35568, "ts": 12140867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8610", "tid": 35568, "ts": 12140953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8540", "tid": 35568, "ts": 12141040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa900", "tid": 35568, "ts": 12141126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a97f0", "tid": 35568, "ts": 12141212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a93e0", "tid": 35568, "ts": 12141297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9f40", "tid": 35568, "ts": 12141383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9e70", "tid": 35568, "ts": 12141469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8470", "tid": 35568, "ts": 12141554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9240", "tid": 35568, "ts": 12141640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9da0", "tid": 35568, "ts": 12141726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9cd0", "tid": 35568, "ts": 12141812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7ab0", "tid": 35568, "ts": 12141898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa9d0", "tid": 35568, "ts": 12142022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8d60", "tid": 35568, "ts": 12142144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9c00", "tid": 35568, "ts": 12142269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9720", "tid": 35568, "ts": 12142369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa0e0", "tid": 35568, "ts": 12142454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa280", "tid": 35568, "ts": 12142541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9990", "tid": 35568, "ts": 12142626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8bc0", "tid": 35568, "ts": 12142713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7f90", "tid": 35568, "ts": 12142798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9b30", "tid": 35568, "ts": 12142884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa420", "tid": 35568, "ts": 12142969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a83a0", "tid": 35568, "ts": 12143055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a79e0", "tid": 35568, "ts": 12143140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9580", "tid": 35568, "ts": 12143225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8130", "tid": 35568, "ts": 12143311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a94b0", "tid": 35568, "ts": 12143398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a70f0", "tid": 35568, "ts": 12143483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6c10", "tid": 35568, "ts": 12143569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6a70", "tid": 35568, "ts": 12143654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a63f0", "tid": 35568, "ts": 12143740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6180", "tid": 35568, "ts": 12143825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5f10", "tid": 35568, "ts": 12143911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6800", "tid": 35568, "ts": 12144004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5a30", "tid": 35568, "ts": 12144091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a56f0", "tid": 35568, "ts": 12144177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5620", "tid": 35568, "ts": 12144263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5210", "tid": 35568, "ts": 12144348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5140", "tid": 35568, "ts": 12144435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4850", "tid": 35568, "ts": 12144520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6730", "tid": 35568, "ts": 12144606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7770", "tid": 35568, "ts": 12144692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4440", "tid": 35568, "ts": 12144777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4780", "tid": 35568, "ts": 12144862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a53b0", "tid": 35568, "ts": 12144947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4d30", "tid": 35568, "ts": 12145033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a64c0", "tid": 35568, "ts": 12145119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4ac0", "tid": 35568, "ts": 12145204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6e80", "tid": 35568, "ts": 12145289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a60b0", "tid": 35568, "ts": 12145375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5890", "tid": 35568, "ts": 12145460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4920", "tid": 35568, "ts": 12145546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a52e0", "tid": 35568, "ts": 12145632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a76a0", "tid": 35568, "ts": 12145718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7500", "tid": 35568, "ts": 12145804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4ed0", "tid": 35568, "ts": 12145890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7290", "tid": 35568, "ts": 12145977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5d70", "tid": 35568, "ts": 12146062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5b00", "tid": 35568, "ts": 12146149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2ff0", "tid": 35568, "ts": 12146234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a28a0", "tid": 35568, "ts": 12146320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2700", "tid": 35568, "ts": 12146405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a16c0", "tid": 35568, "ts": 12146491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2490", "tid": 35568, "ts": 12146577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3dc0", "tid": 35568, "ts": 12146663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3cf0", "tid": 35568, "ts": 12146748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a39b0", "tid": 35568, "ts": 12146834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a35a0", "tid": 35568, "ts": 12146920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1e10", "tid": 35568, "ts": 12147006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2e50", "tid": 35568, "ts": 12147092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3400", "tid": 35568, "ts": 12147178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1d40", "tid": 35568, "ts": 12147264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4030", "tid": 35568, "ts": 12147350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3330", "tid": 35568, "ts": 12147436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1380", "tid": 35568, "ts": 12147522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2220", "tid": 35568, "ts": 12147607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a38e0", "tid": 35568, "ts": 12147693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1ba0", "tid": 35568, "ts": 12147779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3740", "tid": 35568, "ts": 12147865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3f60", "tid": 35568, "ts": 12147951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a41d0", "tid": 35568, "ts": 12148036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1ad0", "tid": 35568, "ts": 12148122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3c20", "tid": 35568, "ts": 12148208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4100", "tid": 35568, "ts": 12148294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a12b0", "tid": 35568, "ts": 12148380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1930", "tid": 35568, "ts": 12148466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a11e0", "tid": 35568, "ts": 12148552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2f20", "tid": 35568, "ts": 12148637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a22f0", "tid": 35568, "ts": 12148722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1110", "tid": 35568, "ts": 12148808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2a40", "tid": 35568, "ts": 12148893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334b00", "tid": 35568, "ts": 12148983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03339f0", "tid": 35568, "ts": 12149070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03320c0", "tid": 35568, "ts": 12149156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03353f0", "tid": 35568, "ts": 12149243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333850", "tid": 35568, "ts": 12149328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333780", "tid": 35568, "ts": 12149414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332260", "tid": 35568, "ts": 12149501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03350b0", "tid": 35568, "ts": 12149587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334fe0", "tid": 35568, "ts": 12149673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03335e0", "tid": 35568, "ts": 12149759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03328e0", "tid": 35568, "ts": 12149845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332dc0", "tid": 35568, "ts": 12149931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333510", "tid": 35568, "ts": 12150017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332cf0", "tid": 35568, "ts": 12150103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333ac0", "tid": 35568, "ts": 12150188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334210", "tid": 35568, "ts": 12150273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333fa0", "tid": 35568, "ts": 12150358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333ed0", "tid": 35568, "ts": 12150444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334e40", "tid": 35568, "ts": 12150531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335320", "tid": 35568, "ts": 12150617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334f10", "tid": 35568, "ts": 12150703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334070", "tid": 35568, "ts": 12150789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332330", "tid": 35568, "ts": 12150875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332740", "tid": 35568, "ts": 12150960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334d70", "tid": 35568, "ts": 12151045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334ca0", "tid": 35568, "ts": 12151131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334550", "tid": 35568, "ts": 12151217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334bd0", "tid": 35568, "ts": 12151302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03325a0", "tid": 35568, "ts": 12151388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333440", "tid": 35568, "ts": 12151474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333370", "tid": 35568, "ts": 12151560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333e00", "tid": 35568, "ts": 12151646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f330", "tid": 35568, "ts": 12151731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341bd0", "tid": 35568, "ts": 12151817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341a30", "tid": 35568, "ts": 12151904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341550", "tid": 35568, "ts": 12151991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f260", "tid": 35568, "ts": 12152077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340c60", "tid": 35568, "ts": 12152163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03406b0", "tid": 35568, "ts": 12152249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03405e0", "tid": 35568, "ts": 12152335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341f10", "tid": 35568, "ts": 12152421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341e40", "tid": 35568, "ts": 12152506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341620", "tid": 35568, "ts": 12152592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fdc0", "tid": 35568, "ts": 12152677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f190", "tid": 35568, "ts": 12152767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03401d0", "tid": 35568, "ts": 12152918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340920", "tid": 35568, "ts": 12153003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340100", "tid": 35568, "ts": 12153089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340e00", "tid": 35568, "ts": 12153175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341070", "tid": 35568, "ts": 12153260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f0c0", "tid": 35568, "ts": 12153346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340d30", "tid": 35568, "ts": 12153432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340ac0", "tid": 35568, "ts": 12153517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340030", "tid": 35568, "ts": 12153603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341d70", "tid": 35568, "ts": 12153689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fa80", "tid": 35568, "ts": 12153776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340510", "tid": 35568, "ts": 12153861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f400", "tid": 35568, "ts": 12153948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f8e0", "tid": 35568, "ts": 12154034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f740", "tid": 35568, "ts": 12154119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fcf0", "tid": 35568, "ts": 12154205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e3c0", "tid": 35568, "ts": 12154291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e150", "tid": 35568, "ts": 12154377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d5f0", "tid": 35568, "ts": 12154463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d040", "tid": 35568, "ts": 12154549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cd00", "tid": 35568, "ts": 12154635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cb60", "tid": 35568, "ts": 12154721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d520", "tid": 35568, "ts": 12154807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033de10", "tid": 35568, "ts": 12154892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c8f0", "tid": 35568, "ts": 12154978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c750", "tid": 35568, "ts": 12155063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c340", "tid": 35568, "ts": 12155149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c0d0", "tid": 35568, "ts": 12155234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bf30", "tid": 35568, "ts": 12155321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cdd0", "tid": 35568, "ts": 12155406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c1a0", "tid": 35568, "ts": 12155491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d110", "tid": 35568, "ts": 12155577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dad0", "tid": 35568, "ts": 12155663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033be60", "tid": 35568, "ts": 12155749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ecb0", "tid": 35568, "ts": 12155835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dba0", "tid": 35568, "ts": 12155921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d6c0", "tid": 35568, "ts": 12156007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d860", "tid": 35568, "ts": 12156092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c000", "tid": 35568, "ts": 12156178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e970", "tid": 35568, "ts": 12156264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e8a0", "tid": 35568, "ts": 12156355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bcc0", "tid": 35568, "ts": 12156441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d2b0", "tid": 35568, "ts": 12156528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e7d0", "tid": 35568, "ts": 12156614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d380", "tid": 35568, "ts": 12156699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cf70", "tid": 35568, "ts": 12156786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c680", "tid": 35568, "ts": 12156871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c5b0", "tid": 35568, "ts": 12156957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033abb0", "tid": 35568, "ts": 12157043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033aa10", "tid": 35568, "ts": 12157129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339900", "tid": 35568, "ts": 12157215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339830", "tid": 35568, "ts": 12157301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338cd0", "tid": 35568, "ts": 12157388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a2c0", "tid": 35568, "ts": 12157474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339760", "tid": 35568, "ts": 12157560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03395c0", "tid": 35568, "ts": 12157690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338c00", "tid": 35568, "ts": 12157792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338990", "tid": 35568, "ts": 12157877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ae20", "tid": 35568, "ts": 12157963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b640", "tid": 35568, "ts": 12158049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a600", "tid": 35568, "ts": 12158135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b570", "tid": 35568, "ts": 12158221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338b30", "tid": 35568, "ts": 12158307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339b70", "tid": 35568, "ts": 12158393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b980", "tid": 35568, "ts": 12158479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339280", "tid": 35568, "ts": 12158565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b7e0", "tid": 35568, "ts": 12158651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338a60", "tid": 35568, "ts": 12158737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a050", "tid": 35568, "ts": 12158823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338da0", "tid": 35568, "ts": 12158925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b230", "tid": 35568, "ts": 12159011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033afc0", "tid": 35568, "ts": 12159098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a120", "tid": 35568, "ts": 12159185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b4a0", "tid": 35568, "ts": 12159271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03391b0", "tid": 35568, "ts": 12159357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03390e0", "tid": 35568, "ts": 12159443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b710", "tid": 35568, "ts": 12159529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b300", "tid": 35568, "ts": 12159616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339aa0", "tid": 35568, "ts": 12159702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336290", "tid": 35568, "ts": 12159787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03360f0", "tid": 35568, "ts": 12159873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337060", "tid": 35568, "ts": 12159958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337880", "tid": 35568, "ts": 12160044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336f90", "tid": 35568, "ts": 12160130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03376e0", "tid": 35568, "ts": 12160215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337470", "tid": 35568, "ts": 12160301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337200", "tid": 35568, "ts": 12160387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336d20", "tid": 35568, "ts": 12160472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335f50", "tid": 35568, "ts": 12160557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338720", "tid": 35568, "ts": 12160644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03369e0", "tid": 35568, "ts": 12160729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336910", "tid": 35568, "ts": 12160815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336b80", "tid": 35568, "ts": 12160901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338650", "tid": 35568, "ts": 12160987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03359a0", "tid": 35568, "ts": 12161073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337a20", "tid": 35568, "ts": 12161159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336840", "tid": 35568, "ts": 12161245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337bc0", "tid": 35568, "ts": 12161332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337610", "tid": 35568, "ts": 12161418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337f00", "tid": 35568, "ts": 12161503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03358d0", "tid": 35568, "ts": 12161590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335a70", "tid": 35568, "ts": 12161675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337d60", "tid": 35568, "ts": 12161761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335660", "tid": 35568, "ts": 12161847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338240", "tid": 35568, "ts": 12161934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03366a0", "tid": 35568, "ts": 12162019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03383e0", "tid": 35568, "ts": 12162105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338170", "tid": 35568, "ts": 12162191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337c90", "tid": 35568, "ts": 12162276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335db0", "tid": 35568, "ts": 12162362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338310", "tid": 35568, "ts": 12162448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915250", "tid": 35568, "ts": 12162534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914fe0", "tid": 35568, "ts": 12162620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914f10", "tid": 35568, "ts": 12162705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914070", "tid": 35568, "ts": 12162792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913fa0", "tid": 35568, "ts": 12162877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913850", "tid": 35568, "ts": 12162963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914bd0", "tid": 35568, "ts": 12163050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879136b0", "tid": 35568, "ts": 12163136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914e40", "tid": 35568, "ts": 12163222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912e90", "tid": 35568, "ts": 12163309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912810", "tid": 35568, "ts": 12163394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879135e0", "tid": 35568, "ts": 12163480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912670", "tid": 35568, "ts": 12163566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879124d0", "tid": 35568, "ts": 12163652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879142e0", "tid": 35568, "ts": 12163738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913e00", "tid": 35568, "ts": 12163825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879132a0", "tid": 35568, "ts": 12163911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914b00", "tid": 35568, "ts": 12163998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879131d0", "tid": 35568, "ts": 12164083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913440", "tid": 35568, "ts": 12164169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912400", "tid": 35568, "ts": 12164256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915180", "tid": 35568, "ts": 12164341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913ac0", "tid": 35568, "ts": 12164427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912a80", "tid": 35568, "ts": 12164513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912260", "tid": 35568, "ts": 12164599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879129b0", "tid": 35568, "ts": 12164686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912dc0", "tid": 35568, "ts": 12164772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912b50", "tid": 35568, "ts": 12164858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879128e0", "tid": 35568, "ts": 12164944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912f60", "tid": 35568, "ts": 12165030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913030", "tid": 35568, "ts": 12165117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914d70", "tid": 35568, "ts": 12165203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921960", "tid": 35568, "ts": 12165288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921140", "tid": 35568, "ts": 12165374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ff60", "tid": 35568, "ts": 12165460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921070", "tid": 35568, "ts": 12165545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fe90", "tid": 35568, "ts": 12165632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879217c0", "tid": 35568, "ts": 12165718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fcf0", "tid": 35568, "ts": 12165804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fb50", "tid": 35568, "ts": 12165890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920fa0", "tid": 35568, "ts": 12165977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fa80", "tid": 35568, "ts": 12166064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920ed0", "tid": 35568, "ts": 12166150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921550", "tid": 35568, "ts": 12166236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f5a0", "tid": 35568, "ts": 12166321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f9b0", "tid": 35568, "ts": 12166407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920510", "tid": 35568, "ts": 12166493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f330", "tid": 35568, "ts": 12166580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920e00", "tid": 35568, "ts": 12166666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921480", "tid": 35568, "ts": 12166752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921ca0", "tid": 35568, "ts": 12166838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f8e0", "tid": 35568, "ts": 12166923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921b00", "tid": 35568, "ts": 12167009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fc20", "tid": 35568, "ts": 12167096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920d30", "tid": 35568, "ts": 12167182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920c60", "tid": 35568, "ts": 12167268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f810", "tid": 35568, "ts": 12167354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879206b0", "tid": 35568, "ts": 12167440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920440", "tid": 35568, "ts": 12167525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879209f0", "tid": 35568, "ts": 12167611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920b90", "tid": 35568, "ts": 12167697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d790", "tid": 35568, "ts": 12167783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d5f0", "tid": 35568, "ts": 12167869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c820", "tid": 35568, "ts": 12167956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c000", "tid": 35568, "ts": 12168042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bcc0", "tid": 35568, "ts": 12168128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d520", "tid": 35568, "ts": 12168214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ef20", "tid": 35568, "ts": 12168299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ee50", "tid": 35568, "ts": 12168386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ecb0", "tid": 35568, "ts": 12168581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e8a0", "tid": 35568, "ts": 12168768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d2b0", "tid": 35568, "ts": 12168877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e150", "tid": 35568, "ts": 12169005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c270", "tid": 35568, "ts": 12169109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e3c0", "tid": 35568, "ts": 12169245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e560", "tid": 35568, "ts": 12169361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bd90", "tid": 35568, "ts": 12169448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c5b0", "tid": 35568, "ts": 12169536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ebe0", "tid": 35568, "ts": 12169624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e080", "tid": 35568, "ts": 12169713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c0d0", "tid": 35568, "ts": 12169800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dc70", "tid": 35568, "ts": 12169887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dfb0", "tid": 35568, "ts": 12169974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d1e0", "tid": 35568, "ts": 12170062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791be60", "tid": 35568, "ts": 12170148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d930", "tid": 35568, "ts": 12170234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c750", "tid": 35568, "ts": 12170321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d110", "tid": 35568, "ts": 12170416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cb60", "tid": 35568, "ts": 12170503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c680", "tid": 35568, "ts": 12170591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ca90", "tid": 35568, "ts": 12170678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e2f0", "tid": 35568, "ts": 12170766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e700", "tid": 35568, "ts": 12170853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ad50", "tid": 35568, "ts": 12170939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791abb0", "tid": 35568, "ts": 12171026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791aa10", "tid": 35568, "ts": 12171113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a6d0", "tid": 35568, "ts": 12171200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a530", "tid": 35568, "ts": 12171287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919b70", "tid": 35568, "ts": 12171374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a120", "tid": 35568, "ts": 12171461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919690", "tid": 35568, "ts": 12171548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919aa0", "tid": 35568, "ts": 12171636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a940", "tid": 35568, "ts": 12171725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919de0", "tid": 35568, "ts": 12171812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bbf0", "tid": 35568, "ts": 12171910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bb20", "tid": 35568, "ts": 12171998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ba50", "tid": 35568, "ts": 12172084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919d10", "tid": 35568, "ts": 12172170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918da0", "tid": 35568, "ts": 12172257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b7e0", "tid": 35568, "ts": 12172344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918cd0", "tid": 35568, "ts": 12172430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b230", "tid": 35568, "ts": 12172516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b980", "tid": 35568, "ts": 12172602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a460", "tid": 35568, "ts": 12172689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b160", "tid": 35568, "ts": 12172775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a390", "tid": 35568, "ts": 12172862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b090", "tid": 35568, "ts": 12172947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879194f0", "tid": 35568, "ts": 12173034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919010", "tid": 35568, "ts": 12173121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a7a0", "tid": 35568, "ts": 12173207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919350", "tid": 35568, "ts": 12173294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918f40", "tid": 35568, "ts": 12173380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791aef0", "tid": 35568, "ts": 12173467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918a60", "tid": 35568, "ts": 12173553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a1f0", "tid": 35568, "ts": 12173640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917bc0", "tid": 35568, "ts": 12173726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917610", "tid": 35568, "ts": 12173813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917540", "tid": 35568, "ts": 12173900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916840", "tid": 35568, "ts": 12173987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916770", "tid": 35568, "ts": 12174074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917470", "tid": 35568, "ts": 12174160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917a20", "tid": 35568, "ts": 12174246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879180a0", "tid": 35568, "ts": 12174333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915800", "tid": 35568, "ts": 12174419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879154c0", "tid": 35568, "ts": 12174505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915730", "tid": 35568, "ts": 12174591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918720", "tid": 35568, "ts": 12174678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879187f0", "tid": 35568, "ts": 12174764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916020", "tid": 35568, "ts": 12174850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915f50", "tid": 35568, "ts": 12174936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915db0", "tid": 35568, "ts": 12175023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917f00", "tid": 35568, "ts": 12175109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915b40", "tid": 35568, "ts": 12175195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917c90", "tid": 35568, "ts": 12175281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915660", "tid": 35568, "ts": 12175368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916c50", "tid": 35568, "ts": 12175455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915590", "tid": 35568, "ts": 12175542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916500", "tid": 35568, "ts": 12175628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917880", "tid": 35568, "ts": 12175714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879158d0", "tid": 35568, "ts": 12175800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915c10", "tid": 35568, "ts": 12175887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879172d0", "tid": 35568, "ts": 12175974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917200", "tid": 35568, "ts": 12176060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918580", "tid": 35568, "ts": 12176147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915a70", "tid": 35568, "ts": 12176234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879176e0", "tid": 35568, "ts": 12176320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879165d0", "tid": 35568, "ts": 12176407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9350", "tid": 35568, "ts": 12176493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aaae0", "tid": 35568, "ts": 12176579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786640", "tid": 35568, "ts": 12176666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786570", "tid": 35568, "ts": 12176752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786160", "tid": 35568, "ts": 12176839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785940", "tid": 35568, "ts": 12176925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785600", "tid": 35568, "ts": 12177011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785460", "tid": 35568, "ts": 12177097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7851f0", "tid": 35568, "ts": 12177183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785120", "tid": 35568, "ts": 12177287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784eb0", "tid": 35568, "ts": 12177400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7856d0", "tid": 35568, "ts": 12177502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786090", "tid": 35568, "ts": 12177589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784de0", "tid": 35568, "ts": 12177676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786bf0", "tid": 35568, "ts": 12177762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784760", "tid": 35568, "ts": 12177849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7867e0", "tid": 35568, "ts": 12177936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7845c0", "tid": 35568, "ts": 12178023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7840e0", "tid": 35568, "ts": 12178109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7849d0", "tid": 35568, "ts": 12178195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787340", "tid": 35568, "ts": 12178282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785fc0", "tid": 35568, "ts": 12178369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7868b0", "tid": 35568, "ts": 12178455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7870d0", "tid": 35568, "ts": 12178541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785bb0", "tid": 35568, "ts": 12178627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7857a0", "tid": 35568, "ts": 12178713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787000", "tid": 35568, "ts": 12178799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786e60", "tid": 35568, "ts": 12178885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784350", "tid": 35568, "ts": 12178971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785a10", "tid": 35568, "ts": 12179058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786300", "tid": 35568, "ts": 12179144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7844f0", "tid": 35568, "ts": 12179231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786f30", "tid": 35568, "ts": 12179318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784b70", "tid": 35568, "ts": 12179404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793570", "tid": 35568, "ts": 12179490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793230", "tid": 35568, "ts": 12179577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793cc0", "tid": 35568, "ts": 12179663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791c40", "tid": 35568, "ts": 12179750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791b70", "tid": 35568, "ts": 12179836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791f80", "tid": 35568, "ts": 12179922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7922c0", "tid": 35568, "ts": 12180008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792600", "tid": 35568, "ts": 12180095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791760", "tid": 35568, "ts": 12180182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793980", "tid": 35568, "ts": 12180269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791690", "tid": 35568, "ts": 12180355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791900", "tid": 35568, "ts": 12180441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793a50", "tid": 35568, "ts": 12180527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7914f0", "tid": 35568, "ts": 12180613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792530", "tid": 35568, "ts": 12180701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792a10", "tid": 35568, "ts": 12180787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791aa0", "tid": 35568, "ts": 12180874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7938b0", "tid": 35568, "ts": 12180961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793710", "tid": 35568, "ts": 12181047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793640", "tid": 35568, "ts": 12181134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793d90", "tid": 35568, "ts": 12181220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7910e0", "tid": 35568, "ts": 12181307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793f30", "tid": 35568, "ts": 12181393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7926d0", "tid": 35568, "ts": 12181511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792940", "tid": 35568, "ts": 12181600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791830", "tid": 35568, "ts": 12181688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7908c0", "tid": 35568, "ts": 12181775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7900a0", "tid": 35568, "ts": 12181862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ffd0", "tid": 35568, "ts": 12181949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e5d0", "tid": 35568, "ts": 12182035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ff00", "tid": 35568, "ts": 12182122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fd60", "tid": 35568, "ts": 12182209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e9e0", "tid": 35568, "ts": 12182295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fbc0", "tid": 35568, "ts": 12182381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f130", "tid": 35568, "ts": 12182468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e360", "tid": 35568, "ts": 12182554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e020", "tid": 35568, "ts": 12182640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7903e0", "tid": 35568, "ts": 12182726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78eec0", "tid": 35568, "ts": 12182812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790990", "tid": 35568, "ts": 12182898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790580", "tid": 35568, "ts": 12183002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f540", "tid": 35568, "ts": 12183125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790b30", "tid": 35568, "ts": 12183212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ed20", "tid": 35568, "ts": 12183299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78eab0", "tid": 35568, "ts": 12183386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e0f0", "tid": 35568, "ts": 12183472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790da0", "tid": 35568, "ts": 12183559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fa20", "tid": 35568, "ts": 12183646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790f40", "tid": 35568, "ts": 12183732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78de80", "tid": 35568, "ts": 12183819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ec50", "tid": 35568, "ts": 12183906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ef90", "tid": 35568, "ts": 12183993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f060", "tid": 35568, "ts": 12184141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790310", "tid": 35568, "ts": 12184296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f950", "tid": 35568, "ts": 12184385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f880", "tid": 35568, "ts": 12184524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e290", "tid": 35568, "ts": 12184627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790240", "tid": 35568, "ts": 12184713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78af60", "tid": 35568, "ts": 12184800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78aa80", "tid": 35568, "ts": 12184887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78dc10", "tid": 35568, "ts": 12184973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78da70", "tid": 35568, "ts": 12185060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78be00", "tid": 35568, "ts": 12185146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d590", "tid": 35568, "ts": 12185233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cca0", "tid": 35568, "ts": 12185319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ae90", "tid": 35568, "ts": 12185405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78adc0", "tid": 35568, "ts": 12185492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cb00", "tid": 35568, "ts": 12185579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c480", "tid": 35568, "ts": 12185666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b510", "tid": 35568, "ts": 12185752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b780", "tid": 35568, "ts": 12185839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b440", "tid": 35568, "ts": 12185926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78acf0", "tid": 35568, "ts": 12186012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cd70", "tid": 35568, "ts": 12186098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d0b0", "tid": 35568, "ts": 12186185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d320", "tid": 35568, "ts": 12186313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bd30", "tid": 35568, "ts": 12186415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b6b0", "tid": 35568, "ts": 12186502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cfe0", "tid": 35568, "ts": 12186589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a9b0", "tid": 35568, "ts": 12186676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d660", "tid": 35568, "ts": 12186762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c210", "tid": 35568, "ts": 12186848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d4c0", "tid": 35568, "ts": 12186934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b2a0", "tid": 35568, "ts": 12187021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c070", "tid": 35568, "ts": 12187108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b100", "tid": 35568, "ts": 12187193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bfa0", "tid": 35568, "ts": 12187280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78db40", "tid": 35568, "ts": 12187366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b9f0", "tid": 35568, "ts": 12187453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c7c0", "tid": 35568, "ts": 12187540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a5a0", "tid": 35568, "ts": 12187627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a330", "tid": 35568, "ts": 12187714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789a40", "tid": 35568, "ts": 12187800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7898a0", "tid": 35568, "ts": 12187887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788ee0", "tid": 35568, "ts": 12187974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788c70", "tid": 35568, "ts": 12188060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788450", "tid": 35568, "ts": 12188146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7881e0", "tid": 35568, "ts": 12188233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787d00", "tid": 35568, "ts": 12188319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789e50", "tid": 35568, "ts": 12188406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789150", "tid": 35568, "ts": 12188493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a4d0", "tid": 35568, "ts": 12188579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789cb0", "tid": 35568, "ts": 12188666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788ba0", "tid": 35568, "ts": 12188753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787a90", "tid": 35568, "ts": 12188840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7879c0", "tid": 35568, "ts": 12188927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7886c0", "tid": 35568, "ts": 12189014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a810", "tid": 35568, "ts": 12189100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788110", "tid": 35568, "ts": 12189187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788d40", "tid": 35568, "ts": 12189273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789220", "tid": 35568, "ts": 12189359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788040", "tid": 35568, "ts": 12189445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789ff0", "tid": 35568, "ts": 12189532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788520", "tid": 35568, "ts": 12189617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788fb0", "tid": 35568, "ts": 12189704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789b10", "tid": 35568, "ts": 12189789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787680", "tid": 35568, "ts": 12189876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787ea0", "tid": 35568, "ts": 12189962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789560", "tid": 35568, "ts": 12190048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7885f0", "tid": 35568, "ts": 12190134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7875b0", "tid": 35568, "ts": 12190221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7874e0", "tid": 35568, "ts": 12190307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618100", "tid": 35568, "ts": 12190394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617b50", "tid": 35568, "ts": 12190479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617dc0", "tid": 35568, "ts": 12190566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617cf0", "tid": 35568, "ts": 12190651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946189f0", "tid": 35568, "ts": 12190738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618780", "tid": 35568, "ts": 12190825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618370", "tid": 35568, "ts": 12190911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946185e0", "tid": 35568, "ts": 12190997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618030", "tid": 35568, "ts": 12191083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618510", "tid": 35568, "ts": 12191169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617f60", "tid": 35568, "ts": 12191255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618920", "tid": 35568, "ts": 12191341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946175a0", "tid": 35568, "ts": 12191427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946174d0", "tid": 35568, "ts": 12191514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614ea0", "tid": 35568, "ts": 12191599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614340", "tid": 35568, "ts": 12191685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615520", "tid": 35568, "ts": 12191771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617400", "tid": 35568, "ts": 12191858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617330", "tid": 35568, "ts": 12191944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614820", "tid": 35568, "ts": 12192030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615450", "tid": 35568, "ts": 12192116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616ff0", "tid": 35568, "ts": 12192202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614270", "tid": 35568, "ts": 12192288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614750", "tid": 35568, "ts": 12192375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615a00", "tid": 35568, "ts": 12192461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614c30", "tid": 35568, "ts": 12192547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615d40", "tid": 35568, "ts": 12192633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616be0", "tid": 35568, "ts": 12192720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946152b0", "tid": 35568, "ts": 12192805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946162f0", "tid": 35568, "ts": 12192891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946145b0", "tid": 35568, "ts": 12192978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616080", "tid": 35568, "ts": 12193064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616220", "tid": 35568, "ts": 12193151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616b10", "tid": 35568, "ts": 12193237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946144e0", "tid": 35568, "ts": 12193324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614dd0", "tid": 35568, "ts": 12193410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616560", "tid": 35568, "ts": 12193497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615c70", "tid": 35568, "ts": 12193584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615ba0", "tid": 35568, "ts": 12193670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946149c0", "tid": 35568, "ts": 12193756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614410", "tid": 35568, "ts": 12193842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616f20", "tid": 35568, "ts": 12193928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616970", "tid": 35568, "ts": 12194014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615110", "tid": 35568, "ts": 12194100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616630", "tid": 35568, "ts": 12194186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615860", "tid": 35568, "ts": 12194273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613a50", "tid": 35568, "ts": 12194360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946127a0", "tid": 35568, "ts": 12194447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946137e0", "tid": 35568, "ts": 12194533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613bf0", "tid": 35568, "ts": 12194682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613710", "tid": 35568, "ts": 12194784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946121f0", "tid": 35568, "ts": 12194872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613640", "tid": 35568, "ts": 12194958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946111b0", "tid": 35568, "ts": 12195045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612460", "tid": 35568, "ts": 12195131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613160", "tid": 35568, "ts": 12195218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611c40", "tid": 35568, "ts": 12195304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946138b0", "tid": 35568, "ts": 12195391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946134a0", "tid": 35568, "ts": 12195477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611690", "tid": 35568, "ts": 12195563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612050", "tid": 35568, "ts": 12195649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612e20", "tid": 35568, "ts": 12195736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610f40", "tid": 35568, "ts": 12195823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611d10", "tid": 35568, "ts": 12195909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610da0", "tid": 35568, "ts": 12195995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610cd0", "tid": 35568, "ts": 12196081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614000", "tid": 35568, "ts": 12196168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612bb0", "tid": 35568, "ts": 12196254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946114f0", "tid": 35568, "ts": 12196341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612a10", "tid": 35568, "ts": 12196427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613f30", "tid": 35568, "ts": 12196514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611f80", "tid": 35568, "ts": 12196600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612390", "tid": 35568, "ts": 12196685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612870", "tid": 35568, "ts": 12196772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613090", "tid": 35568, "ts": 12196858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613b20", "tid": 35568, "ts": 12196944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613cc0", "tid": 35568, "ts": 12197031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611420", "tid": 35568, "ts": 12197117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929d10", "tid": 35568, "ts": 12197206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929c40", "tid": 35568, "ts": 12197292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879294f0", "tid": 35568, "ts": 12197378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929280", "tid": 35568, "ts": 12197464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928e70", "tid": 35568, "ts": 12197550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929aa0", "tid": 35568, "ts": 12197636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928cd0", "tid": 35568, "ts": 12197722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879299d0", "tid": 35568, "ts": 12197809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929eb0", "tid": 35568, "ts": 12197894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929830", "tid": 35568, "ts": 12197981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929350", "tid": 35568, "ts": 12198067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928c00", "tid": 35568, "ts": 12198153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928b30", "tid": 35568, "ts": 12198239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929690", "tid": 35568, "ts": 12198325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929760", "tid": 35568, "ts": 12198412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928240", "tid": 35568, "ts": 12198498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879280a0", "tid": 35568, "ts": 12198585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927d60", "tid": 35568, "ts": 12198671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927130", "tid": 35568, "ts": 12198758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926ec0", "tid": 35568, "ts": 12198844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926b80", "tid": 35568, "ts": 12198930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926910", "tid": 35568, "ts": 12199017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926290", "tid": 35568, "ts": 12199103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879277b0", "tid": 35568, "ts": 12199190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879260f0", "tid": 35568, "ts": 12199276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925ce0", "tid": 35568, "ts": 12199362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927470", "tid": 35568, "ts": 12199449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928650", "tid": 35568, "ts": 12199536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926c50", "tid": 35568, "ts": 12199622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879272d0", "tid": 35568, "ts": 12199760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925800", "tid": 35568, "ts": 12199908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925730", "tid": 35568, "ts": 12199999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879283e0", "tid": 35568, "ts": 12200087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927200", "tid": 35568, "ts": 12200175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879266a0", "tid": 35568, "ts": 12200262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926430", "tid": 35568, "ts": 12200349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927fd0", "tid": 35568, "ts": 12200436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925a70", "tid": 35568, "ts": 12200523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879259a0", "tid": 35568, "ts": 12200610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925f50", "tid": 35568, "ts": 12200698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926ab0", "tid": 35568, "ts": 12200786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927f00", "tid": 35568, "ts": 12200872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926770", "tid": 35568, "ts": 12200958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879287f0", "tid": 35568, "ts": 12201045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928720", "tid": 35568, "ts": 12201132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927c90", "tid": 35568, "ts": 12201219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925db0", "tid": 35568, "ts": 12201305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879243b0", "tid": 35568, "ts": 12201392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924070", "tid": 35568, "ts": 12201478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923e00", "tid": 35568, "ts": 12201565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923c60", "tid": 35568, "ts": 12201652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924d70", "tid": 35568, "ts": 12201738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924f10", "tid": 35568, "ts": 12201832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923780", "tid": 35568, "ts": 12201920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879231d0", "tid": 35568, "ts": 12202007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922b50", "tid": 35568, "ts": 12202093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922740", "tid": 35568, "ts": 12202179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925180", "tid": 35568, "ts": 12202272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923030", "tid": 35568, "ts": 12202359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879235e0", "tid": 35568, "ts": 12202446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924e40", "tid": 35568, "ts": 12202535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879225a0", "tid": 35568, "ts": 12202622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879229b0", "tid": 35568, "ts": 12202708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922190", "tid": 35568, "ts": 12202795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922e90", "tid": 35568, "ts": 12202882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922cf0", "tid": 35568, "ts": 12202969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879232a0", "tid": 35568, "ts": 12203056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879239f0", "tid": 35568, "ts": 12203143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924bd0", "tid": 35568, "ts": 12203230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879246f0", "tid": 35568, "ts": 12203316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922330", "tid": 35568, "ts": 12203403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879224d0", "tid": 35568, "ts": 12203490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922a80", "tid": 35568, "ts": 12203576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924960", "tid": 35568, "ts": 12203663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923920", "tid": 35568, "ts": 12203749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922810", "tid": 35568, "ts": 12203835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924890", "tid": 35568, "ts": 12203921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923510", "tid": 35568, "ts": 12204008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923100", "tid": 35568, "ts": 12204108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8e70", "tid": 35568, "ts": 12204214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9280", "tid": 35568, "ts": 12204301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8c00", "tid": 35568, "ts": 12204388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8a60", "tid": 35568, "ts": 12204475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9d10", "tid": 35568, "ts": 12204561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d99d0", "tid": 35568, "ts": 12204649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d88c0", "tid": 35568, "ts": 12204735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9900", "tid": 35568, "ts": 12204822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9010", "tid": 35568, "ts": 12204908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d90e0", "tid": 35568, "ts": 12204995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9760", "tid": 35568, "ts": 12205082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9de0", "tid": 35568, "ts": 12205168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9b70", "tid": 35568, "ts": 12205254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6f90", "tid": 35568, "ts": 12205340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6df0", "tid": 35568, "ts": 12205426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6b80", "tid": 35568, "ts": 12205512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6ab0", "tid": 35568, "ts": 12205599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6910", "tid": 35568, "ts": 12205685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d66a0", "tid": 35568, "ts": 12205772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5b40", "tid": 35568, "ts": 12205858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6500", "tid": 35568, "ts": 12205944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8580", "tid": 35568, "ts": 12206031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d60f0", "tid": 35568, "ts": 12206117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7fd0", "tid": 35568, "ts": 12206203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5590", "tid": 35568, "ts": 12206289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7060", "tid": 35568, "ts": 12206376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7bc0", "tid": 35568, "ts": 12206463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7af0", "tid": 35568, "ts": 12206550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7610", "tid": 35568, "ts": 12206637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7950", "tid": 35568, "ts": 12206725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8310", "tid": 35568, "ts": 12206812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7880", "tid": 35568, "ts": 12206899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7e30", "tid": 35568, "ts": 12206986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6360", "tid": 35568, "ts": 12207074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8650", "tid": 35568, "ts": 12207172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d54c0", "tid": 35568, "ts": 12207259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d69e0", "tid": 35568, "ts": 12207345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5730", "tid": 35568, "ts": 12207431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7470", "tid": 35568, "ts": 12207518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5ce0", "tid": 35568, "ts": 12207604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d73a0", "tid": 35568, "ts": 12207690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d77b0", "tid": 35568, "ts": 12207777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d83e0", "tid": 35568, "ts": 12207863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5800", "tid": 35568, "ts": 12207949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d59a0", "tid": 35568, "ts": 12208035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4210", "tid": 35568, "ts": 12208121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d36b0", "tid": 35568, "ts": 12208208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3440", "tid": 35568, "ts": 12208294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d31d0", "tid": 35568, "ts": 12208380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3920", "tid": 35568, "ts": 12208466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4070", "tid": 35568, "ts": 12208553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2f60", "tid": 35568, "ts": 12208639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d50b0", "tid": 35568, "ts": 12208725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d28e0", "tid": 35568, "ts": 12208811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4140", "tid": 35568, "ts": 12208898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4b00", "tid": 35568, "ts": 12208984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3fa0", "tid": 35568, "ts": 12209071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3ed0", "tid": 35568, "ts": 12209157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4a30", "tid": 35568, "ts": 12209243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2cf0", "tid": 35568, "ts": 12209329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d25a0", "tid": 35568, "ts": 12209415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3780", "tid": 35568, "ts": 12209501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5250", "tid": 35568, "ts": 12209587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2260", "tid": 35568, "ts": 12209673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d53f0", "tid": 35568, "ts": 12209759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3ac0", "tid": 35568, "ts": 12209846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4620", "tid": 35568, "ts": 12209932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3b90", "tid": 35568, "ts": 12210018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2670", "tid": 35568, "ts": 12210105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4ca0", "tid": 35568, "ts": 12210191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4480", "tid": 35568, "ts": 12210277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4e40", "tid": 35568, "ts": 12210363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4550", "tid": 35568, "ts": 12210449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d20c0", "tid": 35568, "ts": 12210535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2b50", "tid": 35568, "ts": 12210620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2400", "tid": 35568, "ts": 12210706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d43b0", "tid": 35568, "ts": 12210792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23190", "tid": 35568, "ts": 12210878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22a40", "tid": 35568, "ts": 12210964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23f60", "tid": 35568, "ts": 12211050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23cf0", "tid": 35568, "ts": 12211136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23b50", "tid": 35568, "ts": 12211222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23260", "tid": 35568, "ts": 12211308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c239b0", "tid": 35568, "ts": 12211395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c238e0", "tid": 35568, "ts": 12211481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23dc0", "tid": 35568, "ts": 12211568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23400", "tid": 35568, "ts": 12211654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22e50", "tid": 35568, "ts": 12211741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23810", "tid": 35568, "ts": 12211827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23330", "tid": 35568, "ts": 12211913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22d80", "tid": 35568, "ts": 12211999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c228a0", "tid": 35568, "ts": 12212085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22560", "tid": 35568, "ts": 12212171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c223c0", "tid": 35568, "ts": 12212257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20820", "tid": 35568, "ts": 12212343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22150", "tid": 35568, "ts": 12212429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c227d0", "tid": 35568, "ts": 12212515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22630", "tid": 35568, "ts": 12212602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fcc0", "tid": 35568, "ts": 12212688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fb20", "tid": 35568, "ts": 12212775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fa50", "tid": 35568, "ts": 12212861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22700", "tid": 35568, "ts": 12212947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21c70", "tid": 35568, "ts": 12213033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c204e0", "tid": 35568, "ts": 12213119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f980", "tid": 35568, "ts": 12213205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fbf0", "tid": 35568, "ts": 12213291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c200d0", "tid": 35568, "ts": 12213377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f710", "tid": 35568, "ts": 12213463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21380", "tid": 35568, "ts": 12213550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22220", "tid": 35568, "ts": 12213636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21450", "tid": 35568, "ts": 12213726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20b60", "tid": 35568, "ts": 12213813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ff30", "tid": 35568, "ts": 12213900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20750", "tid": 35568, "ts": 12213986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20d00", "tid": 35568, "ts": 12214076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c209c0", "tid": 35568, "ts": 12214163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22080", "tid": 35568, "ts": 12214249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21860", "tid": 35568, "ts": 12214336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21fb0", "tid": 35568, "ts": 12214422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21040", "tid": 35568, "ts": 12214509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20dd0", "tid": 35568, "ts": 12214595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20f70", "tid": 35568, "ts": 12214682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c205b0", "tid": 35568, "ts": 12214767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fd90", "tid": 35568, "ts": 12214855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c310", "tid": 35568, "ts": 12214941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f230", "tid": 35568, "ts": 12215028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f090", "tid": 35568, "ts": 12215115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e940", "tid": 35568, "ts": 12215200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e460", "tid": 35568, "ts": 12215333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ee20", "tid": 35568, "ts": 12215449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1db70", "tid": 35568, "ts": 12215550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ce70", "tid": 35568, "ts": 12215718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1dc40", "tid": 35568, "ts": 12215855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cda0", "tid": 35568, "ts": 12215955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ccd0", "tid": 35568, "ts": 12216068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d830", "tid": 35568, "ts": 12216193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c720", "tid": 35568, "ts": 12216279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1deb0", "tid": 35568, "ts": 12216365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d4f0", "tid": 35568, "ts": 12216451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e390", "tid": 35568, "ts": 12216538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d690", "tid": 35568, "ts": 12216624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d0e0", "tid": 35568, "ts": 12216710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1eef0", "tid": 35568, "ts": 12216797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1efc0", "tid": 35568, "ts": 12216883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d280", "tid": 35568, "ts": 12216970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e600", "tid": 35568, "ts": 12217056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c170", "tid": 35568, "ts": 12217143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ebb0", "tid": 35568, "ts": 12217229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d5c0", "tid": 35568, "ts": 12217315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c0a0", "tid": 35568, "ts": 12217402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d010", "tid": 35568, "ts": 12217488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c7f0", "tid": 35568, "ts": 12217575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ea10", "tid": 35568, "ts": 12217661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1eae0", "tid": 35568, "ts": 12217747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c4b0", "tid": 35568, "ts": 12217833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37490", "tid": 35568, "ts": 12217920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37a40", "tid": 35568, "ts": 12218007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d378a0", "tid": 35568, "ts": 12218094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d377d0", "tid": 35568, "ts": 12218180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37cb0", "tid": 35568, "ts": 12218266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37d80", "tid": 35568, "ts": 12218353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37970", "tid": 35568, "ts": 12218439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d343d0", "tid": 35568, "ts": 12218525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35000", "tid": 35568, "ts": 12218612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34090", "tid": 35568, "ts": 12218698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37150", "tid": 35568, "ts": 12218785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36ee0", "tid": 35568, "ts": 12218871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34f30", "tid": 35568, "ts": 12218957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36790", "tid": 35568, "ts": 12219044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36520", "tid": 35568, "ts": 12219130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35270", "tid": 35568, "ts": 12219217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34d90", "tid": 35568, "ts": 12219303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34bf0", "tid": 35568, "ts": 12219390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36380", "tid": 35568, "ts": 12219477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36ba0", "tid": 35568, "ts": 12219562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37220", "tid": 35568, "ts": 12219649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36fb0", "tid": 35568, "ts": 12219735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d362b0", "tid": 35568, "ts": 12219822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d351a0", "tid": 35568, "ts": 12219909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34cc0", "tid": 35568, "ts": 12219996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d347e0", "tid": 35568, "ts": 12220083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36110", "tid": 35568, "ts": 12220169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d358f0", "tid": 35568, "ts": 12220256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36a00", "tid": 35568, "ts": 12220343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35f70", "tid": 35568, "ts": 12220429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35c30", "tid": 35568, "ts": 12220516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35340", "tid": 35568, "ts": 12220602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35b60", "tid": 35568, "ts": 12220688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35680", "tid": 35568, "ts": 12220775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d355b0", "tid": 35568, "ts": 12220862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36ad0", "tid": 35568, "ts": 12220948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34570", "tid": 35568, "ts": 12221033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d354e0", "tid": 35568, "ts": 12221120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d348b0", "tid": 35568, "ts": 12221206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aba40", "tid": 35568, "ts": 12221294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abb10", "tid": 35568, "ts": 12221381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab7d0", "tid": 35568, "ts": 12221468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab630", "tid": 35568, "ts": 12221554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab490", "tid": 35568, "ts": 12221640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abe50", "tid": 35568, "ts": 12221727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abd80", "tid": 35568, "ts": 12221812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8b20", "tid": 35568, "ts": 12221899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8bf0", "tid": 35568, "ts": 12221984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9ea0", "tid": 35568, "ts": 12222071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9dd0", "tid": 35568, "ts": 12222157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa790", "tid": 35568, "ts": 12222243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa2b0", "tid": 35568, "ts": 12222329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9820", "tid": 35568, "ts": 12222415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aac70", "tid": 35568, "ts": 12222502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a83d0", "tid": 35568, "ts": 12222588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8f30", "tid": 35568, "ts": 12222675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8230", "tid": 35568, "ts": 12222762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa520", "tid": 35568, "ts": 12222848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaba0", "tid": 35568, "ts": 12222934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8e60", "tid": 35568, "ts": 12223020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a98f0", "tid": 35568, "ts": 12223106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa930", "tid": 35568, "ts": 12223192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a95b0", "tid": 35568, "ts": 12223278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9d00", "tid": 35568, "ts": 12223364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa110", "tid": 35568, "ts": 12223450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8090", "tid": 35568, "ts": 12223536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab220", "tid": 35568, "ts": 12223624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9000", "tid": 35568, "ts": 12223710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8d90", "tid": 35568, "ts": 12223797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a90d0", "tid": 35568, "ts": 12223883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aad40", "tid": 35568, "ts": 12223970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9b60", "tid": 35568, "ts": 12224056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa040", "tid": 35568, "ts": 12224143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a84a0", "tid": 35568, "ts": 12224229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9a90", "tid": 35568, "ts": 12224315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9340", "tid": 35568, "ts": 12224403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa5f0", "tid": 35568, "ts": 12224490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8300", "tid": 35568, "ts": 12224577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 12224663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abbf0", "tid": 35568, "ts": 12224750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aba50", "tid": 35568, "ts": 12224837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abd90", "tid": 35568, "ts": 12224923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab710", "tid": 35568, "ts": 12225010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abe60", "tid": 35568, "ts": 12225103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab570", "tid": 35568, "ts": 12225190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab4a0", "tid": 35568, "ts": 12225276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8cd0", "tid": 35568, "ts": 12225365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab300", "tid": 35568, "ts": 12225452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aac80", "tid": 35568, "ts": 12225537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aabb0", "tid": 35568, "ts": 12225623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8a60", "tid": 35568, "ts": 12225709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa2c0", "tid": 35568, "ts": 12225795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9eb0", "tid": 35568, "ts": 12225881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8b30", "tid": 35568, "ts": 12225967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab090", "tid": 35568, "ts": 12226053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aaa10", "tid": 35568, "ts": 12226141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9900", "tid": 35568, "ts": 12226228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9c40", "tid": 35568, "ts": 12226320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a94f0", "tid": 35568, "ts": 12226407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa050", "tid": 35568, "ts": 12226493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a84b0", "tid": 35568, "ts": 12226579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a83e0", "tid": 35568, "ts": 12226681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9b70", "tid": 35568, "ts": 12226768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9420", "tid": 35568, "ts": 12226855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9010", "tid": 35568, "ts": 12226942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aae20", "tid": 35568, "ts": 12227029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa7a0", "tid": 35568, "ts": 12227115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aad50", "tid": 35568, "ts": 12227300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a99d0", "tid": 35568, "ts": 12227388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa600", "tid": 35568, "ts": 12227474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa940", "tid": 35568, "ts": 12227561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9280", "tid": 35568, "ts": 12227647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8650", "tid": 35568, "ts": 12227733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9f80", "tid": 35568, "ts": 12227819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8170", "tid": 35568, "ts": 12227905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa6d0", "tid": 35568, "ts": 12227992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b7e0", "tid": 35568, "ts": 12228079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b710", "tid": 35568, "ts": 12228165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bf30", "tid": 35568, "ts": 12228252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bbf0", "tid": 35568, "ts": 12228338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bb20", "tid": 35568, "ts": 12228425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ba50", "tid": 35568, "ts": 12228511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bcc0", "tid": 35568, "ts": 12228597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748b30", "tid": 35568, "ts": 12228683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748170", "tid": 35568, "ts": 12228770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b300", "tid": 35568, "ts": 12228856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a2c0", "tid": 35568, "ts": 12228942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a1f0", "tid": 35568, "ts": 12229028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749eb0", "tid": 35568, "ts": 12229114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7480a0", "tid": 35568, "ts": 12229200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a7a0", "tid": 35568, "ts": 12229286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749280", "tid": 35568, "ts": 12229372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749aa0", "tid": 35568, "ts": 12229458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a600", "tid": 35568, "ts": 12229545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ae20", "tid": 35568, "ts": 12229631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7488c0", "tid": 35568, "ts": 12229717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ad50", "tid": 35568, "ts": 12229802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74abb0", "tid": 35568, "ts": 12229889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a050", "tid": 35568, "ts": 12229975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7484b0", "tid": 35568, "ts": 12230061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a6d0", "tid": 35568, "ts": 12230148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749420", "tid": 35568, "ts": 12230234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749d10", "tid": 35568, "ts": 12230321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748720", "tid": 35568, "ts": 12230407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749010", "tid": 35568, "ts": 12230493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748f40", "tid": 35568, "ts": 12230580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7494f0", "tid": 35568, "ts": 12230666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749900", "tid": 35568, "ts": 12230753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a870", "tid": 35568, "ts": 12230840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748cd0", "tid": 35568, "ts": 12230969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749690", "tid": 35568, "ts": 12231091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749b70", "tid": 35568, "ts": 12231180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a120", "tid": 35568, "ts": 12231268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749de0", "tid": 35568, "ts": 12231355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7495c0", "tid": 35568, "ts": 12231442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7194f0", "tid": 35568, "ts": 12231531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719280", "tid": 35568, "ts": 12231619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719aa0", "tid": 35568, "ts": 12231705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719900", "tid": 35568, "ts": 12231793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7184b0", "tid": 35568, "ts": 12231879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718310", "tid": 35568, "ts": 12231965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719de0", "tid": 35568, "ts": 12232051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719690", "tid": 35568, "ts": 12232138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7187f0", "tid": 35568, "ts": 12232223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718c00", "tid": 35568, "ts": 12232309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7195c0", "tid": 35568, "ts": 12232410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719830", "tid": 35568, "ts": 12232497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719f80", "tid": 35568, "ts": 12232585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719350", "tid": 35568, "ts": 12232671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719b70", "tid": 35568, "ts": 12232758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718170", "tid": 35568, "ts": 12232845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7199d0", "tid": 35568, "ts": 12232932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718cd0", "tid": 35568, "ts": 12233018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7180a0", "tid": 35568, "ts": 12233105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d19d0", "tid": 35568, "ts": 12233191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1280", "tid": 35568, "ts": 12233278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1690", "tid": 35568, "ts": 12233365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0f40", "tid": 35568, "ts": 12233452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0310", "tid": 35568, "ts": 12233539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0170", "tid": 35568, "ts": 12233626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d10e0", "tid": 35568, "ts": 12233714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0650", "tid": 35568, "ts": 12233801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1aa0", "tid": 35568, "ts": 12233888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1eb0", "tid": 35568, "ts": 12233975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1900", "tid": 35568, "ts": 12234061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1de0", "tid": 35568, "ts": 12234147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1c40", "tid": 35568, "ts": 12234235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0b30", "tid": 35568, "ts": 12234323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1d10", "tid": 35568, "ts": 12234409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1760", "tid": 35568, "ts": 12234495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0580", "tid": 35568, "ts": 12234581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1830", "tid": 35568, "ts": 12234668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1420", "tid": 35568, "ts": 12234755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 12234843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39aa0", "tid": 35568, "ts": 12234931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39830", "tid": 35568, "ts": 12235017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39760", "tid": 35568, "ts": 12235103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38a60", "tid": 35568, "ts": 12235190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39350", "tid": 35568, "ts": 12235277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d395c0", "tid": 35568, "ts": 12235364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d390e0", "tid": 35568, "ts": 12235450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38e70", "tid": 35568, "ts": 12235538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d380a0", "tid": 35568, "ts": 12235624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d388c0", "tid": 35568, "ts": 12235712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d387f0", "tid": 35568, "ts": 12235805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38c00", "tid": 35568, "ts": 12235892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39eb0", "tid": 35568, "ts": 12235979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38310", "tid": 35568, "ts": 12236066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39b70", "tid": 35568, "ts": 12236153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38650", "tid": 35568, "ts": 12236239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d383e0", "tid": 35568, "ts": 12236326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 12236412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 12236499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d8d0", "tid": 35568, "ts": 12236585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 12236686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fb30", "tid": 35568, "ts": 12236772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f240", "tid": 35568, "ts": 12236860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e801b0", "tid": 35568, "ts": 12236947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fa60", "tid": 35568, "ts": 12237033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80de0", "tid": 35568, "ts": 12237120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d809d0", "tid": 35568, "ts": 12237207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80d10", "tid": 35568, "ts": 12237294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca020", "tid": 35568, "ts": 12237398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec8fe0", "tid": 35568, "ts": 12237485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9e80", "tid": 35568, "ts": 12237586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f4b0", "tid": 35568, "ts": 12237733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9730", "tid": 35568, "ts": 12237852, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234830f0070", "tid": 35568, "ts": 12237942, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7090", "tid": 35568, "ts": 12238282, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7f30", "tid": 35568, "ts": 12238616, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 12238869, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1250", "tid": 35568, "ts": 12240677, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 12241000, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc09e0", "tid": 35568, "ts": 12241321, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad080", "tid": 35568, "ts": 12241644, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad500", "tid": 35568, "ts": 12241965, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad740", "tid": 35568, "ts": 12242283, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae940", "tid": 35568, "ts": 12242600, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad8f0", "tid": 35568, "ts": 12242919, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae0d0", "tid": 35568, "ts": 12243240, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8ef0", "tid": 35568, "ts": 12243598, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7120", "tid": 35568, "ts": 12243607, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7c60", "tid": 35568, "ts": 12243613, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8a70", "tid": 35568, "ts": 12243619, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7cf0", "tid": 35568, "ts": 12243625, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7e10", "tid": 35568, "ts": 12243995, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7fc0", "tid": 35568, "ts": 12244004, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d7f170", "tid": 35568, "ts": 12244019, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b00", "tid": 35568, "ts": 12244231, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d80b70", "tid": 35568, "ts": 12244247, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e80e0", "tid": 35568, "ts": 12244451, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8200", "tid": 35568, "ts": 12244458, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc10a0", "tid": 35568, "ts": 12244917, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc11c0", "tid": 35568, "ts": 12244926, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1490", "tid": 35568, "ts": 12244933, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0680", "tid": 35568, "ts": 12244939, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0f80", "tid": 35568, "ts": 12244945, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1130", "tid": 35568, "ts": 12245780, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc12e0", "tid": 35568, "ts": 12245788, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1370", "tid": 35568, "ts": 12245794, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b00", "tid": 35568, "ts": 12245800, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1400", "tid": 35568, "ts": 12245806, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0710", "tid": 35568, "ts": 12246148, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc07a0", "tid": 35568, "ts": 12246157, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 12246163, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0830", "tid": 35568, "ts": 12246169, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc08c0", "tid": 35568, "ts": 12246174, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0d40", "tid": 35568, "ts": 12246517, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0950", "tid": 35568, "ts": 12246525, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b90", "tid": 35568, "ts": 12246567, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad590", "tid": 35568, "ts": 12246592, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae8b0", "tid": 35568, "ts": 12246601, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ada10", "tid": 35568, "ts": 12246996, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad860", "tid": 35568, "ts": 12247007, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae3a0", "tid": 35568, "ts": 12247014, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae700", "tid": 35568, "ts": 12247020, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad470", "tid": 35568, "ts": 12247025, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ade00", "tid": 35568, "ts": 12247259, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adc50", "tid": 35568, "ts": 12247267, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916acff0", "tid": 35568, "ts": 12247273, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad620", "tid": 35568, "ts": 12247279, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae040", "tid": 35568, "ts": 12247285, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad6b0", "tid": 35568, "ts": 12247580, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad110", "tid": 35568, "ts": 12247589, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916add70", "tid": 35568, "ts": 12247595, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adaa0", "tid": 35568, "ts": 12247600, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad7d0", "tid": 35568, "ts": 12247606, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adb30", "tid": 35568, "ts": 12247958, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916aeaf0", "tid": 35568, "ts": 12247966, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916acd20", "tid": 35568, "ts": 12247973, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad980", "tid": 35568, "ts": 12247978, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adbc0", "tid": 35568, "ts": 12247984, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ade90", "tid": 35568, "ts": 12248385, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adf20", "tid": 35568, "ts": 12248394, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad230", "tid": 35568, "ts": 12248400, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae790", "tid": 35568, "ts": 12248406, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae430", "tid": 35568, "ts": 12248412, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad1a0", "tid": 35568, "ts": 12248806, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae160", "tid": 35568, "ts": 12248814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad350", "tid": 35568, "ts": 12248820, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae280", "tid": 35568, "ts": 12248826, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad3e0", "tid": 35568, "ts": 12248832, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec90b0", "tid": 35568, "ts": 12249223, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8560", "tid": 35568, "ts": 12249512, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca500", "tid": 35568, "ts": 12253818, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d80420", "tid": 35568, "ts": 12254066, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca9e0", "tid": 35568, "ts": 12254258, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d80350", "tid": 35568, "ts": 12254446, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d7f310", "tid": 35568, "ts": 12254631, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23484e7f3e0", "tid": 35568, "ts": 12254829, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 12255020, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23484e7fe70", "tid": 35568, "ts": 12255208, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234869591b0", "tid": 35568, "ts": 12255401, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23486959eb0", "tid": 35568, "ts": 12255589, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 12255783, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7d80", "tid": 35568, "ts": 12255970, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234818ac350", "tid": 35568, "ts": 12255985, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348e718720", "tid": 35568, "ts": 12256183, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9f50", "tid": 35568, "ts": 12256379, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d384b0", "tid": 35568, "ts": 12256569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916aea60", "tid": 35568, "ts": 12256755, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b7aa390", "tid": 35568, "ts": 12256770, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482c1e530", "tid": 35568, "ts": 12256978, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x2349535a9c0", "tid": 35568, "ts": 12257172, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234906d91b0", "tid": 35568, "ts": 12257187, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348c793bf0", "tid": 35568, "ts": 12257402, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234805b1e20", "tid": 35568, "ts": 12257597, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a033bb20", "tid": 35568, "ts": 12257614, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a0679610", "tid": 35568, "ts": 12258190, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483a1e2d0", "tid": 35568, "ts": 12258929, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a012bf80", "tid": 35568, "ts": 12258944, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a33ec280", "tid": 35568, "ts": 12260293, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234a0c292f0", "tid": 35568, "ts": 12261793, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234bf4ab420", "tid": 35568, "ts": 12261815, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234acd67480", "tid": 35568, "ts": 12264550, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234bf272930", "tid": 35568, "ts": 12266420, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234ae265720", "tid": 35568, "ts": 12266435, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234adea2bd0", "tid": 35568, "ts": 12269914, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e84d0", "tid": 35568, "ts": 12270308, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0a70", "tid": 35568, "ts": 12270662, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc05f0", "tid": 35568, "ts": 12272232, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0e60", "tid": 35568, "ts": 12272602, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae670", "tid": 35568, "ts": 12272955, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ace40", "tid": 35568, "ts": 12273310, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adfb0", "tid": 35568, "ts": 12273728, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae1f0", "tid": 35568, "ts": 12274117, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adce0", "tid": 35568, "ts": 12274464, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae4c0", "tid": 35568, "ts": 12274944, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8b8f0", "tid": 35568, "ts": 12275226, "pid": 35104 } ] } +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 14972, "ts": 3402955, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 3402614, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8b8f0", "tid": 35568, "ts": 3402635, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8b8f0", "tid": 35568, "ts": 3402843, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234830f0070", "tid": 35568, "ts": 3402947, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7090", "tid": 35568, "ts": 3403073, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8560", "tid": 35568, "ts": 3404650, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8ef0", "tid": 35568, "ts": 3406239, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7120", "tid": 35568, "ts": 3406350, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7c60", "tid": 35568, "ts": 3406470, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8a70", "tid": 35568, "ts": 3406683, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7cf0", "tid": 35568, "ts": 3407104, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7f30", "tid": 35568, "ts": 3407854, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7d80", "tid": 35568, "ts": 3409459, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7e10", "tid": 35568, "ts": 3411032, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7fc0", "tid": 35568, "ts": 3411214, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b00", "tid": 35568, "ts": 3411379, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e80e0", "tid": 35568, "ts": 3411646, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8200", "tid": 35568, "ts": 3412069, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 3412900, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e84d0", "tid": 35568, "ts": 3414768, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc10a0", "tid": 35568, "ts": 3416414, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc11c0", "tid": 35568, "ts": 3416522, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1490", "tid": 35568, "ts": 3416630, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0680", "tid": 35568, "ts": 3416853, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0f80", "tid": 35568, "ts": 3417270, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1250", "tid": 35568, "ts": 3418017, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0a70", "tid": 35568, "ts": 3419798, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1130", "tid": 35568, "ts": 3421438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc12e0", "tid": 35568, "ts": 3421546, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1370", "tid": 35568, "ts": 3421658, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b00", "tid": 35568, "ts": 3421870, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1400", "tid": 35568, "ts": 3422298, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 3423080, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc05f0", "tid": 35568, "ts": 3424670, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0710", "tid": 35568, "ts": 3426317, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc07a0", "tid": 35568, "ts": 3426455, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 3426573, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0830", "tid": 35568, "ts": 3426946, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc08c0", "tid": 35568, "ts": 3427611, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc09e0", "tid": 35568, "ts": 3428588, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0e60", "tid": 35568, "ts": 3430285, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0d40", "tid": 35568, "ts": 3431853, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0950", "tid": 35568, "ts": 3431961, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b90", "tid": 35568, "ts": 3432070, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad590", "tid": 35568, "ts": 3432282, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae8b0", "tid": 35568, "ts": 3432698, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad080", "tid": 35568, "ts": 3433472, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae670", "tid": 35568, "ts": 3435025, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ada10", "tid": 35568, "ts": 3436615, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad860", "tid": 35568, "ts": 3436725, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae3a0", "tid": 35568, "ts": 3436836, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae700", "tid": 35568, "ts": 3437048, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad470", "tid": 35568, "ts": 3437464, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad500", "tid": 35568, "ts": 3438244, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ace40", "tid": 35568, "ts": 3439858, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ade00", "tid": 35568, "ts": 3441704, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adc50", "tid": 35568, "ts": 3441818, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916acff0", "tid": 35568, "ts": 3441928, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad620", "tid": 35568, "ts": 3442192, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae040", "tid": 35568, "ts": 3442765, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad740", "tid": 35568, "ts": 3443574, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adfb0", "tid": 35568, "ts": 3445136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad6b0", "tid": 35568, "ts": 3446700, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad110", "tid": 35568, "ts": 3446809, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916add70", "tid": 35568, "ts": 3446922, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adaa0", "tid": 35568, "ts": 3447132, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad7d0", "tid": 35568, "ts": 3447551, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae940", "tid": 35568, "ts": 3448295, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae1f0", "tid": 35568, "ts": 3449897, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adb30", "tid": 35568, "ts": 3451485, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916aeaf0", "tid": 35568, "ts": 3451596, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916acd20", "tid": 35568, "ts": 3451708, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad980", "tid": 35568, "ts": 3451919, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adbc0", "tid": 35568, "ts": 3452336, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad8f0", "tid": 35568, "ts": 3453136, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adce0", "tid": 35568, "ts": 3454914, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ade90", "tid": 35568, "ts": 3456656, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916adf20", "tid": 35568, "ts": 3456766, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad230", "tid": 35568, "ts": 3456875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae790", "tid": 35568, "ts": 3457121, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae430", "tid": 35568, "ts": 3457532, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae0d0", "tid": 35568, "ts": 3458839, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae4c0", "tid": 35568, "ts": 3460428, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad1a0", "tid": 35568, "ts": 3461983, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae160", "tid": 35568, "ts": 3462104, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad350", "tid": 35568, "ts": 3462212, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ae280", "tid": 35568, "ts": 3462424, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916ad3e0", "tid": 35568, "ts": 3462843, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234830f0070", "tid": 35568, "ts": 3463563, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3463639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3464047, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca500", "tid": 35568, "ts": 3464060, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca500", "tid": 35568, "ts": 3464093, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9730", "tid": 35568, "ts": 3464258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3464500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3464731, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483eca9e0", "tid": 35568, "ts": 3464744, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483eca9e0", "tid": 35568, "ts": 3464772, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec9e80", "tid": 35568, "ts": 3464883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3465062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194307, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234916aea60", "tid": 35568, "ts": 3465131, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3465315, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec9f50", "tid": 35568, "ts": 3465328, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec9f50", "tid": 35568, "ts": 3465355, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3465511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3465735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ec8fe0", "tid": 35568, "ts": 3465866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466260, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23483ec90b0", "tid": 35568, "ts": 3466273, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23483ec90b0", "tid": 35568, "ts": 3466305, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483eca020", "tid": 35568, "ts": 3466415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80d10", "tid": 35568, "ts": 3466720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3466886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3467115, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d80420", "tid": 35568, "ts": 3467128, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d80420", "tid": 35568, "ts": 3467155, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f4b0", "tid": 35568, "ts": 3467271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3467437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f8c0", "tid": 35568, "ts": 3467558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3467723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d809d0", "tid": 35568, "ts": 3467843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80de0", "tid": 35568, "ts": 3468125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1024, "Height": 768, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 4, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 87, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468570, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d7f170", "tid": 35568, "ts": 3468583, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d7f170", "tid": 35568, "ts": 3468610, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 4194304, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f650", "tid": 35568, "ts": 3468738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3468920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1024, "Height": 768, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 20, "Layout": 0, "SampleDesc": { "Count": 4, "Quality": 0 }, "Flags": 2 }, "initialResourceState": 0, "clearValue": { "Format": 20, "DepthStencil": { "Depth": 0.000000, "Stencil": 0 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3469177, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d80b70", "tid": 35568, "ts": 3469190, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d80b70", "tid": 35568, "ts": 3469217, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 4194304, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d805c0", "tid": 35568, "ts": 3469344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3469512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fa60", "tid": 35568, "ts": 3469634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 3469814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3469945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80eb0", "tid": 35568, "ts": 3470067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3470240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7ff40", "tid": 35568, "ts": 3470362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3470534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80c40", "tid": 35568, "ts": 3470655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3470826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80690", "tid": 35568, "ts": 3470946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3471118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d800e0", "tid": 35568, "ts": 3471246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3471418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fc00", "tid": 35568, "ts": 3471539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3471710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80760", "tid": 35568, "ts": 3471830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f720", "tid": 35568, "ts": 3472122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80f80", "tid": 35568, "ts": 3472422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d801b0", "tid": 35568, "ts": 3472714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3472886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fb30", "tid": 35568, "ts": 3473007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3473177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fcd0", "tid": 35568, "ts": 3473297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3473470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80aa0", "tid": 35568, "ts": 3473633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3473833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fda0", "tid": 35568, "ts": 3473955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7fe70", "tid": 35568, "ts": 3474246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80010", "tid": 35568, "ts": 3474537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80830", "tid": 35568, "ts": 3474828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3474999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f0a0", "tid": 35568, "ts": 3475118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3475289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f7f0", "tid": 35568, "ts": 3475409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3475580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f240", "tid": 35568, "ts": 3475701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3475872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80900", "tid": 35568, "ts": 3475993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 10, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 10, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476422, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d7f310", "tid": 35568, "ts": 3476435, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d7f310", "tid": 35568, "ts": 3476462, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d80280", "tid": 35568, "ts": 3476573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3476974, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23481d80350", "tid": 35568, "ts": 3476987, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23481d80350", "tid": 35568, "ts": 3477015, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3477123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3477293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f580", "tid": 35568, "ts": 3477415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3477584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3477713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3477874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fa60", "tid": 35568, "ts": 3477998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3478175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fe70", "tid": 35568, "ts": 3478296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3478477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e801b0", "tid": 35568, "ts": 3478598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3478793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 10, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 10, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80eb0", "tid": 35568, "ts": 3478920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3479082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 32, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f240", "tid": 35568, "ts": 3479204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3479377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fb30", "tid": 35568, "ts": 3479498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3479653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f580", "tid": 35568, "ts": 3479742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 3479845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fa60", "tid": 35568, "ts": 3479930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3480057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 6, "MipLevels": 9, "Format": 10, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 10, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80f80", "tid": 35568, "ts": 3480255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3480429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 194256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e804f0", "tid": 35568, "ts": 3480567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fe70", "tid": 35568, "ts": 3480718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3480825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64752, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80690", "tid": 35568, "ts": 3480946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f0a0", "tid": 35568, "ts": 3481233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80280", "tid": 35568, "ts": 3481517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80010", "tid": 35568, "ts": 3481802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3481967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80420", "tid": 35568, "ts": 3482087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3482252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fcd0", "tid": 35568, "ts": 3482372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3482537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1008, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f170", "tid": 35568, "ts": 3482657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3482823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 696, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80350", "tid": 35568, "ts": 3482943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3483111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f8c0", "tid": 35568, "ts": 3483234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3483408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f310", "tid": 35568, "ts": 3483530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3483696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f650", "tid": 35568, "ts": 3483859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f990", "tid": 35568, "ts": 3484147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fda0", "tid": 35568, "ts": 3484432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 48, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e805c0", "tid": 35568, "ts": 3484726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3484894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 3744, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fa60", "tid": 35568, "ts": 3485014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3485179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1152, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f580", "tid": 35568, "ts": 3485299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3485463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f720", "tid": 35568, "ts": 3485585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3485754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7fc00", "tid": 35568, "ts": 3485875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3486039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80c40", "tid": 35568, "ts": 3486162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3486326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80830", "tid": 35568, "ts": 3486446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3486700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80aa0", "tid": 35568, "ts": 3486868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f7f0", "tid": 35568, "ts": 3487183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487601, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23484e7fe70", "tid": 35568, "ts": 3487614, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23484e7fe70", "tid": 35568, "ts": 3487641, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80760", "tid": 35568, "ts": 3487753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3487916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3488047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3488201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7ff40", "tid": 35568, "ts": 3488321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3488473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3488598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3488750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80900", "tid": 35568, "ts": 3488873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3489037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3489164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3489492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80b70", "tid": 35568, "ts": 3489634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 3489768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7ff40", "tid": 35568, "ts": 3489856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3489941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80900", "tid": 35568, "ts": 3490025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80900", "tid": 35568, "ts": 3490282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7ff40", "tid": 35568, "ts": 3490554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3490827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3490978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3491102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3491236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3491343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3491463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3491628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3491748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3491935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80de0", "tid": 35568, "ts": 3492061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7ff40", "tid": 35568, "ts": 3492194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3492324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7ff40", "tid": 35568, "ts": 3492450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3492603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3492724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3492876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3492996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3493148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f580", "tid": 35568, "ts": 3493272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3493425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3493546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3493710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869588c0", "tid": 35568, "ts": 3493835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3493981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 3494068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3494153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3494237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3494363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959d10", "tid": 35568, "ts": 3494512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3494686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958990", "tid": 35568, "ts": 3494812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3494966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869587f0", "tid": 35568, "ts": 3495087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3495238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959420", "tid": 35568, "ts": 3495358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3495509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3495634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f580", "tid": 35568, "ts": 3495768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 3495859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3495945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3496030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3496133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3496253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3496419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959de0", "tid": 35568, "ts": 3496541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3496728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869590e0", "tid": 35568, "ts": 3496855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869588c0", "tid": 35568, "ts": 3496988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869587f0", "tid": 35568, "ts": 3497076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3497201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958b30", "tid": 35568, "ts": 3497327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3497482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3497602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3497753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958310", "tid": 35568, "ts": 3497873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3498025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3498158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959420", "tid": 35568, "ts": 3498292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3498380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 3498465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3498568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3498688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3498853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3498974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3499160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959420", "tid": 35568, "ts": 3499286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959de0", "tid": 35568, "ts": 3499420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3499507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3499633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959de0", "tid": 35568, "ts": 3499759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3499911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959eb0", "tid": 35568, "ts": 3500031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3500185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3500323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3500475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3500711, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234869591b0", "tid": 35568, "ts": 3500724, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234869591b0", "tid": 35568, "ts": 3500751, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3500869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958310", "tid": 35568, "ts": 3501012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 3501101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 3501186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3501270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3501374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3501496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3501662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3501787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3501976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959b70", "tid": 35568, "ts": 3502103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959eb0", "tid": 35568, "ts": 3502238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3502367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869583e0", "tid": 35568, "ts": 3502493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3502645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3502774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3502938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3503060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3503224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3503503, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23486959eb0", "tid": 35568, "ts": 3503516, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23486959eb0", "tid": 35568, "ts": 3503543, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959830", "tid": 35568, "ts": 3503655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3503807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3503896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 3503981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3504066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3504170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869594f0", "tid": 35568, "ts": 3504292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3504458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3504580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3504767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958a60", "tid": 35568, "ts": 3505014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3505248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 3505352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3505479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869599d0", "tid": 35568, "ts": 3505614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3505776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869588c0", "tid": 35568, "ts": 3505912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3506065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3506185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3506337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959010", "tid": 35568, "ts": 3506462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 3506613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959830", "tid": 35568, "ts": 3506715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869594f0", "tid": 35568, "ts": 3506817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3506921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3507043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3507215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3507343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3507538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959280", "tid": 35568, "ts": 3507665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869588c0", "tid": 35568, "ts": 3507806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3507935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959350", "tid": 35568, "ts": 3508061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3508222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869594f0", "tid": 35568, "ts": 3508350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3508511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3508632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3508793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3508919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3509060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 3509155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959010", "tid": 35568, "ts": 3509242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3509326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3509429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3509551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3509725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3509853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959010", "tid": 35568, "ts": 3510174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869588c0", "tid": 35568, "ts": 3510483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3510798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3510959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869595c0", "tid": 35568, "ts": 3511081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3511240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3511364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869594f0", "tid": 35568, "ts": 3511506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3511613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3511733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3511906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3512027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3512180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 3512277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3512404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 128, "Height": 128, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869594f0", "tid": 35568, "ts": 3512543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3512727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958cd0", "tid": 35568, "ts": 3512853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3513143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3513436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3513799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3513952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3514079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3514245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3514374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3514528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 3514617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 3514702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 3514787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 3514871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3514996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959830", "tid": 35568, "ts": 3515130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3515306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959690", "tid": 35568, "ts": 3515432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3515584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3515705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3515858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3515978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3516130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3516253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3516406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3516534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3516699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958170", "tid": 35568, "ts": 3516820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3517008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959aa0", "tid": 35568, "ts": 3517179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3517320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3517450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869587f0", "tid": 35568, "ts": 3517577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3517731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3517851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3518021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3518143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3518306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3518432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3518566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3518654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869595c0", "tid": 35568, "ts": 3518738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3518823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 3518906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3518990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3519093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869595c0", "tid": 35568, "ts": 3519214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3519378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3519498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 3519643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3519730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958170", "tid": 35568, "ts": 3519814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 3519898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3519987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3520113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958580", "tid": 35568, "ts": 3520239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3520373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3520492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3520643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959f80", "tid": 35568, "ts": 3520770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3520923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3521044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3521196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958310", "tid": 35568, "ts": 3521315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3521466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3521590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3521724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3521826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869595c0", "tid": 35568, "ts": 3521927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3522031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3522152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3522323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3522444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3522638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958170", "tid": 35568, "ts": 3522765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 3522906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958310", "tid": 35568, "ts": 3522993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958e70", "tid": 35568, "ts": 3523244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3523526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 262144, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3523810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3523969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3524093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3524235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3524330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3524415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3524519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3524639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3524811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3524931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3525125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 256, "Height": 256, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958f40", "tid": 35568, "ts": 3525250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3525393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3525480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3525605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869595c0", "tid": 35568, "ts": 3525731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3525891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3526012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3526186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3526305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3526477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3526635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3526769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3526856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3526941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3527044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3527164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3527328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3527449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3527636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959760", "tid": 35568, "ts": 3527762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3527896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 3527984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3528083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3528183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3528309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958da0", "tid": 35568, "ts": 3528436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3528597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3528717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3528890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3529010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3529182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3529340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3529475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3529581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3529701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3529866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3529986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3530173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958310", "tid": 35568, "ts": 3530298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3530434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 3530521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3530619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3530719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3530846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959900", "tid": 35568, "ts": 3530972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3531134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3531254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3531426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16384, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3531546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3531718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3531879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 3532013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3532119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3532240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3532404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3532525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3532711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 64, "Height": 64, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958240", "tid": 35568, "ts": 3532838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 3532972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869580a0", "tid": 35568, "ts": 3533231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3533505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3533791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3533956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3534244, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3534257, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23484e7f3e0", "tid": 35568, "ts": 3534285, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3534396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 3534540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 3534643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3534749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3534835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3534940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3535062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3535237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3535358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3535554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486959c40", "tid": 35568, "ts": 3535681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3535824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 3535911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3536010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3536189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3536456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234869584b0", "tid": 35568, "ts": 3536623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3536859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3537013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3537319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3537439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3537611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3537770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3537912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3538019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3538140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3538312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3538433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3538633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e80d10", "tid": 35568, "ts": 3538760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3538902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3538990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3539089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3539190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3539317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e7f4b0", "tid": 35568, "ts": 3539445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3539606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3539726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3539899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3540020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3540193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3540352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3540494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3540601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3540722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3540896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3541017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3541213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f580", "tid": 35568, "ts": 3541343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3552089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3552222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3552326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3552438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3552578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e6a0", "tid": 35568, "ts": 3552728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3552963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3553088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3553264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eec0", "tid": 35568, "ts": 3553385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3553558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3553724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3553867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3553976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ec50", "tid": 35568, "ts": 3554097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3554270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3554392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3554587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e500", "tid": 35568, "ts": 3554715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3554898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d320", "tid": 35568, "ts": 3555027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3555186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e910", "tid": 35568, "ts": 3555308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3555480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e9e0", "tid": 35568, "ts": 3555601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3555773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3555899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3556060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3556180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3556352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ed20", "tid": 35568, "ts": 3556473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3556667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e290", "tid": 35568, "ts": 3556793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 3556935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e910", "tid": 35568, "ts": 3557024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3557109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ec50", "tid": 35568, "ts": 3557206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3557333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157da70", "tid": 35568, "ts": 3557460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3557620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3557741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3557914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 8192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eab0", "tid": 35568, "ts": 3558035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3558207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3558331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3558473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3558560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3558665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3558786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3558959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3559079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eec0", "tid": 35568, "ts": 3559233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 3559321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e9e0", "tid": 35568, "ts": 3559406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ed20", "tid": 35568, "ts": 3559490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3559616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 32, "Height": 32, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d660", "tid": 35568, "ts": 3559742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3559884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eab0", "tid": 35568, "ts": 3559971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 3560070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3560170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3560297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157edf0", "tid": 35568, "ts": 3560423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3560585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d250", "tid": 35568, "ts": 3560707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3560881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e840", "tid": 35568, "ts": 3561024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3561197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3561356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3561498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3561605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3561725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3561898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3562017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3562213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e020", "tid": 35568, "ts": 3562339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d250", "tid": 35568, "ts": 3562480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e840", "tid": 35568, "ts": 3562568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 3562667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3562767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3562895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eab0", "tid": 35568, "ts": 3563021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3563182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d0b0", "tid": 35568, "ts": 3563303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3563475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3563595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3563766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e840", "tid": 35568, "ts": 3563924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3564066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3564173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e910", "tid": 35568, "ts": 3564293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3564466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e9e0", "tid": 35568, "ts": 3564586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3564780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d250", "tid": 35568, "ts": 3564923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d0b0", "tid": 35568, "ts": 3565065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 3565153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e840", "tid": 35568, "ts": 3565252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e910", "tid": 35568, "ts": 3565352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3565478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e430", "tid": 35568, "ts": 3565604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3565765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eec0", "tid": 35568, "ts": 3565885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3566177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3566506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3566797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3566969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d800", "tid": 35568, "ts": 3567089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e9e0", "tid": 35568, "ts": 3567243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3567386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e9e0", "tid": 35568, "ts": 3567523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eec0", "tid": 35568, "ts": 3567665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3567754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3567853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 3567952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eec0", "tid": 35568, "ts": 3568206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3568489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3568781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3568953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3569110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d800", "tid": 35568, "ts": 3569252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3569359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3569479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3569652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3569772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3569967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e840", "tid": 35568, "ts": 3570094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3570236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 3570324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3570423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 3570523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3570649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ed20", "tid": 35568, "ts": 3570775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3570935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3571055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3571228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3571348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3571520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3571678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 3571821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3571928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157df50", "tid": 35568, "ts": 3572048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3572221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3572342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3572536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e910", "tid": 35568, "ts": 3572663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3572805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3572892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3572991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157df50", "tid": 35568, "ts": 3573090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3573217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ef90", "tid": 35568, "ts": 3573343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3573505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3573632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3573803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4096, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3573924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3574096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ec50", "tid": 35568, "ts": 3574254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3574396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3574502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d0b0", "tid": 35568, "ts": 3574622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3574794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3574914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3575108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 16, "Height": 16, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d180", "tid": 35568, "ts": 3575235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 3575377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3575505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e5d0", "tid": 35568, "ts": 3575631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3575791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3575912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3576085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3576206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3576379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3576503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3576646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3576734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ec50", "tid": 35568, "ts": 3576819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d0b0", "tid": 35568, "ts": 3576903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3577006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3577126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3577299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3577419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3577612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ec50", "tid": 35568, "ts": 3577739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3577882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d0b0", "tid": 35568, "ts": 3578139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3578420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3578712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3578884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3579007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 3579149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3579236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 3579321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3579405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3579507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3579627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3579799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3579920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3580114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157db40", "tid": 35568, "ts": 3580239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3580381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3580509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d4c0", "tid": 35568, "ts": 3580634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3580795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3580915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3581087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3581208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3581379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3581505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3581648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 3581735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 3581821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3581904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3582007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3582127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3582299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3582419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3582614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157df50", "tid": 35568, "ts": 3582740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3582882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d3f0", "tid": 35568, "ts": 3583200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3583481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d800", "tid": 35568, "ts": 3583773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3583944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3584068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 3584211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3584298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3584383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 3584466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3584569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3584689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3584863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3584983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3585177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d730", "tid": 35568, "ts": 3585307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 3585450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3585577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d590", "tid": 35568, "ts": 3585703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3585864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3585985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3586155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d8d0", "tid": 35568, "ts": 3586287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3586459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3586585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3586745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3586866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3587038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d9a0", "tid": 35568, "ts": 3587158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d800", "tid": 35568, "ts": 3587312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 3587402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 3587487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3587571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3587696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d800", "tid": 35568, "ts": 3587822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dc10", "tid": 35568, "ts": 3588131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3588413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2048, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3588707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3588878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3589002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3589162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3589282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3589454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f990", "tid": 35568, "ts": 3589585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3589780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 8, "Height": 8, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d804f0", "tid": 35568, "ts": 3589907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f3e0", "tid": 35568, "ts": 3590214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3590496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3590790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3590961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3591085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3591227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3591315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3591400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 3591483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3591567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 3591651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3591755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3591874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3592169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157de80", "tid": 35568, "ts": 3592490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e0f0", "tid": 35568, "ts": 3592797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3592958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3593078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3593251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3593371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3593592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3593766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3593927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3594047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3594219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3594350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d9a0", "tid": 35568, "ts": 3594535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 3594624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f990", "tid": 35568, "ts": 3594710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d8d0", "tid": 35568, "ts": 3594794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 3594878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3595004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac280", "tid": 35568, "ts": 3595131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 3595272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 3595359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3595443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3595527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3595611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3595709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3595810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3595937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab650", "tid": 35568, "ts": 3596062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3596223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3596345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3596516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3596636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3596807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac350", "tid": 35568, "ts": 3596965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3597108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3597195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3597300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab7f0", "tid": 35568, "ts": 3597421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3597594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac5c0", "tid": 35568, "ts": 3597714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3597908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818aba60", "tid": 35568, "ts": 3598034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3598176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3598263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac350", "tid": 35568, "ts": 3598363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab7f0", "tid": 35568, "ts": 3598462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3598645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acde0", "tid": 35568, "ts": 3598828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3598990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3599112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3599285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3599405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3599577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3599735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac5c0", "tid": 35568, "ts": 3599878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3599984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab240", "tid": 35568, "ts": 3600104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3600276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3600397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3600590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acb70", "tid": 35568, "ts": 3600718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3600859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3600947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3601046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab240", "tid": 35568, "ts": 3601147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3601274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acf80", "tid": 35568, "ts": 3601400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3601561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3601681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3601854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3601974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3602146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3602304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3602445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3602552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3602672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3602845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3602965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3603158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab3e0", "tid": 35568, "ts": 3603284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3603425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3603512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3603611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3603711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3603838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab4b0", "tid": 35568, "ts": 3603963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3604124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3604243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3604415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1024, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac900", "tid": 35568, "ts": 3604535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3604706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3604864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3605006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3605111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acc40", "tid": 35568, "ts": 3605232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3605404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abc00", "tid": 35568, "ts": 3605532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3605726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 4, "Height": 4, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3606016, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234818ac350", "tid": 35568, "ts": 3606029, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234818ac350", "tid": 35568, "ts": 3606060, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab240", "tid": 35568, "ts": 3606171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3606367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac900", "tid": 35568, "ts": 3606456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 3606556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acc40", "tid": 35568, "ts": 3606656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3606785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac690", "tid": 35568, "ts": 3606911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3607072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3607193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3607366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3607485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3607657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac900", "tid": 35568, "ts": 3607815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abc00", "tid": 35568, "ts": 3607957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3608063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3608183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3608362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3608484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3608679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acc40", "tid": 35568, "ts": 3608805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3608957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 3609044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac900", "tid": 35568, "ts": 3609144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3609243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3609370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abc00", "tid": 35568, "ts": 3609496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3609657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3609777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3609950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3610069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3610240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3610398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3610541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3610657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3610778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3610951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3611070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3611264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab7f0", "tid": 35568, "ts": 3611391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 3611532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 3611620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 3611719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3611819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3611945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818aceb0", "tid": 35568, "ts": 3612071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3612232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3612351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3612524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3612643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3612816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3612974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3613116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3613222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab720", "tid": 35568, "ts": 3613342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3613514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac5c0", "tid": 35568, "ts": 3613634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3613828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acaa0", "tid": 35568, "ts": 3613954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3614095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3614182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3614363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab720", "tid": 35568, "ts": 3614465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3614593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab990", "tid": 35568, "ts": 3614720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3614880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3615001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3615174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3615293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3615466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3615624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac5c0", "tid": 35568, "ts": 3615767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3615873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3615994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3616167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3616293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3616488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac900", "tid": 35568, "ts": 3616614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 3616757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3616844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3616970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abb30", "tid": 35568, "ts": 3617096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3617256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3617376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3617549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3617668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3617841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3617965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 3618107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3618194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3618278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3618381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3618501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3618674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3618794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3618988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac5c0", "tid": 35568, "ts": 3619113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3619255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 3619343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3619443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3619543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3619669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abcd0", "tid": 35568, "ts": 3619796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3619956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3620076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3620249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3620368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3620540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac760", "tid": 35568, "ts": 3620697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3620839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3620945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3621065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3621238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3621358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3621553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 2, "Height": 2, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab720", "tid": 35568, "ts": 3621679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 3621821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 3621908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac760", "tid": 35568, "ts": 3622007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3622107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3622233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab8c0", "tid": 35568, "ts": 3622364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3622525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3622645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3622817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3622936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3623108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abe70", "tid": 35568, "ts": 3623265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 3623408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3623514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3623634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3623806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3623927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3624121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac010", "tid": 35568, "ts": 3624246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3624388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3624477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abe70", "tid": 35568, "ts": 3624576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 3624701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3624828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab580", "tid": 35568, "ts": 3624953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3625114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3625233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3625407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac760", "tid": 35568, "ts": 3625526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3625697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3625855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3625997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3626104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abe70", "tid": 35568, "ts": 3626224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3626396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3626575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3626772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac0e0", "tid": 35568, "ts": 3626898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 3627040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac760", "tid": 35568, "ts": 3627129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3627255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab0a0", "tid": 35568, "ts": 3627381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3627543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3627662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3627841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac420", "tid": 35568, "ts": 3627962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3628136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3628260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 3628402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3628489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abe70", "tid": 35568, "ts": 3628574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3628677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3628797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3628971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3629091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3629287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abe70", "tid": 35568, "ts": 3629412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3629554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac420", "tid": 35568, "ts": 3629641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3629741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3629887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac420", "tid": 35568, "ts": 3630141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3630424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3630718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3630891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3631050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3631192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3631299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3631421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3631595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3631718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3631912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac760", "tid": 35568, "ts": 3632055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3632197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3632284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3632383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 3632496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3632624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac830", "tid": 35568, "ts": 3632750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3632911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3633031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3633202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3633322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3633493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3633651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 3633792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3633899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3634019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3634192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3634312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3634506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abf40", "tid": 35568, "ts": 3634632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3634774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3634862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 3634961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3635062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3635188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac9d0", "tid": 35568, "ts": 3635314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3635475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3635594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3635767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3635886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3636058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3636215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3636357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3636463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3636583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3636754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3636881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3637077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 28, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 28, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab310", "tid": 35568, "ts": 3637204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3637345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3637432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 3637531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3637631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3637758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818abda0", "tid": 35568, "ts": 3637921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3638082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3638298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3638451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3638577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3638730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3638854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3638988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3639095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3639215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3639380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d8d0", "tid": 35568, "ts": 3639500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3639688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157eb80", "tid": 35568, "ts": 3639867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d9a0", "tid": 35568, "ts": 3640155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640547, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348157dce0", "tid": 35568, "ts": 3640560, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348157dce0", "tid": 35568, "ts": 3640588, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3640696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3640850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3640976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3641118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3641206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3641310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3641431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3641597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3641717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3641904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3642141, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23486958720", "tid": 35568, "ts": 3642154, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23486958720", "tid": 35568, "ts": 3642182, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958c00", "tid": 35568, "ts": 3642296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3642460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3642582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3642735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3642898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3643050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3643176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 3643327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3643415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d9a0", "tid": 35568, "ts": 3643501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d8d0", "tid": 35568, "ts": 3643585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3643688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3643809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3643974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3644094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3644259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ab170", "tid": 35568, "ts": 3644380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 3644526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 3644613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3644698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 3644782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 3644866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 3644964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 3645048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3645151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818acd10", "tid": 35568, "ts": 3645271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 3645503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3645739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 168, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac4f0", "tid": 35568, "ts": 3645915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3646198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 56, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d8d0", "tid": 35568, "ts": 3646342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3646601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3646708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157d9a0", "tid": 35568, "ts": 3646828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157ddb0", "tid": 35568, "ts": 3647121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e1c0", "tid": 35568, "ts": 3647412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 22056, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e360", "tid": 35568, "ts": 3647705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3647877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 7352, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e809d0", "tid": 35568, "ts": 3647997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3648169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2616, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23484e800e0", "tid": 35568, "ts": 3648289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3648484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23481d7f990", "tid": 35568, "ts": 3648624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3648785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3648940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3649223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d395c0", "tid": 35568, "ts": 3649514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d380a0", "tid": 35568, "ts": 3649797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3649970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38310", "tid": 35568, "ts": 3650090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3650262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d383e0", "tid": 35568, "ts": 3650382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3650553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38650", "tid": 35568, "ts": 3650679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d395c0", "tid": 35568, "ts": 3650832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d380a0", "tid": 35568, "ts": 3650920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 3651005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3651110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38580", "tid": 35568, "ts": 3651230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3651403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39de0", "tid": 35568, "ts": 3651523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3651696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39010", "tid": 35568, "ts": 3651815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 3651984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38310", "tid": 35568, "ts": 3652088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3652215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 10, "Format": 29, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 0, "clearValue": { "Format": 29, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 0.000000 } } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3652467, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d384b0", "tid": 35568, "ts": 3652480, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d384b0", "tid": 35568, "ts": 3652508, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38170", "tid": 35568, "ts": 3652622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3652796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d395c0", "tid": 35568, "ts": 3652952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38cd0", "tid": 35568, "ts": 3653235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 512, "Height": 512, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39690", "tid": 35568, "ts": 3653520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38240", "tid": 35568, "ts": 3653801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3653974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d390e0", "tid": 35568, "ts": 3654095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3654267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39b70", "tid": 35568, "ts": 3654387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3654558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38310", "tid": 35568, "ts": 3654679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d395c0", "tid": 35568, "ts": 3654834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39690", "tid": 35568, "ts": 3654922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38240", "tid": 35568, "ts": 3655022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3655126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38240", "tid": 35568, "ts": 3655247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3655419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38b30", "tid": 35568, "ts": 3655554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38cd0", "tid": 35568, "ts": 3655723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d390e0", "tid": 35568, "ts": 3655826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3655930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38720", "tid": 35568, "ts": 3656050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3656224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39eb0", "tid": 35568, "ts": 3656344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3656515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38c00", "tid": 35568, "ts": 3656635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3656808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39d10", "tid": 35568, "ts": 3656929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3657118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39900", "tid": 35568, "ts": 3657239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3657412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d391b0", "tid": 35568, "ts": 3657532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3657704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d387f0", "tid": 35568, "ts": 3657824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d388c0", "tid": 35568, "ts": 3658123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39c40", "tid": 35568, "ts": 3658432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 768, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38da0", "tid": 35568, "ts": 3658724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3658896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 192, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39f80", "tid": 35568, "ts": 3659016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3659188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d380a0", "tid": 35568, "ts": 3659308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3659480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d394f0", "tid": 35568, "ts": 3659602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3659774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38e70", "tid": 35568, "ts": 3659909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38f40", "tid": 35568, "ts": 3660201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d390e0", "tid": 35568, "ts": 3660494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39280", "tid": 35568, "ts": 3660786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3660958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d395c0", "tid": 35568, "ts": 3661138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3661379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38990", "tid": 35568, "ts": 3661499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3661670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39350", "tid": 35568, "ts": 3661789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3661961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39690", "tid": 35568, "ts": 3662081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3662252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38a60", "tid": 35568, "ts": 3662372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3662543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d38cd0", "tid": 35568, "ts": 3662663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3662835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39760", "tid": 35568, "ts": 3662959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3663131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39420", "tid": 35568, "ts": 3663250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3663422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39830", "tid": 35568, "ts": 3663542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3663714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d399d0", "tid": 35568, "ts": 3663833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d39aa0", "tid": 35568, "ts": 3664125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23486958650", "tid": 35568, "ts": 3664416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234818ac1b0", "tid": 35568, "ts": 3664709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3664880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0990", "tid": 35568, "ts": 3665001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3665173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1420", "tid": 35568, "ts": 3665293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3665466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d07f0", "tid": 35568, "ts": 3665586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3665758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1830", "tid": 35568, "ts": 3665878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1010", "tid": 35568, "ts": 3666170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0580", "tid": 35568, "ts": 3666470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1f80", "tid": 35568, "ts": 3666764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3666938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1760", "tid": 35568, "ts": 3667060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3667232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1b70", "tid": 35568, "ts": 3667352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3667523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1d10", "tid": 35568, "ts": 3667644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3667815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d00a0", "tid": 35568, "ts": 3667934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0b30", "tid": 35568, "ts": 3668226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d11b0", "tid": 35568, "ts": 3668517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1c40", "tid": 35568, "ts": 3668826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3668998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0c00", "tid": 35568, "ts": 3669117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3669289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1de0", "tid": 35568, "ts": 3669409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3669581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0e70", "tid": 35568, "ts": 3669701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3669874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1900", "tid": 35568, "ts": 3669994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3670165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1350", "tid": 35568, "ts": 3670285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3670456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1eb0", "tid": 35568, "ts": 3670577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3670748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0a60", "tid": 35568, "ts": 3670868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1aa0", "tid": 35568, "ts": 3671160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d15c0", "tid": 35568, "ts": 3671453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0650", "tid": 35568, "ts": 3671744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3671916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0cd0", "tid": 35568, "ts": 3672036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3672208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d10e0", "tid": 35568, "ts": 3672328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3672499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d04b0", "tid": 35568, "ts": 3672618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3672790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0170", "tid": 35568, "ts": 3672910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0240", "tid": 35568, "ts": 3673209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0310", "tid": 35568, "ts": 3673511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0da0", "tid": 35568, "ts": 3673804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3673976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0f40", "tid": 35568, "ts": 3674096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3674269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d14f0", "tid": 35568, "ts": 3674389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3674565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1690", "tid": 35568, "ts": 3674686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3674856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d08c0", "tid": 35568, "ts": 3674978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3675149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d1280", "tid": 35568, "ts": 3675269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3675440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d0720", "tid": 35568, "ts": 3675561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3675732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d19d0", "tid": 35568, "ts": 3675852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3676024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234823d03e0", "tid": 35568, "ts": 3676144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3676317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7180a0", "tid": 35568, "ts": 3676440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3676612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718a60", "tid": 35568, "ts": 3676806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718cd0", "tid": 35568, "ts": 3677191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719760", "tid": 35568, "ts": 3677482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7199d0", "tid": 35568, "ts": 3677774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3677947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718650", "tid": 35568, "ts": 3678066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3678237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718170", "tid": 35568, "ts": 3678357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3678529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719eb0", "tid": 35568, "ts": 3678648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3678819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719b70", "tid": 35568, "ts": 3678939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718580", "tid": 35568, "ts": 3679233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719350", "tid": 35568, "ts": 3679525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7188c0", "tid": 35568, "ts": 3679817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3679988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719f80", "tid": 35568, "ts": 3680108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3680278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718da0", "tid": 35568, "ts": 3680399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3680570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719830", "tid": 35568, "ts": 3680747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3680920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3681179, "pid": 35104, "args": { "Heap": { "SizeInBytes": 8388608, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348e718720", "tid": 35568, "ts": 3681192, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348e718720", "tid": 35568, "ts": 3681220, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 8388608, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718240", "tid": 35568, "ts": 3681328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3681502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7195c0", "tid": 35568, "ts": 3681623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3681795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7190e0", "tid": 35568, "ts": 3681916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718c00", "tid": 35568, "ts": 3682218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719d10", "tid": 35568, "ts": 3682509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7187f0", "tid": 35568, "ts": 3682802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3682974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718e70", "tid": 35568, "ts": 3683095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3683266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719690", "tid": 35568, "ts": 3683386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3683558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719c40", "tid": 35568, "ts": 3683678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3683851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719de0", "tid": 35568, "ts": 3683971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3684142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719420", "tid": 35568, "ts": 3684262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3684434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718310", "tid": 35568, "ts": 3684555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3684731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7183e0", "tid": 35568, "ts": 3684853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7184b0", "tid": 35568, "ts": 3685146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718990", "tid": 35568, "ts": 3685441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719900", "tid": 35568, "ts": 3685734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3685906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718b30", "tid": 35568, "ts": 3686026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3686197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719aa0", "tid": 35568, "ts": 3686318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3686490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7191b0", "tid": 35568, "ts": 3686610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3686781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719280", "tid": 35568, "ts": 3686908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3687079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e718f40", "tid": 35568, "ts": 3687199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3687371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e7194f0", "tid": 35568, "ts": 3687491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3687663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348e719010", "tid": 35568, "ts": 3687868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7495c0", "tid": 35568, "ts": 3688169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74aae0", "tid": 35568, "ts": 3688462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749de0", "tid": 35568, "ts": 3688753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3688925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74aef0", "tid": 35568, "ts": 3689045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3689217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a120", "tid": 35568, "ts": 3689336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3689508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749350", "tid": 35568, "ts": 3689628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3689800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749b70", "tid": 35568, "ts": 3689921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3690093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749830", "tid": 35568, "ts": 3690213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3690384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749690", "tid": 35568, "ts": 3690504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3690732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b160", "tid": 35568, "ts": 3690855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748cd0", "tid": 35568, "ts": 3691155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748e70", "tid": 35568, "ts": 3691448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a870", "tid": 35568, "ts": 3691739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3691910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748990", "tid": 35568, "ts": 3692039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3692211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749900", "tid": 35568, "ts": 3692404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3692599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748da0", "tid": 35568, "ts": 3692784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3692958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7494f0", "tid": 35568, "ts": 3693078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3693250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7483e0", "tid": 35568, "ts": 3693371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3693542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748f40", "tid": 35568, "ts": 3693662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3693832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a940", "tid": 35568, "ts": 3693952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3694123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749010", "tid": 35568, "ts": 3694243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3694414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7487f0", "tid": 35568, "ts": 3694557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3694729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748720", "tid": 35568, "ts": 3694849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a530", "tid": 35568, "ts": 3695140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749d10", "tid": 35568, "ts": 3695431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74aa10", "tid": 35568, "ts": 3695722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3695894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749420", "tid": 35568, "ts": 3696014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3696185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7490e0", "tid": 35568, "ts": 3696305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3696476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a6d0", "tid": 35568, "ts": 3696595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3696766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749c40", "tid": 35568, "ts": 3696886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7484b0", "tid": 35568, "ts": 3697177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7499d0", "tid": 35568, "ts": 3697467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a050", "tid": 35568, "ts": 3697759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3697931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748310", "tid": 35568, "ts": 3698050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3698222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74abb0", "tid": 35568, "ts": 3698352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3698524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7491b0", "tid": 35568, "ts": 3698644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3698816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ad50", "tid": 35568, "ts": 3698936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a460", "tid": 35568, "ts": 3699228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7488c0", "tid": 35568, "ts": 3699519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ac80", "tid": 35568, "ts": 3699811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3699983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ae20", "tid": 35568, "ts": 3700107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3700279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74afc0", "tid": 35568, "ts": 3700398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3700570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a600", "tid": 35568, "ts": 3700691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3700863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748580", "tid": 35568, "ts": 3700983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3701154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749aa0", "tid": 35568, "ts": 3701274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3701446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748650", "tid": 35568, "ts": 3701566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3701737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749280", "tid": 35568, "ts": 3701857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748a60", "tid": 35568, "ts": 3702149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a7a0", "tid": 35568, "ts": 3702442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b090", "tid": 35568, "ts": 3702731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3702903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d7480a0", "tid": 35568, "ts": 3703023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3703193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749760", "tid": 35568, "ts": 3703314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3703492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749eb0", "tid": 35568, "ts": 3703614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3703785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d749f80", "tid": 35568, "ts": 3703905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a1f0", "tid": 35568, "ts": 3704202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b230", "tid": 35568, "ts": 3704493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a2c0", "tid": 35568, "ts": 3704784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3704956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74a390", "tid": 35568, "ts": 3705076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3705247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b300", "tid": 35568, "ts": 3705367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3705539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b3d0", "tid": 35568, "ts": 3705658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3705830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748170", "tid": 35568, "ts": 3705951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3706121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748240", "tid": 35568, "ts": 3706241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3706412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748b30", "tid": 35568, "ts": 3706544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3706716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d748c00", "tid": 35568, "ts": 3706836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bcc0", "tid": 35568, "ts": 3707128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b8b0", "tid": 35568, "ts": 3707419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74ba50", "tid": 35568, "ts": 3707711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3707882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b980", "tid": 35568, "ts": 3708113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3708333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bb20", "tid": 35568, "ts": 3708462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3708646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bd90", "tid": 35568, "ts": 3708789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3709006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bbf0", "tid": 35568, "ts": 3709137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3709369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74be60", "tid": 35568, "ts": 3709529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3709701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74bf30", "tid": 35568, "ts": 3709845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3710083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b4a0", "tid": 35568, "ts": 3710237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3710435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b710", "tid": 35568, "ts": 3710555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3710726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b640", "tid": 35568, "ts": 3710861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b7e0", "tid": 35568, "ts": 3711157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348d74b570", "tid": 35568, "ts": 3711474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa6d0", "tid": 35568, "ts": 3711780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3711954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8310", "tid": 35568, "ts": 3712079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3712253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8170", "tid": 35568, "ts": 3712376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3712549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a91b0", "tid": 35568, "ts": 3712670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3712844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9f80", "tid": 35568, "ts": 3712966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3713138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a80a0", "tid": 35568, "ts": 3713260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3713437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8650", "tid": 35568, "ts": 3713559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3713734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8e70", "tid": 35568, "ts": 3735913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3736191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9280", "tid": 35568, "ts": 3736323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3736498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a90e0", "tid": 35568, "ts": 3736622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3736795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa940", "tid": 35568, "ts": 3736918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa1f0", "tid": 35568, "ts": 3737213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa600", "tid": 35568, "ts": 3737506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8720", "tid": 35568, "ts": 3737801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3737973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a99d0", "tid": 35568, "ts": 3738095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3738266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9690", "tid": 35568, "ts": 3738387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3738559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aad50", "tid": 35568, "ts": 3738681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3738853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9aa0", "tid": 35568, "ts": 3738974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3739146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa7a0", "tid": 35568, "ts": 3739344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3739559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8f40", "tid": 35568, "ts": 3739683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3739855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aae20", "tid": 35568, "ts": 3739977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3740149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9350", "tid": 35568, "ts": 3740271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3740444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9010", "tid": 35568, "ts": 3740565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3740737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a87f0", "tid": 35568, "ts": 3740858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9420", "tid": 35568, "ts": 3741150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9830", "tid": 35568, "ts": 3741462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9b70", "tid": 35568, "ts": 3741768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3741940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x2349535a9c0", "tid": 35568, "ts": 3742004, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3742243, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b7aa390", "tid": 35568, "ts": 3742257, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b7aa390", "tid": 35568, "ts": 3742287, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9de0", "tid": 35568, "ts": 3742396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3742571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a83e0", "tid": 35568, "ts": 3742693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3742865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aaef0", "tid": 35568, "ts": 3742986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3743171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a84b0", "tid": 35568, "ts": 3743293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3743465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aafc0", "tid": 35568, "ts": 3743588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3743761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa050", "tid": 35568, "ts": 3743883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8240", "tid": 35568, "ts": 3744175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a94f0", "tid": 35568, "ts": 3744467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a95c0", "tid": 35568, "ts": 3744761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3744944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9c40", "tid": 35568, "ts": 3745067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3745240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9760", "tid": 35568, "ts": 3745361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3745535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9900", "tid": 35568, "ts": 3745660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3745831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9d10", "tid": 35568, "ts": 3745956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3746128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aaa10", "tid": 35568, "ts": 3746249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3746421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a88c0", "tid": 35568, "ts": 3746542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3746716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab090", "tid": 35568, "ts": 3746837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8990", "tid": 35568, "ts": 3747130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8b30", "tid": 35568, "ts": 3747421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa460", "tid": 35568, "ts": 3747712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3747884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a9eb0", "tid": 35568, "ts": 3748053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3748223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa120", "tid": 35568, "ts": 3748345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3748518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa2c0", "tid": 35568, "ts": 3748639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3748810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab160", "tid": 35568, "ts": 3748931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8a60", "tid": 35568, "ts": 3749224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa530", "tid": 35568, "ts": 3749516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aabb0", "tid": 35568, "ts": 3749809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3749979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8c00", "tid": 35568, "ts": 3750100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3750271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aac80", "tid": 35568, "ts": 3750393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3750569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab230", "tid": 35568, "ts": 3750694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3750868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab300", "tid": 35568, "ts": 3750989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3751161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab3d0", "tid": 35568, "ts": 3751281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3751452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8cd0", "tid": 35568, "ts": 3751573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3751744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8da0", "tid": 35568, "ts": 3751865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab4a0", "tid": 35568, "ts": 3752160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab640", "tid": 35568, "ts": 3752453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab570", "tid": 35568, "ts": 3752745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3752916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab7e0", "tid": 35568, "ts": 3753036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3753208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abe60", "tid": 35568, "ts": 3753329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3753500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abf30", "tid": 35568, "ts": 3753675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3753847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab710", "tid": 35568, "ts": 3753994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3754166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab8b0", "tid": 35568, "ts": 3754286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3754457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abd90", "tid": 35568, "ts": 3754577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3754748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7ab980", "tid": 35568, "ts": 3754962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3755302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aba50", "tid": 35568, "ts": 3755475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3755708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abb20", "tid": 35568, "ts": 3755889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3756125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abbf0", "tid": 35568, "ts": 3756246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3756417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7abcc0", "tid": 35568, "ts": 3756538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3756709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23483ecaab0", "tid": 35568, "ts": 3756830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348157e770", "tid": 35568, "ts": 3757123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8300", "tid": 35568, "ts": 3757416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a99c0", "tid": 35568, "ts": 3757708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3757879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa5f0", "tid": 35568, "ts": 3758000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3758170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9270", "tid": 35568, "ts": 3758290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3758463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9340", "tid": 35568, "ts": 3758584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3758755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8160", "tid": 35568, "ts": 3758881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9a90", "tid": 35568, "ts": 3759177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9680", "tid": 35568, "ts": 3759470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a84a0", "tid": 35568, "ts": 3759763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3759934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa860", "tid": 35568, "ts": 3760054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3760227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa040", "tid": 35568, "ts": 3760347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3760518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8cc0", "tid": 35568, "ts": 3760639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3760810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9b60", "tid": 35568, "ts": 3760931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa6c0", "tid": 35568, "ts": 3761223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aad40", "tid": 35568, "ts": 3761515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaad0", "tid": 35568, "ts": 3761808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3761979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a90d0", "tid": 35568, "ts": 3762100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3762271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab150", "tid": 35568, "ts": 3762392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3762564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8d90", "tid": 35568, "ts": 3762684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3762856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8a50", "tid": 35568, "ts": 3762976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3763148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9000", "tid": 35568, "ts": 3763269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3763441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a91a0", "tid": 35568, "ts": 3763562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3763736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab220", "tid": 35568, "ts": 3763857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a94e0", "tid": 35568, "ts": 3764150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8090", "tid": 35568, "ts": 3764442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8640", "tid": 35568, "ts": 3764734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3764906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa110", "tid": 35568, "ts": 3765027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3765198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aae10", "tid": 35568, "ts": 3765319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3765491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9d00", "tid": 35568, "ts": 3765612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3765784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9410", "tid": 35568, "ts": 3765905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a95b0", "tid": 35568, "ts": 3766198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab2f0", "tid": 35568, "ts": 3766491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa930", "tid": 35568, "ts": 3766784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3766955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaa00", "tid": 35568, "ts": 3767075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3767246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a98f0", "tid": 35568, "ts": 3767367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3767537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab3c0", "tid": 35568, "ts": 3767658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3767829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8e60", "tid": 35568, "ts": 3767949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9f70", "tid": 35568, "ts": 3768241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaba0", "tid": 35568, "ts": 3768534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a88b0", "tid": 35568, "ts": 3768827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3768999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa520", "tid": 35568, "ts": 3769119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3769291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9c30", "tid": 35568, "ts": 3769411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3769583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8230", "tid": 35568, "ts": 3769703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3769875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa450", "tid": 35568, "ts": 3769995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3770167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8f30", "tid": 35568, "ts": 3770287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3770492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aaee0", "tid": 35568, "ts": 3770640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3770811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a83d0", "tid": 35568, "ts": 3770932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa1e0", "tid": 35568, "ts": 3771224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aac70", "tid": 35568, "ts": 3771518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9750", "tid": 35568, "ts": 3771811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3771982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9820", "tid": 35568, "ts": 3772102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3772274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aafb0", "tid": 35568, "ts": 3772394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3772566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa2b0", "tid": 35568, "ts": 3772687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3772859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab080", "tid": 35568, "ts": 3772979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3773150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa790", "tid": 35568, "ts": 3773271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3773443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8570", "tid": 35568, "ts": 3773562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3773734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9dd0", "tid": 35568, "ts": 3773854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8710", "tid": 35568, "ts": 3774145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a9ea0", "tid": 35568, "ts": 3774438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a87e0", "tid": 35568, "ts": 3774731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3774903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8bf0", "tid": 35568, "ts": 3775045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3775216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8980", "tid": 35568, "ts": 3775338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3775509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805a8b20", "tid": 35568, "ts": 3775630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3775801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aa380", "tid": 35568, "ts": 3775921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abd80", "tid": 35568, "ts": 3776214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abcb0", "tid": 35568, "ts": 3776507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abe50", "tid": 35568, "ts": 3776799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3776970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abf20", "tid": 35568, "ts": 3777091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3777263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab490", "tid": 35568, "ts": 3777383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3777554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab560", "tid": 35568, "ts": 3777675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3777848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab630", "tid": 35568, "ts": 3778026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3778197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab700", "tid": 35568, "ts": 3778318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3778490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab7d0", "tid": 35568, "ts": 3778610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3778783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab8a0", "tid": 35568, "ts": 3778903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abb10", "tid": 35568, "ts": 3779195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805ab970", "tid": 35568, "ts": 3779486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805aba40", "tid": 35568, "ts": 3779780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3779952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234805abbe0", "tid": 35568, "ts": 3780072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3780245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d348b0", "tid": 35568, "ts": 3780367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3780539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35410", "tid": 35568, "ts": 3780659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3780873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d354e0", "tid": 35568, "ts": 3781000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3781172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d344a0", "tid": 35568, "ts": 3781293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3781463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34570", "tid": 35568, "ts": 3781584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3781755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34230", "tid": 35568, "ts": 3781875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36ad0", "tid": 35568, "ts": 3782168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35d00", "tid": 35568, "ts": 3782460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d355b0", "tid": 35568, "ts": 3782751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3782933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35ea0", "tid": 35568, "ts": 3783054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3783226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35680", "tid": 35568, "ts": 3783347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3783562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35dd0", "tid": 35568, "ts": 3783690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3783863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35b60", "tid": 35568, "ts": 3783986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3784157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35a90", "tid": 35568, "ts": 3784277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3784448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35340", "tid": 35568, "ts": 3784569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3784741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34a50", "tid": 35568, "ts": 3784861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35c30", "tid": 35568, "ts": 3785154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34640", "tid": 35568, "ts": 3785446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35f70", "tid": 35568, "ts": 3785740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3785910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36930", "tid": 35568, "ts": 3786031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3786272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36a00", "tid": 35568, "ts": 3786394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3786565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36e10", "tid": 35568, "ts": 3786686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3786858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d358f0", "tid": 35568, "ts": 3786979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3787151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34710", "tid": 35568, "ts": 3787272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3787443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36110", "tid": 35568, "ts": 3787564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3787735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d359c0", "tid": 35568, "ts": 3787856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d347e0", "tid": 35568, "ts": 3788148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36040", "tid": 35568, "ts": 3788440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34cc0", "tid": 35568, "ts": 3788732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3788903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35750", "tid": 35568, "ts": 3789023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3789195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d351a0", "tid": 35568, "ts": 3789315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3789487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d361e0", "tid": 35568, "ts": 3789607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3789779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d362b0", "tid": 35568, "ts": 3789899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34980", "tid": 35568, "ts": 3790196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36fb0", "tid": 35568, "ts": 3790487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34b20", "tid": 35568, "ts": 3790779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3790950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37220", "tid": 35568, "ts": 3791071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3791242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d372f0", "tid": 35568, "ts": 3791363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3791534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36ba0", "tid": 35568, "ts": 3791656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3791828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d365f0", "tid": 35568, "ts": 3791949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36380", "tid": 35568, "ts": 3792240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37080", "tid": 35568, "ts": 3792532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34bf0", "tid": 35568, "ts": 3792823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3792995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35820", "tid": 35568, "ts": 3793116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3793289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34d90", "tid": 35568, "ts": 3793409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3793581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36450", "tid": 35568, "ts": 3793702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3793874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35270", "tid": 35568, "ts": 3793996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3794166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34e60", "tid": 35568, "ts": 3794307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3794502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36520", "tid": 35568, "ts": 3794623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3794793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d366c0", "tid": 35568, "ts": 3794915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36790", "tid": 35568, "ts": 3795208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36860", "tid": 35568, "ts": 3795499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34f30", "tid": 35568, "ts": 3795825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3795997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36c70", "tid": 35568, "ts": 3796118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3796289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36ee0", "tid": 35568, "ts": 3796410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3796581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d36d40", "tid": 35568, "ts": 3796702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3796874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37150", "tid": 35568, "ts": 3796995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3797169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d373c0", "tid": 35568, "ts": 3797290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3797462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34090", "tid": 35568, "ts": 3797582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3797753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34160", "tid": 35568, "ts": 3797874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d35000", "tid": 35568, "ts": 3798167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d34300", "tid": 35568, "ts": 3798459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d343d0", "tid": 35568, "ts": 3798752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3798923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d350d0", "tid": 35568, "ts": 3799044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3799215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37970", "tid": 35568, "ts": 3799336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3799507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37f20", "tid": 35568, "ts": 3799627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3799797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37d80", "tid": 35568, "ts": 3799919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37630", "tid": 35568, "ts": 3800211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37cb0", "tid": 35568, "ts": 3800503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37b10", "tid": 35568, "ts": 3800794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3800966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d377d0", "tid": 35568, "ts": 3801086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3801257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37700", "tid": 35568, "ts": 3801377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3801549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d378a0", "tid": 35568, "ts": 3801670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3801991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37e50", "tid": 35568, "ts": 3802130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3802303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37a40", "tid": 35568, "ts": 3802424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3802596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37be0", "tid": 35568, "ts": 3802718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3802890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37490", "tid": 35568, "ts": 3803011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3803183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d37560", "tid": 35568, "ts": 3803333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3803506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c4b0", "tid": 35568, "ts": 3803639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3803813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1dde0", "tid": 35568, "ts": 3803935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1eae0", "tid": 35568, "ts": 3804231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c580", "tid": 35568, "ts": 3804524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ea10", "tid": 35568, "ts": 3804818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3804990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ec80", "tid": 35568, "ts": 3805112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3805284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c7f0", "tid": 35568, "ts": 3805417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3805716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c8c0", "tid": 35568, "ts": 3805939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3806242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d010", "tid": 35568, "ts": 3806423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3806740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c650", "tid": 35568, "ts": 3806977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3807251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c0a0", "tid": 35568, "ts": 3807474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3807792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c990", "tid": 35568, "ts": 3808000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3808348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d5c0", "tid": 35568, "ts": 3808587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3808874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f300", "tid": 35568, "ts": 3809098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3809402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ebb0", "tid": 35568, "ts": 3809626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3809927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cf40", "tid": 35568, "ts": 3810149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3810484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c170", "tid": 35568, "ts": 3810679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3810982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e050", "tid": 35568, "ts": 3811221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3811539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e600", "tid": 35568, "ts": 3811746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3812049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ca60", "tid": 35568, "ts": 3812300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3812619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d280", "tid": 35568, "ts": 3812812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3813100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e1f0", "tid": 35568, "ts": 3813321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3813654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1efc0", "tid": 35568, "ts": 3813874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3814225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1dd10", "tid": 35568, "ts": 3814449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3814765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1eef0", "tid": 35568, "ts": 3814985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3815290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d350", "tid": 35568, "ts": 3815513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3815813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d0e0", "tid": 35568, "ts": 3816021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3816338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d420", "tid": 35568, "ts": 3816577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3816866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d690", "tid": 35568, "ts": 3817088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3817426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d900", "tid": 35568, "ts": 3817643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3817963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e390", "tid": 35568, "ts": 3818171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3818401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e6d0", "tid": 35568, "ts": 3818639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3818940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d4f0", "tid": 35568, "ts": 3819164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3819334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d1b0", "tid": 35568, "ts": 3819503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3819676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1deb0", "tid": 35568, "ts": 3819797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3819999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d760", "tid": 35568, "ts": 3820222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3820506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c720", "tid": 35568, "ts": 3820738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3821055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cb30", "tid": 35568, "ts": 3821251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3821584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d830", "tid": 35568, "ts": 3821820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3822124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cc00", "tid": 35568, "ts": 3822245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3822417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ccd0", "tid": 35568, "ts": 3822626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3822914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1df80", "tid": 35568, "ts": 3823137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3823425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1cda0", "tid": 35568, "ts": 3823652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3823969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e7a0", "tid": 35568, "ts": 3824206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3824465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1dc40", "tid": 35568, "ts": 3824645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3824841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1d9d0", "tid": 35568, "ts": 3825020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3825279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ce70", "tid": 35568, "ts": 3825486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3825788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1daa0", "tid": 35568, "ts": 3825983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3826315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1db70", "tid": 35568, "ts": 3826539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3826869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c240", "tid": 35568, "ts": 3827092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3827352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ee20", "tid": 35568, "ts": 3827672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3827988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3828571, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482c1e530", "tid": 35568, "ts": 3828587, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482c1e530", "tid": 35568, "ts": 3828646, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e120", "tid": 35568, "ts": 3828853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3829169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e460", "tid": 35568, "ts": 3829380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3829669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e870", "tid": 35568, "ts": 3829874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3830187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e940", "tid": 35568, "ts": 3830397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3830687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ed50", "tid": 35568, "ts": 3830907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3831126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f090", "tid": 35568, "ts": 3831347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3831551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f160", "tid": 35568, "ts": 3831734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3832031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f230", "tid": 35568, "ts": 3832198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3832488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f3d0", "tid": 35568, "ts": 3832712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3833026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c310", "tid": 35568, "ts": 3833237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3833484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1c3e0", "tid": 35568, "ts": 3833675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3833852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fd90", "tid": 35568, "ts": 3833986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3834159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c215f0", "tid": 35568, "ts": 3834280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3834452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c205b0", "tid": 35568, "ts": 3834572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3834785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20ea0", "tid": 35568, "ts": 3834975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3835213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20f70", "tid": 35568, "ts": 3835335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3835507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fe60", "tid": 35568, "ts": 3835628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3835800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20dd0", "tid": 35568, "ts": 3835921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21790", "tid": 35568, "ts": 3836216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21040", "tid": 35568, "ts": 3836509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21ba0", "tid": 35568, "ts": 3836802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3836973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21fb0", "tid": 35568, "ts": 3837095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3837268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20340", "tid": 35568, "ts": 3837388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3837560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21860", "tid": 35568, "ts": 3837682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3837854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21110", "tid": 35568, "ts": 3837974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3838147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22080", "tid": 35568, "ts": 3838267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3838440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c208f0", "tid": 35568, "ts": 3838560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3838732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c209c0", "tid": 35568, "ts": 3838853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f4a0", "tid": 35568, "ts": 3839145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20d00", "tid": 35568, "ts": 3839438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f8b0", "tid": 35568, "ts": 3839735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3839908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20750", "tid": 35568, "ts": 3840029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3840201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21a00", "tid": 35568, "ts": 3840322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3840495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1ff30", "tid": 35568, "ts": 3840615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3840787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20a90", "tid": 35568, "ts": 3840907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20b60", "tid": 35568, "ts": 3841199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20c30", "tid": 35568, "ts": 3841492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21450", "tid": 35568, "ts": 3841784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3841955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c211e0", "tid": 35568, "ts": 3842076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3842256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22220", "tid": 35568, "ts": 3842378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3842550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c212b0", "tid": 35568, "ts": 3842671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3842844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21380", "tid": 35568, "ts": 3842964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3843136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21520", "tid": 35568, "ts": 3843257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3843430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f710", "tid": 35568, "ts": 3843550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3843722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c216c0", "tid": 35568, "ts": 3843843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c200d0", "tid": 35568, "ts": 3844136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21930", "tid": 35568, "ts": 3844429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fbf0", "tid": 35568, "ts": 3844723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3844895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20410", "tid": 35568, "ts": 3845016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3845186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f980", "tid": 35568, "ts": 3845308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3845480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20000", "tid": 35568, "ts": 3845601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3845772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c204e0", "tid": 35568, "ts": 3845894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21ad0", "tid": 35568, "ts": 3846186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21c70", "tid": 35568, "ts": 3846479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c201a0", "tid": 35568, "ts": 3846772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3846943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22700", "tid": 35568, "ts": 3847064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3847235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20270", "tid": 35568, "ts": 3847356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3847527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fa50", "tid": 35568, "ts": 3847647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3847819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f7e0", "tid": 35568, "ts": 3847940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3848111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fb20", "tid": 35568, "ts": 3848232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3848404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21d40", "tid": 35568, "ts": 3848524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3848759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1fcc0", "tid": 35568, "ts": 3848879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21e10", "tid": 35568, "ts": 3849172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22630", "tid": 35568, "ts": 3849500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20680", "tid": 35568, "ts": 3849793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3849965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c227d0", "tid": 35568, "ts": 3850087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3850259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c21ee0", "tid": 35568, "ts": 3850380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3850552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22150", "tid": 35568, "ts": 3850673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3850845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f570", "tid": 35568, "ts": 3850966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3851137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c20820", "tid": 35568, "ts": 3851259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3851430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c222f0", "tid": 35568, "ts": 3851552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3851724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c223c0", "tid": 35568, "ts": 3851845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22490", "tid": 35568, "ts": 3852138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22560", "tid": 35568, "ts": 3852430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1f640", "tid": 35568, "ts": 3852722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3852894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c228a0", "tid": 35568, "ts": 3853015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3853188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22b10", "tid": 35568, "ts": 3853309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3853480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22d80", "tid": 35568, "ts": 3853601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3853772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c234d0", "tid": 35568, "ts": 3853893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23330", "tid": 35568, "ts": 3854185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23740", "tid": 35568, "ts": 3854476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23810", "tid": 35568, "ts": 3854770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3854941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23670", "tid": 35568, "ts": 3855062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3855234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22e50", "tid": 35568, "ts": 3855354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3855527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c230c0", "tid": 35568, "ts": 3855648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3855820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23400", "tid": 35568, "ts": 3855941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3856113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23a80", "tid": 35568, "ts": 3856234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3856407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23dc0", "tid": 35568, "ts": 3856529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3856701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c235a0", "tid": 35568, "ts": 3856901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c238e0", "tid": 35568, "ts": 3857193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22ff0", "tid": 35568, "ts": 3857486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c239b0", "tid": 35568, "ts": 3857821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3857993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22f20", "tid": 35568, "ts": 3858114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3858286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23260", "tid": 35568, "ts": 3858407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3858578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22be0", "tid": 35568, "ts": 3858699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3858871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23b50", "tid": 35568, "ts": 3858992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3859164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23c20", "tid": 35568, "ts": 3859285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3859457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23cf0", "tid": 35568, "ts": 3859579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3859751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23e90", "tid": 35568, "ts": 3859873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23f60", "tid": 35568, "ts": 3860166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22970", "tid": 35568, "ts": 3860459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22a40", "tid": 35568, "ts": 3860752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3860924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c22cb0", "tid": 35568, "ts": 3861044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3861216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c23190", "tid": 35568, "ts": 3861337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3861510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d29b0", "tid": 35568, "ts": 3861640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3861813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d43b0", "tid": 35568, "ts": 3861934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3100", "tid": 35568, "ts": 3862226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2400", "tid": 35568, "ts": 3862519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4960", "tid": 35568, "ts": 3862813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3862984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2b50", "tid": 35568, "ts": 3863105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3863277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5320", "tid": 35568, "ts": 3863397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3863569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d20c0", "tid": 35568, "ts": 3863690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3863861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4d70", "tid": 35568, "ts": 3863982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3864153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4550", "tid": 35568, "ts": 3864417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3864613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2190", "tid": 35568, "ts": 3864744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3864926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4e40", "tid": 35568, "ts": 3865090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3865373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4f10", "tid": 35568, "ts": 3865510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3865693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4480", "tid": 35568, "ts": 3865823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d39f0", "tid": 35568, "ts": 3866136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4ca0", "tid": 35568, "ts": 3866449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d24d0", "tid": 35568, "ts": 3866761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3866943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2670", "tid": 35568, "ts": 3867073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3867263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d42e0", "tid": 35568, "ts": 3867388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3867576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3b90", "tid": 35568, "ts": 3867697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3867870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2a80", "tid": 35568, "ts": 3867991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3868162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4620", "tid": 35568, "ts": 3868284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3868455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d32a0", "tid": 35568, "ts": 3868577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3868748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3ac0", "tid": 35568, "ts": 3868870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4890", "tid": 35568, "ts": 3869164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d53f0", "tid": 35568, "ts": 3869456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2810", "tid": 35568, "ts": 3869749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3869920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2260", "tid": 35568, "ts": 3870052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3870226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2740", "tid": 35568, "ts": 3870348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3870535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5250", "tid": 35568, "ts": 3870659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3870833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3c60", "tid": 35568, "ts": 3870955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3871129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3780", "tid": 35568, "ts": 3871267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3871516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d46f0", "tid": 35568, "ts": 3871640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3871812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d25a0", "tid": 35568, "ts": 3871933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2c20", "tid": 35568, "ts": 3872227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2cf0", "tid": 35568, "ts": 3872521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d47c0", "tid": 35568, "ts": 3872815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3872987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4a30", "tid": 35568, "ts": 3873108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3873279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3d30", "tid": 35568, "ts": 3873400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3873571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3ed0", "tid": 35568, "ts": 3873691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3873863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2dc0", "tid": 35568, "ts": 3873985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3874156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3fa0", "tid": 35568, "ts": 3874277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3874449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4fe0", "tid": 35568, "ts": 3874584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3874756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4b00", "tid": 35568, "ts": 3874876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2e90", "tid": 35568, "ts": 3875169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4140", "tid": 35568, "ts": 3875462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3e00", "tid": 35568, "ts": 3875756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3875927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d28e0", "tid": 35568, "ts": 3876049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3876234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4bd0", "tid": 35568, "ts": 3876356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3876528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d50b0", "tid": 35568, "ts": 3876650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3876822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5180", "tid": 35568, "ts": 3876943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2f60", "tid": 35568, "ts": 3877236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3370", "tid": 35568, "ts": 3877535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4070", "tid": 35568, "ts": 3877828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3877999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d2330", "tid": 35568, "ts": 3878120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3878292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3920", "tid": 35568, "ts": 3878412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3878584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3030", "tid": 35568, "ts": 3878705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3878877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d31d0", "tid": 35568, "ts": 3878998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3879169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d35e0", "tid": 35568, "ts": 3879290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3879461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3440", "tid": 35568, "ts": 3879582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3879754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3510", "tid": 35568, "ts": 3879961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3880133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d36b0", "tid": 35568, "ts": 3880255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3880426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d3850", "tid": 35568, "ts": 3880547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3880719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d4210", "tid": 35568, "ts": 3880840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5c10", "tid": 35568, "ts": 3881134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d59a0", "tid": 35568, "ts": 3881426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7f00", "tid": 35568, "ts": 3881719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3881891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5800", "tid": 35568, "ts": 3882011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3882182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8170", "tid": 35568, "ts": 3882302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3882473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d83e0", "tid": 35568, "ts": 3882595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3882767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d76e0", "tid": 35568, "ts": 3882888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d77b0", "tid": 35568, "ts": 3883179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7a20", "tid": 35568, "ts": 3883472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d73a0", "tid": 35568, "ts": 3883764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3883935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7d60", "tid": 35568, "ts": 3884056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3884227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5ce0", "tid": 35568, "ts": 3884348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3884520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7130", "tid": 35568, "ts": 3884641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3884813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7470", "tid": 35568, "ts": 3884934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d87f0", "tid": 35568, "ts": 3885226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5730", "tid": 35568, "ts": 3885518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5db0", "tid": 35568, "ts": 3885810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3885981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d69e0", "tid": 35568, "ts": 3886102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3886273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6290", "tid": 35568, "ts": 3886394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3886565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d54c0", "tid": 35568, "ts": 3886686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3886858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d84b0", "tid": 35568, "ts": 3886978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3887150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8650", "tid": 35568, "ts": 3887270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3887442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8240", "tid": 35568, "ts": 3887563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3887734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6360", "tid": 35568, "ts": 3887856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7540", "tid": 35568, "ts": 3888149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7e30", "tid": 35568, "ts": 3888441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d72d0", "tid": 35568, "ts": 3888732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3888903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7880", "tid": 35568, "ts": 3889024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3889196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8720", "tid": 35568, "ts": 3889318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3889490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8310", "tid": 35568, "ts": 3889611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3889783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6430", "tid": 35568, "ts": 3889904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3890075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7950", "tid": 35568, "ts": 3890195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3890368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5e80", "tid": 35568, "ts": 3890488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3890703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7610", "tid": 35568, "ts": 3890830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6ec0", "tid": 35568, "ts": 3891125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7af0", "tid": 35568, "ts": 3891418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5f50", "tid": 35568, "ts": 3891745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3891917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7bc0", "tid": 35568, "ts": 3892039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3892211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7c90", "tid": 35568, "ts": 3892332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3892503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7060", "tid": 35568, "ts": 3892624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3892795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6020", "tid": 35568, "ts": 3892916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5590", "tid": 35568, "ts": 3893207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5660", "tid": 35568, "ts": 3893499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7fd0", "tid": 35568, "ts": 3893790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3893963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d58d0", "tid": 35568, "ts": 3894084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3894256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d60f0", "tid": 35568, "ts": 3894377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3894681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d80a0", "tid": 35568, "ts": 3894801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3894974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8580", "tid": 35568, "ts": 3895095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3895267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d61c0", "tid": 35568, "ts": 3895387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3895627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6500", "tid": 35568, "ts": 3895749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3895921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5a70", "tid": 35568, "ts": 3896042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3896214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d5b40", "tid": 35568, "ts": 3896335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3896507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d65d0", "tid": 35568, "ts": 3896627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3896799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d66a0", "tid": 35568, "ts": 3896920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6770", "tid": 35568, "ts": 3897212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6910", "tid": 35568, "ts": 3897504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6840", "tid": 35568, "ts": 3897797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3897969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6ab0", "tid": 35568, "ts": 3898090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3898261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6c50", "tid": 35568, "ts": 3898381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3898553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6b80", "tid": 35568, "ts": 3898674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3898846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6d20", "tid": 35568, "ts": 3898966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3899137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6df0", "tid": 35568, "ts": 3899258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3899430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d7200", "tid": 35568, "ts": 3899551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3899722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d6f90", "tid": 35568, "ts": 3899843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8f40", "tid": 35568, "ts": 3900135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9b70", "tid": 35568, "ts": 3900427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9690", "tid": 35568, "ts": 3900720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3900892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9de0", "tid": 35568, "ts": 3901013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3901186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d95c0", "tid": 35568, "ts": 3901307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3901478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9760", "tid": 35568, "ts": 3901599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3901771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9aa0", "tid": 35568, "ts": 3901891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d90e0", "tid": 35568, "ts": 3902184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d94f0", "tid": 35568, "ts": 3902477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9010", "tid": 35568, "ts": 3902769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3902940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9830", "tid": 35568, "ts": 3903061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3903232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9900", "tid": 35568, "ts": 3903354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3903525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9eb0", "tid": 35568, "ts": 3903646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3903818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d88c0", "tid": 35568, "ts": 3903939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9f80", "tid": 35568, "ts": 3904233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d99d0", "tid": 35568, "ts": 3904525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9c40", "tid": 35568, "ts": 3904818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3904990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9d10", "tid": 35568, "ts": 3905111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3905282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8990", "tid": 35568, "ts": 3905403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3905575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8a60", "tid": 35568, "ts": 3905696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3905867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8b30", "tid": 35568, "ts": 3905988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3906160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8c00", "tid": 35568, "ts": 3906281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3906452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8cd0", "tid": 35568, "ts": 3906573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3906745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9280", "tid": 35568, "ts": 3906879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3907052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234805b1e20", "tid": 35568, "ts": 3907116, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 3907401, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234906d91b0", "tid": 35568, "ts": 3907416, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234906d91b0", "tid": 35568, "ts": 3907448, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8da0", "tid": 35568, "ts": 3907570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3907758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d8e70", "tid": 35568, "ts": 3907884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3908059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9420", "tid": 35568, "ts": 3908204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3908414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923100", "tid": 35568, "ts": 3908548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3908723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924b00", "tid": 35568, "ts": 3908846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923510", "tid": 35568, "ts": 3909148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879250b0", "tid": 35568, "ts": 3909442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924890", "tid": 35568, "ts": 3909736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3909908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924550", "tid": 35568, "ts": 3910029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3910201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922810", "tid": 35568, "ts": 3910322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3910494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923440", "tid": 35568, "ts": 3910615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3910787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923920", "tid": 35568, "ts": 3910908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879220c0", "tid": 35568, "ts": 3911233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924960", "tid": 35568, "ts": 3911527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924140", "tid": 35568, "ts": 3911819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3911990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922a80", "tid": 35568, "ts": 3912113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3912284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924210", "tid": 35568, "ts": 3912405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3912576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879224d0", "tid": 35568, "ts": 3912696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3912869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922400", "tid": 35568, "ts": 3912989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3913161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922330", "tid": 35568, "ts": 3913282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3913453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924a30", "tid": 35568, "ts": 3913574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3913746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879246f0", "tid": 35568, "ts": 3913867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924620", "tid": 35568, "ts": 3914160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924bd0", "tid": 35568, "ts": 3914452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922670", "tid": 35568, "ts": 3914744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3914916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879239f0", "tid": 35568, "ts": 3915037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3915208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922f60", "tid": 35568, "ts": 3915343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3915515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879232a0", "tid": 35568, "ts": 3915636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3915807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924ca0", "tid": 35568, "ts": 3915928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922cf0", "tid": 35568, "ts": 3916220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923370", "tid": 35568, "ts": 3916512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922e90", "tid": 35568, "ts": 3916804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3916976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923ac0", "tid": 35568, "ts": 3917097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3917268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922190", "tid": 35568, "ts": 3917389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3917561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879247c0", "tid": 35568, "ts": 3917682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3917854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879229b0", "tid": 35568, "ts": 3917974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3918146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879236b0", "tid": 35568, "ts": 3918268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3918439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879225a0", "tid": 35568, "ts": 3918559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3918731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925250", "tid": 35568, "ts": 3918852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924e40", "tid": 35568, "ts": 3919144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922c20", "tid": 35568, "ts": 3919436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879235e0", "tid": 35568, "ts": 3919733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3919905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924fe0", "tid": 35568, "ts": 3920024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3920197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923030", "tid": 35568, "ts": 3920316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3920488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923b90", "tid": 35568, "ts": 3920609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3920781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925180", "tid": 35568, "ts": 3920901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3921073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879228e0", "tid": 35568, "ts": 3921193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3921365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922740", "tid": 35568, "ts": 3921504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3921677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922260", "tid": 35568, "ts": 3921840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922b50", "tid": 35568, "ts": 3922134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879253f0", "tid": 35568, "ts": 3922426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879231d0", "tid": 35568, "ts": 3922719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3922891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487922dc0", "tid": 35568, "ts": 3923011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3923183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923780", "tid": 35568, "ts": 3923303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3923515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925320", "tid": 35568, "ts": 3923642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3923814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924f10", "tid": 35568, "ts": 3923936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3924109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923850", "tid": 35568, "ts": 3924229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3924401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924d70", "tid": 35568, "ts": 3924582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3924754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923fa0", "tid": 35568, "ts": 3924875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923c60", "tid": 35568, "ts": 3925168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923d30", "tid": 35568, "ts": 3925460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923e00", "tid": 35568, "ts": 3925751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3925922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487923ed0", "tid": 35568, "ts": 3926042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3926214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924070", "tid": 35568, "ts": 3926335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3926506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879242e0", "tid": 35568, "ts": 3926626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3926868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879243b0", "tid": 35568, "ts": 3926989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3927161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487924480", "tid": 35568, "ts": 3927283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3927455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925db0", "tid": 35568, "ts": 3927576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3927748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879258d0", "tid": 35568, "ts": 3927869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927c90", "tid": 35568, "ts": 3928161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927950", "tid": 35568, "ts": 3928452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928720", "tid": 35568, "ts": 3928745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3928916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928310", "tid": 35568, "ts": 3929037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3929209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879287f0", "tid": 35568, "ts": 3929330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3929501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925e80", "tid": 35568, "ts": 3929622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3929795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926770", "tid": 35568, "ts": 3929916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925590", "tid": 35568, "ts": 3930208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927f00", "tid": 35568, "ts": 3930499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879265d0", "tid": 35568, "ts": 3930791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3930962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926ab0", "tid": 35568, "ts": 3931082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3931254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927540", "tid": 35568, "ts": 3931374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3931545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925f50", "tid": 35568, "ts": 3931666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3931836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926840", "tid": 35568, "ts": 3931956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3932129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879259a0", "tid": 35568, "ts": 3932250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3932423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927af0", "tid": 35568, "ts": 3932544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3932715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925a70", "tid": 35568, "ts": 3932835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879284b0", "tid": 35568, "ts": 3933128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927fd0", "tid": 35568, "ts": 3933421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925c10", "tid": 35568, "ts": 3933748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3933919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926430", "tid": 35568, "ts": 3934040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3934211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879273a0", "tid": 35568, "ts": 3934331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3934504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879266a0", "tid": 35568, "ts": 3934624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3934796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925660", "tid": 35568, "ts": 3934917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3935087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927200", "tid": 35568, "ts": 3935208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3935422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879254c0", "tid": 35568, "ts": 3935544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3935715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879283e0", "tid": 35568, "ts": 3935836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927610", "tid": 35568, "ts": 3936128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925730", "tid": 35568, "ts": 3936420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879269e0", "tid": 35568, "ts": 3936712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3936884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925800", "tid": 35568, "ts": 3937004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3937174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926f90", "tid": 35568, "ts": 3937295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3937466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879272d0", "tid": 35568, "ts": 3937586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3937757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926500", "tid": 35568, "ts": 3937878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926c50", "tid": 35568, "ts": 3938170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927880", "tid": 35568, "ts": 3938461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928650", "tid": 35568, "ts": 3938754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3938925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879276e0", "tid": 35568, "ts": 3939045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3939218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927470", "tid": 35568, "ts": 3939339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3939509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925b40", "tid": 35568, "ts": 3939629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3939800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487925ce0", "tid": 35568, "ts": 3939920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926020", "tid": 35568, "ts": 3940213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879260f0", "tid": 35568, "ts": 3940505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926d20", "tid": 35568, "ts": 3940797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3940969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879277b0", "tid": 35568, "ts": 3941090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3941261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879261c0", "tid": 35568, "ts": 3941382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3941552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926290", "tid": 35568, "ts": 3941673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3941844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926360", "tid": 35568, "ts": 3941965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3942136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926910", "tid": 35568, "ts": 3942257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3942500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927a20", "tid": 35568, "ts": 3942648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3942832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926b80", "tid": 35568, "ts": 3942955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3943127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926df0", "tid": 35568, "ts": 3943248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3943419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487926ec0", "tid": 35568, "ts": 3943539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3943711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927060", "tid": 35568, "ts": 3943831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927130", "tid": 35568, "ts": 3944121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927bc0", "tid": 35568, "ts": 3944413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927d60", "tid": 35568, "ts": 3944705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3944878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487927e30", "tid": 35568, "ts": 3944999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3945170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879280a0", "tid": 35568, "ts": 3945290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3945462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928170", "tid": 35568, "ts": 3945584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3945755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928240", "tid": 35568, "ts": 3945877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928580", "tid": 35568, "ts": 3946169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929760", "tid": 35568, "ts": 3946461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928f40", "tid": 35568, "ts": 3946753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3946924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929690", "tid": 35568, "ts": 3947045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3947216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928a60", "tid": 35568, "ts": 3947337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3947508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928b30", "tid": 35568, "ts": 3947629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3947800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929010", "tid": 35568, "ts": 3947920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928c00", "tid": 35568, "ts": 3948213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929de0", "tid": 35568, "ts": 3948504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929350", "tid": 35568, "ts": 3948796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3948967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929420", "tid": 35568, "ts": 3949088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3949259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929830", "tid": 35568, "ts": 3949380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3949551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929900", "tid": 35568, "ts": 3949671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3949844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929eb0", "tid": 35568, "ts": 3949964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3950136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879291b0", "tid": 35568, "ts": 3950256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3950427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879299d0", "tid": 35568, "ts": 3950547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3950719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879288c0", "tid": 35568, "ts": 3950839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928cd0", "tid": 35568, "ts": 3951131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928da0", "tid": 35568, "ts": 3951424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929aa0", "tid": 35568, "ts": 3951715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3951886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929b70", "tid": 35568, "ts": 3952007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3952179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928e70", "tid": 35568, "ts": 3952300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3952471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879290e0", "tid": 35568, "ts": 3952591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3952763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929280", "tid": 35568, "ts": 3952884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929f80", "tid": 35568, "ts": 3953177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879294f0", "tid": 35568, "ts": 3953468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487928990", "tid": 35568, "ts": 3953760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3953931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929c40", "tid": 35568, "ts": 3954052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3954223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879295c0", "tid": 35568, "ts": 3954344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3954515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487929d10", "tid": 35568, "ts": 3954635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3954805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613570", "tid": 35568, "ts": 3954940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3955112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611420", "tid": 35568, "ts": 3955233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3955404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612940", "tid": 35568, "ts": 3955525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3955696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613cc0", "tid": 35568, "ts": 3955860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946122c0", "tid": 35568, "ts": 3956151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613b20", "tid": 35568, "ts": 3956444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611de0", "tid": 35568, "ts": 3956735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3956906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613090", "tid": 35568, "ts": 3957026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3957197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612fc0", "tid": 35568, "ts": 3957318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3957490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612870", "tid": 35568, "ts": 3957611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3957782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611eb0", "tid": 35568, "ts": 3957903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3958135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612390", "tid": 35568, "ts": 3958257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3958429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613d90", "tid": 35568, "ts": 3958573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3958745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611f80", "tid": 35568, "ts": 3958865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946133d0", "tid": 35568, "ts": 3959158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613f30", "tid": 35568, "ts": 3959451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613e60", "tid": 35568, "ts": 3959743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3959915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612a10", "tid": 35568, "ts": 3960036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3960207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611280", "tid": 35568, "ts": 3960328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3960500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946114f0", "tid": 35568, "ts": 3960620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3960792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612ae0", "tid": 35568, "ts": 3960912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612bb0", "tid": 35568, "ts": 3961205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612ef0", "tid": 35568, "ts": 3961497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614000", "tid": 35568, "ts": 3961789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3961961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612c80", "tid": 35568, "ts": 3962082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3962253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610cd0", "tid": 35568, "ts": 3962374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3962545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612530", "tid": 35568, "ts": 3962666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3962837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610da0", "tid": 35568, "ts": 3962959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3963130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612d50", "tid": 35568, "ts": 3963251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3963423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611d10", "tid": 35568, "ts": 3963544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3963715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611010", "tid": 35568, "ts": 3963836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610f40", "tid": 35568, "ts": 3964127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946115c0", "tid": 35568, "ts": 3964419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612e20", "tid": 35568, "ts": 3964713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3964885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611aa0", "tid": 35568, "ts": 3965006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3965178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612050", "tid": 35568, "ts": 3965299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3965471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613300", "tid": 35568, "ts": 3965591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3965762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611690", "tid": 35568, "ts": 3965883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611760", "tid": 35568, "ts": 3966174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946134a0", "tid": 35568, "ts": 3966467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612120", "tid": 35568, "ts": 3966759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3966931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946138b0", "tid": 35568, "ts": 3967051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3967222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494610e70", "tid": 35568, "ts": 3967343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3967515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611c40", "tid": 35568, "ts": 3967635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3967807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611350", "tid": 35568, "ts": 3967927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613160", "tid": 35568, "ts": 3968218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613230", "tid": 35568, "ts": 3968509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612460", "tid": 35568, "ts": 3968801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3968974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611830", "tid": 35568, "ts": 3969094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3969266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946111b0", "tid": 35568, "ts": 3969395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3969567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946110e0", "tid": 35568, "ts": 3969688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3969860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613640", "tid": 35568, "ts": 3969980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3970152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611900", "tid": 35568, "ts": 3970272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3970444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946121f0", "tid": 35568, "ts": 3970565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3970737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946119d0", "tid": 35568, "ts": 3970858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613710", "tid": 35568, "ts": 3971150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494611b70", "tid": 35568, "ts": 3971444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613bf0", "tid": 35568, "ts": 3971753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3971926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494612600", "tid": 35568, "ts": 3972047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3972218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946137e0", "tid": 35568, "ts": 3972338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3972509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946126d0", "tid": 35568, "ts": 3972630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3972801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946127a0", "tid": 35568, "ts": 3972921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3973093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613980", "tid": 35568, "ts": 3973213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3973385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494613a50", "tid": 35568, "ts": 3973505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3973895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616e50", "tid": 35568, "ts": 3974093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3974332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615860", "tid": 35568, "ts": 3974487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3974662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946148f0", "tid": 35568, "ts": 3974786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3974959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616630", "tid": 35568, "ts": 3975082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3975254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946168a0", "tid": 35568, "ts": 3975376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3975548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615110", "tid": 35568, "ts": 3975735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3975909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616150", "tid": 35568, "ts": 3976030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3976202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616970", "tid": 35568, "ts": 3976324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3976495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946156c0", "tid": 35568, "ts": 3976616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3976788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616f20", "tid": 35568, "ts": 3976909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615e10", "tid": 35568, "ts": 3977202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614410", "tid": 35568, "ts": 3977495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616d80", "tid": 35568, "ts": 3977789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3977961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946149c0", "tid": 35568, "ts": 3978082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3978254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615790", "tid": 35568, "ts": 3978375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3978547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615ba0", "tid": 35568, "ts": 3978669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3978840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946155f0", "tid": 35568, "ts": 3978962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3979134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615c70", "tid": 35568, "ts": 3979256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3979428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615380", "tid": 35568, "ts": 3979550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3979721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616560", "tid": 35568, "ts": 3979842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946167d0", "tid": 35568, "ts": 3980134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614dd0", "tid": 35568, "ts": 3980428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946141a0", "tid": 35568, "ts": 3980720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3980892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946144e0", "tid": 35568, "ts": 3981012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3981184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946163c0", "tid": 35568, "ts": 3981305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3981477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616b10", "tid": 35568, "ts": 3981598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3981770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616a40", "tid": 35568, "ts": 3981891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616220", "tid": 35568, "ts": 3982184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615ee0", "tid": 35568, "ts": 3982477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616080", "tid": 35568, "ts": 3982769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3982941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946151e0", "tid": 35568, "ts": 3983063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3983235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946145b0", "tid": 35568, "ts": 3983356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3983528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614f70", "tid": 35568, "ts": 3983650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3983822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946162f0", "tid": 35568, "ts": 3983944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3984136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615930", "tid": 35568, "ts": 3984260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3984434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946152b0", "tid": 35568, "ts": 3984625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3984801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615040", "tid": 35568, "ts": 3984927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616be0", "tid": 35568, "ts": 3985221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614680", "tid": 35568, "ts": 3985516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615d40", "tid": 35568, "ts": 3985809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3985982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616700", "tid": 35568, "ts": 3986104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3986276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614c30", "tid": 35568, "ts": 3986398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3986571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946170c0", "tid": 35568, "ts": 3986692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3986865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615a00", "tid": 35568, "ts": 3986987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3987159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615ad0", "tid": 35568, "ts": 3987280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3987452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614750", "tid": 35568, "ts": 3987573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3987746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616490", "tid": 35568, "ts": 3987867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614270", "tid": 35568, "ts": 3988160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616cb0", "tid": 35568, "ts": 3988453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494616ff0", "tid": 35568, "ts": 3988793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3988965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615fb0", "tid": 35568, "ts": 3989086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3989378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615450", "tid": 35568, "ts": 3989616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3989865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617190", "tid": 35568, "ts": 3989997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3990168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614820", "tid": 35568, "ts": 3990289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3990462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617260", "tid": 35568, "ts": 3990583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3990755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617330", "tid": 35568, "ts": 3990875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614d00", "tid": 35568, "ts": 3991174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617400", "tid": 35568, "ts": 3991468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614a90", "tid": 35568, "ts": 3991761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3991933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494615520", "tid": 35568, "ts": 3992054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3992227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946140d0", "tid": 35568, "ts": 3992405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3992578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614340", "tid": 35568, "ts": 3992700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3992872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614b60", "tid": 35568, "ts": 3992993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3993165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494614ea0", "tid": 35568, "ts": 3993286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3993458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618850", "tid": 35568, "ts": 3993580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3993752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946174d0", "tid": 35568, "ts": 3993873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617740", "tid": 35568, "ts": 3994166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946175a0", "tid": 35568, "ts": 3994474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618ac0", "tid": 35568, "ts": 3994802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3994973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618920", "tid": 35568, "ts": 3995094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3995266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946186b0", "tid": 35568, "ts": 3995386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3995558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617f60", "tid": 35568, "ts": 3995679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3995852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617810", "tid": 35568, "ts": 3995987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3996160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618510", "tid": 35568, "ts": 3996282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3996454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617c20", "tid": 35568, "ts": 3996575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3996748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618030", "tid": 35568, "ts": 3996869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946179b0", "tid": 35568, "ts": 3997162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946185e0", "tid": 35568, "ts": 3997455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617670", "tid": 35568, "ts": 3997749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3997920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618370", "tid": 35568, "ts": 3998041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3998213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618b90", "tid": 35568, "ts": 3998333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3998504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618780", "tid": 35568, "ts": 3998625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3998799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946182a0", "tid": 35568, "ts": 3998921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946189f0", "tid": 35568, "ts": 3999213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618440", "tid": 35568, "ts": 3999506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617cf0", "tid": 35568, "ts": 3999799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 3999971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946178e0", "tid": 35568, "ts": 4000092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4000264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617dc0", "tid": 35568, "ts": 4000385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4000557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617a80", "tid": 35568, "ts": 4000678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4000849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617b50", "tid": 35568, "ts": 4000970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4001142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494617e90", "tid": 35568, "ts": 4001263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4001434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23494618100", "tid": 35568, "ts": 4001555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4001726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234946181d0", "tid": 35568, "ts": 4001848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7874e0", "tid": 35568, "ts": 4002160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789d80", "tid": 35568, "ts": 4002454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7875b0", "tid": 35568, "ts": 4002748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4002921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787dd0", "tid": 35568, "ts": 4003042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4003214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7885f0", "tid": 35568, "ts": 4003336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4003508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7878f0", "tid": 35568, "ts": 4003628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4003800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789560", "tid": 35568, "ts": 4003921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4004092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788790", "tid": 35568, "ts": 4004213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4004384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787ea0", "tid": 35568, "ts": 4004505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4004678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7892f0", "tid": 35568, "ts": 4004818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787680", "tid": 35568, "ts": 4005123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789700", "tid": 35568, "ts": 4005417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789b10", "tid": 35568, "ts": 4005756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4005927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787750", "tid": 35568, "ts": 4006048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4006220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788fb0", "tid": 35568, "ts": 4006341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4006513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788a00", "tid": 35568, "ts": 4006634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4006805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788520", "tid": 35568, "ts": 4006928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787f70", "tid": 35568, "ts": 4007220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789ff0", "tid": 35568, "ts": 4007512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a260", "tid": 35568, "ts": 4007804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4007976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788040", "tid": 35568, "ts": 4008098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4008270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a0c0", "tid": 35568, "ts": 4008391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4008562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789220", "tid": 35568, "ts": 4008684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4008856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787820", "tid": 35568, "ts": 4008978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4009149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788d40", "tid": 35568, "ts": 4009271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4009442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7893c0", "tid": 35568, "ts": 4009597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4009769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788110", "tid": 35568, "ts": 4009890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788380", "tid": 35568, "ts": 4010183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a810", "tid": 35568, "ts": 4010490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789490", "tid": 35568, "ts": 4010783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4010954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7886c0", "tid": 35568, "ts": 4011076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4011247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788ad0", "tid": 35568, "ts": 4011368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4011540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7879c0", "tid": 35568, "ts": 4011662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4011833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789630", "tid": 35568, "ts": 4011954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4012126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787a90", "tid": 35568, "ts": 4012247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4012419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788860", "tid": 35568, "ts": 4012541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4012713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788ba0", "tid": 35568, "ts": 4012833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7882b0", "tid": 35568, "ts": 4013126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789cb0", "tid": 35568, "ts": 4013419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788930", "tid": 35568, "ts": 4013712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4013883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a4d0", "tid": 35568, "ts": 4014004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4014175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787b60", "tid": 35568, "ts": 4014297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4014469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789150", "tid": 35568, "ts": 4014591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4014762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787c30", "tid": 35568, "ts": 4014883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789e50", "tid": 35568, "ts": 4015177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a740", "tid": 35568, "ts": 4015470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787d00", "tid": 35568, "ts": 4015763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4015935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789be0", "tid": 35568, "ts": 4016056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4016228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7881e0", "tid": 35568, "ts": 4016348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4016520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789f20", "tid": 35568, "ts": 4016642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4016813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788450", "tid": 35568, "ts": 4016934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7897d0", "tid": 35568, "ts": 4017226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788c70", "tid": 35568, "ts": 4017519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788e10", "tid": 35568, "ts": 4017812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4017983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c788ee0", "tid": 35568, "ts": 4018104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4018276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789080", "tid": 35568, "ts": 4018397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4018569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7898a0", "tid": 35568, "ts": 4018690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4018862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789970", "tid": 35568, "ts": 4018984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4019156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c789a40", "tid": 35568, "ts": 4019276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4019449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a190", "tid": 35568, "ts": 4019569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4019741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a330", "tid": 35568, "ts": 4019867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a400", "tid": 35568, "ts": 4020161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a5a0", "tid": 35568, "ts": 4020525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a670", "tid": 35568, "ts": 4020823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4020996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c7c0", "tid": 35568, "ts": 4021118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4021290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b370", "tid": 35568, "ts": 4021455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4021627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b9f0", "tid": 35568, "ts": 4021748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4021920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ab50", "tid": 35568, "ts": 4022041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4022212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78db40", "tid": 35568, "ts": 4022334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4022504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c960", "tid": 35568, "ts": 4022626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4022798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bfa0", "tid": 35568, "ts": 4022942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ce40", "tid": 35568, "ts": 4023236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b100", "tid": 35568, "ts": 4023530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b1d0", "tid": 35568, "ts": 4023822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4023994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c070", "tid": 35568, "ts": 4024115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4024286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ac20", "tid": 35568, "ts": 4024407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4024580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b2a0", "tid": 35568, "ts": 4024701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4024919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c140", "tid": 35568, "ts": 4025040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4025212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d4c0", "tid": 35568, "ts": 4025334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4025505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c620", "tid": 35568, "ts": 4025626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4025797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c210", "tid": 35568, "ts": 4025918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bc60", "tid": 35568, "ts": 4026211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d660", "tid": 35568, "ts": 4026504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d8d0", "tid": 35568, "ts": 4026797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4026968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a9b0", "tid": 35568, "ts": 4027090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4027261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bac0", "tid": 35568, "ts": 4027383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4027554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cfe0", "tid": 35568, "ts": 4027675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4027847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c2e0", "tid": 35568, "ts": 4027968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4028138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b6b0", "tid": 35568, "ts": 4028260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4028432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d180", "tid": 35568, "ts": 4028553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4028724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bd30", "tid": 35568, "ts": 4028846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c890", "tid": 35568, "ts": 4029139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d320", "tid": 35568, "ts": 4029432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d730", "tid": 35568, "ts": 4029726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4029898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d0b0", "tid": 35568, "ts": 4030020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4030191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ca30", "tid": 35568, "ts": 4030313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4030484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cd70", "tid": 35568, "ts": 4030605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4030777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d800", "tid": 35568, "ts": 4030898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78acf0", "tid": 35568, "ts": 4031190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cbd0", "tid": 35568, "ts": 4031482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b440", "tid": 35568, "ts": 4031774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4031946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c3b0", "tid": 35568, "ts": 4032067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4032238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b780", "tid": 35568, "ts": 4032359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4032530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d250", "tid": 35568, "ts": 4032651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4032824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b510", "tid": 35568, "ts": 4032946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d3f0", "tid": 35568, "ts": 4033237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c480", "tid": 35568, "ts": 4033530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b5e0", "tid": 35568, "ts": 4033822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4033995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cb00", "tid": 35568, "ts": 4034116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4034288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c6f0", "tid": 35568, "ts": 4034410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4034582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78adc0", "tid": 35568, "ts": 4034704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4034876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d9a0", "tid": 35568, "ts": 4034997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4035169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ae90", "tid": 35568, "ts": 4035290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4035462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bed0", "tid": 35568, "ts": 4035583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4035755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cca0", "tid": 35568, "ts": 4035876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78c550", "tid": 35568, "ts": 4036239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78d590", "tid": 35568, "ts": 4036532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b850", "tid": 35568, "ts": 4036825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4036996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78be00", "tid": 35568, "ts": 4037117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4037289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78cf10", "tid": 35568, "ts": 4037410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4037581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78da70", "tid": 35568, "ts": 4037702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4037874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b920", "tid": 35568, "ts": 4037995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4038167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78dc10", "tid": 35568, "ts": 4038288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4038459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78bb90", "tid": 35568, "ts": 4038580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4038752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78aa80", "tid": 35568, "ts": 4038873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78a8e0", "tid": 35568, "ts": 4039167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78af60", "tid": 35568, "ts": 4039459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78b030", "tid": 35568, "ts": 4039753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4039926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790240", "tid": 35568, "ts": 4040047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4040219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790e70", "tid": 35568, "ts": 4040341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4040514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e290", "tid": 35568, "ts": 4040635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4040807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e770", "tid": 35568, "ts": 4040928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f880", "tid": 35568, "ts": 4041223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f6e0", "tid": 35568, "ts": 4041515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f950", "tid": 35568, "ts": 4041809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4041980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f7b0", "tid": 35568, "ts": 4042101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4042273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790310", "tid": 35568, "ts": 4042395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4042567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791010", "tid": 35568, "ts": 4042688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4042860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f060", "tid": 35568, "ts": 4042981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4043153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fc90", "tid": 35568, "ts": 4043274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4043446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ef90", "tid": 35568, "ts": 4043567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4043738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e910", "tid": 35568, "ts": 4043859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ec50", "tid": 35568, "ts": 4044153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7904b0", "tid": 35568, "ts": 4044446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78de80", "tid": 35568, "ts": 4044738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4044910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78df50", "tid": 35568, "ts": 4045030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4045201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790f40", "tid": 35568, "ts": 4045322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4045495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78dce0", "tid": 35568, "ts": 4045616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4045788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fa20", "tid": 35568, "ts": 4045909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790a60", "tid": 35568, "ts": 4046201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790da0", "tid": 35568, "ts": 4046493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78faf0", "tid": 35568, "ts": 4046786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4046957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e0f0", "tid": 35568, "ts": 4047078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4047250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fe30", "tid": 35568, "ts": 4047371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4047543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78eab0", "tid": 35568, "ts": 4047664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4047837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f3a0", "tid": 35568, "ts": 4047958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4048130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ed20", "tid": 35568, "ts": 4048251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4048423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790720", "tid": 35568, "ts": 4048544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4048716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790b30", "tid": 35568, "ts": 4048837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f470", "tid": 35568, "ts": 4049130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f540", "tid": 35568, "ts": 4049423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790cd0", "tid": 35568, "ts": 4049717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4049889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790580", "tid": 35568, "ts": 4050011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4050182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78edf0", "tid": 35568, "ts": 4050304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4050476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790990", "tid": 35568, "ts": 4050597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4050768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ddb0", "tid": 35568, "ts": 4050890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78eec0", "tid": 35568, "ts": 4051185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790170", "tid": 35568, "ts": 4051477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7903e0", "tid": 35568, "ts": 4051814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4051986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790650", "tid": 35568, "ts": 4052107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4052279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e020", "tid": 35568, "ts": 4052401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4052573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e1c0", "tid": 35568, "ts": 4052694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4052866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e360", "tid": 35568, "ts": 4052988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4053160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e840", "tid": 35568, "ts": 4053282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4053455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f130", "tid": 35568, "ts": 4053576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4053791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e430", "tid": 35568, "ts": 4053914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fbc0", "tid": 35568, "ts": 4054208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78eb80", "tid": 35568, "ts": 4054502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e9e0", "tid": 35568, "ts": 4054795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4054966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f2d0", "tid": 35568, "ts": 4055088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4055259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78fd60", "tid": 35568, "ts": 4055381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4055552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e500", "tid": 35568, "ts": 4055673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4055846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ff00", "tid": 35568, "ts": 4055968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4056139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f200", "tid": 35568, "ts": 4056260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4056432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e5d0", "tid": 35568, "ts": 4056553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4056726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78f610", "tid": 35568, "ts": 4056847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78ffd0", "tid": 35568, "ts": 4057140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c78e6a0", "tid": 35568, "ts": 4057434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7900a0", "tid": 35568, "ts": 4057726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4057897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7907f0", "tid": 35568, "ts": 4058018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4058190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7908c0", "tid": 35568, "ts": 4058310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4058482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c790c00", "tid": 35568, "ts": 4058603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4058774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791830", "tid": 35568, "ts": 4058895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4059067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792460", "tid": 35568, "ts": 4059188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4059361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792940", "tid": 35568, "ts": 4059592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4059764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4060120, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348c793bf0", "tid": 35568, "ts": 4060135, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348c793bf0", "tid": 35568, "ts": 4060168, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7921f0", "tid": 35568, "ts": 4060288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4060478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7926d0", "tid": 35568, "ts": 4060604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4060781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791420", "tid": 35568, "ts": 4060971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4061155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793f30", "tid": 35568, "ts": 4061278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4061450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791de0", "tid": 35568, "ts": 4061572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4061745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7910e0", "tid": 35568, "ts": 4061866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791350", "tid": 35568, "ts": 4062160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793d90", "tid": 35568, "ts": 4062453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7927a0", "tid": 35568, "ts": 4062745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4062917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793640", "tid": 35568, "ts": 4063038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4063211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7937e0", "tid": 35568, "ts": 4063333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4063504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793710", "tid": 35568, "ts": 4063625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4063797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792fc0", "tid": 35568, "ts": 4063917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7938b0", "tid": 35568, "ts": 4064210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791280", "tid": 35568, "ts": 4064502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791aa0", "tid": 35568, "ts": 4064794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4064966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792870", "tid": 35568, "ts": 4065088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4065260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792a10", "tid": 35568, "ts": 4065380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4065552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7911b0", "tid": 35568, "ts": 4065673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4065844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792530", "tid": 35568, "ts": 4065966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4066137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793090", "tid": 35568, "ts": 4066258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4066430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7914f0", "tid": 35568, "ts": 4066569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4066742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792ae0", "tid": 35568, "ts": 4066863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793a50", "tid": 35568, "ts": 4067156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793b20", "tid": 35568, "ts": 4067490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791900", "tid": 35568, "ts": 4067782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4067954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7915c0", "tid": 35568, "ts": 4068076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4068247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791690", "tid": 35568, "ts": 4068369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4068540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792ef0", "tid": 35568, "ts": 4068662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4068833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793980", "tid": 35568, "ts": 4068954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4069125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791d10", "tid": 35568, "ts": 4069246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4069418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791760", "tid": 35568, "ts": 4069548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4069720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7934a0", "tid": 35568, "ts": 4069841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792600", "tid": 35568, "ts": 4070133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7919d0", "tid": 35568, "ts": 4070425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7922c0", "tid": 35568, "ts": 4070717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4070888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792390", "tid": 35568, "ts": 4071008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4071180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791f80", "tid": 35568, "ts": 4071301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4071474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791eb0", "tid": 35568, "ts": 4071595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4071765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791b70", "tid": 35568, "ts": 4071885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793160", "tid": 35568, "ts": 4072178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c791c40", "tid": 35568, "ts": 4072470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792050", "tid": 35568, "ts": 4072762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4072933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793cc0", "tid": 35568, "ts": 4073054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4073225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793e60", "tid": 35568, "ts": 4073346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4073517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793230", "tid": 35568, "ts": 4073637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4073808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7933d0", "tid": 35568, "ts": 4118675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4118952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793570", "tid": 35568, "ts": 4119082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4119257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7841b0", "tid": 35568, "ts": 4119381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4119555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784b70", "tid": 35568, "ts": 4119678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4119852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7871a0", "tid": 35568, "ts": 4119975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4120200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786f30", "tid": 35568, "ts": 4120324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4120497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786d90", "tid": 35568, "ts": 4120619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4120792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7844f0", "tid": 35568, "ts": 4120915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787270", "tid": 35568, "ts": 4121208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786300", "tid": 35568, "ts": 4121503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784f80", "tid": 35568, "ts": 4121796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4121972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785a10", "tid": 35568, "ts": 4122094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4122266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786980", "tid": 35568, "ts": 4122387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4122559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784350", "tid": 35568, "ts": 4122681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4122853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786710", "tid": 35568, "ts": 4123021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4123195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786e60", "tid": 35568, "ts": 4123318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4123491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784aa0", "tid": 35568, "ts": 4123613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4123785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787000", "tid": 35568, "ts": 4123906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785ae0", "tid": 35568, "ts": 4124199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7857a0", "tid": 35568, "ts": 4124494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786b20", "tid": 35568, "ts": 4124787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4124958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785bb0", "tid": 35568, "ts": 4125080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4125252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7863d0", "tid": 35568, "ts": 4125372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4125546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7870d0", "tid": 35568, "ts": 4125667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4125839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786a50", "tid": 35568, "ts": 4125960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4126131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7868b0", "tid": 35568, "ts": 4126253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4126424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784c40", "tid": 35568, "ts": 4126546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4126718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785fc0", "tid": 35568, "ts": 4126840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785c80", "tid": 35568, "ts": 4127133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787340", "tid": 35568, "ts": 4127427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c787410", "tid": 35568, "ts": 4127718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4127890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7849d0", "tid": 35568, "ts": 4128011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4128183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785390", "tid": 35568, "ts": 4128304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4128476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7840e0", "tid": 35568, "ts": 4128597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4128769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784280", "tid": 35568, "ts": 4128889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4129061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7845c0", "tid": 35568, "ts": 4129183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4129354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784420", "tid": 35568, "ts": 4129475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4129647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7867e0", "tid": 35568, "ts": 4129769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4130178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784690", "tid": 35568, "ts": 4130314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4130488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784760", "tid": 35568, "ts": 4130614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4130799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7864a0", "tid": 35568, "ts": 4130972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4131158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786bf0", "tid": 35568, "ts": 4131280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4131453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784830", "tid": 35568, "ts": 4131577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4131794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784de0", "tid": 35568, "ts": 4131922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784d10", "tid": 35568, "ts": 4132218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786090", "tid": 35568, "ts": 4132514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784900", "tid": 35568, "ts": 4132809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4132981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7856d0", "tid": 35568, "ts": 4133103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4133274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785d50", "tid": 35568, "ts": 4133395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4133567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c784eb0", "tid": 35568, "ts": 4133689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4133861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785050", "tid": 35568, "ts": 4133982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4134155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785120", "tid": 35568, "ts": 4134277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4134450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785e20", "tid": 35568, "ts": 4134571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4134743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7851f0", "tid": 35568, "ts": 4134864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c7852c0", "tid": 35568, "ts": 4135156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785460", "tid": 35568, "ts": 4135448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785530", "tid": 35568, "ts": 4135741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4135913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785600", "tid": 35568, "ts": 4136034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4136206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785870", "tid": 35568, "ts": 4136327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4136498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785940", "tid": 35568, "ts": 4136619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4136790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c785ef0", "tid": 35568, "ts": 4136912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786160", "tid": 35568, "ts": 4137204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786230", "tid": 35568, "ts": 4137496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786570", "tid": 35568, "ts": 4137789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4137961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786cc0", "tid": 35568, "ts": 4138081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4138254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c786640", "tid": 35568, "ts": 4138374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4138546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aa870", "tid": 35568, "ts": 4138667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4138840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7aaae0", "tid": 35568, "ts": 4138961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4139134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b7a8580", "tid": 35568, "ts": 4139255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4139426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234906d9350", "tid": 35568, "ts": 4139549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4139721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482c1e2c0", "tid": 35568, "ts": 4139843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879165d0", "tid": 35568, "ts": 4140140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879159a0", "tid": 35568, "ts": 4140434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879176e0", "tid": 35568, "ts": 4140727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4140899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879177b0", "tid": 35568, "ts": 4141020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4141192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915a70", "tid": 35568, "ts": 4141313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4141485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917e30", "tid": 35568, "ts": 4141606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4141777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918580", "tid": 35568, "ts": 4141898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879166a0", "tid": 35568, "ts": 4142191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917200", "tid": 35568, "ts": 4142485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879169e0", "tid": 35568, "ts": 4142778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4142950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879172d0", "tid": 35568, "ts": 4143071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4143244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917fd0", "tid": 35568, "ts": 4143365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4143537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915c10", "tid": 35568, "ts": 4143658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4143831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916ab0", "tid": 35568, "ts": 4143953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4144124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879158d0", "tid": 35568, "ts": 4144246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4144417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879184b0", "tid": 35568, "ts": 4144538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4144710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917880", "tid": 35568, "ts": 4144831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4145003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918650", "tid": 35568, "ts": 4145123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4145295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916500", "tid": 35568, "ts": 4145454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4145695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916f90", "tid": 35568, "ts": 4145871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4146095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915590", "tid": 35568, "ts": 4146282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4146454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917130", "tid": 35568, "ts": 4146575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4146747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916c50", "tid": 35568, "ts": 4146868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916290", "tid": 35568, "ts": 4147162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915660", "tid": 35568, "ts": 4147455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918310", "tid": 35568, "ts": 4147747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4147918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917c90", "tid": 35568, "ts": 4148040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4148211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917950", "tid": 35568, "ts": 4148332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4148504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915b40", "tid": 35568, "ts": 4148627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4148798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915ce0", "tid": 35568, "ts": 4148920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917f00", "tid": 35568, "ts": 4149213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879183e0", "tid": 35568, "ts": 4149505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915db0", "tid": 35568, "ts": 4149800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4149971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915e80", "tid": 35568, "ts": 4150092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4150265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915f50", "tid": 35568, "ts": 4150386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4150558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916d20", "tid": 35568, "ts": 4150679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4150851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916020", "tid": 35568, "ts": 4150972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4151144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879160f0", "tid": 35568, "ts": 4151266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4151438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879187f0", "tid": 35568, "ts": 4151559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4151730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879173a0", "tid": 35568, "ts": 4151851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918720", "tid": 35568, "ts": 4152144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916360", "tid": 35568, "ts": 4152439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915730", "tid": 35568, "ts": 4152733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4152905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916b80", "tid": 35568, "ts": 4153026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4153197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879154c0", "tid": 35568, "ts": 4153318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4153490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917d60", "tid": 35568, "ts": 4153612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4153783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915800", "tid": 35568, "ts": 4153904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916df0", "tid": 35568, "ts": 4154197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879180a0", "tid": 35568, "ts": 4154490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879161c0", "tid": 35568, "ts": 4154783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4154955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917a20", "tid": 35568, "ts": 4155076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4155390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918170", "tid": 35568, "ts": 4155514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4155685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917470", "tid": 35568, "ts": 4155807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4155978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916430", "tid": 35568, "ts": 4156099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4156271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916770", "tid": 35568, "ts": 4156392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4156564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917060", "tid": 35568, "ts": 4156685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4156857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916840", "tid": 35568, "ts": 4156978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4157150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916910", "tid": 35568, "ts": 4157271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4157442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917540", "tid": 35568, "ts": 4157564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4157735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487916ec0", "tid": 35568, "ts": 4157856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917610", "tid": 35568, "ts": 4158149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917af0", "tid": 35568, "ts": 4158443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487917bc0", "tid": 35568, "ts": 4158738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4158910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918240", "tid": 35568, "ts": 4159031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4159203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a1f0", "tid": 35568, "ts": 4159324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4159497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919280", "tid": 35568, "ts": 4159618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4159791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918a60", "tid": 35568, "ts": 4159912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919f80", "tid": 35568, "ts": 4160204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791aef0", "tid": 35568, "ts": 4160497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791afc0", "tid": 35568, "ts": 4160790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4160962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918f40", "tid": 35568, "ts": 4161147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4161319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879191b0", "tid": 35568, "ts": 4161441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4161613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919350", "tid": 35568, "ts": 4161734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4161907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919420", "tid": 35568, "ts": 4162028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4162199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a7a0", "tid": 35568, "ts": 4162321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4162493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879188c0", "tid": 35568, "ts": 4162614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4162785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919010", "tid": 35568, "ts": 4162907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a600", "tid": 35568, "ts": 4163202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879194f0", "tid": 35568, "ts": 4163495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b710", "tid": 35568, "ts": 4163788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4163960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b090", "tid": 35568, "ts": 4164082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4164253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919900", "tid": 35568, "ts": 4164419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4164590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a390", "tid": 35568, "ts": 4164712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4164884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918990", "tid": 35568, "ts": 4165006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4165178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b160", "tid": 35568, "ts": 4165300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4165472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919eb0", "tid": 35568, "ts": 4165593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4165765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a460", "tid": 35568, "ts": 4165887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b570", "tid": 35568, "ts": 4166180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b980", "tid": 35568, "ts": 4166474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879195c0", "tid": 35568, "ts": 4166767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4166939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b230", "tid": 35568, "ts": 4167060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4167232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b640", "tid": 35568, "ts": 4167353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4167524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918cd0", "tid": 35568, "ts": 4167645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4167817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a050", "tid": 35568, "ts": 4167938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b7e0", "tid": 35568, "ts": 4168232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b3d0", "tid": 35568, "ts": 4168525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918da0", "tid": 35568, "ts": 4168826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4168997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b8b0", "tid": 35568, "ts": 4169118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4169290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919d10", "tid": 35568, "ts": 4169412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4169583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b300", "tid": 35568, "ts": 4169705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4169876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ba50", "tid": 35568, "ts": 4169997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4170168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791b4a0", "tid": 35568, "ts": 4170290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4170461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bb20", "tid": 35568, "ts": 4170582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4170754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879199d0", "tid": 35568, "ts": 4170876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bbf0", "tid": 35568, "ts": 4171170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918b30", "tid": 35568, "ts": 4171463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919de0", "tid": 35568, "ts": 4171757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4171929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879190e0", "tid": 35568, "ts": 4172107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4172280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a940", "tid": 35568, "ts": 4172402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4172574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918c00", "tid": 35568, "ts": 4172695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4172866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919aa0", "tid": 35568, "ts": 4172987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4173160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487918e70", "tid": 35568, "ts": 4173281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4173452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919690", "tid": 35568, "ts": 4173573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4173744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919760", "tid": 35568, "ts": 4173865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a120", "tid": 35568, "ts": 4174158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919830", "tid": 35568, "ts": 4174449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919b70", "tid": 35568, "ts": 4174743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4174915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487919c40", "tid": 35568, "ts": 4175036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4175209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a530", "tid": 35568, "ts": 4175330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4175502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a2c0", "tid": 35568, "ts": 4175624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4175796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a6d0", "tid": 35568, "ts": 4175918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4176089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791a870", "tid": 35568, "ts": 4176211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4176383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791aa10", "tid": 35568, "ts": 4176505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4176707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791aae0", "tid": 35568, "ts": 4176884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791abb0", "tid": 35568, "ts": 4177177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ac80", "tid": 35568, "ts": 4177470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ad50", "tid": 35568, "ts": 4177763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4177934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ae20", "tid": 35568, "ts": 4178055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4178228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e700", "tid": 35568, "ts": 4178350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4178521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c9c0", "tid": 35568, "ts": 4178643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4178814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e2f0", "tid": 35568, "ts": 4178936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c340", "tid": 35568, "ts": 4179230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ca90", "tid": 35568, "ts": 4179523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791de10", "tid": 35568, "ts": 4179815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4179987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c680", "tid": 35568, "ts": 4180108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4180280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791eb10", "tid": 35568, "ts": 4180401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4180572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cb60", "tid": 35568, "ts": 4180693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4180866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dee0", "tid": 35568, "ts": 4180987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4181163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d110", "tid": 35568, "ts": 4181286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4181460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791da00", "tid": 35568, "ts": 4181582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4181757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c750", "tid": 35568, "ts": 4181883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e490", "tid": 35568, "ts": 4182176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d930", "tid": 35568, "ts": 4182469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cd00", "tid": 35568, "ts": 4182762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4182933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791be60", "tid": 35568, "ts": 4183055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4183226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dad0", "tid": 35568, "ts": 4183349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4183520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d1e0", "tid": 35568, "ts": 4183642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4183814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dba0", "tid": 35568, "ts": 4183934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dfb0", "tid": 35568, "ts": 4184228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c8f0", "tid": 35568, "ts": 4184520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dc70", "tid": 35568, "ts": 4184813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4184984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c1a0", "tid": 35568, "ts": 4185106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4185277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c0d0", "tid": 35568, "ts": 4185400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4185572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cc30", "tid": 35568, "ts": 4185694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4185865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e080", "tid": 35568, "ts": 4185986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4186157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e630", "tid": 35568, "ts": 4186279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4186451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ebe0", "tid": 35568, "ts": 4186572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4186743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d040", "tid": 35568, "ts": 4186864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c5b0", "tid": 35568, "ts": 4187162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791dd40", "tid": 35568, "ts": 4187454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bd90", "tid": 35568, "ts": 4187748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4187919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cdd0", "tid": 35568, "ts": 4188040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4188211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e560", "tid": 35568, "ts": 4188333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4188504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ea40", "tid": 35568, "ts": 4188626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4188797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e3c0", "tid": 35568, "ts": 4188919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4189091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ed80", "tid": 35568, "ts": 4189212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4189390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c270", "tid": 35568, "ts": 4189513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4189684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e7d0", "tid": 35568, "ts": 4189805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e150", "tid": 35568, "ts": 4190140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e220", "tid": 35568, "ts": 4190433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d2b0", "tid": 35568, "ts": 4190725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4190896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cea0", "tid": 35568, "ts": 4191078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4191250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e8a0", "tid": 35568, "ts": 4191371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4191543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791e970", "tid": 35568, "ts": 4191664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4191835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ecb0", "tid": 35568, "ts": 4191956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4192127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d380", "tid": 35568, "ts": 4192248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4192588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ee50", "tid": 35568, "ts": 4192768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4193033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d450", "tid": 35568, "ts": 4193176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4193481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ef20", "tid": 35568, "ts": 4193603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4193774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bf30", "tid": 35568, "ts": 4193895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d520", "tid": 35568, "ts": 4194187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791eff0", "tid": 35568, "ts": 4194480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791bcc0", "tid": 35568, "ts": 4194796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4194968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c410", "tid": 35568, "ts": 4195089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4195261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c000", "tid": 35568, "ts": 4195382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4195554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c4e0", "tid": 35568, "ts": 4195676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4195848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791c820", "tid": 35568, "ts": 4195969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4196140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791cf70", "tid": 35568, "ts": 4196262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4196433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d5f0", "tid": 35568, "ts": 4196554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4196725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d6c0", "tid": 35568, "ts": 4196846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d790", "tid": 35568, "ts": 4197139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791d860", "tid": 35568, "ts": 4197476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920b90", "tid": 35568, "ts": 4197769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4197940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920ac0", "tid": 35568, "ts": 4198062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4198232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879209f0", "tid": 35568, "ts": 4198353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4198523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921d70", "tid": 35568, "ts": 4198645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4198817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920440", "tid": 35568, "ts": 4198938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921f10", "tid": 35568, "ts": 4199232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879206b0", "tid": 35568, "ts": 4199524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879213b0", "tid": 35568, "ts": 4199817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4199987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f810", "tid": 35568, "ts": 4200109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4200281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879201d0", "tid": 35568, "ts": 4200403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4200573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920c60", "tid": 35568, "ts": 4200695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4200866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f190", "tid": 35568, "ts": 4200987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4201160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920d30", "tid": 35568, "ts": 4201280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4201453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f400", "tid": 35568, "ts": 4201573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4201744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fc20", "tid": 35568, "ts": 4201866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921890", "tid": 35568, "ts": 4202159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921b00", "tid": 35568, "ts": 4202452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920370", "tid": 35568, "ts": 4202743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4202915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f8e0", "tid": 35568, "ts": 4203036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4203207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921bd0", "tid": 35568, "ts": 4203328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4203500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921ca0", "tid": 35568, "ts": 4203621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4203791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879216f0", "tid": 35568, "ts": 4203913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921480", "tid": 35568, "ts": 4204205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f260", "tid": 35568, "ts": 4204498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920e00", "tid": 35568, "ts": 4204790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4204961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879202a0", "tid": 35568, "ts": 4205082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4205253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f330", "tid": 35568, "ts": 4205375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4205546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f670", "tid": 35568, "ts": 4205667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4205838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920510", "tid": 35568, "ts": 4205959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4206131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f4d0", "tid": 35568, "ts": 4206251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4206423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f9b0", "tid": 35568, "ts": 4206545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4206716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920850", "tid": 35568, "ts": 4206837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f5a0", "tid": 35568, "ts": 4207131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f740", "tid": 35568, "ts": 4207424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921550", "tid": 35568, "ts": 4207718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4207889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920030", "tid": 35568, "ts": 4208059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4208231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920ed0", "tid": 35568, "ts": 4208353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4208524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791f0c0", "tid": 35568, "ts": 4208645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4208817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fa80", "tid": 35568, "ts": 4208938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921e40", "tid": 35568, "ts": 4209231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920fa0", "tid": 35568, "ts": 4209524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921620", "tid": 35568, "ts": 4209818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4209989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fb50", "tid": 35568, "ts": 4210110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4210282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879212e0", "tid": 35568, "ts": 4210403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4210575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fcf0", "tid": 35568, "ts": 4210696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4210869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879205e0", "tid": 35568, "ts": 4210991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4211163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879217c0", "tid": 35568, "ts": 4211284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4211456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fdc0", "tid": 35568, "ts": 4211577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4211748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791fe90", "tid": 35568, "ts": 4211871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920780", "tid": 35568, "ts": 4212164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921070", "tid": 35568, "ts": 4212457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920920", "tid": 35568, "ts": 4212749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4212920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348791ff60", "tid": 35568, "ts": 4213042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4213213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487920100", "tid": 35568, "ts": 4213334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4213505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921140", "tid": 35568, "ts": 4213627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4213797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921210", "tid": 35568, "ts": 4213919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921960", "tid": 35568, "ts": 4214211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487921a30", "tid": 35568, "ts": 4214505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914d70", "tid": 35568, "ts": 4214797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4214968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912190", "tid": 35568, "ts": 4215089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4215260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913030", "tid": 35568, "ts": 4215382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4215554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914ca0", "tid": 35568, "ts": 4215686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4215858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912f60", "tid": 35568, "ts": 4215980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4216152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914890", "tid": 35568, "ts": 4216274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4216445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879128e0", "tid": 35568, "ts": 4216567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4216738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914a30", "tid": 35568, "ts": 4216860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912b50", "tid": 35568, "ts": 4217154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879153f0", "tid": 35568, "ts": 4217447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912dc0", "tid": 35568, "ts": 4217740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4217912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914210", "tid": 35568, "ts": 4218032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4218205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879129b0", "tid": 35568, "ts": 4218326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4218497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879120c0", "tid": 35568, "ts": 4218619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4218792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912260", "tid": 35568, "ts": 4218914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879143b0", "tid": 35568, "ts": 4219207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912a80", "tid": 35568, "ts": 4219500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913100", "tid": 35568, "ts": 4219793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4219963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913ac0", "tid": 35568, "ts": 4220084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4220257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912330", "tid": 35568, "ts": 4220377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4220548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915180", "tid": 35568, "ts": 4220670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4220840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913920", "tid": 35568, "ts": 4220962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4221134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912400", "tid": 35568, "ts": 4221256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4221427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913b90", "tid": 35568, "ts": 4221549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4221721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913440", "tid": 35568, "ts": 4221842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913510", "tid": 35568, "ts": 4222136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879131d0", "tid": 35568, "ts": 4222429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913c60", "tid": 35568, "ts": 4222722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4222894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914b00", "tid": 35568, "ts": 4223016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4223187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912c20", "tid": 35568, "ts": 4223309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4223480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879132a0", "tid": 35568, "ts": 4223644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4223815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914480", "tid": 35568, "ts": 4223937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4224108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913e00", "tid": 35568, "ts": 4224230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4224401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914550", "tid": 35568, "ts": 4224522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4224694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879142e0", "tid": 35568, "ts": 4224840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914620", "tid": 35568, "ts": 4225141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879124d0", "tid": 35568, "ts": 4225434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879125a0", "tid": 35568, "ts": 4225727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4225899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912670", "tid": 35568, "ts": 4226020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4226191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879146f0", "tid": 35568, "ts": 4226312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4226484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879135e0", "tid": 35568, "ts": 4226606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4226778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912740", "tid": 35568, "ts": 4226899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912810", "tid": 35568, "ts": 4227191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912cf0", "tid": 35568, "ts": 4227484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487912e90", "tid": 35568, "ts": 4227776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4227947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913370", "tid": 35568, "ts": 4228068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4228239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914e40", "tid": 35568, "ts": 4228361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4228533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913d30", "tid": 35568, "ts": 4228655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4228826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879136b0", "tid": 35568, "ts": 4228948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4229119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913780", "tid": 35568, "ts": 4229241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4229413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914bd0", "tid": 35568, "ts": 4229578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4229749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879147c0", "tid": 35568, "ts": 4229872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913850", "tid": 35568, "ts": 4230164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879139f0", "tid": 35568, "ts": 4230456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913fa0", "tid": 35568, "ts": 4230749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4230920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487913ed0", "tid": 35568, "ts": 4231041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4231212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914070", "tid": 35568, "ts": 4231334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4231506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914140", "tid": 35568, "ts": 4231627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4231799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914f10", "tid": 35568, "ts": 4231921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914960", "tid": 35568, "ts": 4232213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487914fe0", "tid": 35568, "ts": 4232505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234879150b0", "tid": 35568, "ts": 4232797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4232969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915250", "tid": 35568, "ts": 4233091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4233261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23487915320", "tid": 35568, "ts": 4233382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4233554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338310", "tid": 35568, "ts": 4233692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4233864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335ce0", "tid": 35568, "ts": 4233986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4234158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335db0", "tid": 35568, "ts": 4234279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4234451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336360", "tid": 35568, "ts": 4234573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4234744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337c90", "tid": 35568, "ts": 4234866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336ab0", "tid": 35568, "ts": 4235159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338170", "tid": 35568, "ts": 4235452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335590", "tid": 35568, "ts": 4235745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4235916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03383e0", "tid": 35568, "ts": 4236037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4236207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336770", "tid": 35568, "ts": 4236329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4236501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03366a0", "tid": 35568, "ts": 4236623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4236795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337af0", "tid": 35568, "ts": 4236917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338240", "tid": 35568, "ts": 4237209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335800", "tid": 35568, "ts": 4237503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335660", "tid": 35568, "ts": 4237797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4237969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335730", "tid": 35568, "ts": 4238091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4238262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337d60", "tid": 35568, "ts": 4238384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4238556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336500", "tid": 35568, "ts": 4238678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4238848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335a70", "tid": 35568, "ts": 4238971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4239142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337e30", "tid": 35568, "ts": 4239335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4239508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03358d0", "tid": 35568, "ts": 4239688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4239859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337540", "tid": 35568, "ts": 4239981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4240152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337f00", "tid": 35568, "ts": 4240275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4240446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03365d0", "tid": 35568, "ts": 4240567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4240738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337610", "tid": 35568, "ts": 4240861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337fd0", "tid": 35568, "ts": 4241156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337bc0", "tid": 35568, "ts": 4241448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03384b0", "tid": 35568, "ts": 4241742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4241913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336840", "tid": 35568, "ts": 4242034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4242204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338580", "tid": 35568, "ts": 4242326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4242498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337a20", "tid": 35568, "ts": 4242620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4242792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03380a0", "tid": 35568, "ts": 4242914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03359a0", "tid": 35568, "ts": 4243208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335c10", "tid": 35568, "ts": 4243499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338650", "tid": 35568, "ts": 4243793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4243964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335b40", "tid": 35568, "ts": 4244086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4244257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336b80", "tid": 35568, "ts": 4244379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4244552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335e80", "tid": 35568, "ts": 4244673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4244844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336910", "tid": 35568, "ts": 4244966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4245137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337130", "tid": 35568, "ts": 4245259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4245429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03369e0", "tid": 35568, "ts": 4245550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4245721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336c50", "tid": 35568, "ts": 4245843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338720", "tid": 35568, "ts": 4246135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03372d0", "tid": 35568, "ts": 4246429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335f50", "tid": 35568, "ts": 4246722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4246893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336ec0", "tid": 35568, "ts": 4247015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4247188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336d20", "tid": 35568, "ts": 4247310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4247481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336df0", "tid": 35568, "ts": 4247602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4247774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337200", "tid": 35568, "ts": 4247895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03373a0", "tid": 35568, "ts": 4248187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337470", "tid": 35568, "ts": 4248481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336020", "tid": 35568, "ts": 4248774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4248946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03376e0", "tid": 35568, "ts": 4249068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4249239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03387f0", "tid": 35568, "ts": 4249360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4249532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336f90", "tid": 35568, "ts": 4249654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4249826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03377b0", "tid": 35568, "ts": 4249947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337880", "tid": 35568, "ts": 4250240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337950", "tid": 35568, "ts": 4250534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0337060", "tid": 35568, "ts": 4250826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4250997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03354c0", "tid": 35568, "ts": 4251118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4251291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03360f0", "tid": 35568, "ts": 4251412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4251584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03361c0", "tid": 35568, "ts": 4251705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4251876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336290", "tid": 35568, "ts": 4251998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4252169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0336430", "tid": 35568, "ts": 4252290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4252461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339aa0", "tid": 35568, "ts": 4252583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4252755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b160", "tid": 35568, "ts": 4252876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b300", "tid": 35568, "ts": 4253169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339010", "tid": 35568, "ts": 4253462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b710", "tid": 35568, "ts": 4253756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4253928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338e70", "tid": 35568, "ts": 4254050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4254221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03390e0", "tid": 35568, "ts": 4254343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4254514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339c40", "tid": 35568, "ts": 4254636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4254837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03391b0", "tid": 35568, "ts": 4254988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4255160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339f80", "tid": 35568, "ts": 4255282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4255452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b4a0", "tid": 35568, "ts": 4255574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4255745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b090", "tid": 35568, "ts": 4255866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a120", "tid": 35568, "ts": 4256158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339420", "tid": 35568, "ts": 4256451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033afc0", "tid": 35568, "ts": 4256745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4256950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a1f0", "tid": 35568, "ts": 4257074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4257249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b230", "tid": 35568, "ts": 4257386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4257563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483a1e2d0", "tid": 35568, "ts": 4257631, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4257947, "pid": 35104, "args": { "Heap": { "SizeInBytes": 67108864, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a033bb20", "tid": 35568, "ts": 4257962, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a033bb20", "tid": 35568, "ts": 4257993, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 67108864, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339690", "tid": 35568, "ts": 4258111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4258298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338da0", "tid": 35568, "ts": 4258422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4258596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033aef0", "tid": 35568, "ts": 4258719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4258904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a050", "tid": 35568, "ts": 4259026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4259198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338f40", "tid": 35568, "ts": 4259320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4259491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338a60", "tid": 35568, "ts": 4259614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4259785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ad50", "tid": 35568, "ts": 4259907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4260123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b7e0", "tid": 35568, "ts": 4260246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4260420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a460", "tid": 35568, "ts": 4260542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4260713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339280", "tid": 35568, "ts": 4260835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339350", "tid": 35568, "ts": 4261129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b980", "tid": 35568, "ts": 4261422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b3d0", "tid": 35568, "ts": 4261715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4261888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339b70", "tid": 35568, "ts": 4262010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4262182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b8b0", "tid": 35568, "ts": 4262347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4262519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338b30", "tid": 35568, "ts": 4262640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4262812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a530", "tid": 35568, "ts": 4262933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b570", "tid": 35568, "ts": 4263226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03394f0", "tid": 35568, "ts": 4263518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a600", "tid": 35568, "ts": 4263810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4263982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ba50", "tid": 35568, "ts": 4264102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4264274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033b640", "tid": 35568, "ts": 4264395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4264565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bbf0", "tid": 35568, "ts": 4264686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4264857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ae20", "tid": 35568, "ts": 4264977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4265150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03388c0", "tid": 35568, "ts": 4265271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4265443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338990", "tid": 35568, "ts": 4265564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4265736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a870", "tid": 35568, "ts": 4265857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338c00", "tid": 35568, "ts": 4266151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339eb0", "tid": 35568, "ts": 4266444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03395c0", "tid": 35568, "ts": 4266737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4266909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03399d0", "tid": 35568, "ts": 4267029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4267201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339760", "tid": 35568, "ts": 4267322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4267494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a6d0", "tid": 35568, "ts": 4267615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4267788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a2c0", "tid": 35568, "ts": 4267911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339d10", "tid": 35568, "ts": 4268203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0338cd0", "tid": 35568, "ts": 4268495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339de0", "tid": 35568, "ts": 4268788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4268960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339830", "tid": 35568, "ts": 4269080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4269252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a7a0", "tid": 35568, "ts": 4269372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4269543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0339900", "tid": 35568, "ts": 4269677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4269849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a940", "tid": 35568, "ts": 4269971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4270142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033aa10", "tid": 35568, "ts": 4270264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4270504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033aae0", "tid": 35568, "ts": 4270626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4270798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033abb0", "tid": 35568, "ts": 4270918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ac80", "tid": 35568, "ts": 4271211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c5b0", "tid": 35568, "ts": 4271505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ed80", "tid": 35568, "ts": 4271797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4271968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c680", "tid": 35568, "ts": 4272089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4272261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033eb10", "tid": 35568, "ts": 4272381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4272553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cf70", "tid": 35568, "ts": 4272674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4272845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ef20", "tid": 35568, "ts": 4272966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4273137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d380", "tid": 35568, "ts": 4273258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4273430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033eff0", "tid": 35568, "ts": 4273551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4273723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e7d0", "tid": 35568, "ts": 4273845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ee50", "tid": 35568, "ts": 4274137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d2b0", "tid": 35568, "ts": 4274427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d790", "tid": 35568, "ts": 4274720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4274891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bcc0", "tid": 35568, "ts": 4275012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4275183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ebe0", "tid": 35568, "ts": 4275304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4275475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e8a0", "tid": 35568, "ts": 4275596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4275767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e490", "tid": 35568, "ts": 4275888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4276059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e970", "tid": 35568, "ts": 4276244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4276416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d930", "tid": 35568, "ts": 4276537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4276708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c000", "tid": 35568, "ts": 4276830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ea40", "tid": 35568, "ts": 4277124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d860", "tid": 35568, "ts": 4277417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033da00", "tid": 35568, "ts": 4277710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4277882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d6c0", "tid": 35568, "ts": 4278002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4278174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c410", "tid": 35568, "ts": 4278296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4278467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dba0", "tid": 35568, "ts": 4278588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4278760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bd90", "tid": 35568, "ts": 4278880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ecb0", "tid": 35568, "ts": 4279173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dfb0", "tid": 35568, "ts": 4279507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033be60", "tid": 35568, "ts": 4279802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4279973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e2f0", "tid": 35568, "ts": 4280094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4280265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dad0", "tid": 35568, "ts": 4280386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4280558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dc70", "tid": 35568, "ts": 4280678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4280850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d110", "tid": 35568, "ts": 4280971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4281142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d450", "tid": 35568, "ts": 4281263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4281434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c1a0", "tid": 35568, "ts": 4281555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4281727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dd40", "tid": 35568, "ts": 4281848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cdd0", "tid": 35568, "ts": 4282144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e630", "tid": 35568, "ts": 4282438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033bf30", "tid": 35568, "ts": 4282731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4282902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ca90", "tid": 35568, "ts": 4283023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4283194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c0d0", "tid": 35568, "ts": 4283315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4283487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c270", "tid": 35568, "ts": 4283608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4283779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c340", "tid": 35568, "ts": 4283900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c820", "tid": 35568, "ts": 4284193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c750", "tid": 35568, "ts": 4284487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c4e0", "tid": 35568, "ts": 4284780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4284951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c8f0", "tid": 35568, "ts": 4285072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4285244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033c9c0", "tid": 35568, "ts": 4285365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4285536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033de10", "tid": 35568, "ts": 4285657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4285830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d1e0", "tid": 35568, "ts": 4285951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4286171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d520", "tid": 35568, "ts": 4286301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4286479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cc30", "tid": 35568, "ts": 4286605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4286782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cb60", "tid": 35568, "ts": 4286907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4287111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e560", "tid": 35568, "ts": 4287237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4287414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cd00", "tid": 35568, "ts": 4287575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4287753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033cea0", "tid": 35568, "ts": 4287877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d040", "tid": 35568, "ts": 4288206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033dee0", "tid": 35568, "ts": 4288509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033d5f0", "tid": 35568, "ts": 4288814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4288991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e080", "tid": 35568, "ts": 4289116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4289292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e150", "tid": 35568, "ts": 4289418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4289594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e220", "tid": 35568, "ts": 4289719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4289897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e3c0", "tid": 35568, "ts": 4290023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4290227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033e700", "tid": 35568, "ts": 4290352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4290530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fcf0", "tid": 35568, "ts": 4290655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4290832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03416f0", "tid": 35568, "ts": 4290984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4291163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f740", "tid": 35568, "ts": 4291288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4291464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340440", "tid": 35568, "ts": 4291589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4291767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f8e0", "tid": 35568, "ts": 4291892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fe90", "tid": 35568, "ts": 4292196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f400", "tid": 35568, "ts": 4292500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f810", "tid": 35568, "ts": 4292802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4292979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340510", "tid": 35568, "ts": 4293104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4293281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f9b0", "tid": 35568, "ts": 4293406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4293583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fa80", "tid": 35568, "ts": 4293708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4293884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340850", "tid": 35568, "ts": 4294020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4294220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341d70", "tid": 35568, "ts": 4294342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4294552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f670", "tid": 35568, "ts": 4294687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4294859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340030", "tid": 35568, "ts": 4294980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4295198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f5a0", "tid": 35568, "ts": 4295322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4295495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340ac0", "tid": 35568, "ts": 4295617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4295788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341210", "tid": 35568, "ts": 4295909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340d30", "tid": 35568, "ts": 4296203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fb50", "tid": 35568, "ts": 4296497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f0c0", "tid": 35568, "ts": 4296792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4296963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341890", "tid": 35568, "ts": 4297085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4297257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341070", "tid": 35568, "ts": 4297378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4297549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fc20", "tid": 35568, "ts": 4297671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4297841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340e00", "tid": 35568, "ts": 4297963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4298133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03409f0", "tid": 35568, "ts": 4298255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4298428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340100", "tid": 35568, "ts": 4298549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4298721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340b90", "tid": 35568, "ts": 4298842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340920", "tid": 35568, "ts": 4299135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340fa0", "tid": 35568, "ts": 4299429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03401d0", "tid": 35568, "ts": 4299721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4299893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03402a0", "tid": 35568, "ts": 4300014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4300185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f190", "tid": 35568, "ts": 4300306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4300478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341140", "tid": 35568, "ts": 4300600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4300772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033fdc0", "tid": 35568, "ts": 4300926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4301099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341b00", "tid": 35568, "ts": 4301220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4301393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341620", "tid": 35568, "ts": 4301514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4301748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033ff60", "tid": 35568, "ts": 4301914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4302102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341e40", "tid": 35568, "ts": 4302238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4302490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340370", "tid": 35568, "ts": 4302612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4302783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341f10", "tid": 35568, "ts": 4302904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03412e0", "tid": 35568, "ts": 4303196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03405e0", "tid": 35568, "ts": 4303489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03413b0", "tid": 35568, "ts": 4303780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4303952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03406b0", "tid": 35568, "ts": 4304073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4304244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340780", "tid": 35568, "ts": 4304366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4304537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340c60", "tid": 35568, "ts": 4304658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4304830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0340ed0", "tid": 35568, "ts": 4304952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4305124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f260", "tid": 35568, "ts": 4305245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4305416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341480", "tid": 35568, "ts": 4305538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4305712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341550", "tid": 35568, "ts": 4305832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03417c0", "tid": 35568, "ts": 4306125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341a30", "tid": 35568, "ts": 4306417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341960", "tid": 35568, "ts": 4306710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4306882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341bd0", "tid": 35568, "ts": 4307004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4307177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0341ca0", "tid": 35568, "ts": 4307355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4307528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f330", "tid": 35568, "ts": 4307650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4307822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033f4d0", "tid": 35568, "ts": 4307943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333e00", "tid": 35568, "ts": 4308236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03331d0", "tid": 35568, "ts": 4308529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333370", "tid": 35568, "ts": 4308822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4308993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03329b0", "tid": 35568, "ts": 4309115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4309285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333440", "tid": 35568, "ts": 4309406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4309578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332190", "tid": 35568, "ts": 4309699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4309870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03325a0", "tid": 35568, "ts": 4309992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4310163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03346f0", "tid": 35568, "ts": 4310284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4310455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334bd0", "tid": 35568, "ts": 4310576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4310747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335180", "tid": 35568, "ts": 4310869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334550", "tid": 35568, "ts": 4311162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333b90", "tid": 35568, "ts": 4311455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334ca0", "tid": 35568, "ts": 4311747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4311919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333c60", "tid": 35568, "ts": 4312040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4312210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334d70", "tid": 35568, "ts": 4312331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4312502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332c20", "tid": 35568, "ts": 4312623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4312794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332740", "tid": 35568, "ts": 4312915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334890", "tid": 35568, "ts": 4313207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332330", "tid": 35568, "ts": 4313500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335250", "tid": 35568, "ts": 4313792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4313963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334070", "tid": 35568, "ts": 4314083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4314256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332a80", "tid": 35568, "ts": 4314377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4314550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334f10", "tid": 35568, "ts": 4314671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4314843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332e90", "tid": 35568, "ts": 4314963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4315135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0335320", "tid": 35568, "ts": 4315255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4315427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332670", "tid": 35568, "ts": 4315547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4315719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334e40", "tid": 35568, "ts": 4315840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333d30", "tid": 35568, "ts": 4316132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333ed0", "tid": 35568, "ts": 4316433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332810", "tid": 35568, "ts": 4316727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4316898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333fa0", "tid": 35568, "ts": 4317020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4317190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03347c0", "tid": 35568, "ts": 4317359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4317555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334210", "tid": 35568, "ts": 4317677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4317849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334140", "tid": 35568, "ts": 4317970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4318142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333ac0", "tid": 35568, "ts": 4318264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4318435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334480", "tid": 35568, "ts": 4318556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4318728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332cf0", "tid": 35568, "ts": 4318850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334620", "tid": 35568, "ts": 4319143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333510", "tid": 35568, "ts": 4319436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332400", "tid": 35568, "ts": 4319729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4319901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332dc0", "tid": 35568, "ts": 4320021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4320193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03342e0", "tid": 35568, "ts": 4320315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4320486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03328e0", "tid": 35568, "ts": 4320607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4320779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332f60", "tid": 35568, "ts": 4320900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03335e0", "tid": 35568, "ts": 4321193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03336b0", "tid": 35568, "ts": 4321486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334fe0", "tid": 35568, "ts": 4321778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4321951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334960", "tid": 35568, "ts": 4322071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4322243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03350b0", "tid": 35568, "ts": 4322365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4322537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332b50", "tid": 35568, "ts": 4322659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4322830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0332260", "tid": 35568, "ts": 4322951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4323123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03343b0", "tid": 35568, "ts": 4323244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4323416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333780", "tid": 35568, "ts": 4323538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4323710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03324d0", "tid": 35568, "ts": 4323831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333850", "tid": 35568, "ts": 4324124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334a30", "tid": 35568, "ts": 4324446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03353f0", "tid": 35568, "ts": 4324738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4324911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333920", "tid": 35568, "ts": 4325032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4325205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03320c0", "tid": 35568, "ts": 4325326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4325497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333030", "tid": 35568, "ts": 4325619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4325791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03339f0", "tid": 35568, "ts": 4325913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a03332a0", "tid": 35568, "ts": 4326207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0334b00", "tid": 35568, "ts": 4326501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0333100", "tid": 35568, "ts": 4326793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4326965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2a40", "tid": 35568, "ts": 4327106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4327280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3e90", "tid": 35568, "ts": 4327401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4327573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1110", "tid": 35568, "ts": 4327737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4327909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1860", "tid": 35568, "ts": 4328032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4328203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a22f0", "tid": 35568, "ts": 4328325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4328497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1790", "tid": 35568, "ts": 4328618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4328790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2f20", "tid": 35568, "ts": 4328911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4329082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3a80", "tid": 35568, "ts": 4329204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4329376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a11e0", "tid": 35568, "ts": 4329497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4329669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3b50", "tid": 35568, "ts": 4329791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1930", "tid": 35568, "ts": 4330125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1a00", "tid": 35568, "ts": 4330418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a12b0", "tid": 35568, "ts": 4330711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4330883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3670", "tid": 35568, "ts": 4331005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4331176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4100", "tid": 35568, "ts": 4331297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4331468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3190", "tid": 35568, "ts": 4331589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4331760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3c20", "tid": 35568, "ts": 4331882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4332054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3260", "tid": 35568, "ts": 4332176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4332347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1ad0", "tid": 35568, "ts": 4332468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4332641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2be0", "tid": 35568, "ts": 4332762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a41d0", "tid": 35568, "ts": 4333130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2b10", "tid": 35568, "ts": 4333424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3f60", "tid": 35568, "ts": 4333718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4333890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2cb0", "tid": 35568, "ts": 4334012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4334184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3740", "tid": 35568, "ts": 4334305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4334478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2150", "tid": 35568, "ts": 4334599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4334771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1ba0", "tid": 35568, "ts": 4334892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1c70", "tid": 35568, "ts": 4335185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a38e0", "tid": 35568, "ts": 4335479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2d80", "tid": 35568, "ts": 4335770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4335944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2220", "tid": 35568, "ts": 4336065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4336236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a23c0", "tid": 35568, "ts": 4336359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4336531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1380", "tid": 35568, "ts": 4336653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4336825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a42a0", "tid": 35568, "ts": 4336946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3330", "tid": 35568, "ts": 4337240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3810", "tid": 35568, "ts": 4337532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4030", "tid": 35568, "ts": 4337826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4337997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a27d0", "tid": 35568, "ts": 4338120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4338291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1d40", "tid": 35568, "ts": 4338413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4338585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4370", "tid": 35568, "ts": 4338706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4338877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3400", "tid": 35568, "ts": 4338998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4339171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1450", "tid": 35568, "ts": 4339292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4339463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2e50", "tid": 35568, "ts": 4339584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4339756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1520", "tid": 35568, "ts": 4339877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1e10", "tid": 35568, "ts": 4340171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a34d0", "tid": 35568, "ts": 4340464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a35a0", "tid": 35568, "ts": 4340758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4340930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a15f0", "tid": 35568, "ts": 4341051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4341222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a39b0", "tid": 35568, "ts": 4341344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4341516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1ee0", "tid": 35568, "ts": 4341637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4341809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3cf0", "tid": 35568, "ts": 4341930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1fb0", "tid": 35568, "ts": 4342223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a3dc0", "tid": 35568, "ts": 4342516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2080", "tid": 35568, "ts": 4342810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4342981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2490", "tid": 35568, "ts": 4343103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4343274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2560", "tid": 35568, "ts": 4343396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4343568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a16c0", "tid": 35568, "ts": 4343689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4343861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2630", "tid": 35568, "ts": 4343982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4344154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2700", "tid": 35568, "ts": 4344275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4344447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a1040", "tid": 35568, "ts": 4344568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4344740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a28a0", "tid": 35568, "ts": 4344862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2970", "tid": 35568, "ts": 4345154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a2ff0", "tid": 35568, "ts": 4345447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a30c0", "tid": 35568, "ts": 4345741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4345912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5b00", "tid": 35568, "ts": 4346033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4346205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4510", "tid": 35568, "ts": 4346326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4346498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5d70", "tid": 35568, "ts": 4346619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4346791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6590", "tid": 35568, "ts": 4346912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7290", "tid": 35568, "ts": 4347206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6f50", "tid": 35568, "ts": 4347499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4ed0", "tid": 35568, "ts": 4347792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4347964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4c60", "tid": 35568, "ts": 4348085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4348256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7500", "tid": 35568, "ts": 4348379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4348594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a69a0", "tid": 35568, "ts": 4348717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4348889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a76a0", "tid": 35568, "ts": 4349011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4349182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7360", "tid": 35568, "ts": 4349304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4349476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a52e0", "tid": 35568, "ts": 4349598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4349769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6660", "tid": 35568, "ts": 4349890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4920", "tid": 35568, "ts": 4350181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4fa0", "tid": 35568, "ts": 4350474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5890", "tid": 35568, "ts": 4350766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4350939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a49f0", "tid": 35568, "ts": 4351061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4351233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a60b0", "tid": 35568, "ts": 4351354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4351525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a45e0", "tid": 35568, "ts": 4351646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4351818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6e80", "tid": 35568, "ts": 4351939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4b90", "tid": 35568, "ts": 4352234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4ac0", "tid": 35568, "ts": 4352527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a75d0", "tid": 35568, "ts": 4352821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4352994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a64c0", "tid": 35568, "ts": 4353115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4353288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a57c0", "tid": 35568, "ts": 4353410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4353582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4d30", "tid": 35568, "ts": 4353704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4353876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a46b0", "tid": 35568, "ts": 4353997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4354169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a53b0", "tid": 35568, "ts": 4354290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4354461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7020", "tid": 35568, "ts": 4354582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4354753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4780", "tid": 35568, "ts": 4354874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6db0", "tid": 35568, "ts": 4355165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4440", "tid": 35568, "ts": 4355460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4e00", "tid": 35568, "ts": 4355753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4355926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7770", "tid": 35568, "ts": 4356047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4356219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5e40", "tid": 35568, "ts": 4356340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4356512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6730", "tid": 35568, "ts": 4356633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4356806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7430", "tid": 35568, "ts": 4356927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a4850", "tid": 35568, "ts": 4357220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5070", "tid": 35568, "ts": 4357512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5140", "tid": 35568, "ts": 4357804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4357976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5480", "tid": 35568, "ts": 4358096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4358268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5210", "tid": 35568, "ts": 4358389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4358561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5550", "tid": 35568, "ts": 4358683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4358854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5620", "tid": 35568, "ts": 4358976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4359147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6320", "tid": 35568, "ts": 4359268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4359438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a56f0", "tid": 35568, "ts": 4359560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4359731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5960", "tid": 35568, "ts": 4359853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5a30", "tid": 35568, "ts": 4360189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5bd0", "tid": 35568, "ts": 4360482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6800", "tid": 35568, "ts": 4360776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4360948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5ca0", "tid": 35568, "ts": 4361069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4361240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5f10", "tid": 35568, "ts": 4361422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4361594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a5fe0", "tid": 35568, "ts": 4361715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4361886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6180", "tid": 35568, "ts": 4362008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4362180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6250", "tid": 35568, "ts": 4362301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4362473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a63f0", "tid": 35568, "ts": 4362594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4362766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a68d0", "tid": 35568, "ts": 4362887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6a70", "tid": 35568, "ts": 4363180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6b40", "tid": 35568, "ts": 4363473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6c10", "tid": 35568, "ts": 4363764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4363936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a6ce0", "tid": 35568, "ts": 4364057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4364288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a70f0", "tid": 35568, "ts": 4364410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4364582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a71c0", "tid": 35568, "ts": 4364703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4364876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a94b0", "tid": 35568, "ts": 4364998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4365170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a98c0", "tid": 35568, "ts": 4365291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4365462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8130", "tid": 35568, "ts": 4365583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4365755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7910", "tid": 35568, "ts": 4365877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9580", "tid": 35568, "ts": 4366169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa4f0", "tid": 35568, "ts": 4366463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a79e0", "tid": 35568, "ts": 4366756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4366927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7df0", "tid": 35568, "ts": 4367048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4367220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a83a0", "tid": 35568, "ts": 4367341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4367512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7840", "tid": 35568, "ts": 4367634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4367805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa420", "tid": 35568, "ts": 4367926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7c50", "tid": 35568, "ts": 4368220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9b30", "tid": 35568, "ts": 4368511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a86e0", "tid": 35568, "ts": 4368804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4368975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7f90", "tid": 35568, "ts": 4369097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4369269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8060", "tid": 35568, "ts": 4369390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4369561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8bc0", "tid": 35568, "ts": 4369682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4369853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa5c0", "tid": 35568, "ts": 4369974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4370146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9990", "tid": 35568, "ts": 4370267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4370440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7d20", "tid": 35568, "ts": 4370561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4370733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa280", "tid": 35568, "ts": 4370854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa690", "tid": 35568, "ts": 4371149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa0e0", "tid": 35568, "ts": 4371442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9a60", "tid": 35568, "ts": 4371735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4371907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9720", "tid": 35568, "ts": 4372029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4372201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa1b0", "tid": 35568, "ts": 4372322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4372494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9c00", "tid": 35568, "ts": 4372615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4372786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8a20", "tid": 35568, "ts": 4372908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8d60", "tid": 35568, "ts": 4373201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a87b0", "tid": 35568, "ts": 4373494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa9d0", "tid": 35568, "ts": 4373787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4373958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9310", "tid": 35568, "ts": 4374079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4374251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7ab0", "tid": 35568, "ts": 4374431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4374603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8200", "tid": 35568, "ts": 4374726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4374897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9cd0", "tid": 35568, "ts": 4375019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4375192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8880", "tid": 35568, "ts": 4375313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4375484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9da0", "tid": 35568, "ts": 4375606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4375779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8950", "tid": 35568, "ts": 4375900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9240", "tid": 35568, "ts": 4376193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa350", "tid": 35568, "ts": 4376485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8470", "tid": 35568, "ts": 4376803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4376975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7ec0", "tid": 35568, "ts": 4377097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4377269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9e70", "tid": 35568, "ts": 4377391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4377563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8c90", "tid": 35568, "ts": 4377685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4377856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9f40", "tid": 35568, "ts": 4377977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4378149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8af0", "tid": 35568, "ts": 4378271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4378442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a93e0", "tid": 35568, "ts": 4378564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4378735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aaaa0", "tid": 35568, "ts": 4378857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a97f0", "tid": 35568, "ts": 4379150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a82d0", "tid": 35568, "ts": 4379443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa900", "tid": 35568, "ts": 4379736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4379971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8e30", "tid": 35568, "ts": 4380131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4380304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8540", "tid": 35568, "ts": 4380426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4380598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9650", "tid": 35568, "ts": 4380719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4380891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8610", "tid": 35568, "ts": 4381012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4381183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa010", "tid": 35568, "ts": 4381305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4381477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8f00", "tid": 35568, "ts": 4381599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4381771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa760", "tid": 35568, "ts": 4381891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aa830", "tid": 35568, "ts": 4382185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a7b80", "tid": 35568, "ts": 4382478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aab70", "tid": 35568, "ts": 4382771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4382943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a8fd0", "tid": 35568, "ts": 4383064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4383237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a90a0", "tid": 35568, "ts": 4383358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4383531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803a9170", "tid": 35568, "ts": 4383652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4383825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab6d0", "tid": 35568, "ts": 4383947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4384120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad410", "tid": 35568, "ts": 4384242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4384413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ace60", "tid": 35568, "ts": 4384535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4384707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab050", "tid": 35568, "ts": 4384829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab120", "tid": 35568, "ts": 4385122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac090", "tid": 35568, "ts": 4385416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab7a0", "tid": 35568, "ts": 4385707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4385879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac160", "tid": 35568, "ts": 4386000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4386172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acb20", "tid": 35568, "ts": 4386293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4386466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adc30", "tid": 35568, "ts": 4386587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4386758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abc80", "tid": 35568, "ts": 4386880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acd90", "tid": 35568, "ts": 4387172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab1f0", "tid": 35568, "ts": 4387465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab2c0", "tid": 35568, "ts": 4387758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4387930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac230", "tid": 35568, "ts": 4388050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4388222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aba10", "tid": 35568, "ts": 4388345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4388516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab460", "tid": 35568, "ts": 4388637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4388809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aad10", "tid": 35568, "ts": 4388964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4389135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abef0", "tid": 35568, "ts": 4389257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4389429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aade0", "tid": 35568, "ts": 4389550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4389721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abfc0", "tid": 35568, "ts": 4389843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abe20", "tid": 35568, "ts": 4390136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac300", "tid": 35568, "ts": 4390430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac7e0", "tid": 35568, "ts": 4390722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4390893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aac40", "tid": 35568, "ts": 4391015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4391187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acf30", "tid": 35568, "ts": 4391308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4391479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ada90", "tid": 35568, "ts": 4391600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4391772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab390", "tid": 35568, "ts": 4391893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac4a0", "tid": 35568, "ts": 4392185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad680", "tid": 35568, "ts": 4392525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aaeb0", "tid": 35568, "ts": 4392818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4392991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac3d0", "tid": 35568, "ts": 4393112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4393284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab530", "tid": 35568, "ts": 4393405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4393578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad4e0", "tid": 35568, "ts": 4393700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4393872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803acbf0", "tid": 35568, "ts": 4393993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4394165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab600", "tid": 35568, "ts": 4394287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4394483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac570", "tid": 35568, "ts": 4394604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4394775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac8b0", "tid": 35568, "ts": 4395046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4395218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abbb0", "tid": 35568, "ts": 4395341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4395600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab870", "tid": 35568, "ts": 4395726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4395898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ab940", "tid": 35568, "ts": 4396021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4396194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac640", "tid": 35568, "ts": 4396318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4396491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aaf80", "tid": 35568, "ts": 4396613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4396786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abae0", "tid": 35568, "ts": 4396908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803add00", "tid": 35568, "ts": 4397202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad5b0", "tid": 35568, "ts": 4397496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803abd50", "tid": 35568, "ts": 4397790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4397963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac710", "tid": 35568, "ts": 4398085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4398257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ac980", "tid": 35568, "ts": 4398379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4398552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aca50", "tid": 35568, "ts": 4398674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4398846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803accc0", "tid": 35568, "ts": 4398968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4399139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad000", "tid": 35568, "ts": 4399262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4399479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad0d0", "tid": 35568, "ts": 4399602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4399774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad1a0", "tid": 35568, "ts": 4399896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4400136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803addd0", "tid": 35568, "ts": 4400259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4400432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad270", "tid": 35568, "ts": 4400554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4400726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad340", "tid": 35568, "ts": 4400848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad750", "tid": 35568, "ts": 4401142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad820", "tid": 35568, "ts": 4401437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad8f0", "tid": 35568, "ts": 4401731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4401903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ad9c0", "tid": 35568, "ts": 4402024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4402196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adb60", "tid": 35568, "ts": 4402317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4402489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adea0", "tid": 35568, "ts": 4402611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4402782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803adf70", "tid": 35568, "ts": 4402903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae790", "tid": 35568, "ts": 4403197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af150", "tid": 35568, "ts": 4403492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0b50", "tid": 35568, "ts": 4403786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4403957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae1e0", "tid": 35568, "ts": 4404078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4404249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af7d0", "tid": 35568, "ts": 4404372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4404543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0cf0", "tid": 35568, "ts": 4404665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4404837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0a80", "tid": 35568, "ts": 4404958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4405130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af970", "tid": 35568, "ts": 4405251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4405423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae520", "tid": 35568, "ts": 4405545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4405716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af8a0", "tid": 35568, "ts": 4405838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae040", "tid": 35568, "ts": 4406132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae860", "tid": 35568, "ts": 4406426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0810", "tid": 35568, "ts": 4406719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4406891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b00c0", "tid": 35568, "ts": 4407013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4407185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae930", "tid": 35568, "ts": 4407307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4407478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aea00", "tid": 35568, "ts": 4407599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4407771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af560", "tid": 35568, "ts": 4407892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae5f0", "tid": 35568, "ts": 4408186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afbe0", "tid": 35568, "ts": 4408480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afa40", "tid": 35568, "ts": 4408774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4408946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae6c0", "tid": 35568, "ts": 4409068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4409273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b04d0", "tid": 35568, "ts": 4409396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4409569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aead0", "tid": 35568, "ts": 4409692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4409867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aeba0", "tid": 35568, "ts": 4409995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4410167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af220", "tid": 35568, "ts": 4410289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4410462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b05a0", "tid": 35568, "ts": 4410583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4410756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afb10", "tid": 35568, "ts": 4410878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4411150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afff0", "tid": 35568, "ts": 4411342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4411626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af2f0", "tid": 35568, "ts": 4411771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aed40", "tid": 35568, "ts": 4412181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0c20", "tid": 35568, "ts": 4412475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aee10", "tid": 35568, "ts": 4412769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4412941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af3c0", "tid": 35568, "ts": 4413064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4413235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0670", "tid": 35568, "ts": 4413357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4413529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0190", "tid": 35568, "ts": 4413651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4413823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af490", "tid": 35568, "ts": 4413945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0dc0", "tid": 35568, "ts": 4414240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afcb0", "tid": 35568, "ts": 4414535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afe50", "tid": 35568, "ts": 4414828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4414999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aec70", "tid": 35568, "ts": 4415121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4415292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af630", "tid": 35568, "ts": 4415413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4415586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aeee0", "tid": 35568, "ts": 4415707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4415879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803afd80", "tid": 35568, "ts": 4416000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4416171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aff20", "tid": 35568, "ts": 4416293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4416465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803aefb0", "tid": 35568, "ts": 4416587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4416759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af080", "tid": 35568, "ts": 4416881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0260", "tid": 35568, "ts": 4417174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae110", "tid": 35568, "ts": 4417477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b08e0", "tid": 35568, "ts": 4417771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4417943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803af700", "tid": 35568, "ts": 4418065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4418236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0330", "tid": 35568, "ts": 4418358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4418529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0400", "tid": 35568, "ts": 4418651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4418823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0e90", "tid": 35568, "ts": 4418980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4419306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae2b0", "tid": 35568, "ts": 4419428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4419600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b0740", "tid": 35568, "ts": 4419722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4419893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae380", "tid": 35568, "ts": 4420016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4420187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803b09b0", "tid": 35568, "ts": 4420308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4420480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234803ae450", "tid": 35568, "ts": 4420601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4420773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664680", "tid": 35568, "ts": 4420930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661830", "tid": 35568, "ts": 4421226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663f30", "tid": 35568, "ts": 4421521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06615c0", "tid": 35568, "ts": 4421814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4421986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06627a0", "tid": 35568, "ts": 4422108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4422279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662e20", "tid": 35568, "ts": 4422400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4422573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662870", "tid": 35568, "ts": 4422695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4422867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661c40", "tid": 35568, "ts": 4422989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4423161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661d10", "tid": 35568, "ts": 4423283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4423455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662ae0", "tid": 35568, "ts": 4423578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4423749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662390", "tid": 35568, "ts": 4423871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662050", "tid": 35568, "ts": 4424165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662460", "tid": 35568, "ts": 4424459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661de0", "tid": 35568, "ts": 4424752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4424950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06622c0", "tid": 35568, "ts": 4425071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4425243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664270", "tid": 35568, "ts": 4425364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4425536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06626d0", "tid": 35568, "ts": 4425699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4425872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06619d0", "tid": 35568, "ts": 4425995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4426166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662120", "tid": 35568, "ts": 4426288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4426461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661aa0", "tid": 35568, "ts": 4426583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4426769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661b70", "tid": 35568, "ts": 4426891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663300", "tid": 35568, "ts": 4427183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662fc0", "tid": 35568, "ts": 4427477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662bb0", "tid": 35568, "ts": 4427772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4427943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663090", "tid": 35568, "ts": 4428065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4428237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661900", "tid": 35568, "ts": 4428359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4428530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662530", "tid": 35568, "ts": 4428653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4428824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662940", "tid": 35568, "ts": 4428946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06633d0", "tid": 35568, "ts": 4429240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663160", "tid": 35568, "ts": 4429533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662c80", "tid": 35568, "ts": 4429827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4429999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664340", "tid": 35568, "ts": 4430121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4430292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663cc0", "tid": 35568, "ts": 4430414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4430585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661eb0", "tid": 35568, "ts": 4430706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4430877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661f80", "tid": 35568, "ts": 4431000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4431171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662a10", "tid": 35568, "ts": 4431294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4431466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662600", "tid": 35568, "ts": 4431588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4431759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06621f0", "tid": 35568, "ts": 4431880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663d90", "tid": 35568, "ts": 4432173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662d50", "tid": 35568, "ts": 4432467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0662ef0", "tid": 35568, "ts": 4432759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4432930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663230", "tid": 35568, "ts": 4433052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4433224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06634a0", "tid": 35568, "ts": 4433345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4433517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664750", "tid": 35568, "ts": 4433639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4433811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06641a0", "tid": 35568, "ts": 4433933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06645b0", "tid": 35568, "ts": 4434226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663570", "tid": 35568, "ts": 4434520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661760", "tid": 35568, "ts": 4434814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4434985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663640", "tid": 35568, "ts": 4435106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4435278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663710", "tid": 35568, "ts": 4435400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4435571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06614f0", "tid": 35568, "ts": 4435692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4435863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661690", "tid": 35568, "ts": 4435985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4436157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06637e0", "tid": 35568, "ts": 4436279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4436450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06638b0", "tid": 35568, "ts": 4436625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4436798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663980", "tid": 35568, "ts": 4436925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663a50", "tid": 35568, "ts": 4437218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663b20", "tid": 35568, "ts": 4437511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663bf0", "tid": 35568, "ts": 4437804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4437976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664820", "tid": 35568, "ts": 4438098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4438270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0663e60", "tid": 35568, "ts": 4438392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4438564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664000", "tid": 35568, "ts": 4438685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4438855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06640d0", "tid": 35568, "ts": 4438977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4439149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664410", "tid": 35568, "ts": 4439270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4439442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06644e0", "tid": 35568, "ts": 4439564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4439735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665790", "tid": 35568, "ts": 4439857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666630", "tid": 35568, "ts": 4440151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665ba0", "tid": 35568, "ts": 4440444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664ea0", "tid": 35568, "ts": 4440739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4440911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667330", "tid": 35568, "ts": 4441033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4441205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06648f0", "tid": 35568, "ts": 4441327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4441499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06678e0", "tid": 35568, "ts": 4441621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4441792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665860", "tid": 35568, "ts": 4441913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4442084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667670", "tid": 35568, "ts": 4442206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4442577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06649c0", "tid": 35568, "ts": 4442761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4442934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664dd0", "tid": 35568, "ts": 4443057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4443230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665450", "tid": 35568, "ts": 4443352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4443524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664a90", "tid": 35568, "ts": 4443646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4443818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665ad0", "tid": 35568, "ts": 4443940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665380", "tid": 35568, "ts": 4444233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665930", "tid": 35568, "ts": 4444526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666a40", "tid": 35568, "ts": 4444820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4444991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666cb0", "tid": 35568, "ts": 4445113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4445285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665a00", "tid": 35568, "ts": 4445406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4445577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665520", "tid": 35568, "ts": 4445698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4445871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664f70", "tid": 35568, "ts": 4445994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4446167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667400", "tid": 35568, "ts": 4446288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4446460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06663c0", "tid": 35568, "ts": 4446582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4446755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06670c0", "tid": 35568, "ts": 4446876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665040", "tid": 35568, "ts": 4447232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06652b0", "tid": 35568, "ts": 4447525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06655f0", "tid": 35568, "ts": 4447819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4447991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666560", "tid": 35568, "ts": 4448112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4448285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666970", "tid": 35568, "ts": 4448407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4448578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667190", "tid": 35568, "ts": 4448700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4448872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665fb0", "tid": 35568, "ts": 4448994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4449168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06656c0", "tid": 35568, "ts": 4449289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4449461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666e50", "tid": 35568, "ts": 4449583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4449754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665c70", "tid": 35568, "ts": 4449875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665110", "tid": 35568, "ts": 4450169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06675a0", "tid": 35568, "ts": 4450463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06651e0", "tid": 35568, "ts": 4450757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4450929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666b10", "tid": 35568, "ts": 4451050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4451222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667260", "tid": 35568, "ts": 4451343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4451515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666220", "tid": 35568, "ts": 4451637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4451808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665d40", "tid": 35568, "ts": 4451929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666be0", "tid": 35568, "ts": 4452222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665e10", "tid": 35568, "ts": 4452516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0665ee0", "tid": 35568, "ts": 4452810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4452982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667740", "tid": 35568, "ts": 4453127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4453299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664b60", "tid": 35568, "ts": 4453421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4453594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666080", "tid": 35568, "ts": 4453716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4453890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666150", "tid": 35568, "ts": 4454012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4454184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666490", "tid": 35568, "ts": 4454306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4454478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666700", "tid": 35568, "ts": 4454600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4454772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06662f0", "tid": 35568, "ts": 4454894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06674d0", "tid": 35568, "ts": 4455187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06667d0", "tid": 35568, "ts": 4455481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06668a0", "tid": 35568, "ts": 4455774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4455945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664d00", "tid": 35568, "ts": 4456067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4456238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666d80", "tid": 35568, "ts": 4456359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4456530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0664c30", "tid": 35568, "ts": 4456652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4456824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667b50", "tid": 35568, "ts": 4456945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4457117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666f20", "tid": 35568, "ts": 4457238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4457410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0666ff0", "tid": 35568, "ts": 4457532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4457704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667810", "tid": 35568, "ts": 4457825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4458073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06679b0", "tid": 35568, "ts": 4458207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4458379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667a80", "tid": 35568, "ts": 4458542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4458714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667c20", "tid": 35568, "ts": 4458836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668850", "tid": 35568, "ts": 4459129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a660", "tid": 35568, "ts": 4459423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668510", "tid": 35568, "ts": 4459717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4459895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668fa0", "tid": 35568, "ts": 4460019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4460190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a730", "tid": 35568, "ts": 4460312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4460484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066af50", "tid": 35568, "ts": 4460605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4460776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668ed0", "tid": 35568, "ts": 4460898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a180", "tid": 35568, "ts": 4461191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669070", "tid": 35568, "ts": 4461483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668370", "tid": 35568, "ts": 4461776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4461948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668c60", "tid": 35568, "ts": 4462069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4462241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ac10", "tid": 35568, "ts": 4462362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4462534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667f60", "tid": 35568, "ts": 4462655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4462826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ace0", "tid": 35568, "ts": 4462947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a590", "tid": 35568, "ts": 4463241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669a30", "tid": 35568, "ts": 4463534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669480", "tid": 35568, "ts": 4463827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4463999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669140", "tid": 35568, "ts": 4464120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4464292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a320", "tid": 35568, "ts": 4464414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4464586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06692e0", "tid": 35568, "ts": 4464707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4464879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a250", "tid": 35568, "ts": 4464999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4465171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066aa70", "tid": 35568, "ts": 4465293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4465464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669210", "tid": 35568, "ts": 4465585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4465756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ab40", "tid": 35568, "ts": 4465878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668b90", "tid": 35568, "ts": 4466171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667e90", "tid": 35568, "ts": 4466465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668780", "tid": 35568, "ts": 4466759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4466930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a0b0", "tid": 35568, "ts": 4467051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4467222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669550", "tid": 35568, "ts": 4467344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4467516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06693b0", "tid": 35568, "ts": 4467637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4467809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a9a0", "tid": 35568, "ts": 4467930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668e00", "tid": 35568, "ts": 4468223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668030", "tid": 35568, "ts": 4468516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668920", "tid": 35568, "ts": 4468811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4468983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a3f0", "tid": 35568, "ts": 4469104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4469276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06685e0", "tid": 35568, "ts": 4469397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4469613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06682a0", "tid": 35568, "ts": 4469735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4469907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669e40", "tid": 35568, "ts": 4470028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4470199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06697c0", "tid": 35568, "ts": 4470320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4470491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669620", "tid": 35568, "ts": 4470613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4470785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668d30", "tid": 35568, "ts": 4470907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06696f0", "tid": 35568, "ts": 4471200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669f10", "tid": 35568, "ts": 4471492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669890", "tid": 35568, "ts": 4471786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4471957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b020", "tid": 35568, "ts": 4472079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4472249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668100", "tid": 35568, "ts": 4472371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4472542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a8d0", "tid": 35568, "ts": 4472663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4472835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06686b0", "tid": 35568, "ts": 4472956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4473128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a800", "tid": 35568, "ts": 4473249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4473420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06689f0", "tid": 35568, "ts": 4473586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4473787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668ac0", "tid": 35568, "ts": 4473946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4474117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669960", "tid": 35568, "ts": 4474239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4474411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669b00", "tid": 35568, "ts": 4474534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4474706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066adb0", "tid": 35568, "ts": 4474828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669bd0", "tid": 35568, "ts": 4475123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669ca0", "tid": 35568, "ts": 4475418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669fe0", "tid": 35568, "ts": 4475712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4475883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0669d70", "tid": 35568, "ts": 4476005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4476177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06681d0", "tid": 35568, "ts": 4476298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4476470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066a4c0", "tid": 35568, "ts": 4476591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4476762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ae80", "tid": 35568, "ts": 4476884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667cf0", "tid": 35568, "ts": 4477178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0667dc0", "tid": 35568, "ts": 4477471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0668440", "tid": 35568, "ts": 4477766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4477938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c880", "tid": 35568, "ts": 4478061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4478232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cd60", "tid": 35568, "ts": 4478354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4478525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c2d0", "tid": 35568, "ts": 4478646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4478819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b840", "tid": 35568, "ts": 4478941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4479112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bc50", "tid": 35568, "ts": 4479262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4479435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b9e0", "tid": 35568, "ts": 4479558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4479730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d0a0", "tid": 35568, "ts": 4479852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bab0", "tid": 35568, "ts": 4480145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bb80", "tid": 35568, "ts": 4480438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ce30", "tid": 35568, "ts": 4480730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4480902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bd20", "tid": 35568, "ts": 4481023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4481195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bdf0", "tid": 35568, "ts": 4481316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4481487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d240", "tid": 35568, "ts": 4481610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4481782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bec0", "tid": 35568, "ts": 4481903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066da60", "tid": 35568, "ts": 4482197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066dcd0", "tid": 35568, "ts": 4482491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b910", "tid": 35568, "ts": 4482786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4482958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066dda0", "tid": 35568, "ts": 4483080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4483252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066bf90", "tid": 35568, "ts": 4483373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4483545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e010", "tid": 35568, "ts": 4483666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4483838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c060", "tid": 35568, "ts": 4483959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4484130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066de70", "tid": 35568, "ts": 4484252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4484424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cf00", "tid": 35568, "ts": 4484547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4484718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066df40", "tid": 35568, "ts": 4484840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066db30", "tid": 35568, "ts": 4485134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c470", "tid": 35568, "ts": 4485427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e0e0", "tid": 35568, "ts": 4485721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4485892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c3a0", "tid": 35568, "ts": 4486014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4486186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d8c0", "tid": 35568, "ts": 4486309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4486481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c130", "tid": 35568, "ts": 4486603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4486775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d650", "tid": 35568, "ts": 4486897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e280", "tid": 35568, "ts": 4487191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c200", "tid": 35568, "ts": 4487484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e1b0", "tid": 35568, "ts": 4487778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4487950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c950", "tid": 35568, "ts": 4488071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4488243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b6a0", "tid": 35568, "ts": 4488364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4488537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066dc00", "tid": 35568, "ts": 4488658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4488830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c540", "tid": 35568, "ts": 4488952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4489123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c610", "tid": 35568, "ts": 4489373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4489547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c6e0", "tid": 35568, "ts": 4489671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4489844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066c7b0", "tid": 35568, "ts": 4489968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4490140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cc90", "tid": 35568, "ts": 4490263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4490436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e350", "tid": 35568, "ts": 4490558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4490731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b500", "tid": 35568, "ts": 4490899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4491073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ca20", "tid": 35568, "ts": 4491268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4491440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066caf0", "tid": 35568, "ts": 4491563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4491735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cfd0", "tid": 35568, "ts": 4491856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d720", "tid": 35568, "ts": 4492152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e420", "tid": 35568, "ts": 4492445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b0f0", "tid": 35568, "ts": 4492738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4492911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b1c0", "tid": 35568, "ts": 4493033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4493205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b290", "tid": 35568, "ts": 4493326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4493498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b5d0", "tid": 35568, "ts": 4493619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4493792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066cbc0", "tid": 35568, "ts": 4493913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b360", "tid": 35568, "ts": 4494207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d170", "tid": 35568, "ts": 4494502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d310", "tid": 35568, "ts": 4494817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4494989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d3e0", "tid": 35568, "ts": 4495110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4495283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d4b0", "tid": 35568, "ts": 4495404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4495577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d580", "tid": 35568, "ts": 4495698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4495869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d7f0", "tid": 35568, "ts": 4495990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4496162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066d990", "tid": 35568, "ts": 4496284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4496456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b430", "tid": 35568, "ts": 4496577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4496749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066b770", "tid": 35568, "ts": 4496870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06704a0", "tid": 35568, "ts": 4497162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ede0", "tid": 35568, "ts": 4497455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671000", "tid": 35568, "ts": 4497748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4497920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670570", "tid": 35568, "ts": 4498041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4498213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670f30", "tid": 35568, "ts": 4498335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4498507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671750", "tid": 35568, "ts": 4498629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4498801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f6d0", "tid": 35568, "ts": 4498923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f940", "tid": 35568, "ts": 4499215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e5c0", "tid": 35568, "ts": 4499510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f050", "tid": 35568, "ts": 4499805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4499977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e690", "tid": 35568, "ts": 4500099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4500271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066eaa0", "tid": 35568, "ts": 4500393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4500566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ec40", "tid": 35568, "ts": 4500688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4500858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06710d0", "tid": 35568, "ts": 4500979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4501152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670cc0", "tid": 35568, "ts": 4501273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4501445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670980", "tid": 35568, "ts": 4501567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4501739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f390", "tid": 35568, "ts": 4501861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066eeb0", "tid": 35568, "ts": 4502154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ffc0", "tid": 35568, "ts": 4502447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671680", "tid": 35568, "ts": 4502740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4502912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06708b0", "tid": 35568, "ts": 4503033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4503205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670160", "tid": 35568, "ts": 4503327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4503499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e760", "tid": 35568, "ts": 4503621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4503793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670b20", "tid": 35568, "ts": 4503916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4504087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06711a0", "tid": 35568, "ts": 4504209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4504382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ed10", "tid": 35568, "ts": 4504503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4504675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670640", "tid": 35568, "ts": 4504840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670710", "tid": 35568, "ts": 4505135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06714e0", "tid": 35568, "ts": 4505429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f120", "tid": 35568, "ts": 4505724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4505895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066ef80", "tid": 35568, "ts": 4506017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4506189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f1f0", "tid": 35568, "ts": 4506312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4506484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671270", "tid": 35568, "ts": 4506606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4506778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06707e0", "tid": 35568, "ts": 4506900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f2c0", "tid": 35568, "ts": 4507194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f600", "tid": 35568, "ts": 4507489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e4f0", "tid": 35568, "ts": 4507783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4507955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f7a0", "tid": 35568, "ts": 4508077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4508249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f460", "tid": 35568, "ts": 4508371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4508544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f530", "tid": 35568, "ts": 4508667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4508839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671410", "tid": 35568, "ts": 4508961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4509133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066f870", "tid": 35568, "ts": 4509254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4509426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670d90", "tid": 35568, "ts": 4509548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4509720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670e60", "tid": 35568, "ts": 4509842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fa10", "tid": 35568, "ts": 4510194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06703d0", "tid": 35568, "ts": 4510488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fae0", "tid": 35568, "ts": 4510782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4510955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fbb0", "tid": 35568, "ts": 4511077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4511249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670a50", "tid": 35568, "ts": 4511371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4511543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fc80", "tid": 35568, "ts": 4511664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4511835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670bf0", "tid": 35568, "ts": 4511957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4512129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e830", "tid": 35568, "ts": 4512251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4512423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671340", "tid": 35568, "ts": 4512544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4512716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670090", "tid": 35568, "ts": 4512838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06715b0", "tid": 35568, "ts": 4513132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670230", "tid": 35568, "ts": 4513427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fd50", "tid": 35568, "ts": 4513721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4513893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fe20", "tid": 35568, "ts": 4514014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4514186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066fef0", "tid": 35568, "ts": 4514308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4514480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671820", "tid": 35568, "ts": 4514602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4514774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0670300", "tid": 35568, "ts": 4514896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e900", "tid": 35568, "ts": 4515191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066e9d0", "tid": 35568, "ts": 4515484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a066eb70", "tid": 35568, "ts": 4515779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4515950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673080", "tid": 35568, "ts": 4516072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4516244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673970", "tid": 35568, "ts": 4516365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4516537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06740c0", "tid": 35568, "ts": 4516659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4516832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673700", "tid": 35568, "ts": 4516953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4517125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674670", "tid": 35568, "ts": 4517247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4517420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674400", "tid": 35568, "ts": 4517542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4517713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673be0", "tid": 35568, "ts": 4517834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06733c0", "tid": 35568, "ts": 4518130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673560", "tid": 35568, "ts": 4518439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674260", "tid": 35568, "ts": 4518734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4518906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06748e0", "tid": 35568, "ts": 4519028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4519200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672ba0", "tid": 35568, "ts": 4519322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4519495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672d40", "tid": 35568, "ts": 4519617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4519790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673490", "tid": 35568, "ts": 4519912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4520084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06749b0", "tid": 35568, "ts": 4520207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4520466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672a00", "tid": 35568, "ts": 4520662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4520942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673b10", "tid": 35568, "ts": 4521103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4521346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671dd0", "tid": 35568, "ts": 4521471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4521646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674b50", "tid": 35568, "ts": 4521770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4521943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673220", "tid": 35568, "ts": 4522067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4522241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672ad0", "tid": 35568, "ts": 4522364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4522537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672e10", "tid": 35568, "ts": 4522661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4522834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673150", "tid": 35568, "ts": 4522957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4523130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672450", "tid": 35568, "ts": 4523253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4523426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674810", "tid": 35568, "ts": 4523549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4523767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06744d0", "tid": 35568, "ts": 4523896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06737d0", "tid": 35568, "ts": 4524195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674a80", "tid": 35568, "ts": 4524491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672040", "tid": 35568, "ts": 4524787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4524961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672c70", "tid": 35568, "ts": 4525084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4525256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672ee0", "tid": 35568, "ts": 4525379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4525553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674740", "tid": 35568, "ts": 4525675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4525847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672790", "tid": 35568, "ts": 4525971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4526142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673e50", "tid": 35568, "ts": 4526265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4526438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674c20", "tid": 35568, "ts": 4526560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4526733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06718f0", "tid": 35568, "ts": 4526855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673cb0", "tid": 35568, "ts": 4527150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06745a0", "tid": 35568, "ts": 4527445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672fb0", "tid": 35568, "ts": 4527740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4527913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673f20", "tid": 35568, "ts": 4528036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4528208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672380", "tid": 35568, "ts": 4528331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4528503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673d80", "tid": 35568, "ts": 4528625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4528798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673a40", "tid": 35568, "ts": 4528920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06719c0", "tid": 35568, "ts": 4529214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671a90", "tid": 35568, "ts": 4529509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06732f0", "tid": 35568, "ts": 4529804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4529977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673ff0", "tid": 35568, "ts": 4530099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4530271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674190", "tid": 35568, "ts": 4530393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4530565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674330", "tid": 35568, "ts": 4530687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4530859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671ea0", "tid": 35568, "ts": 4530981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4531152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0673630", "tid": 35568, "ts": 4531274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4531447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06738a0", "tid": 35568, "ts": 4531569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4531742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671b60", "tid": 35568, "ts": 4531864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4532036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671c30", "tid": 35568, "ts": 4532158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4532329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671d00", "tid": 35568, "ts": 4532532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4532706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0671f70", "tid": 35568, "ts": 4532829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672110", "tid": 35568, "ts": 4533123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06721e0", "tid": 35568, "ts": 4533418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06722b0", "tid": 35568, "ts": 4533713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4533886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672520", "tid": 35568, "ts": 4534009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4534181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06725f0", "tid": 35568, "ts": 4534304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4534476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06726c0", "tid": 35568, "ts": 4534599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4534771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672860", "tid": 35568, "ts": 4534893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0672930", "tid": 35568, "ts": 4535188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675e00", "tid": 35568, "ts": 4535483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676140", "tid": 35568, "ts": 4535777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4535950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676e40", "tid": 35568, "ts": 4536125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4536298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675440", "tid": 35568, "ts": 4536420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4536593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06755e0", "tid": 35568, "ts": 4536716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4536889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677590", "tid": 35568, "ts": 4537011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4537185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676f10", "tid": 35568, "ts": 4537307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4537480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06756b0", "tid": 35568, "ts": 4537602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4537776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06779a0", "tid": 35568, "ts": 4537898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06752a0", "tid": 35568, "ts": 4538193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677250", "tid": 35568, "ts": 4538487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677320", "tid": 35568, "ts": 4538781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4538953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06774c0", "tid": 35568, "ts": 4539075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4539247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677180", "tid": 35568, "ts": 4539369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4539588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06759f0", "tid": 35568, "ts": 4539712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4539885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677a70", "tid": 35568, "ts": 4540007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4540180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06763b0", "tid": 35568, "ts": 4540302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4540476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675780", "tid": 35568, "ts": 4540599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4540772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675fa0", "tid": 35568, "ts": 4540896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676070", "tid": 35568, "ts": 4541192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675ed0", "tid": 35568, "ts": 4541487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675850", "tid": 35568, "ts": 4541783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4541955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677660", "tid": 35568, "ts": 4542078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4542252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677b40", "tid": 35568, "ts": 4542374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4542547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677800", "tid": 35568, "ts": 4542669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4542842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676210", "tid": 35568, "ts": 4542965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4543136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675ac0", "tid": 35568, "ts": 4543260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4543432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675510", "tid": 35568, "ts": 4543555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4543727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677730", "tid": 35568, "ts": 4543850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674f60", "tid": 35568, "ts": 4544146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676bd0", "tid": 35568, "ts": 4544440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06778d0", "tid": 35568, "ts": 4544735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4544908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675370", "tid": 35568, "ts": 4545030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4545202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676fe0", "tid": 35568, "ts": 4545325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4545496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675920", "tid": 35568, "ts": 4545618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4545790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676ca0", "tid": 35568, "ts": 4545913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675100", "tid": 35568, "ts": 4546207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677db0", "tid": 35568, "ts": 4546501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06762e0", "tid": 35568, "ts": 4546797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4546968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676480", "tid": 35568, "ts": 4547091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4547263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675b90", "tid": 35568, "ts": 4547386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4547558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676550", "tid": 35568, "ts": 4547680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4547852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675c60", "tid": 35568, "ts": 4547974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4548147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675d30", "tid": 35568, "ts": 4548270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4548442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677e80", "tid": 35568, "ts": 4548566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4548738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676b00", "tid": 35568, "ts": 4548860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677c10", "tid": 35568, "ts": 4549158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676620", "tid": 35568, "ts": 4549453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677ce0", "tid": 35568, "ts": 4549748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4549920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0677f50", "tid": 35568, "ts": 4550042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4550215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06773f0", "tid": 35568, "ts": 4550337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4550510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678020", "tid": 35568, "ts": 4550633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4550807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06766f0", "tid": 35568, "ts": 4550929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4551101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674cf0", "tid": 35568, "ts": 4551224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4551396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674dc0", "tid": 35568, "ts": 4551520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4551755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06767c0", "tid": 35568, "ts": 4551878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676890", "tid": 35568, "ts": 4552173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676960", "tid": 35568, "ts": 4552468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0674e90", "tid": 35568, "ts": 4552762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4552935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0675030", "tid": 35568, "ts": 4553057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4553230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676a30", "tid": 35568, "ts": 4553353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4553525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0676d70", "tid": 35568, "ts": 4553648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4553820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06770b0", "tid": 35568, "ts": 4553943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06751d0", "tid": 35568, "ts": 4554237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678df0", "tid": 35568, "ts": 4554532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06780f0", "tid": 35568, "ts": 4554827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4554999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a240", "tid": 35568, "ts": 4555122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4555294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067af40", "tid": 35568, "ts": 4555417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4555590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678ec0", "tid": 35568, "ts": 4555712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4555884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ada0", "tid": 35568, "ts": 4556007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4556179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06792d0", "tid": 35568, "ts": 4556350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4556523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679e30", "tid": 35568, "ts": 4556645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4556818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b350", "tid": 35568, "ts": 4556941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06793a0", "tid": 35568, "ts": 4557235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679470", "tid": 35568, "ts": 4557530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a310", "tid": 35568, "ts": 4557825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4557997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679d60", "tid": 35568, "ts": 4558120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4558291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ae70", "tid": 35568, "ts": 4558414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4558587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06789e0", "tid": 35568, "ts": 4558710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4558883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678290", "tid": 35568, "ts": 4559006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4559178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678f90", "tid": 35568, "ts": 4559300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4559473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679fd0", "tid": 35568, "ts": 4559595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4559767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067aa60", "tid": 35568, "ts": 4559888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679130", "tid": 35568, "ts": 4560184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a170", "tid": 35568, "ts": 4560478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678b80", "tid": 35568, "ts": 4560773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4560945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a580", "tid": 35568, "ts": 4561068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4561240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679540", "tid": 35568, "ts": 4561363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4561535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679c90", "tid": 35568, "ts": 4561657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4561830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b280", "tid": 35568, "ts": 4561952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4562173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679060", "tid": 35568, "ts": 4562298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4562472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679200", "tid": 35568, "ts": 4562595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4562771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678840", "tid": 35568, "ts": 4562899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4563070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a720", "tid": 35568, "ts": 4563193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4563365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06785d0", "tid": 35568, "ts": 4563555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4563728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4564091, "pid": 35104, "args": { "Heap": { "SizeInBytes": 67108864, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a0679610", "tid": 35568, "ts": 4564105, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a0679610", "tid": 35568, "ts": 4564136, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 67108864, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06797b0", "tid": 35568, "ts": 4564251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4564428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679f00", "tid": 35568, "ts": 4564553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4564728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06796e0", "tid": 35568, "ts": 4564852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679af0", "tid": 35568, "ts": 4565157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a3e0", "tid": 35568, "ts": 4565453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b1b0", "tid": 35568, "ts": 4565747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4565920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a990", "tid": 35568, "ts": 4566042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4566215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a0a0", "tid": 35568, "ts": 4566337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4566510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678770", "tid": 35568, "ts": 4566632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4566804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a4b0", "tid": 35568, "ts": 4566925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4567098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ab30", "tid": 35568, "ts": 4567220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4567433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b420", "tid": 35568, "ts": 4567556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4567729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ac00", "tid": 35568, "ts": 4567851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679880", "tid": 35568, "ts": 4568144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b010", "tid": 35568, "ts": 4568439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a650", "tid": 35568, "ts": 4568732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4568904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678500", "tid": 35568, "ts": 4569025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4569196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678430", "tid": 35568, "ts": 4569318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4569490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a7f0", "tid": 35568, "ts": 4569612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4569783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678910", "tid": 35568, "ts": 4569905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679bc0", "tid": 35568, "ts": 4570199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067a8c0", "tid": 35568, "ts": 4570493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678ab0", "tid": 35568, "ts": 4570787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4570960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679950", "tid": 35568, "ts": 4571081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4571253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06781c0", "tid": 35568, "ts": 4571375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4571547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678360", "tid": 35568, "ts": 4571669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4571840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0679a20", "tid": 35568, "ts": 4571962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4572134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678c50", "tid": 35568, "ts": 4572256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4572428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067acd0", "tid": 35568, "ts": 4572550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4572721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0678d20", "tid": 35568, "ts": 4572842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b0e0", "tid": 35568, "ts": 4573136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cfc0", "tid": 35568, "ts": 4573430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067dcc0", "tid": 35568, "ts": 4573724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4573896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d710", "tid": 35568, "ts": 4574017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4574189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067db20", "tid": 35568, "ts": 4574311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4574483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c1f0", "tid": 35568, "ts": 4574604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4574775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067baa0", "tid": 35568, "ts": 4574898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c600", "tid": 35568, "ts": 4575192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d300", "tid": 35568, "ts": 4575485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c050", "tid": 35568, "ts": 4575780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4575952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c460", "tid": 35568, "ts": 4576074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4576245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c390", "tid": 35568, "ts": 4576367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4576539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d640", "tid": 35568, "ts": 4576661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4576833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cc80", "tid": 35568, "ts": 4576955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4577126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d7e0", "tid": 35568, "ts": 4577248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4577421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bd10", "tid": 35568, "ts": 4577543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4577715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d230", "tid": 35568, "ts": 4577913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cd50", "tid": 35568, "ts": 4578208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bb70", "tid": 35568, "ts": 4578502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ce20", "tid": 35568, "ts": 4578796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4578968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b900", "tid": 35568, "ts": 4579090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4579262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d8b0", "tid": 35568, "ts": 4579384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4579555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c2c0", "tid": 35568, "ts": 4579677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4579849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067dd90", "tid": 35568, "ts": 4579971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4580142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067beb0", "tid": 35568, "ts": 4580264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4580437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d980", "tid": 35568, "ts": 4580592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4580763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067de60", "tid": 35568, "ts": 4580885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c6d0", "tid": 35568, "ts": 4581179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c940", "tid": 35568, "ts": 4581473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067da50", "tid": 35568, "ts": 4581766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4581938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c530", "tid": 35568, "ts": 4582060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4582232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c7a0", "tid": 35568, "ts": 4582354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4582526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067dbf0", "tid": 35568, "ts": 4582647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4582820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c870", "tid": 35568, "ts": 4583006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4583179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067ca10", "tid": 35568, "ts": 4583300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4583473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d160", "tid": 35568, "ts": 4583595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4583767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067df30", "tid": 35568, "ts": 4583888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cae0", "tid": 35568, "ts": 4584181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b4f0", "tid": 35568, "ts": 4584475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d090", "tid": 35568, "ts": 4584769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4584941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067c120", "tid": 35568, "ts": 4585062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4585234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d3d0", "tid": 35568, "ts": 4585356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4585528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d4a0", "tid": 35568, "ts": 4585650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4585829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b5c0", "tid": 35568, "ts": 4585953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4586125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b830", "tid": 35568, "ts": 4586247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4586418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cbb0", "tid": 35568, "ts": 4586540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4586713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067cef0", "tid": 35568, "ts": 4586835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067d570", "tid": 35568, "ts": 4587128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b690", "tid": 35568, "ts": 4587422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b760", "tid": 35568, "ts": 4587714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4587886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067b9d0", "tid": 35568, "ts": 4588008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4588180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bc40", "tid": 35568, "ts": 4588301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4588473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bde0", "tid": 35568, "ts": 4588594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4588766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a067bf80", "tid": 35568, "ts": 4588887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660650", "tid": 35568, "ts": 4589237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f3a0", "tid": 35568, "ts": 4589531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065faf0", "tid": 35568, "ts": 4589824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4589996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e910", "tid": 35568, "ts": 4590118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4590289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660990", "tid": 35568, "ts": 4590411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4590582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660310", "tid": 35568, "ts": 4590703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4590876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f540", "tid": 35568, "ts": 4590997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4591169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06610e0", "tid": 35568, "ts": 4591291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4591462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660a60", "tid": 35568, "ts": 4591583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4591754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fe30", "tid": 35568, "ts": 4591874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660da0", "tid": 35568, "ts": 4592170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f7b0", "tid": 35568, "ts": 4592463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ed20", "tid": 35568, "ts": 4592756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4592928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660b30", "tid": 35568, "ts": 4593049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4593222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660f40", "tid": 35568, "ts": 4593409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4593581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e9e0", "tid": 35568, "ts": 4593709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4593881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660240", "tid": 35568, "ts": 4594002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4594175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e430", "tid": 35568, "ts": 4594297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4594583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660170", "tid": 35568, "ts": 4594720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4594893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06607f0", "tid": 35568, "ts": 4595014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4595215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660c00", "tid": 35568, "ts": 4595339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4595512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06608c0", "tid": 35568, "ts": 4595633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4595805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661280", "tid": 35568, "ts": 4595927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661010", "tid": 35568, "ts": 4596220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660cd0", "tid": 35568, "ts": 4596514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e6a0", "tid": 35568, "ts": 4596807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4596978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065eb80", "tid": 35568, "ts": 4597100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4597272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065eec0", "tid": 35568, "ts": 4597393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4597566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f470", "tid": 35568, "ts": 4597688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4597860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06604b0", "tid": 35568, "ts": 4597982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4598154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065eab0", "tid": 35568, "ts": 4598275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4598447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f610", "tid": 35568, "ts": 4598616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4598800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fbc0", "tid": 35568, "ts": 4598921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fd60", "tid": 35568, "ts": 4599215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ffd0", "tid": 35568, "ts": 4599508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660e70", "tid": 35568, "ts": 4599801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4599972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06611b0", "tid": 35568, "ts": 4600093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4600265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f6e0", "tid": 35568, "ts": 4600387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4600558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06603e0", "tid": 35568, "ts": 4600680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4600852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661350", "tid": 35568, "ts": 4600974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4601144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0661420", "tid": 35568, "ts": 4601266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4601438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e0f0", "tid": 35568, "ts": 4601560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4601731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660580", "tid": 35568, "ts": 4601853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0660720", "tid": 35568, "ts": 4602147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065edf0", "tid": 35568, "ts": 4602440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e1c0", "tid": 35568, "ts": 4602733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4602905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e290", "tid": 35568, "ts": 4603026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4603197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e840", "tid": 35568, "ts": 4603318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4603491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e360", "tid": 35568, "ts": 4603613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4603785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ff00", "tid": 35568, "ts": 4603907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fc90", "tid": 35568, "ts": 4604200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e500", "tid": 35568, "ts": 4604494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ef90", "tid": 35568, "ts": 4604787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4604957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e5d0", "tid": 35568, "ts": 4605079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4605251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06600a0", "tid": 35568, "ts": 4605373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4605545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065e770", "tid": 35568, "ts": 4605666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4605836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065ec50", "tid": 35568, "ts": 4605958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4606128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f060", "tid": 35568, "ts": 4606250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4606422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f130", "tid": 35568, "ts": 4606544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4606716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f880", "tid": 35568, "ts": 4606838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f200", "tid": 35568, "ts": 4607133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f2d0", "tid": 35568, "ts": 4607425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065f950", "tid": 35568, "ts": 4607718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4607890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a065fa20", "tid": 35568, "ts": 4608012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4608184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2770", "tid": 35568, "ts": 4608342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4608516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4240", "tid": 35568, "ts": 4608638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4608810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c51b0", "tid": 35568, "ts": 4608931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4609103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c26a0", "tid": 35568, "ts": 4609224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4609395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4b30", "tid": 35568, "ts": 4609516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4609746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3af0", "tid": 35568, "ts": 4609868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5280", "tid": 35568, "ts": 4610162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3d60", "tid": 35568, "ts": 4610456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5350", "tid": 35568, "ts": 4610750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4610922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5010", "tid": 35568, "ts": 4611044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4611215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4a60", "tid": 35568, "ts": 4611337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4611509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c47f0", "tid": 35568, "ts": 4611631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4611803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4310", "tid": 35568, "ts": 4611925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5420", "tid": 35568, "ts": 4612218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4170", "tid": 35568, "ts": 4612512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c50e0", "tid": 35568, "ts": 4612804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4612976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3880", "tid": 35568, "ts": 4613098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4613269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2d20", "tid": 35568, "ts": 4613390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4613562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4580", "tid": 35568, "ts": 4613684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4613856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c20f0", "tid": 35568, "ts": 4613978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4614216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3f00", "tid": 35568, "ts": 4614399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4614571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3e30", "tid": 35568, "ts": 4614731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4614904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3200", "tid": 35568, "ts": 4615027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4615198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4da0", "tid": 35568, "ts": 4615320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4615493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2ec0", "tid": 35568, "ts": 4615615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4615787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3c90", "tid": 35568, "ts": 4615910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3fd0", "tid": 35568, "ts": 4616203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3bc0", "tid": 35568, "ts": 4616498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c21c0", "tid": 35568, "ts": 4616792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4616964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3950", "tid": 35568, "ts": 4617085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4617257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2290", "tid": 35568, "ts": 4617379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4617551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4f40", "tid": 35568, "ts": 4617672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4617845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2360", "tid": 35568, "ts": 4618049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4618221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c43e0", "tid": 35568, "ts": 4618356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4618600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4990", "tid": 35568, "ts": 4618750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4619010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c40a0", "tid": 35568, "ts": 4619189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4619432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c32d0", "tid": 35568, "ts": 4619596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4619855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4e70", "tid": 35568, "ts": 4620035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4620294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2df0", "tid": 35568, "ts": 4620457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4620705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c44b0", "tid": 35568, "ts": 4620885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4621144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c33a0", "tid": 35568, "ts": 4621326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4621586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3a20", "tid": 35568, "ts": 4621764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4621964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4650", "tid": 35568, "ts": 4622086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4622258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3130", "tid": 35568, "ts": 4622380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4622552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c48c0", "tid": 35568, "ts": 4622674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4622846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2c50", "tid": 35568, "ts": 4622967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4623183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3470", "tid": 35568, "ts": 4623312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4623484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2f90", "tid": 35568, "ts": 4623606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4623779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2430", "tid": 35568, "ts": 4623901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3060", "tid": 35568, "ts": 4624195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4720", "tid": 35568, "ts": 4624490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3540", "tid": 35568, "ts": 4624783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4624955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2500", "tid": 35568, "ts": 4625102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4625274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4cd0", "tid": 35568, "ts": 4625396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4625569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c4c00", "tid": 35568, "ts": 4625691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4625863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c25d0", "tid": 35568, "ts": 4625985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4626158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2840", "tid": 35568, "ts": 4626279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4626450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c3610", "tid": 35568, "ts": 4626572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4626744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2910", "tid": 35568, "ts": 4626867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c29e0", "tid": 35568, "ts": 4627161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2ab0", "tid": 35568, "ts": 4627454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c36e0", "tid": 35568, "ts": 4627748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4627920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c2b80", "tid": 35568, "ts": 4628042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4628214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c37b0", "tid": 35568, "ts": 4628336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4628508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c73d0", "tid": 35568, "ts": 4628631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4628802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6940", "tid": 35568, "ts": 4628925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4629096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c74a0", "tid": 35568, "ts": 4629218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4629390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5690", "tid": 35568, "ts": 4629513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4629684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5830", "tid": 35568, "ts": 4629926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4630221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5b70", "tid": 35568, "ts": 4630394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4630679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c67a0", "tid": 35568, "ts": 4630806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4630982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6600", "tid": 35568, "ts": 4631108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4631281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7cc0", "tid": 35568, "ts": 4631405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4631580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7570", "tid": 35568, "ts": 4631704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4631877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6bb0", "tid": 35568, "ts": 4632000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4632175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5760", "tid": 35568, "ts": 4632298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4632472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c84e0", "tid": 35568, "ts": 4632595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4632852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c61f0", "tid": 35568, "ts": 4633042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4633342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8750", "tid": 35568, "ts": 4633576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4633876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7980", "tid": 35568, "ts": 4634120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4634433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7a50", "tid": 35568, "ts": 4634635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4634945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8270", "tid": 35568, "ts": 4635170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4635482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c62c0", "tid": 35568, "ts": 4635712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4636025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6fc0", "tid": 35568, "ts": 4636229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4636542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7090", "tid": 35568, "ts": 4636760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4637061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8820", "tid": 35568, "ts": 4637247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4637529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8340", "tid": 35568, "ts": 4637723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4638035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c66d0", "tid": 35568, "ts": 4638238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4638550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c78b0", "tid": 35568, "ts": 4638741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4639037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5de0", "tid": 35568, "ts": 4639241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4639731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8410", "tid": 35568, "ts": 4639858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7b20", "tid": 35568, "ts": 4640154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c85b0", "tid": 35568, "ts": 4640449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7300", "tid": 35568, "ts": 4640744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4640916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5900", "tid": 35568, "ts": 4641039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4641211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7710", "tid": 35568, "ts": 4641334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4641505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5f80", "tid": 35568, "ts": 4641628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4641800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8680", "tid": 35568, "ts": 4641923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8000", "tid": 35568, "ts": 4642217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c77e0", "tid": 35568, "ts": 4642513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7640", "tid": 35568, "ts": 4642807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4642979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6d50", "tid": 35568, "ts": 4643102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4643274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5aa0", "tid": 35568, "ts": 4643397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4643569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7bf0", "tid": 35568, "ts": 4643691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4643863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7e60", "tid": 35568, "ts": 4643986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4644160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c59d0", "tid": 35568, "ts": 4644282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4644454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c54f0", "tid": 35568, "ts": 4644577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4644750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5c40", "tid": 35568, "ts": 4644872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4645045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c55c0", "tid": 35568, "ts": 4645167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4645338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6e20", "tid": 35568, "ts": 4645532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4645706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7d90", "tid": 35568, "ts": 4645831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6ef0", "tid": 35568, "ts": 4646127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5d10", "tid": 35568, "ts": 4646424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6390", "tid": 35568, "ts": 4646720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4646893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c5eb0", "tid": 35568, "ts": 4647016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4647189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7f30", "tid": 35568, "ts": 4647312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4647485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c80d0", "tid": 35568, "ts": 4647608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4647780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7160", "tid": 35568, "ts": 4647903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c81a0", "tid": 35568, "ts": 4648199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6870", "tid": 35568, "ts": 4648494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6a10", "tid": 35568, "ts": 4648789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4648961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6050", "tid": 35568, "ts": 4649084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4649257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6120", "tid": 35568, "ts": 4649380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4649553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6c80", "tid": 35568, "ts": 4649676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4649849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c7230", "tid": 35568, "ts": 4649971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4650144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6460", "tid": 35568, "ts": 4650335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4650508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6530", "tid": 35568, "ts": 4650631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4650803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c6ae0", "tid": 35568, "ts": 4650927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca8a0", "tid": 35568, "ts": 4651222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9380", "tid": 35568, "ts": 4651518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb8e0", "tid": 35568, "ts": 4651813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4651986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb5a0", "tid": 35568, "ts": 4652108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4652281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9a00", "tid": 35568, "ts": 4652403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4652576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb9b0", "tid": 35568, "ts": 4652699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4652872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9d40", "tid": 35568, "ts": 4652996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4653169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9ad0", "tid": 35568, "ts": 4653292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4653464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca220", "tid": 35568, "ts": 4653588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4653760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca080", "tid": 35568, "ts": 4653882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9520", "tid": 35568, "ts": 4654177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8b60", "tid": 35568, "ts": 4654473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cba80", "tid": 35568, "ts": 4654768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4654940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb670", "tid": 35568, "ts": 4655063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4655236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8c30", "tid": 35568, "ts": 4655358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4655530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09caf20", "tid": 35568, "ts": 4655652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4655825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cabe0", "tid": 35568, "ts": 4655948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4656120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb190", "tid": 35568, "ts": 4656243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4656416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9ee0", "tid": 35568, "ts": 4656539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4656712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9fb0", "tid": 35568, "ts": 4656835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca2f0", "tid": 35568, "ts": 4657131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbb50", "tid": 35568, "ts": 4657426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09caff0", "tid": 35568, "ts": 4657721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4657893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9e10", "tid": 35568, "ts": 4658016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4658187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbc20", "tid": 35568, "ts": 4658310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4658482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca7d0", "tid": 35568, "ts": 4658605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4658777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9040", "tid": 35568, "ts": 4658900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4659072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c88f0", "tid": 35568, "ts": 4659245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4659418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8d00", "tid": 35568, "ts": 4659541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4659713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb810", "tid": 35568, "ts": 4659835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c89c0", "tid": 35568, "ts": 4660130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9790", "tid": 35568, "ts": 4660425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb740", "tid": 35568, "ts": 4660718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4660891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca150", "tid": 35568, "ts": 4661057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4661275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8dd0", "tid": 35568, "ts": 4661401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4661575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb330", "tid": 35568, "ts": 4661699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4661872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca3c0", "tid": 35568, "ts": 4661996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4662169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca630", "tid": 35568, "ts": 4662292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4662465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cacb0", "tid": 35568, "ts": 4662589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4662762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb260", "tid": 35568, "ts": 4662886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca700", "tid": 35568, "ts": 4663182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8a90", "tid": 35568, "ts": 4663477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca490", "tid": 35568, "ts": 4663774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4663947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9ba0", "tid": 35568, "ts": 4664069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4664242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8ea0", "tid": 35568, "ts": 4664364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4664537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cad80", "tid": 35568, "ts": 4664659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4664832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca560", "tid": 35568, "ts": 4664955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4665128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ca970", "tid": 35568, "ts": 4665251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4665424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09caa40", "tid": 35568, "ts": 4665546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4665719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cab10", "tid": 35568, "ts": 4665842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c8f70", "tid": 35568, "ts": 4666138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cae50", "tid": 35568, "ts": 4666432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb400", "tid": 35568, "ts": 4666728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4666901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb0c0", "tid": 35568, "ts": 4667023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4667195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cb4d0", "tid": 35568, "ts": 4667318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4667491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9110", "tid": 35568, "ts": 4667613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4667785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c95f0", "tid": 35568, "ts": 4667908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c91e0", "tid": 35568, "ts": 4668202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c92b0", "tid": 35568, "ts": 4668497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9450", "tid": 35568, "ts": 4668793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4668965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c96c0", "tid": 35568, "ts": 4669087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4669260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9860", "tid": 35568, "ts": 4669382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4669554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9930", "tid": 35568, "ts": 4669676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4669849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09c9c70", "tid": 35568, "ts": 4669972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4670145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cce00", "tid": 35568, "ts": 4670268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4670440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc780", "tid": 35568, "ts": 4670563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4670735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd480", "tid": 35568, "ts": 4670859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd550", "tid": 35568, "ts": 4671154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cee80", "tid": 35568, "ts": 4671448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cced0", "tid": 35568, "ts": 4671744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4671918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce660", "tid": 35568, "ts": 4672042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4672214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce8d0", "tid": 35568, "ts": 4672337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4672508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd960", "tid": 35568, "ts": 4672631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4672804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd2e0", "tid": 35568, "ts": 4672927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc2a0", "tid": 35568, "ts": 4673221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd6f0", "tid": 35568, "ts": 4673516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce800", "tid": 35568, "ts": 4673811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4673984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd620", "tid": 35568, "ts": 4674107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4674279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cef50", "tid": 35568, "ts": 4674402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4674574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc9f0", "tid": 35568, "ts": 4674697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4674869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce9a0", "tid": 35568, "ts": 4674992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4675164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cea70", "tid": 35568, "ts": 4675287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4675459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc850", "tid": 35568, "ts": 4675582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4675754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc920", "tid": 35568, "ts": 4675876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd7c0", "tid": 35568, "ts": 4676171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccac0", "tid": 35568, "ts": 4676465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf020", "tid": 35568, "ts": 4676823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4676995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccfa0", "tid": 35568, "ts": 4677118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4677290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce180", "tid": 35568, "ts": 4677413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4677585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc440", "tid": 35568, "ts": 4677708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4677880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc030", "tid": 35568, "ts": 4678002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4678175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce590", "tid": 35568, "ts": 4678298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4678470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbe90", "tid": 35568, "ts": 4678593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4678766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc370", "tid": 35568, "ts": 4678888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce4c0", "tid": 35568, "ts": 4679182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cda30", "tid": 35568, "ts": 4679478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd070", "tid": 35568, "ts": 4679773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4679945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd890", "tid": 35568, "ts": 4680068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4680240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc5e0", "tid": 35568, "ts": 4680363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4680535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cec10", "tid": 35568, "ts": 4680658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4680830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce730", "tid": 35568, "ts": 4680953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4681126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ceb40", "tid": 35568, "ts": 4681248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4681421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbcf0", "tid": 35568, "ts": 4681544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4681717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd140", "tid": 35568, "ts": 4681839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd210", "tid": 35568, "ts": 4682136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdb00", "tid": 35568, "ts": 4682431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc1d0", "tid": 35568, "ts": 4682726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4682899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdca0", "tid": 35568, "ts": 4683021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4683194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbdc0", "tid": 35568, "ts": 4683316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4683488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cbf60", "tid": 35568, "ts": 4683610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4683782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccb90", "tid": 35568, "ts": 4683904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4684124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cece0", "tid": 35568, "ts": 4684248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4684421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc100", "tid": 35568, "ts": 4684544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4684716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdd70", "tid": 35568, "ts": 4684839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc510", "tid": 35568, "ts": 4685134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdbd0", "tid": 35568, "ts": 4685429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cd3b0", "tid": 35568, "ts": 4685724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4685896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cde40", "tid": 35568, "ts": 4686019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4686192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdf10", "tid": 35568, "ts": 4686315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4686486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cdfe0", "tid": 35568, "ts": 4686609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4686781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce0b0", "tid": 35568, "ts": 4686904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cc6b0", "tid": 35568, "ts": 4687198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce250", "tid": 35568, "ts": 4687493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce320", "tid": 35568, "ts": 4687789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4687960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccc60", "tid": 35568, "ts": 4688082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4688254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ccd30", "tid": 35568, "ts": 4688376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4688548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cedb0", "tid": 35568, "ts": 4688670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4688842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ce3f0", "tid": 35568, "ts": 4688965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4689138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1f40", "tid": 35568, "ts": 4689261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4689434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1da0", "tid": 35568, "ts": 4689557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4689729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d21b0", "tid": 35568, "ts": 4689852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0a20", "tid": 35568, "ts": 4690147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1e70", "tid": 35568, "ts": 4690443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0d60", "tid": 35568, "ts": 4690738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4690909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d06e0", "tid": 35568, "ts": 4691032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4691203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0e30", "tid": 35568, "ts": 4691326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4691498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0af0", "tid": 35568, "ts": 4691621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4691841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0fd0", "tid": 35568, "ts": 4691971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4692144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0950", "tid": 35568, "ts": 4692305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4692571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2420", "tid": 35568, "ts": 4692694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4692867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2280", "tid": 35568, "ts": 4693020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4693193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d20e0", "tid": 35568, "ts": 4693317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4693490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1cd0", "tid": 35568, "ts": 4693614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4693786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1a60", "tid": 35568, "ts": 4693910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1b30", "tid": 35568, "ts": 4694206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf840", "tid": 35568, "ts": 4694524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2350", "tid": 35568, "ts": 4694821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4694993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0540", "tid": 35568, "ts": 4695116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4695288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d10a0", "tid": 35568, "ts": 4695410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4695583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf0f0", "tid": 35568, "ts": 4695707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4695879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0bc0", "tid": 35568, "ts": 4696002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4696175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1170", "tid": 35568, "ts": 4696298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4696470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf9e0", "tid": 35568, "ts": 4696592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4696764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cff90", "tid": 35568, "ts": 4696887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1990", "tid": 35568, "ts": 4697182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2010", "tid": 35568, "ts": 4697477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf1c0", "tid": 35568, "ts": 4697773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4697946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d07b0", "tid": 35568, "ts": 4698068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4698239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0470", "tid": 35568, "ts": 4698362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4698535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf290", "tid": 35568, "ts": 4698658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4698830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf360", "tid": 35568, "ts": 4698955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4699127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d18c0", "tid": 35568, "ts": 4699251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4699423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1240", "tid": 35568, "ts": 4699545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4699718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1c00", "tid": 35568, "ts": 4699841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf500", "tid": 35568, "ts": 4700135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf430", "tid": 35568, "ts": 4700430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0610", "tid": 35568, "ts": 4700724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4700898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf5d0", "tid": 35568, "ts": 4701021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4701194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf6a0", "tid": 35568, "ts": 4701317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4701489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf770", "tid": 35568, "ts": 4701612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4701785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d17f0", "tid": 35568, "ts": 4701908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4702081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cf910", "tid": 35568, "ts": 4702205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4702377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0200", "tid": 35568, "ts": 4702501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4702672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfab0", "tid": 35568, "ts": 4702876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfb80", "tid": 35568, "ts": 4703172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfc50", "tid": 35568, "ts": 4703469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0060", "tid": 35568, "ts": 4703765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4703939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0c90", "tid": 35568, "ts": 4704062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4704235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfd20", "tid": 35568, "ts": 4704357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4704530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d14b0", "tid": 35568, "ts": 4704652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4704824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfdf0", "tid": 35568, "ts": 4704947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4705120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1310", "tid": 35568, "ts": 4705243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4705415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0f00", "tid": 35568, "ts": 4705538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4705710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0880", "tid": 35568, "ts": 4705832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09cfec0", "tid": 35568, "ts": 4706128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d0130", "tid": 35568, "ts": 4706424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d13e0", "tid": 35568, "ts": 4706719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4706891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d02d0", "tid": 35568, "ts": 4707014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4707186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1580", "tid": 35568, "ts": 4707309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4707481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1650", "tid": 35568, "ts": 4707603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4707775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d1720", "tid": 35568, "ts": 4708055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4708229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d03a0", "tid": 35568, "ts": 4708354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4708527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5000", "tid": 35568, "ts": 4708651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4708825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3050", "tid": 35568, "ts": 4708949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4709121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3120", "tid": 35568, "ts": 4709244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4709417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3530", "tid": 35568, "ts": 4709541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4709714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3870", "tid": 35568, "ts": 4709837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d37a0", "tid": 35568, "ts": 4710131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4230", "tid": 35568, "ts": 4710427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d43d0", "tid": 35568, "ts": 4710722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4710896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2d10", "tid": 35568, "ts": 4711018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4711191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d32c0", "tid": 35568, "ts": 4711314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4711485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3e20", "tid": 35568, "ts": 4711608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4711780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d31f0", "tid": 35568, "ts": 4711903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5750", "tid": 35568, "ts": 4712199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4160", "tid": 35568, "ts": 4712494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d55b0", "tid": 35568, "ts": 4712789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4712961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4300", "tid": 35568, "ts": 4713084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4713257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2900", "tid": 35568, "ts": 4713380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4713552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4bf0", "tid": 35568, "ts": 4713675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4713848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5680", "tid": 35568, "ts": 4713971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4714143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d51a0", "tid": 35568, "ts": 4714267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4714439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3390", "tid": 35568, "ts": 4714563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4714735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5820", "tid": 35568, "ts": 4714858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4cc0", "tid": 35568, "ts": 4715153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d24f0", "tid": 35568, "ts": 4715449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3fc0", "tid": 35568, "ts": 4715743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4715915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3940", "tid": 35568, "ts": 4716038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4716210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d44a0", "tid": 35568, "ts": 4716333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4716506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3460", "tid": 35568, "ts": 4716629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4716802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d25c0", "tid": 35568, "ts": 4716925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3d50", "tid": 35568, "ts": 4717220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2690", "tid": 35568, "ts": 4717515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3600", "tid": 35568, "ts": 4717810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4717980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3a10", "tid": 35568, "ts": 4718172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4718345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4e60", "tid": 35568, "ts": 4718469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4718641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2eb0", "tid": 35568, "ts": 4718764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4718936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4980", "tid": 35568, "ts": 4719059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4719231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2760", "tid": 35568, "ts": 4719354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4719567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d36d0", "tid": 35568, "ts": 4719692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4719867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4090", "tid": 35568, "ts": 4719991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4720167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5270", "tid": 35568, "ts": 4720297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4720470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3ae0", "tid": 35568, "ts": 4720593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4720766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4570", "tid": 35568, "ts": 4720888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3bb0", "tid": 35568, "ts": 4721183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4d90", "tid": 35568, "ts": 4721479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d48b0", "tid": 35568, "ts": 4721775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4721947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2830", "tid": 35568, "ts": 4722069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4722242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3c80", "tid": 35568, "ts": 4722365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4722538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4640", "tid": 35568, "ts": 4722661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4722833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5340", "tid": 35568, "ts": 4722956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4723129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4710", "tid": 35568, "ts": 4723251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4723424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d29d0", "tid": 35568, "ts": 4723580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4723895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4f30", "tid": 35568, "ts": 4724026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4724233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d47e0", "tid": 35568, "ts": 4724381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4724576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d3ef0", "tid": 35568, "ts": 4724722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4724984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2aa0", "tid": 35568, "ts": 4725163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4725360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4a50", "tid": 35568, "ts": 4725536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4725774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d4b20", "tid": 35568, "ts": 4725923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4726095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d50d0", "tid": 35568, "ts": 4726218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4726391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5410", "tid": 35568, "ts": 4726531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4726704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d54e0", "tid": 35568, "ts": 4726851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2b70", "tid": 35568, "ts": 4727149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2c40", "tid": 35568, "ts": 4727448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2de0", "tid": 35568, "ts": 4727745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4727919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d2f80", "tid": 35568, "ts": 4728043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4728219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8810", "tid": 35568, "ts": 4728343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4728517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6860", "tid": 35568, "ts": 4728641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4728816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7150", "tid": 35568, "ts": 4728942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4729116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d84d0", "tid": 35568, "ts": 4729241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4729416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7cb0", "tid": 35568, "ts": 4729541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4729715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d77d0", "tid": 35568, "ts": 4729840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7220", "tid": 35568, "ts": 4730139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8260", "tid": 35568, "ts": 4730438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5dd0", "tid": 35568, "ts": 4730738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4730913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6040", "tid": 35568, "ts": 4731037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4731212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6520", "tid": 35568, "ts": 4731337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4731511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7560", "tid": 35568, "ts": 4731635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4731810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6930", "tid": 35568, "ts": 4731934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4732131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6e10", "tid": 35568, "ts": 4732254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4732428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8190", "tid": 35568, "ts": 4732552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4732726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d58f0", "tid": 35568, "ts": 4732850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4733046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5a90", "tid": 35568, "ts": 4733193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4733413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7be0", "tid": 35568, "ts": 4733536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4733710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d78a0", "tid": 35568, "ts": 4733834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d89b0", "tid": 35568, "ts": 4734130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d65f0", "tid": 35568, "ts": 4734427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6ee0", "tid": 35568, "ts": 4734723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4734894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d85a0", "tid": 35568, "ts": 4735018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4735191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7d80", "tid": 35568, "ts": 4735314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4735485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6110", "tid": 35568, "ts": 4735608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4735781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d88e0", "tid": 35568, "ts": 4735904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4736126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7970", "tid": 35568, "ts": 4736254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4736427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8670", "tid": 35568, "ts": 4736550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4736724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7080", "tid": 35568, "ts": 4736847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7ff0", "tid": 35568, "ts": 4737142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6fb0", "tid": 35568, "ts": 4737439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7e50", "tid": 35568, "ts": 4737737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4737911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6a00", "tid": 35568, "ts": 4738035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4738208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d72f0", "tid": 35568, "ts": 4738332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4738505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7a40", "tid": 35568, "ts": 4738627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4738800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d80c0", "tid": 35568, "ts": 4738922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4739095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6ad0", "tid": 35568, "ts": 4739301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4739590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7f20", "tid": 35568, "ts": 4739770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4739988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d66c0", "tid": 35568, "ts": 4740204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4740377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6790", "tid": 35568, "ts": 4740501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4740674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8330", "tid": 35568, "ts": 4740797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4740969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5b60", "tid": 35568, "ts": 4741092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4741265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8400", "tid": 35568, "ts": 4741388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4741561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8740", "tid": 35568, "ts": 4741684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4741856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5ea0", "tid": 35568, "ts": 4741980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4742152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8a80", "tid": 35568, "ts": 4742275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4742447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d73c0", "tid": 35568, "ts": 4742571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4742744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d61e0", "tid": 35568, "ts": 4742867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5f70", "tid": 35568, "ts": 4743163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7b10", "tid": 35568, "ts": 4743460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7490", "tid": 35568, "ts": 4743757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4743930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6ba0", "tid": 35568, "ts": 4744053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4744226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6380", "tid": 35568, "ts": 4744349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4744522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7630", "tid": 35568, "ts": 4744644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4744816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8b50", "tid": 35568, "ts": 4744940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4745113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d7700", "tid": 35568, "ts": 4745237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4745409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d59c0", "tid": 35568, "ts": 4745533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4745705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5c30", "tid": 35568, "ts": 4745827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8c20", "tid": 35568, "ts": 4746122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d5d00", "tid": 35568, "ts": 4746418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6c70", "tid": 35568, "ts": 4746713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4746885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d62b0", "tid": 35568, "ts": 4747008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4747181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6450", "tid": 35568, "ts": 4747304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4747476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d6d40", "tid": 35568, "ts": 4747599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4747771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db8d0", "tid": 35568, "ts": 4747894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db3f0", "tid": 35568, "ts": 4748189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d99f0", "tid": 35568, "ts": 4748485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da960", "tid": 35568, "ts": 4748781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4748953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db180", "tid": 35568, "ts": 4749076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4749248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db9a0", "tid": 35568, "ts": 4749371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4749544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09daca0", "tid": 35568, "ts": 4749667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4749839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9d30", "tid": 35568, "ts": 4749963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4750137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9e00", "tid": 35568, "ts": 4750261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4750434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dae40", "tid": 35568, "ts": 4750557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4750730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9ed0", "tid": 35568, "ts": 4750853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da070", "tid": 35568, "ts": 4751148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da140", "tid": 35568, "ts": 4751444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9fa0", "tid": 35568, "ts": 4751739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4751912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9ac0", "tid": 35568, "ts": 4752037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4752209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db250", "tid": 35568, "ts": 4752333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4752506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db320", "tid": 35568, "ts": 4752629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4752800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dabd0", "tid": 35568, "ts": 4752923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da620", "tid": 35568, "ts": 4753220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da890", "tid": 35568, "ts": 4753516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dba70", "tid": 35568, "ts": 4753810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4753982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da210", "tid": 35568, "ts": 4754105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4754278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da2e0", "tid": 35568, "ts": 4754401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4754573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da3b0", "tid": 35568, "ts": 4754696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4754955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dad70", "tid": 35568, "ts": 4755082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4755305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9b90", "tid": 35568, "ts": 4755432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4755605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9780", "tid": 35568, "ts": 4755730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4755902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da7c0", "tid": 35568, "ts": 4756026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4756198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da480", "tid": 35568, "ts": 4756321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4756493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db590", "tid": 35568, "ts": 4756661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4756833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09daf10", "tid": 35568, "ts": 4756956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4757129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9850", "tid": 35568, "ts": 4757253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4757425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da550", "tid": 35568, "ts": 4757548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4757720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09da6f0", "tid": 35568, "ts": 4757843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dafe0", "tid": 35568, "ts": 4758141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db0b0", "tid": 35568, "ts": 4758436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8f60", "tid": 35568, "ts": 4758784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4758958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9030", "tid": 35568, "ts": 4759081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4759252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db4c0", "tid": 35568, "ts": 4759376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4759548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9c60", "tid": 35568, "ts": 4759670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4759842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbce0", "tid": 35568, "ts": 4759965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4760137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db660", "tid": 35568, "ts": 4760260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4760433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db730", "tid": 35568, "ts": 4760556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4760729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbb40", "tid": 35568, "ts": 4760852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbc10", "tid": 35568, "ts": 4761146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbdb0", "tid": 35568, "ts": 4761442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09db800", "tid": 35568, "ts": 4761736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4761909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbe80", "tid": 35568, "ts": 4762031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4762203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9440", "tid": 35568, "ts": 4762326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4762499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9920", "tid": 35568, "ts": 4762623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4762795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dbf50", "tid": 35568, "ts": 4762917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc020", "tid": 35568, "ts": 4763212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09daa30", "tid": 35568, "ts": 4763507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dab00", "tid": 35568, "ts": 4763802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4763973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8cf0", "tid": 35568, "ts": 4764096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4764268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d96b0", "tid": 35568, "ts": 4764391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4764563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8dc0", "tid": 35568, "ts": 4764686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4764858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d8e90", "tid": 35568, "ts": 4764981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4765153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9100", "tid": 35568, "ts": 4765276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4765450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d91d0", "tid": 35568, "ts": 4765572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4765745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d92a0", "tid": 35568, "ts": 4765868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9370", "tid": 35568, "ts": 4766162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d9510", "tid": 35568, "ts": 4766458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09d95e0", "tid": 35568, "ts": 4766754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4766926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd6e0", "tid": 35568, "ts": 4767049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4767222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcdf0", "tid": 35568, "ts": 4767345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4767516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddfd0", "tid": 35568, "ts": 4767639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4767811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd950", "tid": 35568, "ts": 4767934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc910", "tid": 35568, "ts": 4768230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de720", "tid": 35568, "ts": 4768525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd200", "tid": 35568, "ts": 4768821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4768993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de3e0", "tid": 35568, "ts": 4769116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4769288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de0a0", "tid": 35568, "ts": 4769411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4769583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd540", "tid": 35568, "ts": 4769706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4769878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddaf0", "tid": 35568, "ts": 4770000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4770173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de7f0", "tid": 35568, "ts": 4770296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4770539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd060", "tid": 35568, "ts": 4770663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4770835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dea60", "tid": 35568, "ts": 4770957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4771129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc9e0", "tid": 35568, "ts": 4771252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4771424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc5d0", "tid": 35568, "ts": 4771547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4771719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc1c0", "tid": 35568, "ts": 4771843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd610", "tid": 35568, "ts": 4772137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de170", "tid": 35568, "ts": 4772432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddc90", "tid": 35568, "ts": 4772727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4772898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dee70", "tid": 35568, "ts": 4773021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4773194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc500", "tid": 35568, "ts": 4773342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4773514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd3a0", "tid": 35568, "ts": 4773638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4773810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df280", "tid": 35568, "ts": 4773933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df1b0", "tid": 35568, "ts": 4774226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09deb30", "tid": 35568, "ts": 4774520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc6a0", "tid": 35568, "ts": 4774815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4774987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de240", "tid": 35568, "ts": 4775110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4775282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddbc0", "tid": 35568, "ts": 4775405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4775577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd7b0", "tid": 35568, "ts": 4775699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4775872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc290", "tid": 35568, "ts": 4775995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4776166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd2d0", "tid": 35568, "ts": 4776289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4776461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de8c0", "tid": 35568, "ts": 4776584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4776755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dec00", "tid": 35568, "ts": 4866824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4867133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df420", "tid": 35568, "ts": 4867286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4867468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc430", "tid": 35568, "ts": 4867606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4867781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddd60", "tid": 35568, "ts": 4867907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09def40", "tid": 35568, "ts": 4868205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc770", "tid": 35568, "ts": 4868503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df010", "tid": 35568, "ts": 4868801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4868974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd880", "tid": 35568, "ts": 4869098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4869271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dde30", "tid": 35568, "ts": 4869395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4869568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de310", "tid": 35568, "ts": 4869691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4869865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de4b0", "tid": 35568, "ts": 4869989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4870161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df0e0", "tid": 35568, "ts": 4870284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4870457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc0f0", "tid": 35568, "ts": 4870582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4870754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de580", "tid": 35568, "ts": 4870878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09ddf00", "tid": 35568, "ts": 4871176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de650", "tid": 35568, "ts": 4871474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc840", "tid": 35568, "ts": 4871771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4871943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcb80", "tid": 35568, "ts": 4872066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4872240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcc50", "tid": 35568, "ts": 4872363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4872535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcd20", "tid": 35568, "ts": 4872658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4872831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcec0", "tid": 35568, "ts": 4872955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4873127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcf90", "tid": 35568, "ts": 4873249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4873423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd130", "tid": 35568, "ts": 4873547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4873720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfb70", "tid": 35568, "ts": 4873843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df830", "tid": 35568, "ts": 4874139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df900", "tid": 35568, "ts": 4874434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df9d0", "tid": 35568, "ts": 4874732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4874904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1bf0", "tid": 35568, "ts": 4875027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4875201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1090", "tid": 35568, "ts": 4875324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4875496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0870", "tid": 35568, "ts": 4875619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4875793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e06d0", "tid": 35568, "ts": 4875916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e17e0", "tid": 35568, "ts": 4876211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0120", "tid": 35568, "ts": 4876508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df4f0", "tid": 35568, "ts": 4876805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4876977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfd10", "tid": 35568, "ts": 4877103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4877277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfaa0", "tid": 35568, "ts": 4877400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4877571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0d50", "tid": 35568, "ts": 4877694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4877866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfde0", "tid": 35568, "ts": 4877989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4878162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e07a0", "tid": 35568, "ts": 4878285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4878458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0940", "tid": 35568, "ts": 4878581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4878753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1f30", "tid": 35568, "ts": 4878876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4879048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e18b0", "tid": 35568, "ts": 4879171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4879344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df690", "tid": 35568, "ts": 4879466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4879637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfc40", "tid": 35568, "ts": 4879816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0ef0", "tid": 35568, "ts": 4880183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dfeb0", "tid": 35568, "ts": 4880478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0390", "tid": 35568, "ts": 4880773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4880945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0e20", "tid": 35568, "ts": 4881067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4881241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0bb0", "tid": 35568, "ts": 4881376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4881548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df5c0", "tid": 35568, "ts": 4881671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4881843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dff80", "tid": 35568, "ts": 4881966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4882139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e01f0", "tid": 35568, "ts": 4882261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4882433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e02c0", "tid": 35568, "ts": 4882557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4882730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df760", "tid": 35568, "ts": 4882852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0a10", "tid": 35568, "ts": 4883147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0050", "tid": 35568, "ts": 4883440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0460", "tid": 35568, "ts": 4883735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4883908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0530", "tid": 35568, "ts": 4884030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4884204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0ae0", "tid": 35568, "ts": 4884326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4884499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0c80", "tid": 35568, "ts": 4884626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4884799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0600", "tid": 35568, "ts": 4884923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e0fc0", "tid": 35568, "ts": 4885219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1160", "tid": 35568, "ts": 4885514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1980", "tid": 35568, "ts": 4885809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4885982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e14a0", "tid": 35568, "ts": 4886104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4886277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1640", "tid": 35568, "ts": 4886399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4886573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1a50", "tid": 35568, "ts": 4886696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4886869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1230", "tid": 35568, "ts": 4886992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4887164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1300", "tid": 35568, "ts": 4887287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4887460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e13d0", "tid": 35568, "ts": 4887583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4887755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1570", "tid": 35568, "ts": 4887878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1b20", "tid": 35568, "ts": 4888173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1710", "tid": 35568, "ts": 4888467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1cc0", "tid": 35568, "ts": 4888762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4888935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1d90", "tid": 35568, "ts": 4889058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4889231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09e1e60", "tid": 35568, "ts": 4889354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4889526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792120", "tid": 35568, "ts": 4889650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4889823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c793300", "tid": 35568, "ts": 4889946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4890119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792bb0", "tid": 35568, "ts": 4890243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4890414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792c80", "tid": 35568, "ts": 4890538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4890711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792d50", "tid": 35568, "ts": 4890834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348c792e20", "tid": 35568, "ts": 4891129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a06786a0", "tid": 35568, "ts": 4891425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a033a390", "tid": 35568, "ts": 4891721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4891893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122930", "tid": 35568, "ts": 4892029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4892203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01222b0", "tid": 35568, "ts": 4892326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4892498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122d40", "tid": 35568, "ts": 4892621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4892793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124330", "tid": 35568, "ts": 4892916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121750", "tid": 35568, "ts": 4893211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121f70", "tid": 35568, "ts": 4893506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01218f0", "tid": 35568, "ts": 4893801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4893974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122a00", "tid": 35568, "ts": 4894097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4894269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124400", "tid": 35568, "ts": 4894391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4894586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122040", "tid": 35568, "ts": 4894708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4894881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122ad0", "tid": 35568, "ts": 4895004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4895176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122450", "tid": 35568, "ts": 4895298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4895558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01219c0", "tid": 35568, "ts": 4895685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4895859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122790", "tid": 35568, "ts": 4895983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4896156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122ba0", "tid": 35568, "ts": 4896279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4896453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122c70", "tid": 35568, "ts": 4896577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4896749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01221e0", "tid": 35568, "ts": 4896872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122380", "tid": 35568, "ts": 4897170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124740", "tid": 35568, "ts": 4897466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123b10", "tid": 35568, "ts": 4897763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4897936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123f20", "tid": 35568, "ts": 4898059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4898232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122520", "tid": 35568, "ts": 4898355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4898529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122e10", "tid": 35568, "ts": 4898652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4898823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124810", "tid": 35568, "ts": 4898946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4899118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123d80", "tid": 35568, "ts": 4899241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4899413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122110", "tid": 35568, "ts": 4899536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4899708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123be0", "tid": 35568, "ts": 4899831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123700", "tid": 35568, "ts": 4900127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01225f0", "tid": 35568, "ts": 4900422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122fb0", "tid": 35568, "ts": 4900717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4900889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122ee0", "tid": 35568, "ts": 4901013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4901185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01240c0", "tid": 35568, "ts": 4901307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4901480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124260", "tid": 35568, "ts": 4901603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4901775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123560", "tid": 35568, "ts": 4901897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123080", "tid": 35568, "ts": 4902194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123ff0", "tid": 35568, "ts": 4902488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01245a0", "tid": 35568, "ts": 4902783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4902957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01226c0", "tid": 35568, "ts": 4903080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4903253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121a90", "tid": 35568, "ts": 4903375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4903549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01233c0", "tid": 35568, "ts": 4903671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4903846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121ea0", "tid": 35568, "ts": 4903968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4904141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01244d0", "tid": 35568, "ts": 4904264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4904435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01238a0", "tid": 35568, "ts": 4904559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4904732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01232f0", "tid": 35568, "ts": 4904855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0122860", "tid": 35568, "ts": 4905150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124670", "tid": 35568, "ts": 4905446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123150", "tid": 35568, "ts": 4905741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4905914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123220", "tid": 35568, "ts": 4906038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4906211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123490", "tid": 35568, "ts": 4906335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4906508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01214e0", "tid": 35568, "ts": 4906631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4906804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123630", "tid": 35568, "ts": 4906927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01215b0", "tid": 35568, "ts": 4907221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01237d0", "tid": 35568, "ts": 4907516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123970", "tid": 35568, "ts": 4907812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4907985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123a40", "tid": 35568, "ts": 4908108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4908280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123cb0", "tid": 35568, "ts": 4908402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4908575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0123e50", "tid": 35568, "ts": 4908698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4908870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124190", "tid": 35568, "ts": 4908993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4909166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121b60", "tid": 35568, "ts": 4909290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4909462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121680", "tid": 35568, "ts": 4909585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4909757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121c30", "tid": 35568, "ts": 4909880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121820", "tid": 35568, "ts": 4910175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121d00", "tid": 35568, "ts": 4910470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121dd0", "tid": 35568, "ts": 4910766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4910939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125100", "tid": 35568, "ts": 4911114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4911288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126fe0", "tid": 35568, "ts": 4911411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4911583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125d30", "tid": 35568, "ts": 4911705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4911877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125ed0", "tid": 35568, "ts": 4912000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4912172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01249b0", "tid": 35568, "ts": 4912295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4912467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01248e0", "tid": 35568, "ts": 4912590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4912762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124c20", "tid": 35568, "ts": 4912897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124dc0", "tid": 35568, "ts": 4913192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124b50", "tid": 35568, "ts": 4913488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125780", "tid": 35568, "ts": 4913783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4913956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01251d0", "tid": 35568, "ts": 4914079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4914252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124cf0", "tid": 35568, "ts": 4914375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4914547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125b90", "tid": 35568, "ts": 4914669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4914841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126d70", "tid": 35568, "ts": 4914965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4915140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127b40", "tid": 35568, "ts": 4915262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4915445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127730", "tid": 35568, "ts": 4915569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4915740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127250", "tid": 35568, "ts": 4915864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126550", "tid": 35568, "ts": 4916159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126210", "tid": 35568, "ts": 4916454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01255e0", "tid": 35568, "ts": 4916749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4916921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127c10", "tid": 35568, "ts": 4917044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4917217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125ac0", "tid": 35568, "ts": 4917339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4917512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125e00", "tid": 35568, "ts": 4917635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4917808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01267c0", "tid": 35568, "ts": 4917930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127800", "tid": 35568, "ts": 4918224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124e90", "tid": 35568, "ts": 4918520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125c60", "tid": 35568, "ts": 4918815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4918987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01262e0", "tid": 35568, "ts": 4919110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4919282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01256b0", "tid": 35568, "ts": 4919406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4919577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126960", "tid": 35568, "ts": 4919699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4919872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125850", "tid": 35568, "ts": 4919995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4920167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125fa0", "tid": 35568, "ts": 4920290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4920463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126f10", "tid": 35568, "ts": 4920586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4920759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124f60", "tid": 35568, "ts": 4920882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126070", "tid": 35568, "ts": 4921178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125920", "tid": 35568, "ts": 4921474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01278d0", "tid": 35568, "ts": 4921770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4921943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01279a0", "tid": 35568, "ts": 4922066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4922239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126140", "tid": 35568, "ts": 4922362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4922535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01259f0", "tid": 35568, "ts": 4922658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4922830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125030", "tid": 35568, "ts": 4922953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4923125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126bd0", "tid": 35568, "ts": 4923248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4923421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127a70", "tid": 35568, "ts": 4923544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4923716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125370", "tid": 35568, "ts": 4923840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0124a80", "tid": 35568, "ts": 4924135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01252a0", "tid": 35568, "ts": 4924429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127590", "tid": 35568, "ts": 4924725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4924897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126890", "tid": 35568, "ts": 4925019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4925192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01263b0", "tid": 35568, "ts": 4925316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4925488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126480", "tid": 35568, "ts": 4925611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4925782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126e40", "tid": 35568, "ts": 4925906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4926078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126620", "tid": 35568, "ts": 4926201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4926372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125440", "tid": 35568, "ts": 4926500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4926713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0125510", "tid": 35568, "ts": 4926837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127660", "tid": 35568, "ts": 4927132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01266f0", "tid": 35568, "ts": 4927427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126a30", "tid": 35568, "ts": 4927722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4927895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126b00", "tid": 35568, "ts": 4928018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4928191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0126ca0", "tid": 35568, "ts": 4928314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4928485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01270b0", "tid": 35568, "ts": 4928609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4928781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127180", "tid": 35568, "ts": 4928904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127320", "tid": 35568, "ts": 4929198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01273f0", "tid": 35568, "ts": 4929493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01274c0", "tid": 35568, "ts": 4929788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4929959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012aa60", "tid": 35568, "ts": 4930082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4930255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127db0", "tid": 35568, "ts": 4930378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4930550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127ce0", "tid": 35568, "ts": 4930673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4930845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129e30", "tid": 35568, "ts": 4930967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4931140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ac00", "tid": 35568, "ts": 4931263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4931435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128430", "tid": 35568, "ts": 4931558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4931731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128020", "tid": 35568, "ts": 4931854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01286a0", "tid": 35568, "ts": 4932149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ab30", "tid": 35568, "ts": 4932444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01280f0", "tid": 35568, "ts": 4932739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4932911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01292d0", "tid": 35568, "ts": 4933034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4933205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012acd0", "tid": 35568, "ts": 4933328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4933500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128840", "tid": 35568, "ts": 4933623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4933794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129130", "tid": 35568, "ts": 4933917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01281c0", "tid": 35568, "ts": 4934212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a990", "tid": 35568, "ts": 4934507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128b80", "tid": 35568, "ts": 4934802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4934974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ada0", "tid": 35568, "ts": 4935096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4935267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129470", "tid": 35568, "ts": 4935391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4935563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ae70", "tid": 35568, "ts": 4935685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4935858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012af40", "tid": 35568, "ts": 4935981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4936152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128d20", "tid": 35568, "ts": 4936275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4936448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a580", "tid": 35568, "ts": 4936571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4936742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128910", "tid": 35568, "ts": 4936865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129a20", "tid": 35568, "ts": 4937160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01285d0", "tid": 35568, "ts": 4937454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129950", "tid": 35568, "ts": 4937749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4937922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129f00", "tid": 35568, "ts": 4938045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4938216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129af0", "tid": 35568, "ts": 4938339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4938511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a170", "tid": 35568, "ts": 4938634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4938806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01289e0", "tid": 35568, "ts": 4938929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127f50", "tid": 35568, "ts": 4939223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01296e0", "tid": 35568, "ts": 4939518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129c90", "tid": 35568, "ts": 4939813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4939984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a310", "tid": 35568, "ts": 4940107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4940279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129fd0", "tid": 35568, "ts": 4940402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4940574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01293a0", "tid": 35568, "ts": 4940697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4940870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b010", "tid": 35568, "ts": 4940993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4941165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129200", "tid": 35568, "ts": 4941288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4941460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0127e80", "tid": 35568, "ts": 4941583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4941756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128290", "tid": 35568, "ts": 4941879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128360", "tid": 35568, "ts": 4942174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128df0", "tid": 35568, "ts": 4942507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a650", "tid": 35568, "ts": 4942803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4942976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128ab0", "tid": 35568, "ts": 4943099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4943271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129bc0", "tid": 35568, "ts": 4943394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4943565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a240", "tid": 35568, "ts": 4943688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4943861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129d60", "tid": 35568, "ts": 4943984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4944156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a0a0", "tid": 35568, "ts": 4944326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4944500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a3e0", "tid": 35568, "ts": 4944680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4944854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129540", "tid": 35568, "ts": 4944979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4945151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128c50", "tid": 35568, "ts": 4945274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4945447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129610", "tid": 35568, "ts": 4945571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4945743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a720", "tid": 35568, "ts": 4945866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a4b0", "tid": 35568, "ts": 4946162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128ec0", "tid": 35568, "ts": 4946457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128500", "tid": 35568, "ts": 4946751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4946923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01297b0", "tid": 35568, "ts": 4947046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4947218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128f90", "tid": 35568, "ts": 4947342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4947514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0128770", "tid": 35568, "ts": 4947638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4947809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129060", "tid": 35568, "ts": 4947933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0129880", "tid": 35568, "ts": 4948228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a7f0", "tid": 35568, "ts": 4948522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012a8c0", "tid": 35568, "ts": 4948818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4948990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b900", "tid": 35568, "ts": 4949113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4949284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e0d0", "tid": 35568, "ts": 4949408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4949579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d300", "tid": 35568, "ts": 4949702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4949874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ce20", "tid": 35568, "ts": 4949996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4950168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b4f0", "tid": 35568, "ts": 4950291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4950463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b830", "tid": 35568, "ts": 4950586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4950758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d230", "tid": 35568, "ts": 4950881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b350", "tid": 35568, "ts": 4951176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cfc0", "tid": 35568, "ts": 4951471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c600", "tid": 35568, "ts": 4951766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4951938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e270", "tid": 35568, "ts": 4952062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4952234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012baa0", "tid": 35568, "ts": 4952358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4952531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e1a0", "tid": 35568, "ts": 4952654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4952826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d8b0", "tid": 35568, "ts": 4952950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4953122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012da50", "tid": 35568, "ts": 4953245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4953417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d090", "tid": 35568, "ts": 4953540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4953712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d710", "tid": 35568, "ts": 4953835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012db20", "tid": 35568, "ts": 4954129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e340", "tid": 35568, "ts": 4954426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c6d0", "tid": 35568, "ts": 4954721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4954893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c1f0", "tid": 35568, "ts": 4955017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4955189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e410", "tid": 35568, "ts": 4955311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4955483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bc40", "tid": 35568, "ts": 4955605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4955777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b280", "tid": 35568, "ts": 4955900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b0e0", "tid": 35568, "ts": 4956194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b5c0", "tid": 35568, "ts": 4956489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012de60", "tid": 35568, "ts": 4956785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4956956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012df30", "tid": 35568, "ts": 4957079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4957251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012dbf0", "tid": 35568, "ts": 4957373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4957546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d160", "tid": 35568, "ts": 4957669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4957841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c7a0", "tid": 35568, "ts": 4958119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4958389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e000", "tid": 35568, "ts": 4958588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4958811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d980", "tid": 35568, "ts": 4959011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4959220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bd10", "tid": 35568, "ts": 4959344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4959517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c870", "tid": 35568, "ts": 4959640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4959813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012dcc0", "tid": 35568, "ts": 4959935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b690", "tid": 35568, "ts": 4960230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cd50", "tid": 35568, "ts": 4960525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cbb0", "tid": 35568, "ts": 4960820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4960993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d4a0", "tid": 35568, "ts": 4961116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4961289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cef0", "tid": 35568, "ts": 4961413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4961586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d3d0", "tid": 35568, "ts": 4961709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4961882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d7e0", "tid": 35568, "ts": 4962005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4962177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c940", "tid": 35568, "ts": 4962301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4962473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b1b0", "tid": 35568, "ts": 4962596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4962768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b420", "tid": 35568, "ts": 4962891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4963063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d570", "tid": 35568, "ts": 4963185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4963427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b760", "tid": 35568, "ts": 4963553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4963732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012dd90", "tid": 35568, "ts": 4963856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012b9d0", "tid": 35568, "ts": 4964173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bb70", "tid": 35568, "ts": 4964470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012d640", "tid": 35568, "ts": 4964766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4964938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012bde0", "tid": 35568, "ts": 4965061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4965233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ca10", "tid": 35568, "ts": 4965356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4965529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012beb0", "tid": 35568, "ts": 4965665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4965837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234a0c292f0", "tid": 35568, "ts": 4965904, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 4966278, "pid": 35104, "args": { "Heap": { "SizeInBytes": 134217728, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a012bf80", "tid": 35568, "ts": 4966294, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a012bf80", "tid": 35568, "ts": 4966326, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 134217728, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c120", "tid": 35568, "ts": 4966452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4966641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c2c0", "tid": 35568, "ts": 4966770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4966945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c390", "tid": 35568, "ts": 4967069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4967257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c460", "tid": 35568, "ts": 4967381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4967555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c530", "tid": 35568, "ts": 4967677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4967850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cae0", "tid": 35568, "ts": 4967973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4968146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012cc80", "tid": 35568, "ts": 4968268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4968440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f380", "tid": 35568, "ts": 4968562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4968734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130150", "tid": 35568, "ts": 4968857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e820", "tid": 35568, "ts": 4969219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131810", "tid": 35568, "ts": 4969515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130630", "tid": 35568, "ts": 4969811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4969983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e8f0", "tid": 35568, "ts": 4970106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4970277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01302f0", "tid": 35568, "ts": 4970399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4970572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ef70", "tid": 35568, "ts": 4970694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4970867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131670", "tid": 35568, "ts": 4970989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4971161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ea90", "tid": 35568, "ts": 4971283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4971454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130490", "tid": 35568, "ts": 4971577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4971749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01310c0", "tid": 35568, "ts": 4971872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131260", "tid": 35568, "ts": 4972167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f040", "tid": 35568, "ts": 4972463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f930", "tid": 35568, "ts": 4972756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4972929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131740", "tid": 35568, "ts": 4973052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4973224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012eb60", "tid": 35568, "ts": 4973346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4973559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130080", "tid": 35568, "ts": 4973695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4973867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01314d0", "tid": 35568, "ts": 4973989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4974161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131190", "tid": 35568, "ts": 4974283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4974455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f2b0", "tid": 35568, "ts": 4974577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4974749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e9c0", "tid": 35568, "ts": 4974871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131400", "tid": 35568, "ts": 4975166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131330", "tid": 35568, "ts": 4975460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fc70", "tid": 35568, "ts": 4975754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4975925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f1e0", "tid": 35568, "ts": 4976047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4976219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f110", "tid": 35568, "ts": 4976342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4976513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01315a0", "tid": 35568, "ts": 4976635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4976808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e4e0", "tid": 35568, "ts": 4976931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4977103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01307d0", "tid": 35568, "ts": 4977225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4977396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130b10", "tid": 35568, "ts": 4977519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4977691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e5b0", "tid": 35568, "ts": 4977814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ec30", "tid": 35568, "ts": 4978152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f450", "tid": 35568, "ts": 4978446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e680", "tid": 35568, "ts": 4978740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4978911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fa00", "tid": 35568, "ts": 4979034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4979205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fe10", "tid": 35568, "ts": 4979328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4979500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130be0", "tid": 35568, "ts": 4979623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4979794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01308a0", "tid": 35568, "ts": 4979916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fee0", "tid": 35568, "ts": 4980211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130cb0", "tid": 35568, "ts": 4980504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012e750", "tid": 35568, "ts": 4980798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4980970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ed00", "tid": 35568, "ts": 4981092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4981264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012edd0", "tid": 35568, "ts": 4981387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4981558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130e50", "tid": 35568, "ts": 4981680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4981852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012eea0", "tid": 35568, "ts": 4981974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4982146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130700", "tid": 35568, "ts": 4982268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4982440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f520", "tid": 35568, "ts": 4982562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4982733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130220", "tid": 35568, "ts": 4982855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f5f0", "tid": 35568, "ts": 4983149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f6c0", "tid": 35568, "ts": 4983444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130970", "tid": 35568, "ts": 4983779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4983951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130d80", "tid": 35568, "ts": 4984074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4984246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f790", "tid": 35568, "ts": 4984369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4984539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012f860", "tid": 35568, "ts": 4984660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4984833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fad0", "tid": 35568, "ts": 4984955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4985126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fba0", "tid": 35568, "ts": 4985248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4985420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012fd40", "tid": 35568, "ts": 4985542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4985714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012ffb0", "tid": 35568, "ts": 4985836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01303c0", "tid": 35568, "ts": 4986130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130560", "tid": 35568, "ts": 4986424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130a40", "tid": 35568, "ts": 4986717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4986889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130f20", "tid": 35568, "ts": 4987011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4987183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0130ff0", "tid": 35568, "ts": 4987305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4987476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133480", "tid": 35568, "ts": 4987598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4987769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133a30", "tid": 35568, "ts": 4987892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133e40", "tid": 35568, "ts": 4988186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01336f0", "tid": 35568, "ts": 4988480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133140", "tid": 35568, "ts": 4988773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4988945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01348d0", "tid": 35568, "ts": 4989067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4989274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01349a0", "tid": 35568, "ts": 4989396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4989568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132850", "tid": 35568, "ts": 4989691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4989863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01326b0", "tid": 35568, "ts": 4989985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4990157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134590", "tid": 35568, "ts": 4990279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4990450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133620", "tid": 35568, "ts": 4990573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4990744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134a70", "tid": 35568, "ts": 4990866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01344c0", "tid": 35568, "ts": 4991160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134180", "tid": 35568, "ts": 4991453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132fa0", "tid": 35568, "ts": 4991746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4991918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134b40", "tid": 35568, "ts": 4992041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4992211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134660", "tid": 35568, "ts": 4992333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4992505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134730", "tid": 35568, "ts": 4992627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4992798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134250", "tid": 35568, "ts": 4992920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4993093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134320", "tid": 35568, "ts": 4993214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4993386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133b00", "tid": 35568, "ts": 4993535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4993708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01319b0", "tid": 35568, "ts": 4993831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131e90", "tid": 35568, "ts": 4994125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01322a0", "tid": 35568, "ts": 4994432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134800", "tid": 35568, "ts": 4994762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4994932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134c10", "tid": 35568, "ts": 4995055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4995226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133d70", "tid": 35568, "ts": 4995349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4995520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01318e0", "tid": 35568, "ts": 4995642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4995814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132ed0", "tid": 35568, "ts": 4995937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133890", "tid": 35568, "ts": 4996230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131dc0", "tid": 35568, "ts": 4996524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131b50", "tid": 35568, "ts": 4996818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4996989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01343f0", "tid": 35568, "ts": 4997112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4997283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01325e0", "tid": 35568, "ts": 4997406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4997578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132370", "tid": 35568, "ts": 4997700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4997871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131c20", "tid": 35568, "ts": 4997993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4998164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131a80", "tid": 35568, "ts": 4998287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4998457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132030", "tid": 35568, "ts": 4998579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4998751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131cf0", "tid": 35568, "ts": 4998873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133f10", "tid": 35568, "ts": 4999166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132100", "tid": 35568, "ts": 4999460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0131f60", "tid": 35568, "ts": 4999753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 4999924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01321d0", "tid": 35568, "ts": 5000046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5000218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132440", "tid": 35568, "ts": 5000340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5000512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132510", "tid": 35568, "ts": 5000634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5000805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133070", "tid": 35568, "ts": 5000927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133fe0", "tid": 35568, "ts": 5001220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132780", "tid": 35568, "ts": 5001515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132920", "tid": 35568, "ts": 5001809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5001980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01329f0", "tid": 35568, "ts": 5002102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5002274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133210", "tid": 35568, "ts": 5002397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5002568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01332e0", "tid": 35568, "ts": 5002689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5002860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132ac0", "tid": 35568, "ts": 5002982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5003155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132b90", "tid": 35568, "ts": 5003277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5003450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132c60", "tid": 35568, "ts": 5003615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5003786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132d30", "tid": 35568, "ts": 5003909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5004081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0132e00", "tid": 35568, "ts": 5004203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5004374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01333b0", "tid": 35568, "ts": 5004497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5004669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133550", "tid": 35568, "ts": 5004953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5005126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01340b0", "tid": 35568, "ts": 5005250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5005422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01337c0", "tid": 35568, "ts": 5005546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5005718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133960", "tid": 35568, "ts": 5005841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133bd0", "tid": 35568, "ts": 5006136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0133ca0", "tid": 35568, "ts": 5006430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136f00", "tid": 35568, "ts": 5006725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5006897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135360", "tid": 35568, "ts": 5007020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5007192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135290", "tid": 35568, "ts": 5007314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5007487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136540", "tid": 35568, "ts": 5007610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5007781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136610", "tid": 35568, "ts": 5007903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134db0", "tid": 35568, "ts": 5008197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135d20", "tid": 35568, "ts": 5008490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136060", "tid": 35568, "ts": 5008784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5008956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01367b0", "tid": 35568, "ts": 5009078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5009251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137170", "tid": 35568, "ts": 5009373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5009544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01362d0", "tid": 35568, "ts": 5009667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5009839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135f90", "tid": 35568, "ts": 5009961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5010132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01366e0", "tid": 35568, "ts": 5010253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5010426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134e80", "tid": 35568, "ts": 5010591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5010764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136130", "tid": 35568, "ts": 5010886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137cd0", "tid": 35568, "ts": 5011180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137580", "tid": 35568, "ts": 5011473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136af0", "tid": 35568, "ts": 5011768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5011939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01374b0", "tid": 35568, "ts": 5012061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5012232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01377f0", "tid": 35568, "ts": 5012355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5012527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136950", "tid": 35568, "ts": 5012707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5012878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01356a0", "tid": 35568, "ts": 5013001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5013173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136200", "tid": 35568, "ts": 5013296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5013467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137e70", "tid": 35568, "ts": 5013589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5013761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135770", "tid": 35568, "ts": 5013883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137b30", "tid": 35568, "ts": 5014177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137650", "tid": 35568, "ts": 5014469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135020", "tid": 35568, "ts": 5014763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5014934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136470", "tid": 35568, "ts": 5015055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5015227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135840", "tid": 35568, "ts": 5015349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5015521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136880", "tid": 35568, "ts": 5015643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5015815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136fd0", "tid": 35568, "ts": 5015937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135910", "tid": 35568, "ts": 5016232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137c00", "tid": 35568, "ts": 5016525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137f40", "tid": 35568, "ts": 5016819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5016990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137da0", "tid": 35568, "ts": 5017112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5017284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01350f0", "tid": 35568, "ts": 5017407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5017579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136a20", "tid": 35568, "ts": 5017702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5017873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137a60", "tid": 35568, "ts": 5017996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5018168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01370a0", "tid": 35568, "ts": 5018290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5018462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01363a0", "tid": 35568, "ts": 5018584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5018756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137720", "tid": 35568, "ts": 5018878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01359e0", "tid": 35568, "ts": 5019171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01378c0", "tid": 35568, "ts": 5019465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01351c0", "tid": 35568, "ts": 5019774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5019947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135430", "tid": 35568, "ts": 5020069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5020241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135b80", "tid": 35568, "ts": 5020412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5020622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136c90", "tid": 35568, "ts": 5020748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5020920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137990", "tid": 35568, "ts": 5021043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5021215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138010", "tid": 35568, "ts": 5021337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5021510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135ab0", "tid": 35568, "ts": 5021633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5021806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134ce0", "tid": 35568, "ts": 5021929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135df0", "tid": 35568, "ts": 5022223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137240", "tid": 35568, "ts": 5022517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136bc0", "tid": 35568, "ts": 5022812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5022984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135c50", "tid": 35568, "ts": 5023107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5023279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0137310", "tid": 35568, "ts": 5023401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5023573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0134f50", "tid": 35568, "ts": 5023695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5023867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135ec0", "tid": 35568, "ts": 5023990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5024163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0135500", "tid": 35568, "ts": 5024285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5024457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01373e0", "tid": 35568, "ts": 5024578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5024750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01355d0", "tid": 35568, "ts": 5024872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136d60", "tid": 35568, "ts": 5025220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0136e30", "tid": 35568, "ts": 5025515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ad90", "tid": 35568, "ts": 5025809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5025980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139e20", "tid": 35568, "ts": 5026102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5026273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138350", "tid": 35568, "ts": 5026395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5026566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b000", "tid": 35568, "ts": 5026688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5026859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013af30", "tid": 35568, "ts": 5026981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5027153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139bb0", "tid": 35568, "ts": 5027275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5027446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01389d0", "tid": 35568, "ts": 5027569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5027741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01384f0", "tid": 35568, "ts": 5027864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b0d0", "tid": 35568, "ts": 5028158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01385c0", "tid": 35568, "ts": 5028453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b1a0", "tid": 35568, "ts": 5028747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5028918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138aa0", "tid": 35568, "ts": 5029041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5029213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139a10", "tid": 35568, "ts": 5029336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5029507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138f80", "tid": 35568, "ts": 5029629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5029800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138760", "tid": 35568, "ts": 5029923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138690", "tid": 35568, "ts": 5030217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ae60", "tid": 35568, "ts": 5030512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138b70", "tid": 35568, "ts": 5030806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5030977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01380e0", "tid": 35568, "ts": 5031099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5031271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a570", "tid": 35568, "ts": 5031394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5031567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b270", "tid": 35568, "ts": 5031689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5031861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a230", "tid": 35568, "ts": 5031983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5032155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b340", "tid": 35568, "ts": 5032277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5032449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a3d0", "tid": 35568, "ts": 5032571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5032742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139ae0", "tid": 35568, "ts": 5032865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139870", "tid": 35568, "ts": 5033159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139530", "tid": 35568, "ts": 5033454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138c40", "tid": 35568, "ts": 5033748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5033920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a710", "tid": 35568, "ts": 5034041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5034212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a4a0", "tid": 35568, "ts": 5034335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5034507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a300", "tid": 35568, "ts": 5034629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5034802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01397a0", "tid": 35568, "ts": 5034924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5035095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b410", "tid": 35568, "ts": 5035217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5035389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01381b0", "tid": 35568, "ts": 5035511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5035683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138de0", "tid": 35568, "ts": 5035805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138280", "tid": 35568, "ts": 5036223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a640", "tid": 35568, "ts": 5036517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139940", "tid": 35568, "ts": 5036811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5036982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138420", "tid": 35568, "ts": 5037105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5037276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a7e0", "tid": 35568, "ts": 5037399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5037570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138830", "tid": 35568, "ts": 5037693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5037866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138900", "tid": 35568, "ts": 5037988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5038159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139050", "tid": 35568, "ts": 5038281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5038453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01391f0", "tid": 35568, "ts": 5038575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5038747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138d10", "tid": 35568, "ts": 5038869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a980", "tid": 35568, "ts": 5039163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a8b0", "tid": 35568, "ts": 5039458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139600", "tid": 35568, "ts": 5039752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5039923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0138eb0", "tid": 35568, "ts": 5040046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5040218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139120", "tid": 35568, "ts": 5040340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5040512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013aa50", "tid": 35568, "ts": 5040634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5040805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01392c0", "tid": 35568, "ts": 5040927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139390", "tid": 35568, "ts": 5041222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139c80", "tid": 35568, "ts": 5041517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139460", "tid": 35568, "ts": 5041812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5041985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01396d0", "tid": 35568, "ts": 5042107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5042279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ab20", "tid": 35568, "ts": 5042401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5042572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139d50", "tid": 35568, "ts": 5042695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5042866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139ef0", "tid": 35568, "ts": 5043032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5043205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0139fc0", "tid": 35568, "ts": 5043328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5043500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a090", "tid": 35568, "ts": 5043623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5043794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013a160", "tid": 35568, "ts": 5043916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013abf0", "tid": 35568, "ts": 5044211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013acc0", "tid": 35568, "ts": 5044506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bb60", "tid": 35568, "ts": 5044801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5044972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cfb0", "tid": 35568, "ts": 5045095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5045266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d220", "tid": 35568, "ts": 5045388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5045559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d7d0", "tid": 35568, "ts": 5045682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5045853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b680", "tid": 35568, "ts": 5045975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5046147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d2f0", "tid": 35568, "ts": 5046268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5046440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c930", "tid": 35568, "ts": 5046562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5046734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c110", "tid": 35568, "ts": 5046856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013dd80", "tid": 35568, "ts": 5047151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013dcb0", "tid": 35568, "ts": 5047446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d8a0", "tid": 35568, "ts": 5047741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5047912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ba90", "tid": 35568, "ts": 5048035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5048207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c5f0", "tid": 35568, "ts": 5048329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5048501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c1e0", "tid": 35568, "ts": 5048623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5048794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d3c0", "tid": 35568, "ts": 5048917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013dbe0", "tid": 35568, "ts": 5049210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bdd0", "tid": 35568, "ts": 5049504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b8f0", "tid": 35568, "ts": 5049799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5049970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013de50", "tid": 35568, "ts": 5050093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5050264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d630", "tid": 35568, "ts": 5050386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5050558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d970", "tid": 35568, "ts": 5050681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5050854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013da40", "tid": 35568, "ts": 5050976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5051148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bc30", "tid": 35568, "ts": 5051271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5051443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d490", "tid": 35568, "ts": 5051565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5051801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b9c0", "tid": 35568, "ts": 5051925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b750", "tid": 35568, "ts": 5052219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cee0", "tid": 35568, "ts": 5052513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b820", "tid": 35568, "ts": 5052809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5052982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c040", "tid": 35568, "ts": 5053104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5053277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c6c0", "tid": 35568, "ts": 5053401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5053617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c860", "tid": 35568, "ts": 5053740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5053912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013df20", "tid": 35568, "ts": 5054035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5054206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d560", "tid": 35568, "ts": 5054390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5054563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c790", "tid": 35568, "ts": 5054685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5054857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b4e0", "tid": 35568, "ts": 5054979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5055152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013b5b0", "tid": 35568, "ts": 5055274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5055444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bd00", "tid": 35568, "ts": 5055567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5055739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d080", "tid": 35568, "ts": 5055863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bea0", "tid": 35568, "ts": 5056157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cc70", "tid": 35568, "ts": 5056452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013bf70", "tid": 35568, "ts": 5056746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5056918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d150", "tid": 35568, "ts": 5057040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5057213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c2b0", "tid": 35568, "ts": 5057336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5057508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c380", "tid": 35568, "ts": 5057630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5057802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c450", "tid": 35568, "ts": 5057925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cd40", "tid": 35568, "ts": 5058219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013c520", "tid": 35568, "ts": 5058513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ca00", "tid": 35568, "ts": 5058807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5058979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cad0", "tid": 35568, "ts": 5059101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5059273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013cba0", "tid": 35568, "ts": 5059396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5059568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013ce10", "tid": 35568, "ts": 5059691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5059863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013d700", "tid": 35568, "ts": 5059985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5060156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a013db10", "tid": 35568, "ts": 5060279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5060450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f870", "tid": 35568, "ts": 5060572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5060743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e5c0", "tid": 35568, "ts": 5060866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f940", "tid": 35568, "ts": 5061161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120230", "tid": 35568, "ts": 5061455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121270", "tid": 35568, "ts": 5061750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5061923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120980", "tid": 35568, "ts": 5062046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5062218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011eaa0", "tid": 35568, "ts": 5062340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5062512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01207e0", "tid": 35568, "ts": 5062634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5062806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121410", "tid": 35568, "ts": 5062928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120b20", "tid": 35568, "ts": 5063223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f390", "tid": 35568, "ts": 5063517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ede0", "tid": 35568, "ts": 5063811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5063981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011eb70", "tid": 35568, "ts": 5064103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5064274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e830", "tid": 35568, "ts": 5064396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5064568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120cc0", "tid": 35568, "ts": 5064690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5064861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ec40", "tid": 35568, "ts": 5064983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5065155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01203d0", "tid": 35568, "ts": 5065277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5065449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ed10", "tid": 35568, "ts": 5065572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5065743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fbb0", "tid": 35568, "ts": 5065866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fef0", "tid": 35568, "ts": 5066159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ffc0", "tid": 35568, "ts": 5066453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f600", "tid": 35568, "ts": 5066746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5066918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121340", "tid": 35568, "ts": 5067040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5067212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120a50", "tid": 35568, "ts": 5067454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5067745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f120", "tid": 35568, "ts": 5067928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5068170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e760", "tid": 35568, "ts": 5068331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5068604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e0e0", "tid": 35568, "ts": 5068748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5068919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fa10", "tid": 35568, "ts": 5069042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5069214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01204a0", "tid": 35568, "ts": 5069336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5069507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f6d0", "tid": 35568, "ts": 5069630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5069803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fae0", "tid": 35568, "ts": 5069925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e690", "tid": 35568, "ts": 5070219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120090", "tid": 35568, "ts": 5070512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01208b0", "tid": 35568, "ts": 5070805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5070978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01211a0", "tid": 35568, "ts": 5071101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5071273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f7a0", "tid": 35568, "ts": 5071396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5071567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0121000", "tid": 35568, "ts": 5071690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5071862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fc80", "tid": 35568, "ts": 5071984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5072157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120300", "tid": 35568, "ts": 5072279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5072451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120f30", "tid": 35568, "ts": 5072574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5072746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120570", "tid": 35568, "ts": 5072869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e900", "tid": 35568, "ts": 5073163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e4f0", "tid": 35568, "ts": 5073459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120640", "tid": 35568, "ts": 5073752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5073924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e9d0", "tid": 35568, "ts": 5074046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5074217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011eeb0", "tid": 35568, "ts": 5074339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5074511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e1b0", "tid": 35568, "ts": 5074633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5074804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fd50", "tid": 35568, "ts": 5074927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f460", "tid": 35568, "ts": 5075222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011fe20", "tid": 35568, "ts": 5075516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e420", "tid": 35568, "ts": 5075812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5075983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120bf0", "tid": 35568, "ts": 5076149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5076321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120160", "tid": 35568, "ts": 5076444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5076616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120d90", "tid": 35568, "ts": 5076739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5076911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011ef80", "tid": 35568, "ts": 5077034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5077206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120710", "tid": 35568, "ts": 5077328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5077500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0120e60", "tid": 35568, "ts": 5077623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5077794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f050", "tid": 35568, "ts": 5077916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a01210d0", "tid": 35568, "ts": 5078211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f2c0", "tid": 35568, "ts": 5078505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f530", "tid": 35568, "ts": 5078800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5078971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e280", "tid": 35568, "ts": 5079094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5079266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011f1f0", "tid": 35568, "ts": 5079389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5079561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a011e350", "tid": 35568, "ts": 5079684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5079855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069a90", "tid": 35568, "ts": 5080013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5080186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bf20", "tid": 35568, "ts": 5080310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5080482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b8a0", "tid": 35568, "ts": 5080662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5080834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aa00", "tid": 35568, "ts": 5080957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5081128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c5a0", "tid": 35568, "ts": 5081252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5081425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ae10", "tid": 35568, "ts": 5081548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5081721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ac70", "tid": 35568, "ts": 5081843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069750", "tid": 35568, "ts": 5082138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b560", "tid": 35568, "ts": 5082432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c330", "tid": 35568, "ts": 5082727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5082961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bd80", "tid": 35568, "ts": 5083085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5083258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069c30", "tid": 35568, "ts": 5083381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5083552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306be50", "tid": 35568, "ts": 5083675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5083847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b080", "tid": 35568, "ts": 5083969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5084140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c810", "tid": 35568, "ts": 5084263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5084435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b150", "tid": 35568, "ts": 5084558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5084730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306afb0", "tid": 35568, "ts": 5084853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ad40", "tid": 35568, "ts": 5085148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069820", "tid": 35568, "ts": 5085442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30698f0", "tid": 35568, "ts": 5085736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5085908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a2b0", "tid": 35568, "ts": 5086031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5086202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c400", "tid": 35568, "ts": 5086325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5086496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069b60", "tid": 35568, "ts": 5086618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5086791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b220", "tid": 35568, "ts": 5086913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bbe0", "tid": 35568, "ts": 5087208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30694e0", "tid": 35568, "ts": 5087502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30695b0", "tid": 35568, "ts": 5087795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5087966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069d00", "tid": 35568, "ts": 5088088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5088259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b490", "tid": 35568, "ts": 5088382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5088554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bcb0", "tid": 35568, "ts": 5088676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5088849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a6c0", "tid": 35568, "ts": 5088970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5089142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bff0", "tid": 35568, "ts": 5089264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5089435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a790", "tid": 35568, "ts": 5089557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5089728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c670", "tid": 35568, "ts": 5089851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c0c0", "tid": 35568, "ts": 5090145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a040", "tid": 35568, "ts": 5090438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c190", "tid": 35568, "ts": 5090732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5090905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a450", "tid": 35568, "ts": 5091026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5091198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a520", "tid": 35568, "ts": 5091321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5091492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c260", "tid": 35568, "ts": 5091614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5091785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069680", "tid": 35568, "ts": 5091908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a5f0", "tid": 35568, "ts": 5092202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c740", "tid": 35568, "ts": 5092496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30699c0", "tid": 35568, "ts": 5092790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5092962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b2f0", "tid": 35568, "ts": 5093084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5093255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b3c0", "tid": 35568, "ts": 5093378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5093550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a1e0", "tid": 35568, "ts": 5093672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5093844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a110", "tid": 35568, "ts": 5093966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5094138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b630", "tid": 35568, "ts": 5094260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5094431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069dd0", "tid": 35568, "ts": 5094577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5094748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069ea0", "tid": 35568, "ts": 5094871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069f70", "tid": 35568, "ts": 5095164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a380", "tid": 35568, "ts": 5095488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a860", "tid": 35568, "ts": 5095783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5095955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306a930", "tid": 35568, "ts": 5096078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5096251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c4d0", "tid": 35568, "ts": 5096373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5096544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aad0", "tid": 35568, "ts": 5096667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5096839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aba0", "tid": 35568, "ts": 5096961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5097132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306aee0", "tid": 35568, "ts": 5097255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5097466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b700", "tid": 35568, "ts": 5097592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5097764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b7d0", "tid": 35568, "ts": 5097886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306b970", "tid": 35568, "ts": 5098181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ba40", "tid": 35568, "ts": 5098503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306bb10", "tid": 35568, "ts": 5098824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5098995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f8d0", "tid": 35568, "ts": 5099117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5099289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e070", "tid": 35568, "ts": 5099411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5099584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c9b0", "tid": 35568, "ts": 5099706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5099878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dc60", "tid": 35568, "ts": 5100000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5100172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e620", "tid": 35568, "ts": 5100294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5100464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fa70", "tid": 35568, "ts": 5100587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5100758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306de00", "tid": 35568, "ts": 5100880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fb40", "tid": 35568, "ts": 5101174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cdc0", "tid": 35568, "ts": 5101467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cb50", "tid": 35568, "ts": 5101762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5101934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e960", "tid": 35568, "ts": 5102056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5102227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d850", "tid": 35568, "ts": 5102349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5102521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f9a0", "tid": 35568, "ts": 5102643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5102814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d780", "tid": 35568, "ts": 5102937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f730", "tid": 35568, "ts": 5103230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ca80", "tid": 35568, "ts": 5103523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d440", "tid": 35568, "ts": 5103817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5103988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d510", "tid": 35568, "ts": 5104110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5104282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e550", "tid": 35568, "ts": 5104403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5104574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d5e0", "tid": 35568, "ts": 5104697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5104869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e210", "tid": 35568, "ts": 5104991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5105163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e140", "tid": 35568, "ts": 5105286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5105458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e480", "tid": 35568, "ts": 5105580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5105752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ce90", "tid": 35568, "ts": 5105874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ee40", "tid": 35568, "ts": 5106168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ea30", "tid": 35568, "ts": 5106463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fc10", "tid": 35568, "ts": 5106756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5106928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cc20", "tid": 35568, "ts": 5107050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5107221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f0b0", "tid": 35568, "ts": 5107343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5107514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f800", "tid": 35568, "ts": 5107637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5107808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d6b0", "tid": 35568, "ts": 5107931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5108102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306c8e0", "tid": 35568, "ts": 5108224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5108396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d9f0", "tid": 35568, "ts": 5108559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5108731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306eb00", "tid": 35568, "ts": 5108854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e6f0", "tid": 35568, "ts": 5109148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ccf0", "tid": 35568, "ts": 5109442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ded0", "tid": 35568, "ts": 5109736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5109907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e7c0", "tid": 35568, "ts": 5110029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5110200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306cf60", "tid": 35568, "ts": 5110323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5110495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f180", "tid": 35568, "ts": 5110616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5110788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d030", "tid": 35568, "ts": 5110911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d100", "tid": 35568, "ts": 5111206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d920", "tid": 35568, "ts": 5111499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dac0", "tid": 35568, "ts": 5111792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5111963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f320", "tid": 35568, "ts": 5112085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5112256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306db90", "tid": 35568, "ts": 5112378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5112549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dfa0", "tid": 35568, "ts": 5112671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5112842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d1d0", "tid": 35568, "ts": 5112964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5113135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e890", "tid": 35568, "ts": 5113257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5113428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306dd30", "tid": 35568, "ts": 5113550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5113723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d2a0", "tid": 35568, "ts": 5113846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306d370", "tid": 35568, "ts": 5114201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e2e0", "tid": 35568, "ts": 5114498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306e3b0", "tid": 35568, "ts": 5114792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5114964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306eca0", "tid": 35568, "ts": 5115086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5115257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ebd0", "tid": 35568, "ts": 5115379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5115551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ed70", "tid": 35568, "ts": 5115673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5115844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f3f0", "tid": 35568, "ts": 5115966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5116137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ef10", "tid": 35568, "ts": 5116260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5116431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306efe0", "tid": 35568, "ts": 5116553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5116724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f250", "tid": 35568, "ts": 5116846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f4c0", "tid": 35568, "ts": 5117140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f590", "tid": 35568, "ts": 5117434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306f660", "tid": 35568, "ts": 5117729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5117899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070020", "tid": 35568, "ts": 5118022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5118193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071470", "tid": 35568, "ts": 5118315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5118487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fce0", "tid": 35568, "ts": 5118609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5118781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070500", "tid": 35568, "ts": 5118904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071fd0", "tid": 35568, "ts": 5119197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071f00", "tid": 35568, "ts": 5119491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071880", "tid": 35568, "ts": 5119785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5119956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30728c0", "tid": 35568, "ts": 5120079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5120250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070430", "tid": 35568, "ts": 5120373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5120544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071130", "tid": 35568, "ts": 5120666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5120839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071a20", "tid": 35568, "ts": 5120962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5121135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072e70", "tid": 35568, "ts": 5121257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5121429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30706a0", "tid": 35568, "ts": 5121553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5121724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30723e0", "tid": 35568, "ts": 5121846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071d60", "tid": 35568, "ts": 5122140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072f40", "tid": 35568, "ts": 5122434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070770", "tid": 35568, "ts": 5122728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5122900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072b30", "tid": 35568, "ts": 5123022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5123194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072650", "tid": 35568, "ts": 5123317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5123529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072720", "tid": 35568, "ts": 5123653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5123824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070df0", "tid": 35568, "ts": 5123946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30713a0", "tid": 35568, "ts": 5124240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072c00", "tid": 35568, "ts": 5124534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070ab0", "tid": 35568, "ts": 5124827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5124999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30705d0", "tid": 35568, "ts": 5125121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5125294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070840", "tid": 35568, "ts": 5125415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5125587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071af0", "tid": 35568, "ts": 5125710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5125881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072cd0", "tid": 35568, "ts": 5126003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5126173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070360", "tid": 35568, "ts": 5126296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5126468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071e30", "tid": 35568, "ts": 5126589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5126761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070910", "tid": 35568, "ts": 5126883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071540", "tid": 35568, "ts": 5127176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072da0", "tid": 35568, "ts": 5127469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072580", "tid": 35568, "ts": 5127763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5127934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30709e0", "tid": 35568, "ts": 5128056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5128228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071c90", "tid": 35568, "ts": 5128351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5128522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30712d0", "tid": 35568, "ts": 5128644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5128816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073010", "tid": 35568, "ts": 5128938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5129110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30720a0", "tid": 35568, "ts": 5129232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5129402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30701c0", "tid": 35568, "ts": 5129525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5129696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070b80", "tid": 35568, "ts": 5129909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070290", "tid": 35568, "ts": 5130211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072170", "tid": 35568, "ts": 5130508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070c50", "tid": 35568, "ts": 5130803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5130977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072990", "tid": 35568, "ts": 5131100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5131272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072240", "tid": 35568, "ts": 5131395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5131568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fdb0", "tid": 35568, "ts": 5131690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5131862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30727f0", "tid": 35568, "ts": 5131985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5132156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070d20", "tid": 35568, "ts": 5132279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5132451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072a60", "tid": 35568, "ts": 5132574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5132746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306fe80", "tid": 35568, "ts": 5132870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070ec0", "tid": 35568, "ts": 5133163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a306ff50", "tid": 35568, "ts": 5133457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3070f90", "tid": 35568, "ts": 5133751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5133922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071060", "tid": 35568, "ts": 5134044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5134216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071200", "tid": 35568, "ts": 5134338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5134510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30700f0", "tid": 35568, "ts": 5134633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5134805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071610", "tid": 35568, "ts": 5134928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30716e0", "tid": 35568, "ts": 5135222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30717b0", "tid": 35568, "ts": 5135517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071950", "tid": 35568, "ts": 5135811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5135983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3071bc0", "tid": 35568, "ts": 5136106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5136277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3072310", "tid": 35568, "ts": 5136399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5136571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30724b0", "tid": 35568, "ts": 5136694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5136866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076000", "tid": 35568, "ts": 5136988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5137161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073760", "tid": 35568, "ts": 5137283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5137456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073b70", "tid": 35568, "ts": 5137580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5137752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30754a0", "tid": 35568, "ts": 5137875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074050", "tid": 35568, "ts": 5138170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075570", "tid": 35568, "ts": 5138464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30760d0", "tid": 35568, "ts": 5138759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5138931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075bf0", "tid": 35568, "ts": 5139054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5139225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076340", "tid": 35568, "ts": 5139348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5139520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073900", "tid": 35568, "ts": 5139708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5139880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30734f0", "tid": 35568, "ts": 5140003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5140175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073aa0", "tid": 35568, "ts": 5140297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5140469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075a50", "tid": 35568, "ts": 5140591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5140762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075b20", "tid": 35568, "ts": 5140884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30761a0", "tid": 35568, "ts": 5141226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073f80", "tid": 35568, "ts": 5141521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075f30", "tid": 35568, "ts": 5141814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5141985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30731b0", "tid": 35568, "ts": 5142108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5142280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075640", "tid": 35568, "ts": 5142403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5142575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073c40", "tid": 35568, "ts": 5142698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5142870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076410", "tid": 35568, "ts": 5142993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5143165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30746d0", "tid": 35568, "ts": 5143289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5143460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075710", "tid": 35568, "ts": 5143584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5143755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074120", "tid": 35568, "ts": 5143878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073420", "tid": 35568, "ts": 5144172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073280", "tid": 35568, "ts": 5144466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30757e0", "tid": 35568, "ts": 5144761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5144933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074bb0", "tid": 35568, "ts": 5145055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5145227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30758b0", "tid": 35568, "ts": 5145391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5145596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075e60", "tid": 35568, "ts": 5145724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5145897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075980", "tid": 35568, "ts": 5146021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5146193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075cc0", "tid": 35568, "ts": 5146317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5146489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075090", "tid": 35568, "ts": 5146612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5146784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30747a0", "tid": 35568, "ts": 5146906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30741f0", "tid": 35568, "ts": 5147201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30739d0", "tid": 35568, "ts": 5147495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074460", "tid": 35568, "ts": 5147789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5147959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073d10", "tid": 35568, "ts": 5148139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5148311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30735c0", "tid": 35568, "ts": 5148434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5148606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073690", "tid": 35568, "ts": 5148728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5148900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075160", "tid": 35568, "ts": 5149023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5149194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074fc0", "tid": 35568, "ts": 5149316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5149489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074870", "tid": 35568, "ts": 5149611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5149782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073350", "tid": 35568, "ts": 5149904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074530", "tid": 35568, "ts": 5150199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30753d0", "tid": 35568, "ts": 5150494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074940", "tid": 35568, "ts": 5150788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5150959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075d90", "tid": 35568, "ts": 5151081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5151252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075230", "tid": 35568, "ts": 5151374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5151544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30730e0", "tid": 35568, "ts": 5151667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5151840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076270", "tid": 35568, "ts": 5151962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5152134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074a10", "tid": 35568, "ts": 5152256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5152428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073830", "tid": 35568, "ts": 5152550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5152722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074ae0", "tid": 35568, "ts": 5152845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073de0", "tid": 35568, "ts": 5153138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30742c0", "tid": 35568, "ts": 5153431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074600", "tid": 35568, "ts": 5153724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5153895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3073eb0", "tid": 35568, "ts": 5154017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5154189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074390", "tid": 35568, "ts": 5154311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5154482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074c80", "tid": 35568, "ts": 5154604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5154778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074d50", "tid": 35568, "ts": 5154900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074e20", "tid": 35568, "ts": 5155195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3074ef0", "tid": 35568, "ts": 5155488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3075300", "tid": 35568, "ts": 5155782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5155953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30764e0", "tid": 35568, "ts": 5156075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5156247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077450", "tid": 35568, "ts": 5156370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5156543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30772b0", "tid": 35568, "ts": 5156666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5156838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076dd0", "tid": 35568, "ts": 5156961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5157132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30769c0", "tid": 35568, "ts": 5157256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5157427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079670", "tid": 35568, "ts": 5157549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5157720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30787d0", "tid": 35568, "ts": 5157843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078630", "tid": 35568, "ts": 5158136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30765b0", "tid": 35568, "ts": 5158430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077040", "tid": 35568, "ts": 5158724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5158897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079810", "tid": 35568, "ts": 5159019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5159190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078150", "tid": 35568, "ts": 5159313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5159485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30782f0", "tid": 35568, "ts": 5159608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5159779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076680", "tid": 35568, "ts": 5159901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5160073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076ea0", "tid": 35568, "ts": 5160195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5160366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076a90", "tid": 35568, "ts": 5160543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5160716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077e10", "tid": 35568, "ts": 5160846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5161063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30794d0", "tid": 35568, "ts": 5161236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5161547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30775f0", "tid": 35568, "ts": 5161722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5161949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077fb0", "tid": 35568, "ts": 5162071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5162243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30788a0", "tid": 35568, "ts": 5162366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5162537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078ff0", "tid": 35568, "ts": 5162660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5162831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30795a0", "tid": 35568, "ts": 5162953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5163124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30776c0", "tid": 35568, "ts": 5163246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5163419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077a00", "tid": 35568, "ts": 5163542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5163713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078220", "tid": 35568, "ts": 5163836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076f70", "tid": 35568, "ts": 5164131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076750", "tid": 35568, "ts": 5164425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077790", "tid": 35568, "ts": 5164718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5164889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076d00", "tid": 35568, "ts": 5165013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5165185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30768f0", "tid": 35568, "ts": 5165308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5165480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078be0", "tid": 35568, "ts": 5165604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5165776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077860", "tid": 35568, "ts": 5165899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5166072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077ba0", "tid": 35568, "ts": 5166258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5166431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077520", "tid": 35568, "ts": 5166553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5166724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078080", "tid": 35568, "ts": 5166847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076b60", "tid": 35568, "ts": 5167142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079740", "tid": 35568, "ts": 5167435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077110", "tid": 35568, "ts": 5167728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5167901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078cb0", "tid": 35568, "ts": 5168024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5168195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30783c0", "tid": 35568, "ts": 5168318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5168489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078490", "tid": 35568, "ts": 5168612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5168784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078d80", "tid": 35568, "ts": 5168907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078700", "tid": 35568, "ts": 5169201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30771e0", "tid": 35568, "ts": 5169494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077ad0", "tid": 35568, "ts": 5169788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5169960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077c70", "tid": 35568, "ts": 5170082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5170254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077380", "tid": 35568, "ts": 5170376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5170548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077930", "tid": 35568, "ts": 5170670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5170840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078e50", "tid": 35568, "ts": 5170963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5171136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078f20", "tid": 35568, "ts": 5171258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5171430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30790c0", "tid": 35568, "ts": 5171553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5171725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077d40", "tid": 35568, "ts": 5171847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076c30", "tid": 35568, "ts": 5172141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078970", "tid": 35568, "ts": 5172435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079190", "tid": 35568, "ts": 5172729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5172901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3076820", "tid": 35568, "ts": 5173023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5173196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078560", "tid": 35568, "ts": 5173319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5173491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3077ee0", "tid": 35568, "ts": 5173613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5173784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078a40", "tid": 35568, "ts": 5173950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5174123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3078b10", "tid": 35568, "ts": 5174245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5174417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079260", "tid": 35568, "ts": 5174540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5174712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079330", "tid": 35568, "ts": 5174835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079400", "tid": 35568, "ts": 5175130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bbd0", "tid": 35568, "ts": 5175424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bf10", "tid": 35568, "ts": 5175717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5175889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a9f0", "tid": 35568, "ts": 5176011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5176181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c590", "tid": 35568, "ts": 5176303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5176476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bca0", "tid": 35568, "ts": 5176629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5176860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ad30", "tid": 35568, "ts": 5177050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5177272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bd70", "tid": 35568, "ts": 5177486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5177680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a2a0", "tid": 35568, "ts": 5177803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5177976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c660", "tid": 35568, "ts": 5178099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5178271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307be40", "tid": 35568, "ts": 5178418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5178591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a510", "tid": 35568, "ts": 5178713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5178885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079cf0", "tid": 35568, "ts": 5179008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5179180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079b50", "tid": 35568, "ts": 5179303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5179473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bfe0", "tid": 35568, "ts": 5179597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5179769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b890", "tid": 35568, "ts": 5179891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079f60", "tid": 35568, "ts": 5180185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ba30", "tid": 35568, "ts": 5180480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a100", "tid": 35568, "ts": 5180773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5180945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30798e0", "tid": 35568, "ts": 5181067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5181240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c730", "tid": 35568, "ts": 5181362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5181535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307aed0", "tid": 35568, "ts": 5181658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5181829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c0b0", "tid": 35568, "ts": 5181951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5182123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c8d0", "tid": 35568, "ts": 5182246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5182417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a030", "tid": 35568, "ts": 5182539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5182711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079e90", "tid": 35568, "ts": 5182833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a1d0", "tid": 35568, "ts": 5183127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307afa0", "tid": 35568, "ts": 5183421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b140", "tid": 35568, "ts": 5183715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5183886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c180", "tid": 35568, "ts": 5184008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5184180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b7c0", "tid": 35568, "ts": 5184302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5184474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c9a0", "tid": 35568, "ts": 5184596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5184767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a370", "tid": 35568, "ts": 5184890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307aac0", "tid": 35568, "ts": 5185184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a440", "tid": 35568, "ts": 5185479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c800", "tid": 35568, "ts": 5185774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5185945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b070", "tid": 35568, "ts": 5186067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5186239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ae00", "tid": 35568, "ts": 5186362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5186533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ca70", "tid": 35568, "ts": 5186655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5186827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a5e0", "tid": 35568, "ts": 5186949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5187121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a6b0", "tid": 35568, "ts": 5187243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5187415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cb40", "tid": 35568, "ts": 5187538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5187709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b960", "tid": 35568, "ts": 5187831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a780", "tid": 35568, "ts": 5188125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c250", "tid": 35568, "ts": 5188419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a850", "tid": 35568, "ts": 5188713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5188885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b210", "tid": 35568, "ts": 5189008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5189179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c320", "tid": 35568, "ts": 5189302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5189473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307a920", "tid": 35568, "ts": 5189596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5189767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c4c0", "tid": 35568, "ts": 5189890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307c3f0", "tid": 35568, "ts": 5190184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ac60", "tid": 35568, "ts": 5190479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cc10", "tid": 35568, "ts": 5190773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5190946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307bb00", "tid": 35568, "ts": 5191069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5191240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30799b0", "tid": 35568, "ts": 5191362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5191534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ab90", "tid": 35568, "ts": 5191656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5191827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079c20", "tid": 35568, "ts": 5191950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5192121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079a80", "tid": 35568, "ts": 5192288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5192471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3079dc0", "tid": 35568, "ts": 5192595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5192766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b3b0", "tid": 35568, "ts": 5192889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b2e0", "tid": 35568, "ts": 5193182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b480", "tid": 35568, "ts": 5193476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b550", "tid": 35568, "ts": 5193813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5193985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b620", "tid": 35568, "ts": 5194108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5194279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307b6f0", "tid": 35568, "ts": 5194402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5194597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dab0", "tid": 35568, "ts": 5194719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5194891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307db80", "tid": 35568, "ts": 5195013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5195186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fc00", "tid": 35568, "ts": 5195309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5195480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d430", "tid": 35568, "ts": 5195602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5195774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ebc0", "tid": 35568, "ts": 5195896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fb30", "tid": 35568, "ts": 5196190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e2d0", "tid": 35568, "ts": 5196485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307eaf0", "tid": 35568, "ts": 5196779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5196950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d770", "tid": 35568, "ts": 5197073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5197245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e3a0", "tid": 35568, "ts": 5197367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5197539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cce0", "tid": 35568, "ts": 5197695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5197867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dc50", "tid": 35568, "ts": 5197990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5198162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d290", "tid": 35568, "ts": 5198284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5198456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f240", "tid": 35568, "ts": 5198579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5198751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ea20", "tid": 35568, "ts": 5198875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f3e0", "tid": 35568, "ts": 5199169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e950", "tid": 35568, "ts": 5199463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ec90", "tid": 35568, "ts": 5199757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5199929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e470", "tid": 35568, "ts": 5200051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5200223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e540", "tid": 35568, "ts": 5200345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5200516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e610", "tid": 35568, "ts": 5200639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5200811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d6a0", "tid": 35568, "ts": 5200934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fcd0", "tid": 35568, "ts": 5201229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d360", "tid": 35568, "ts": 5201522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e7b0", "tid": 35568, "ts": 5201815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5201988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d1c0", "tid": 35568, "ts": 5202111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5202283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fda0", "tid": 35568, "ts": 5202406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5202578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d500", "tid": 35568, "ts": 5202700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5202871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ce80", "tid": 35568, "ts": 5202994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5203166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fe70", "tid": 35568, "ts": 5203289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5203461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d5d0", "tid": 35568, "ts": 5203584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5203755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ff40", "tid": 35568, "ts": 5203878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d840", "tid": 35568, "ts": 5204172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e060", "tid": 35568, "ts": 5204467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d910", "tid": 35568, "ts": 5204760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5204931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080010", "tid": 35568, "ts": 5205054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5205225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f650", "tid": 35568, "ts": 5205348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5205519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d9e0", "tid": 35568, "ts": 5205641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5205814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e6e0", "tid": 35568, "ts": 5205936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5206107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e200", "tid": 35568, "ts": 5206229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5206401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e880", "tid": 35568, "ts": 5206524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5206738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dd20", "tid": 35568, "ts": 5206866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5207039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ed60", "tid": 35568, "ts": 5207162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5207334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cdb0", "tid": 35568, "ts": 5207457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5207629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ee30", "tid": 35568, "ts": 5207751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ef00", "tid": 35568, "ts": 5208153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307df90", "tid": 35568, "ts": 5208449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307ddf0", "tid": 35568, "ts": 5208743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5208915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f720", "tid": 35568, "ts": 5209038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5209209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307cf50", "tid": 35568, "ts": 5209332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5209505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d020", "tid": 35568, "ts": 5209628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5209800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307dec0", "tid": 35568, "ts": 5209923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307e130", "tid": 35568, "ts": 5210218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307efd0", "tid": 35568, "ts": 5210513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f0a0", "tid": 35568, "ts": 5210808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5210980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307d0f0", "tid": 35568, "ts": 5211103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5211274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f170", "tid": 35568, "ts": 5211397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5211568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f310", "tid": 35568, "ts": 5211690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5211862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f4b0", "tid": 35568, "ts": 5211985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5212157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f580", "tid": 35568, "ts": 5212280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5212452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f7f0", "tid": 35568, "ts": 5212575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5212748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f8c0", "tid": 35568, "ts": 5212871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307f990", "tid": 35568, "ts": 5213165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a307fa60", "tid": 35568, "ts": 5213461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081460", "tid": 35568, "ts": 5213755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5213927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082cc0", "tid": 35568, "ts": 5214050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5214223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081120", "tid": 35568, "ts": 5214345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5214517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083270", "tid": 35568, "ts": 5214640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5214814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081530", "tid": 35568, "ts": 5214936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080760", "tid": 35568, "ts": 5215230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30824a0", "tid": 35568, "ts": 5215526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082a50", "tid": 35568, "ts": 5215819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5215991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083000", "tid": 35568, "ts": 5216171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5216343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082230", "tid": 35568, "ts": 5216466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5216638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30811f0", "tid": 35568, "ts": 5216760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5216931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080830", "tid": 35568, "ts": 5217054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5217225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081bb0", "tid": 35568, "ts": 5217348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5217519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082710", "tid": 35568, "ts": 5217642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5217813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082b20", "tid": 35568, "ts": 5217936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082090", "tid": 35568, "ts": 5218230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30830d0", "tid": 35568, "ts": 5218525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082e60", "tid": 35568, "ts": 5218819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5218991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082bf0", "tid": 35568, "ts": 5219114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5219286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30805c0", "tid": 35568, "ts": 5219409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5219580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082d90", "tid": 35568, "ts": 5219703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5219875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080280", "tid": 35568, "ts": 5219998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5220169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080350", "tid": 35568, "ts": 5220291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5220462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30831a0", "tid": 35568, "ts": 5220586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5220756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081600", "tid": 35568, "ts": 5220878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082f30", "tid": 35568, "ts": 5221172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083340", "tid": 35568, "ts": 5221466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083410", "tid": 35568, "ts": 5221759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5221931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080aa0", "tid": 35568, "ts": 5222054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5222225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082980", "tid": 35568, "ts": 5222348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5222520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30800e0", "tid": 35568, "ts": 5222657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5222829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30801b0", "tid": 35568, "ts": 5222952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5223124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080420", "tid": 35568, "ts": 5223247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5223419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30804f0", "tid": 35568, "ts": 5223592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5223764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30812c0", "tid": 35568, "ts": 5223887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080690", "tid": 35568, "ts": 5224181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081ef0", "tid": 35568, "ts": 5224476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081050", "tid": 35568, "ts": 5224770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5224941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30816d0", "tid": 35568, "ts": 5225404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5225576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080900", "tid": 35568, "ts": 5225760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5225933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30809d0", "tid": 35568, "ts": 5226056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5226228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080b70", "tid": 35568, "ts": 5226351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5226523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080c40", "tid": 35568, "ts": 5226647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5226819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080d10", "tid": 35568, "ts": 5226941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080de0", "tid": 35568, "ts": 5227236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081c80", "tid": 35568, "ts": 5227530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080eb0", "tid": 35568, "ts": 5227824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5227996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3080f80", "tid": 35568, "ts": 5228119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5228290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081390", "tid": 35568, "ts": 5228413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5228584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30817a0", "tid": 35568, "ts": 5228706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5228878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081870", "tid": 35568, "ts": 5229000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5229171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081940", "tid": 35568, "ts": 5229293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5229465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082570", "tid": 35568, "ts": 5229588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5229760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081a10", "tid": 35568, "ts": 5229883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081ae0", "tid": 35568, "ts": 5230177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081d50", "tid": 35568, "ts": 5230471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081e20", "tid": 35568, "ts": 5230765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5230936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3081fc0", "tid": 35568, "ts": 5231058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5231230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082160", "tid": 35568, "ts": 5231352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5231524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082300", "tid": 35568, "ts": 5231647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5231818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30823d0", "tid": 35568, "ts": 5231941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3082640", "tid": 35568, "ts": 5232237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30827e0", "tid": 35568, "ts": 5232532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30828b0", "tid": 35568, "ts": 5232825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5232998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085b10", "tid": 35568, "ts": 5233121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5233292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085560", "tid": 35568, "ts": 5233414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5233588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084fb0", "tid": 35568, "ts": 5233711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5233884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30842b0", "tid": 35568, "ts": 5234006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5234178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083b60", "tid": 35568, "ts": 5234301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5234472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085150", "tid": 35568, "ts": 5234595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5234766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30845f0", "tid": 35568, "ts": 5234889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085f20", "tid": 35568, "ts": 5235183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085080", "tid": 35568, "ts": 5235480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084110", "tid": 35568, "ts": 5235774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5235945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083c30", "tid": 35568, "ts": 5236068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5236240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083750", "tid": 35568, "ts": 5236363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5236535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30834e0", "tid": 35568, "ts": 5236658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5236831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083a90", "tid": 35568, "ts": 5236953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5237126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30841e0", "tid": 35568, "ts": 5237249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5237422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084ba0", "tid": 35568, "ts": 5237545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5237718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083d00", "tid": 35568, "ts": 5237840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30839c0", "tid": 35568, "ts": 5238134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085d80", "tid": 35568, "ts": 5238430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085490", "tid": 35568, "ts": 5238725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5238897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083dd0", "tid": 35568, "ts": 5239020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5239251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085be0", "tid": 35568, "ts": 5239375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5239547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083820", "tid": 35568, "ts": 5239713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5239887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084d40", "tid": 35568, "ts": 5240011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5240183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30838f0", "tid": 35568, "ts": 5240306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5240476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084450", "tid": 35568, "ts": 5240600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5240771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085220", "tid": 35568, "ts": 5240894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083ea0", "tid": 35568, "ts": 5241189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084380", "tid": 35568, "ts": 5241484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084790", "tid": 35568, "ts": 5241778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5241951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30857d0", "tid": 35568, "ts": 5242075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5242247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084ee0", "tid": 35568, "ts": 5242370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5242542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084520", "tid": 35568, "ts": 5242665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5242837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084930", "tid": 35568, "ts": 5242959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5243131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084a00", "tid": 35568, "ts": 5243255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5243427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083f70", "tid": 35568, "ts": 5243550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5243722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30846c0", "tid": 35568, "ts": 5243844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085cb0", "tid": 35568, "ts": 5244139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085630", "tid": 35568, "ts": 5244434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084e10", "tid": 35568, "ts": 5244728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5244901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084040", "tid": 35568, "ts": 5245024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5245196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3083680", "tid": 35568, "ts": 5245318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5245491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30852f0", "tid": 35568, "ts": 5245614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5245786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084860", "tid": 35568, "ts": 5245909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084ad0", "tid": 35568, "ts": 5246204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30853c0", "tid": 35568, "ts": 5246498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3084c70", "tid": 35568, "ts": 5246792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5246963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085700", "tid": 35568, "ts": 5247085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5247257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085a40", "tid": 35568, "ts": 5247380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5247551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085e50", "tid": 35568, "ts": 5247674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5247846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30858a0", "tid": 35568, "ts": 5247968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5248140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3085970", "tid": 35568, "ts": 5248263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5248434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30835b0", "tid": 35568, "ts": 5248557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5248729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066690", "tid": 35568, "ts": 5248853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068300", "tid": 35568, "ts": 5249147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30691a0", "tid": 35568, "ts": 5249441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069270", "tid": 35568, "ts": 5249736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5249908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30684a0", "tid": 35568, "ts": 5250030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5250203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068570", "tid": 35568, "ts": 5250326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5250499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068d90", "tid": 35568, "ts": 5250622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5250794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068f30", "tid": 35568, "ts": 5250918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067050", "tid": 35568, "ts": 5251213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30676d0", "tid": 35568, "ts": 5251507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068640", "tid": 35568, "ts": 5251802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5251974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068e60", "tid": 35568, "ts": 5252097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5252269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068230", "tid": 35568, "ts": 5252392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5252565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30671f0", "tid": 35568, "ts": 5252688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5252860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066900", "tid": 35568, "ts": 5252983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5253155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067fc0", "tid": 35568, "ts": 5253278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5253448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067940", "tid": 35568, "ts": 5253571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5253743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066eb0", "tid": 35568, "ts": 5253867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067870", "tid": 35568, "ts": 5254161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069000", "tid": 35568, "ts": 5254456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066760", "tid": 35568, "ts": 5254796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5254969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067bb0", "tid": 35568, "ts": 5255092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5255264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067120", "tid": 35568, "ts": 5255387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5255559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30672c0", "tid": 35568, "ts": 5255682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5255853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067460", "tid": 35568, "ts": 5255976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5256148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30669d0", "tid": 35568, "ts": 5256271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5256443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066b70", "tid": 35568, "ts": 5256566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5256737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066350", "tid": 35568, "ts": 5256859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066aa0", "tid": 35568, "ts": 5257153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30660e0", "tid": 35568, "ts": 5257449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067390", "tid": 35568, "ts": 5257744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5257915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067e20", "tid": 35568, "ts": 5258038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5258209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066420", "tid": 35568, "ts": 5258332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5258504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066c40", "tid": 35568, "ts": 5258628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5258799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30664f0", "tid": 35568, "ts": 5258922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067530", "tid": 35568, "ts": 5259215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30661b0", "tid": 35568, "ts": 5259509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066f80", "tid": 35568, "ts": 5259803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5259974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066830", "tid": 35568, "ts": 5260097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5260268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30683d0", "tid": 35568, "ts": 5260390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5260562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067ef0", "tid": 35568, "ts": 5260684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5260856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067600", "tid": 35568, "ts": 5260978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5261149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30677a0", "tid": 35568, "ts": 5261271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5261443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067a10", "tid": 35568, "ts": 5261565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5261736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067ae0", "tid": 35568, "ts": 5261859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068090", "tid": 35568, "ts": 5262154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067c80", "tid": 35568, "ts": 5262449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30688b0", "tid": 35568, "ts": 5262744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5262916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068710", "tid": 35568, "ts": 5263038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5263210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069340", "tid": 35568, "ts": 5263333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5263548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3067d50", "tid": 35568, "ts": 5263672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5263845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066d10", "tid": 35568, "ts": 5263968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5264141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068160", "tid": 35568, "ts": 5264264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5264436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3069410", "tid": 35568, "ts": 5264559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5264731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066280", "tid": 35568, "ts": 5264854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30665c0", "tid": 35568, "ts": 5265149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30687e0", "tid": 35568, "ts": 5265444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068980", "tid": 35568, "ts": 5265740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5265911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068a50", "tid": 35568, "ts": 5266034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5266206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068b20", "tid": 35568, "ts": 5266329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5266501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068bf0", "tid": 35568, "ts": 5266624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5266795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3068cc0", "tid": 35568, "ts": 5266918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5267090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a30690d0", "tid": 35568, "ts": 5267213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5267384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3066de0", "tid": 35568, "ts": 5267508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5267679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b84f0", "tid": 35568, "ts": 5267870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7e70", "tid": 35568, "ts": 5268168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9050", "tid": 35568, "ts": 5268462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7720", "tid": 35568, "ts": 5268756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5268928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b85c0", "tid": 35568, "ts": 5269050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5269221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8de0", "tid": 35568, "ts": 5269345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5269516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b81b0", "tid": 35568, "ts": 5269640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5269811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8aa0", "tid": 35568, "ts": 5269934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5270105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7f40", "tid": 35568, "ts": 5270228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5270457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8b70", "tid": 35568, "ts": 5270582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5270753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7650", "tid": 35568, "ts": 5270876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8010", "tid": 35568, "ts": 5271171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7240", "tid": 35568, "ts": 5271465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6c90", "tid": 35568, "ts": 5271760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5271931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6af0", "tid": 35568, "ts": 5272054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5272269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8eb0", "tid": 35568, "ts": 5272393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5272565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8760", "tid": 35568, "ts": 5272687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5272859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b89d0", "tid": 35568, "ts": 5272981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5273152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b73e0", "tid": 35568, "ts": 5273275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5273446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8c40", "tid": 35568, "ts": 5273569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5273804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b74b0", "tid": 35568, "ts": 5273929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5274105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b77f0", "tid": 35568, "ts": 5274229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5274408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7310", "tid": 35568, "ts": 5274543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5274715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b78c0", "tid": 35568, "ts": 5274839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6d60", "tid": 35568, "ts": 5275135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b63a0", "tid": 35568, "ts": 5275428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6bc0", "tid": 35568, "ts": 5275723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5275894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6fd0", "tid": 35568, "ts": 5276018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5276190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8420", "tid": 35568, "ts": 5276313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5276485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b80e0", "tid": 35568, "ts": 5276608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5276780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8280", "tid": 35568, "ts": 5276903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b62d0", "tid": 35568, "ts": 5277197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7170", "tid": 35568, "ts": 5277492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b67b0", "tid": 35568, "ts": 5277786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5277958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6880", "tid": 35568, "ts": 5278081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5278252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7580", "tid": 35568, "ts": 5278375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5278547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6950", "tid": 35568, "ts": 5278670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5278841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6a20", "tid": 35568, "ts": 5278964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5279136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8350", "tid": 35568, "ts": 5279258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5279429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7990", "tid": 35568, "ts": 5279552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5279724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7a60", "tid": 35568, "ts": 5279847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7b30", "tid": 35568, "ts": 5280143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6130", "tid": 35568, "ts": 5280437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8d10", "tid": 35568, "ts": 5280731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5280903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8f80", "tid": 35568, "ts": 5281026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5281198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9120", "tid": 35568, "ts": 5281320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5281490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6540", "tid": 35568, "ts": 5281613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5281784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8830", "tid": 35568, "ts": 5281907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9460", "tid": 35568, "ts": 5282201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6610", "tid": 35568, "ts": 5282495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8900", "tid": 35568, "ts": 5282789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5282961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6f00", "tid": 35568, "ts": 5283084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5283255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7c00", "tid": 35568, "ts": 5283378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5283550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6200", "tid": 35568, "ts": 5283674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5283846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7cd0", "tid": 35568, "ts": 5284025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5284197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b7da0", "tid": 35568, "ts": 5284320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5284493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b92c0", "tid": 35568, "ts": 5284616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5284787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b8690", "tid": 35568, "ts": 5284909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b91f0", "tid": 35568, "ts": 5285204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b66e0", "tid": 35568, "ts": 5285497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9390", "tid": 35568, "ts": 5285791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5285992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6470", "tid": 35568, "ts": 5286169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5286530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b6e30", "tid": 35568, "ts": 5286783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5287113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b70a0", "tid": 35568, "ts": 5287241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5287414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba3d0", "tid": 35568, "ts": 5287540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5287712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbb60", "tid": 35568, "ts": 5287836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba980", "tid": 35568, "ts": 5288132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc110", "tid": 35568, "ts": 5288429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9a10", "tid": 35568, "ts": 5288724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5288896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba7e0", "tid": 35568, "ts": 5289019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5289192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba4a0", "tid": 35568, "ts": 5289315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5289487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba570", "tid": 35568, "ts": 5289610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5289782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb270", "tid": 35568, "ts": 5289905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc450", "tid": 35568, "ts": 5290200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba640", "tid": 35568, "ts": 5290495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9d50", "tid": 35568, "ts": 5290790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5290962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9870", "tid": 35568, "ts": 5291085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5291258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc380", "tid": 35568, "ts": 5291382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5291554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bad90", "tid": 35568, "ts": 5291677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5291850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc860", "tid": 35568, "ts": 5291974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5292145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba230", "tid": 35568, "ts": 5292268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5292440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33baa50", "tid": 35568, "ts": 5292563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5292735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba300", "tid": 35568, "ts": 5292858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b96d0", "tid": 35568, "ts": 5293153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb8f0", "tid": 35568, "ts": 5293448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc1e0", "tid": 35568, "ts": 5293742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5293914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b97a0", "tid": 35568, "ts": 5294038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5294209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbdd0", "tid": 35568, "ts": 5294331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5294526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb4e0", "tid": 35568, "ts": 5294649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5294820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9530", "tid": 35568, "ts": 5294943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc6c0", "tid": 35568, "ts": 5295238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb1a0", "tid": 35568, "ts": 5295533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb0d0", "tid": 35568, "ts": 5295826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5295997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbea0", "tid": 35568, "ts": 5296120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5296292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbf70", "tid": 35568, "ts": 5296415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5296586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc040", "tid": 35568, "ts": 5296708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5296881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9600", "tid": 35568, "ts": 5297003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5297174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc5f0", "tid": 35568, "ts": 5297296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5297467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bab20", "tid": 35568, "ts": 5297590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5297762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33babf0", "tid": 35568, "ts": 5297885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba090", "tid": 35568, "ts": 5298180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc2b0", "tid": 35568, "ts": 5298475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb9c0", "tid": 35568, "ts": 5298770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5298941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc790", "tid": 35568, "ts": 5299064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5299235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba710", "tid": 35568, "ts": 5299358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5299530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9940", "tid": 35568, "ts": 5299653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5299824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba160", "tid": 35568, "ts": 5299947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5300118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9bb0", "tid": 35568, "ts": 5300241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5300412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ba8b0", "tid": 35568, "ts": 5300535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5300707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9ae0", "tid": 35568, "ts": 5300830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bba90", "tid": 35568, "ts": 5301124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc520", "tid": 35568, "ts": 5301418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9c80", "tid": 35568, "ts": 5301791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5301963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9e20", "tid": 35568, "ts": 5302086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5302257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9ef0", "tid": 35568, "ts": 5302381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5302553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bacc0", "tid": 35568, "ts": 5302676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5302848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33b9fc0", "tid": 35568, "ts": 5302971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5303144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb680", "tid": 35568, "ts": 5303266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5303438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bae60", "tid": 35568, "ts": 5303561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5303733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33baf30", "tid": 35568, "ts": 5303856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb000", "tid": 35568, "ts": 5304150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb340", "tid": 35568, "ts": 5304444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb410", "tid": 35568, "ts": 5304737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5304910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb5b0", "tid": 35568, "ts": 5305032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5305203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbc30", "tid": 35568, "ts": 5305372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5305544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb750", "tid": 35568, "ts": 5305668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5305841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bb820", "tid": 35568, "ts": 5305985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5306157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bbd00", "tid": 35568, "ts": 5306280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5306453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcfb0", "tid": 35568, "ts": 5306577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5306748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd970", "tid": 35568, "ts": 5306871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd220", "tid": 35568, "ts": 5307165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bda40", "tid": 35568, "ts": 5307459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be670", "tid": 35568, "ts": 5307753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5307926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcee0", "tid": 35568, "ts": 5308049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5308221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd7d0", "tid": 35568, "ts": 5308343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5308515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bec20", "tid": 35568, "ts": 5308637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5308808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be740", "tid": 35568, "ts": 5308931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd8a0", "tid": 35568, "ts": 5309226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33becf0", "tid": 35568, "ts": 5309520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bef60", "tid": 35568, "ts": 5309815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5309986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf030", "tid": 35568, "ts": 5310109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5310281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcba0", "tid": 35568, "ts": 5310404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5310576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf9f0", "tid": 35568, "ts": 5310699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5310871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf370", "tid": 35568, "ts": 5310994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5311166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf1d0", "tid": 35568, "ts": 5311349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5311521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdf20", "tid": 35568, "ts": 5311645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5311817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd700", "tid": 35568, "ts": 5311941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd630", "tid": 35568, "ts": 5312235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf440", "tid": 35568, "ts": 5312530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be810", "tid": 35568, "ts": 5312824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5312996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf100", "tid": 35568, "ts": 5313118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5313290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bea80", "tid": 35568, "ts": 5313413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5313585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcc70", "tid": 35568, "ts": 5313707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5313878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcd40", "tid": 35568, "ts": 5314000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5314170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bde50", "tid": 35568, "ts": 5314293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5314465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd080", "tid": 35568, "ts": 5314588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5314759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be8e0", "tid": 35568, "ts": 5314881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfc60", "tid": 35568, "ts": 5315178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf2a0", "tid": 35568, "ts": 5315473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bce10", "tid": 35568, "ts": 5315767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5315939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf510", "tid": 35568, "ts": 5316062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5316235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bc930", "tid": 35568, "ts": 5316357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5316529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd150", "tid": 35568, "ts": 5316652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5316824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf5e0", "tid": 35568, "ts": 5316946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5317118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd2f0", "tid": 35568, "ts": 5317287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5317460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdff0", "tid": 35568, "ts": 5317583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5317754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bee90", "tid": 35568, "ts": 5317877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd560", "tid": 35568, "ts": 5318172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd490", "tid": 35568, "ts": 5318467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bca00", "tid": 35568, "ts": 5318804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5318976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33beb50", "tid": 35568, "ts": 5319099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5319271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bedc0", "tid": 35568, "ts": 5319394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5319566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf6b0", "tid": 35568, "ts": 5319688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5319860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdb10", "tid": 35568, "ts": 5319982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5320154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be4d0", "tid": 35568, "ts": 5320277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5320449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be0c0", "tid": 35568, "ts": 5320571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5320742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf850", "tid": 35568, "ts": 5320865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf780", "tid": 35568, "ts": 5321161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bf920", "tid": 35568, "ts": 5321456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bcad0", "tid": 35568, "ts": 5321753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5321925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bd3c0", "tid": 35568, "ts": 5322048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5322220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdbe0", "tid": 35568, "ts": 5322342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5322514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdcb0", "tid": 35568, "ts": 5322637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5322809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bdd80", "tid": 35568, "ts": 5322932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be190", "tid": 35568, "ts": 5323226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be260", "tid": 35568, "ts": 5323520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be330", "tid": 35568, "ts": 5323814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5323985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfac0", "tid": 35568, "ts": 5324107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5324280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfb90", "tid": 35568, "ts": 5324403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5324574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be400", "tid": 35568, "ts": 5324696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5324867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be5a0", "tid": 35568, "ts": 5324990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5325162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33be9b0", "tid": 35568, "ts": 5325284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5325456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2df0", "tid": 35568, "ts": 5325579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5325751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0890", "tid": 35568, "ts": 5325874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c03b0", "tid": 35568, "ts": 5326168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bffa0", "tid": 35568, "ts": 5326462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1e80", "tid": 35568, "ts": 5326757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5326929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0620", "tid": 35568, "ts": 5327051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5327222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c13f0", "tid": 35568, "ts": 5327344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5327515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0960", "tid": 35568, "ts": 5327638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5327810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c02e0", "tid": 35568, "ts": 5327934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2d20", "tid": 35568, "ts": 5328229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0070", "tid": 35568, "ts": 5328524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2430", "tid": 35568, "ts": 5328818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5328990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1ce0", "tid": 35568, "ts": 5329112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5329284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c20f0", "tid": 35568, "ts": 5329407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5329579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfed0", "tid": 35568, "ts": 5329701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5329873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0140", "tid": 35568, "ts": 5329996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5330166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c06f0", "tid": 35568, "ts": 5330289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5330461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1c10", "tid": 35568, "ts": 5330583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5330756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2360", "tid": 35568, "ts": 5330878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0210", "tid": 35568, "ts": 5331172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2500", "tid": 35568, "ts": 5331466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c25d0", "tid": 35568, "ts": 5331760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5331932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c19a0", "tid": 35568, "ts": 5332056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5332227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0fe0", "tid": 35568, "ts": 5332351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5332522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0480", "tid": 35568, "ts": 5332645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5332817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c26a0", "tid": 35568, "ts": 5333102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5333276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c07c0", "tid": 35568, "ts": 5333401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5333573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c14c0", "tid": 35568, "ts": 5333697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5333913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1f50", "tid": 35568, "ts": 5334037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5334210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2020", "tid": 35568, "ts": 5334333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5334505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1250", "tid": 35568, "ts": 5334628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5334801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c21c0", "tid": 35568, "ts": 5334924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1590", "tid": 35568, "ts": 5335220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2770", "tid": 35568, "ts": 5335515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c18d0", "tid": 35568, "ts": 5335809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5335980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2290", "tid": 35568, "ts": 5336103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5336275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2c50", "tid": 35568, "ts": 5336398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5336570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0550", "tid": 35568, "ts": 5336693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5336865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0e40", "tid": 35568, "ts": 5336988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5337160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2840", "tid": 35568, "ts": 5337283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5337454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0a30", "tid": 35568, "ts": 5337578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5337749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2910", "tid": 35568, "ts": 5337872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0b00", "tid": 35568, "ts": 5338211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1660", "tid": 35568, "ts": 5338505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c10b0", "tid": 35568, "ts": 5338799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5338971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1db0", "tid": 35568, "ts": 5339094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5339265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3060", "tid": 35568, "ts": 5339388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5339560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1730", "tid": 35568, "ts": 5339683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5339854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0bd0", "tid": 35568, "ts": 5339977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5340148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c29e0", "tid": 35568, "ts": 5340296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5340468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2b80", "tid": 35568, "ts": 5340591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5340764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1800", "tid": 35568, "ts": 5340888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1a70", "tid": 35568, "ts": 5341181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0ca0", "tid": 35568, "ts": 5341475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfe00", "tid": 35568, "ts": 5341770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5341942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2ab0", "tid": 35568, "ts": 5342064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5342236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2ec0", "tid": 35568, "ts": 5342359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5342530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c2f90", "tid": 35568, "ts": 5342653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5342824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33bfd30", "tid": 35568, "ts": 5342947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5343117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0d70", "tid": 35568, "ts": 5343241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5343412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c0f10", "tid": 35568, "ts": 5343535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5343707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1180", "tid": 35568, "ts": 5343830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1320", "tid": 35568, "ts": 5344124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c1b40", "tid": 35568, "ts": 5344420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4720", "tid": 35568, "ts": 5344714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5344885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5010", "tid": 35568, "ts": 5345007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5345179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4240", "tid": 35568, "ts": 5345301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5345473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c59d0", "tid": 35568, "ts": 5345596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5345766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3af0", "tid": 35568, "ts": 5345888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c50e0", "tid": 35568, "ts": 5346184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6120", "tid": 35568, "ts": 5346479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c40a0", "tid": 35568, "ts": 5346774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5346946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c51b0", "tid": 35568, "ts": 5347069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5347241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4170", "tid": 35568, "ts": 5347364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5347537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5760", "tid": 35568, "ts": 5347660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5347831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5aa0", "tid": 35568, "ts": 5347954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5348125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c55c0", "tid": 35568, "ts": 5348248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5348421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c43e0", "tid": 35568, "ts": 5348557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5348729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3fd0", "tid": 35568, "ts": 5348852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5420", "tid": 35568, "ts": 5349146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3e30", "tid": 35568, "ts": 5349441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4650", "tid": 35568, "ts": 5349735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5349907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3a20", "tid": 35568, "ts": 5350030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5350202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5d10", "tid": 35568, "ts": 5350325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5350496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4a60", "tid": 35568, "ts": 5350619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5350791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4310", "tid": 35568, "ts": 5350913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c62c0", "tid": 35568, "ts": 5351208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c44b0", "tid": 35568, "ts": 5351501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4e70", "tid": 35568, "ts": 5351795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5351966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5280", "tid": 35568, "ts": 5352145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5352318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c33a0", "tid": 35568, "ts": 5352441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5352611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4f40", "tid": 35568, "ts": 5352734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5352906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6050", "tid": 35568, "ts": 5353028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5353200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5b70", "tid": 35568, "ts": 5353322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5353494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c47f0", "tid": 35568, "ts": 5353616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5353787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4580", "tid": 35568, "ts": 5353910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c54f0", "tid": 35568, "ts": 5354205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c61f0", "tid": 35568, "ts": 5354498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c48c0", "tid": 35568, "ts": 5354793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5354964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5c40", "tid": 35568, "ts": 5355086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5355257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5350", "tid": 35568, "ts": 5355380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5355552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4990", "tid": 35568, "ts": 5355675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5355845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6390", "tid": 35568, "ts": 5355968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5356140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4b30", "tid": 35568, "ts": 5356263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5356435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5de0", "tid": 35568, "ts": 5356557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5356729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5690", "tid": 35568, "ts": 5356851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4c00", "tid": 35568, "ts": 5357146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5830", "tid": 35568, "ts": 5357440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5900", "tid": 35568, "ts": 5357733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5357906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5eb0", "tid": 35568, "ts": 5358029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5358201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c5f80", "tid": 35568, "ts": 5358323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5358495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4cd0", "tid": 35568, "ts": 5358617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5358789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6460", "tid": 35568, "ts": 5358911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3130", "tid": 35568, "ts": 5359205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3f00", "tid": 35568, "ts": 5359499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3200", "tid": 35568, "ts": 5359792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5359963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c32d0", "tid": 35568, "ts": 5360085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5360257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3470", "tid": 35568, "ts": 5360380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5360550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3bc0", "tid": 35568, "ts": 5360673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5360844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c4da0", "tid": 35568, "ts": 5360966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5361138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3540", "tid": 35568, "ts": 5361261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5361431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3610", "tid": 35568, "ts": 5361554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5361725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c36e0", "tid": 35568, "ts": 5361848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c37b0", "tid": 35568, "ts": 5362141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3880", "tid": 35568, "ts": 5362435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3c90", "tid": 35568, "ts": 5362729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5362902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3950", "tid": 35568, "ts": 5363024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5363196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c3d60", "tid": 35568, "ts": 5363318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5363490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c66d0", "tid": 35568, "ts": 5363613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5363784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c88f0", "tid": 35568, "ts": 5363908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5364128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8b60", "tid": 35568, "ts": 5364253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5364425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6530", "tid": 35568, "ts": 5364548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5364719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7a50", "tid": 35568, "ts": 5364842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8c30", "tid": 35568, "ts": 5365139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6600", "tid": 35568, "ts": 5365434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c74a0", "tid": 35568, "ts": 5365729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5365901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8410", "tid": 35568, "ts": 5366023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5366195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7640", "tid": 35568, "ts": 5366318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5366490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9450", "tid": 35568, "ts": 5366612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5366784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8ea0", "tid": 35568, "ts": 5366906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8f70", "tid": 35568, "ts": 5367200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c89c0", "tid": 35568, "ts": 5367495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9040", "tid": 35568, "ts": 5367788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5367959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c67a0", "tid": 35568, "ts": 5368082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5368254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6ef0", "tid": 35568, "ts": 5368377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5368549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8d00", "tid": 35568, "ts": 5368671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5368880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9860", "tid": 35568, "ts": 5369007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5369179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7cc0", "tid": 35568, "ts": 5369303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5369475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7230", "tid": 35568, "ts": 5369598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5369769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8a90", "tid": 35568, "ts": 5369892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7160", "tid": 35568, "ts": 5370187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7300", "tid": 35568, "ts": 5370528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8270", "tid": 35568, "ts": 5370822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5370995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6ae0", "tid": 35568, "ts": 5371118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5371289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9110", "tid": 35568, "ts": 5371412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5371583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c80d0", "tid": 35568, "ts": 5371706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5371877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9790", "tid": 35568, "ts": 5372000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5372172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6870", "tid": 35568, "ts": 5372295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5372467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9520", "tid": 35568, "ts": 5372590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5372762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8dd0", "tid": 35568, "ts": 5372885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5373056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8680", "tid": 35568, "ts": 5373240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5373412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6940", "tid": 35568, "ts": 5373535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5373706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c73d0", "tid": 35568, "ts": 5373828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7b20", "tid": 35568, "ts": 5374123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7d90", "tid": 35568, "ts": 5374417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c95f0", "tid": 35568, "ts": 5374711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5374882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6a10", "tid": 35568, "ts": 5375005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5375176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8000", "tid": 35568, "ts": 5375298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5375469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7e60", "tid": 35568, "ts": 5375590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5375762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9380", "tid": 35568, "ts": 5375885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6c80", "tid": 35568, "ts": 5376179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c96c0", "tid": 35568, "ts": 5376474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c91e0", "tid": 35568, "ts": 5376768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5376941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6bb0", "tid": 35568, "ts": 5377064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5377236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7090", "tid": 35568, "ts": 5377358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5377530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7570", "tid": 35568, "ts": 5377653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5377824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8340", "tid": 35568, "ts": 5377946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5378118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7710", "tid": 35568, "ts": 5378241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5378412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c92b0", "tid": 35568, "ts": 5378535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5378706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6d50", "tid": 35568, "ts": 5378829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6e20", "tid": 35568, "ts": 5379123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c77e0", "tid": 35568, "ts": 5379419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c6fc0", "tid": 35568, "ts": 5379747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5379948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c78b0", "tid": 35568, "ts": 5380072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5380243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c84e0", "tid": 35568, "ts": 5380367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5380538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7980", "tid": 35568, "ts": 5380661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5380832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7bf0", "tid": 35568, "ts": 5380954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5381126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c7f30", "tid": 35568, "ts": 5381249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5381420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c81a0", "tid": 35568, "ts": 5381543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5381715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c85b0", "tid": 35568, "ts": 5381838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8750", "tid": 35568, "ts": 5382131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c8820", "tid": 35568, "ts": 5382425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc1d0", "tid": 35568, "ts": 5382720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5382893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbdc0", "tid": 35568, "ts": 5383015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5383186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cba80", "tid": 35568, "ts": 5383308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5383479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbcf0", "tid": 35568, "ts": 5383603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5383774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb8e0", "tid": 35568, "ts": 5383896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb5a0", "tid": 35568, "ts": 5384190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb400", "tid": 35568, "ts": 5384483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccc60", "tid": 35568, "ts": 5384777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5384947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9930", "tid": 35568, "ts": 5385070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5385242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbe90", "tid": 35568, "ts": 5385365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5385536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbf60", "tid": 35568, "ts": 5385658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5385830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca560", "tid": 35568, "ts": 5385953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5386124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbb50", "tid": 35568, "ts": 5386247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5386420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc030", "tid": 35568, "ts": 5386543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5386714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cbc20", "tid": 35568, "ts": 5386837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc100", "tid": 35568, "ts": 5387132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc920", "tid": 35568, "ts": 5387427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca630", "tid": 35568, "ts": 5387722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5387893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9fb0", "tid": 35568, "ts": 5388016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5388188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca3c0", "tid": 35568, "ts": 5388311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5388482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cad80", "tid": 35568, "ts": 5388605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5388776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33caff0", "tid": 35568, "ts": 5388899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca7d0", "tid": 35568, "ts": 5389193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb190", "tid": 35568, "ts": 5389488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc9f0", "tid": 35568, "ts": 5389781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5389953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca080", "tid": 35568, "ts": 5390076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5390248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc2a0", "tid": 35568, "ts": 5390371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5390543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33caf20", "tid": 35568, "ts": 5390665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5390836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc370", "tid": 35568, "ts": 5390959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5391131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca700", "tid": 35568, "ts": 5391254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5391425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc440", "tid": 35568, "ts": 5391549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5391720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cabe0", "tid": 35568, "ts": 5391842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb740", "tid": 35568, "ts": 5392136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb810", "tid": 35568, "ts": 5392430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc510", "tid": 35568, "ts": 5392725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5392895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc5e0", "tid": 35568, "ts": 5393018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5393188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9ba0", "tid": 35568, "ts": 5393312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5393483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc6b0", "tid": 35568, "ts": 5393606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5393778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9d40", "tid": 35568, "ts": 5393901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccac0", "tid": 35568, "ts": 5394195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca8a0", "tid": 35568, "ts": 5394488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9a00", "tid": 35568, "ts": 5394805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5394977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb9b0", "tid": 35568, "ts": 5395100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5395272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cacb0", "tid": 35568, "ts": 5395545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5395860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca970", "tid": 35568, "ts": 5396052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5396290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc780", "tid": 35568, "ts": 5396443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5396616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca220", "tid": 35568, "ts": 5396810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5396983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cc850", "tid": 35568, "ts": 5397109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5397281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca150", "tid": 35568, "ts": 5397406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5397578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cae50", "tid": 35568, "ts": 5397702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5397874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca2f0", "tid": 35568, "ts": 5397999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5398172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9e10", "tid": 35568, "ts": 5398295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5398467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccb90", "tid": 35568, "ts": 5398591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5398762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33caa40", "tid": 35568, "ts": 5398886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9ad0", "tid": 35568, "ts": 5399182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9c70", "tid": 35568, "ts": 5399478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33c9ee0", "tid": 35568, "ts": 5399773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5399945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cab10", "tid": 35568, "ts": 5400068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5400242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ca490", "tid": 35568, "ts": 5400366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5400538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb0c0", "tid": 35568, "ts": 5400661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5400833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb260", "tid": 35568, "ts": 5400957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5401129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb330", "tid": 35568, "ts": 5401252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5401424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb4d0", "tid": 35568, "ts": 5401547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5401719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cb670", "tid": 35568, "ts": 5401843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfec0", "tid": 35568, "ts": 5402138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd3b0", "tid": 35568, "ts": 5402433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdbd0", "tid": 35568, "ts": 5402726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5402898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf1c0", "tid": 35568, "ts": 5403022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5403192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cde40", "tid": 35568, "ts": 5403357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5403530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cff90", "tid": 35568, "ts": 5403655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5403869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfab0", "tid": 35568, "ts": 5403994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5404167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce9a0", "tid": 35568, "ts": 5404290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5404462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ceb40", "tid": 35568, "ts": 5404585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5404757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce250", "tid": 35568, "ts": 5404880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccd30", "tid": 35568, "ts": 5405175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf5d0", "tid": 35568, "ts": 5405469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd480", "tid": 35568, "ts": 5405763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5405935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd550", "tid": 35568, "ts": 5406058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5406229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce320", "tid": 35568, "ts": 5406352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5406524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfb80", "tid": 35568, "ts": 5406647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5406819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfdf0", "tid": 35568, "ts": 5406943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cea70", "tid": 35568, "ts": 5407238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cee80", "tid": 35568, "ts": 5407533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cce00", "tid": 35568, "ts": 5407828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5407999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce3f0", "tid": 35568, "ts": 5408122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5408294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce4c0", "tid": 35568, "ts": 5408417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5408590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdb00", "tid": 35568, "ts": 5408713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5408884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfc50", "tid": 35568, "ts": 5409007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5409180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0060", "tid": 35568, "ts": 5409303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5409475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cced0", "tid": 35568, "ts": 5409598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5409769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cfd20", "tid": 35568, "ts": 5409893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd620", "tid": 35568, "ts": 5410188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf6a0", "tid": 35568, "ts": 5410484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ccfa0", "tid": 35568, "ts": 5410779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5410989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd6f0", "tid": 35568, "ts": 5411141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5411313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cec10", "tid": 35568, "ts": 5411448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5411701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf770", "tid": 35568, "ts": 5411848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd210", "tid": 35568, "ts": 5412143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce0b0", "tid": 35568, "ts": 5412438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf840", "tid": 35568, "ts": 5412733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5412904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf0f0", "tid": 35568, "ts": 5413027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5413200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cef50", "tid": 35568, "ts": 5413322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5413494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf290", "tid": 35568, "ts": 5413617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5413788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd960", "tid": 35568, "ts": 5413936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf020", "tid": 35568, "ts": 5414232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cece0", "tid": 35568, "ts": 5414527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce590", "tid": 35568, "ts": 5414821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5414993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce660", "tid": 35568, "ts": 5415115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5415286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd070", "tid": 35568, "ts": 5415470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5415654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd140", "tid": 35568, "ts": 5415778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5415950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf360", "tid": 35568, "ts": 5416073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5416244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd2e0", "tid": 35568, "ts": 5416367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5416538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce730", "tid": 35568, "ts": 5416662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5416833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cedb0", "tid": 35568, "ts": 5416956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5417127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf430", "tid": 35568, "ts": 5417250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5417421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf500", "tid": 35568, "ts": 5417544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5417715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdf10", "tid": 35568, "ts": 5417838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd7c0", "tid": 35568, "ts": 5418133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cd890", "tid": 35568, "ts": 5418426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf910", "tid": 35568, "ts": 5418731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5418916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdca0", "tid": 35568, "ts": 5419064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5419421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cf9e0", "tid": 35568, "ts": 5419544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5419715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cda30", "tid": 35568, "ts": 5419838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdd70", "tid": 35568, "ts": 5420134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33cdfe0", "tid": 35568, "ts": 5420484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce180", "tid": 35568, "ts": 5420781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5420953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce800", "tid": 35568, "ts": 5421076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5421247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ce8d0", "tid": 35568, "ts": 5421370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5421542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0bc0", "tid": 35568, "ts": 5421664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5421836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1cd0", "tid": 35568, "ts": 5421960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5422131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d14b0", "tid": 35568, "ts": 5422255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5422426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3390", "tid": 35568, "ts": 5422549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5422720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2760", "tid": 35568, "ts": 5422844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1580", "tid": 35568, "ts": 5423139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d02d0", "tid": 35568, "ts": 5423433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d24f0", "tid": 35568, "ts": 5423727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5423899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0af0", "tid": 35568, "ts": 5424023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5424195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d29d0", "tid": 35568, "ts": 5424318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5424490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0470", "tid": 35568, "ts": 5424613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5424785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0fd0", "tid": 35568, "ts": 5424908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5425080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2420", "tid": 35568, "ts": 5425215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5425425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2830", "tid": 35568, "ts": 5425548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5425720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1650", "tid": 35568, "ts": 5425843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0540", "tid": 35568, "ts": 5426138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d25c0", "tid": 35568, "ts": 5426455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2900", "tid": 35568, "ts": 5426815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5426987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2c40", "tid": 35568, "ts": 5427111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5427283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2690", "tid": 35568, "ts": 5427406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5427578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0f00", "tid": 35568, "ts": 5427702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5427874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0e30", "tid": 35568, "ts": 5427997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5428168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2aa0", "tid": 35568, "ts": 5428291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5428463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2280", "tid": 35568, "ts": 5428586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5428757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2b70", "tid": 35568, "ts": 5428880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1f40", "tid": 35568, "ts": 5429176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0610", "tid": 35568, "ts": 5429471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2d10", "tid": 35568, "ts": 5429766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5429938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1720", "tid": 35568, "ts": 5430061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5430234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d18c0", "tid": 35568, "ts": 5430357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5430528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2010", "tid": 35568, "ts": 5430652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5430823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0950", "tid": 35568, "ts": 5430947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5431117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1240", "tid": 35568, "ts": 5431241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5431412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3460", "tid": 35568, "ts": 5431535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5431706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2de0", "tid": 35568, "ts": 5431829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d20e0", "tid": 35568, "ts": 5432124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2eb0", "tid": 35568, "ts": 5432419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1e70", "tid": 35568, "ts": 5432714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5432886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2350", "tid": 35568, "ts": 5433009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5433180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d2f80", "tid": 35568, "ts": 5433303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5433475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1c00", "tid": 35568, "ts": 5433599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5433770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d10a0", "tid": 35568, "ts": 5433894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d21b0", "tid": 35568, "ts": 5434189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3050", "tid": 35568, "ts": 5434485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1a60", "tid": 35568, "ts": 5434780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5434952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3120", "tid": 35568, "ts": 5435076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5435248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d31f0", "tid": 35568, "ts": 5435371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5435543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1990", "tid": 35568, "ts": 5435666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5435837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d32c0", "tid": 35568, "ts": 5435960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5436132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d06e0", "tid": 35568, "ts": 5436255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5436427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0130", "tid": 35568, "ts": 5436593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5436766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0200", "tid": 35568, "ts": 5436889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d07b0", "tid": 35568, "ts": 5437183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d03a0", "tid": 35568, "ts": 5437477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0880", "tid": 35568, "ts": 5437773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5437945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0a20", "tid": 35568, "ts": 5438068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5438240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0d60", "tid": 35568, "ts": 5438363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5438534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d0c90", "tid": 35568, "ts": 5438658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5438829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d17f0", "tid": 35568, "ts": 5438952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5439124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1170", "tid": 35568, "ts": 5439247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5439419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1310", "tid": 35568, "ts": 5439543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5439715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d13e0", "tid": 35568, "ts": 5439839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1b30", "tid": 35568, "ts": 5440133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d1da0", "tid": 35568, "ts": 5440427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3fc0", "tid": 35568, "ts": 5440722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5440895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5c30", "tid": 35568, "ts": 5441019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5441190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5dd0", "tid": 35568, "ts": 5441314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5441486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4090", "tid": 35568, "ts": 5441609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5441781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4300", "tid": 35568, "ts": 5441904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5442075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5270", "tid": 35568, "ts": 5442233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5442434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d43d0", "tid": 35568, "ts": 5442558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5442730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5000", "tid": 35568, "ts": 5442854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5410", "tid": 35568, "ts": 5443150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3e20", "tid": 35568, "ts": 5443446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4160", "tid": 35568, "ts": 5443740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5443911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3bb0", "tid": 35568, "ts": 5444034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5444206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4a50", "tid": 35568, "ts": 5444329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5444501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d66c0", "tid": 35568, "ts": 5444625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5444797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4230", "tid": 35568, "ts": 5444919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d44a0", "tid": 35568, "ts": 5445215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d59c0", "tid": 35568, "ts": 5445508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d58f0", "tid": 35568, "ts": 5445804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5445977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5b60", "tid": 35568, "ts": 5446101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5446271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5a90", "tid": 35568, "ts": 5446395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5446566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d62b0", "tid": 35568, "ts": 5446690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5446861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3940", "tid": 35568, "ts": 5446985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5447157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5d00", "tid": 35568, "ts": 5447280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5447452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d47e0", "tid": 35568, "ts": 5447576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5447747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3870", "tid": 35568, "ts": 5447871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5ea0", "tid": 35568, "ts": 5448166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6790", "tid": 35568, "ts": 5448461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5f70", "tid": 35568, "ts": 5448756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5448928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6040", "tid": 35568, "ts": 5449051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5449224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6380", "tid": 35568, "ts": 5449347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5449519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6110", "tid": 35568, "ts": 5449642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5449814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3d50", "tid": 35568, "ts": 5449937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d48b0", "tid": 35568, "ts": 5450233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5340", "tid": 35568, "ts": 5450528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3ef0", "tid": 35568, "ts": 5450823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5450995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3c80", "tid": 35568, "ts": 5451118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5451291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d61e0", "tid": 35568, "ts": 5451414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5451586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6450", "tid": 35568, "ts": 5451710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5451882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4570", "tid": 35568, "ts": 5452006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5452179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6520", "tid": 35568, "ts": 5452302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5452474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d54e0", "tid": 35568, "ts": 5452597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5452769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4640", "tid": 35568, "ts": 5452892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d65f0", "tid": 35568, "ts": 5453187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6860", "tid": 35568, "ts": 5453483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4980", "tid": 35568, "ts": 5453779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5453951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3a10", "tid": 35568, "ts": 5454074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5454246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3530", "tid": 35568, "ts": 5454369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5454541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4d90", "tid": 35568, "ts": 5454664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5454834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3600", "tid": 35568, "ts": 5454958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5455130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4b20", "tid": 35568, "ts": 5455254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5455426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4710", "tid": 35568, "ts": 5455549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5455721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4bf0", "tid": 35568, "ts": 5455844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d36d0", "tid": 35568, "ts": 5456139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d50d0", "tid": 35568, "ts": 5456434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d37a0", "tid": 35568, "ts": 5456728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5456900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4cc0", "tid": 35568, "ts": 5457023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5457194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4e60", "tid": 35568, "ts": 5457319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5457490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d4f30", "tid": 35568, "ts": 5457614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5457786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d51a0", "tid": 35568, "ts": 5457993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5458165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d3ae0", "tid": 35568, "ts": 5458289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5458461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d55b0", "tid": 35568, "ts": 5458585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5458759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5680", "tid": 35568, "ts": 5458882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5750", "tid": 35568, "ts": 5459178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d5820", "tid": 35568, "ts": 5459473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6d40", "tid": 35568, "ts": 5459767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5459939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8c20", "tid": 35568, "ts": 5460062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5460233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9850", "tid": 35568, "ts": 5460357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5460529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6fb0", "tid": 35568, "ts": 5460653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5460825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8810", "tid": 35568, "ts": 5460949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5461120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9370", "tid": 35568, "ts": 5461243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5461416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d91d0", "tid": 35568, "ts": 5461540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5461712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8cf0", "tid": 35568, "ts": 5461835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d92a0", "tid": 35568, "ts": 5462130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9c60", "tid": 35568, "ts": 5462426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d73c0", "tid": 35568, "ts": 5462721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5462892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7080", "tid": 35568, "ts": 5463016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5463187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7cb0", "tid": 35568, "ts": 5463311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5463484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7490", "tid": 35568, "ts": 5463607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5463778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d88e0", "tid": 35568, "ts": 5463902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7560", "tid": 35568, "ts": 5464197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d84d0", "tid": 35568, "ts": 5464492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8dc0", "tid": 35568, "ts": 5464787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5464959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7d80", "tid": 35568, "ts": 5465083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5465255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9780", "tid": 35568, "ts": 5465378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5465550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8670", "tid": 35568, "ts": 5465673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5465845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d77d0", "tid": 35568, "ts": 5465969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5466141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9440", "tid": 35568, "ts": 5466264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5466436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6930", "tid": 35568, "ts": 5466560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5466731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7630", "tid": 35568, "ts": 5466855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6ba0", "tid": 35568, "ts": 5467150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8e90", "tid": 35568, "ts": 5467445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7700", "tid": 35568, "ts": 5467741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5467912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d89b0", "tid": 35568, "ts": 5468036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5468208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8400", "tid": 35568, "ts": 5468332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5468503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6c70", "tid": 35568, "ts": 5468627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5468798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8f60", "tid": 35568, "ts": 5468965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5469138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6a00", "tid": 35568, "ts": 5469262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5469434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d78a0", "tid": 35568, "ts": 5469558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5469730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7220", "tid": 35568, "ts": 5469855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9030", "tid": 35568, "ts": 5470150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9b90", "tid": 35568, "ts": 5470445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7970", "tid": 35568, "ts": 5470740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5470912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d96b0", "tid": 35568, "ts": 5471035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5471207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9100", "tid": 35568, "ts": 5471331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5471503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9510", "tid": 35568, "ts": 5471627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5471799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d85a0", "tid": 35568, "ts": 5471922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6ad0", "tid": 35568, "ts": 5472218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7a40", "tid": 35568, "ts": 5472512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9920", "tid": 35568, "ts": 5472807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5472978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7b10", "tid": 35568, "ts": 5473101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5473272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7be0", "tid": 35568, "ts": 5473396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5473655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d95e0", "tid": 35568, "ts": 5473780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5473953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6e10", "tid": 35568, "ts": 5474077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5474288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d6ee0", "tid": 35568, "ts": 5474413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5474586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7f20", "tid": 35568, "ts": 5474710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5474882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7e50", "tid": 35568, "ts": 5475006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5475177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8a80", "tid": 35568, "ts": 5475302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5475474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8b50", "tid": 35568, "ts": 5475597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5475769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d99f0", "tid": 35568, "ts": 5475892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5476064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8260", "tid": 35568, "ts": 5476239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5476411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7ff0", "tid": 35568, "ts": 5476541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5476713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8740", "tid": 35568, "ts": 5476838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d7150", "tid": 35568, "ts": 5477134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d80c0", "tid": 35568, "ts": 5477429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9ac0", "tid": 35568, "ts": 5477725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5477897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d72f0", "tid": 35568, "ts": 5478021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5478192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8190", "tid": 35568, "ts": 5478316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5478488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d8330", "tid": 35568, "ts": 5478611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5478783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da140", "tid": 35568, "ts": 5478907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da480", "tid": 35568, "ts": 5479203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc5d0", "tid": 35568, "ts": 5479498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dab00", "tid": 35568, "ts": 5479794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5479965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db320", "tid": 35568, "ts": 5480088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5480260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc1c0", "tid": 35568, "ts": 5480384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5480555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc9e0", "tid": 35568, "ts": 5480678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5480850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcd20", "tid": 35568, "ts": 5480973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5481145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd060", "tid": 35568, "ts": 5481268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5481440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da210", "tid": 35568, "ts": 5481564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5481736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da960", "tid": 35568, "ts": 5481859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dabd0", "tid": 35568, "ts": 5482154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da890", "tid": 35568, "ts": 5482510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db3f0", "tid": 35568, "ts": 5482805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5482978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9ed0", "tid": 35568, "ts": 5483102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5483273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da070", "tid": 35568, "ts": 5483396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5483567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da620", "tid": 35568, "ts": 5483691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5483863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33daa30", "tid": 35568, "ts": 5483986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5484157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33daca0", "tid": 35568, "ts": 5484280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5484453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dad70", "tid": 35568, "ts": 5484576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5484748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc020", "tid": 35568, "ts": 5484871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc6a0", "tid": 35568, "ts": 5485167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dae40", "tid": 35568, "ts": 5485461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbe80", "tid": 35568, "ts": 5485756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5485928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da550", "tid": 35568, "ts": 5486052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5486224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc770", "tid": 35568, "ts": 5486347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5486518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da2e0", "tid": 35568, "ts": 5486642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5486897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db250", "tid": 35568, "ts": 5487070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5487242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9fa0", "tid": 35568, "ts": 5487366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5487538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33daf10", "tid": 35568, "ts": 5487661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5487833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db4c0", "tid": 35568, "ts": 5487957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5488129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dba70", "tid": 35568, "ts": 5488313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5488485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc500", "tid": 35568, "ts": 5488611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5488785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbf50", "tid": 35568, "ts": 5488908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5489120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbb40", "tid": 35568, "ts": 5489290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5489463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dafe0", "tid": 35568, "ts": 5489587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5489759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc290", "tid": 35568, "ts": 5489882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcdf0", "tid": 35568, "ts": 5490178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db0b0", "tid": 35568, "ts": 5490475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbc10", "tid": 35568, "ts": 5490769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5490941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db590", "tid": 35568, "ts": 5491065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5491238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db180", "tid": 35568, "ts": 5491361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5491533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db660", "tid": 35568, "ts": 5491657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5491828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da3b0", "tid": 35568, "ts": 5491952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5492123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da6f0", "tid": 35568, "ts": 5492248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5492420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db800", "tid": 35568, "ts": 5492544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5492717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db730", "tid": 35568, "ts": 5492840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db8d0", "tid": 35568, "ts": 5493134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33db9a0", "tid": 35568, "ts": 5493430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc0f0", "tid": 35568, "ts": 5493726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5493898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc360", "tid": 35568, "ts": 5494021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5494192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33da7c0", "tid": 35568, "ts": 5494316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5494511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbdb0", "tid": 35568, "ts": 5494634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5494806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dbce0", "tid": 35568, "ts": 5494929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc430", "tid": 35568, "ts": 5495224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcb80", "tid": 35568, "ts": 5495520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc840", "tid": 35568, "ts": 5495814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5495986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dc910", "tid": 35568, "ts": 5496110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5496281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcab0", "tid": 35568, "ts": 5496405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5496576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcc50", "tid": 35568, "ts": 5496699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5496871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcec0", "tid": 35568, "ts": 5496995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5497167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dcf90", "tid": 35568, "ts": 5497291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5497463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9d30", "tid": 35568, "ts": 5497586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5497758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33d9e00", "tid": 35568, "ts": 5497881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df900", "tid": 35568, "ts": 5498176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dda20", "tid": 35568, "ts": 5498471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0050", "tid": 35568, "ts": 5498767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5498939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df760", "tid": 35568, "ts": 5499062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5499233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de580", "tid": 35568, "ts": 5499357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5499529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddf00", "tid": 35568, "ts": 5499652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5499825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df350", "tid": 35568, "ts": 5499948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5500119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de720", "tid": 35568, "ts": 5500243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5500415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd2d0", "tid": 35568, "ts": 5500539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5500711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd470", "tid": 35568, "ts": 5500834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddaf0", "tid": 35568, "ts": 5501129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df010", "tid": 35568, "ts": 5501424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfb70", "tid": 35568, "ts": 5501718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5501933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e01f0", "tid": 35568, "ts": 5502063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5502236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de7f0", "tid": 35568, "ts": 5502384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5502556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df5c0", "tid": 35568, "ts": 5502679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5502850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddd60", "tid": 35568, "ts": 5502973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5503145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddc90", "tid": 35568, "ts": 5503269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5503440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df830", "tid": 35568, "ts": 5503563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5503735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de650", "tid": 35568, "ts": 5503859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5504031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd3a0", "tid": 35568, "ts": 5504155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5504328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33deda0", "tid": 35568, "ts": 5504451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5504625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd7b0", "tid": 35568, "ts": 5504834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5505087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd610", "tid": 35568, "ts": 5505279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5505506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de8c0", "tid": 35568, "ts": 5505735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5505907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfc40", "tid": 35568, "ts": 5506031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5506204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df690", "tid": 35568, "ts": 5506328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5506500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd540", "tid": 35568, "ts": 5506623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5506794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dee70", "tid": 35568, "ts": 5506917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddbc0", "tid": 35568, "ts": 5507212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0120", "tid": 35568, "ts": 5507507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df9d0", "tid": 35568, "ts": 5507801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5507973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dde30", "tid": 35568, "ts": 5508097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5508270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e02c0", "tid": 35568, "ts": 5508393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5508565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de4b0", "tid": 35568, "ts": 5508688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5508858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33deb30", "tid": 35568, "ts": 5508981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5509153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de990", "tid": 35568, "ts": 5509277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5509450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dec00", "tid": 35568, "ts": 5509573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5509745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfaa0", "tid": 35568, "ts": 5509868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33def40", "tid": 35568, "ts": 5510164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd950", "tid": 35568, "ts": 5510457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfd10", "tid": 35568, "ts": 5510754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5510926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de170", "tid": 35568, "ts": 5511050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5511222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfde0", "tid": 35568, "ts": 5511345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5511518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dea60", "tid": 35568, "ts": 5511641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5511813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0390", "tid": 35568, "ts": 5511936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33decd0", "tid": 35568, "ts": 5512231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0460", "tid": 35568, "ts": 5512528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df280", "tid": 35568, "ts": 5512822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5512994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd130", "tid": 35568, "ts": 5513118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5513289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dfeb0", "tid": 35568, "ts": 5513413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5513586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd200", "tid": 35568, "ts": 5513710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5513881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd6e0", "tid": 35568, "ts": 5514004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5514176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df0e0", "tid": 35568, "ts": 5514300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5514471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df1b0", "tid": 35568, "ts": 5514594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5514766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df420", "tid": 35568, "ts": 5514889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ddfd0", "tid": 35568, "ts": 5515183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33df4f0", "tid": 35568, "ts": 5515479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dd880", "tid": 35568, "ts": 5515775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5515947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33dff80", "tid": 35568, "ts": 5516070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5516243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de0a0", "tid": 35568, "ts": 5516366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5516539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de240", "tid": 35568, "ts": 5516661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5516834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de310", "tid": 35568, "ts": 5516957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5517129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33de3e0", "tid": 35568, "ts": 5517252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5517424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0530", "tid": 35568, "ts": 5517548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5517719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1a50", "tid": 35568, "ts": 5517843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2680", "tid": 35568, "ts": 5518138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2410", "tid": 35568, "ts": 5518432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0e20", "tid": 35568, "ts": 5518727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5518899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1300", "tid": 35568, "ts": 5519023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5519194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0bb0", "tid": 35568, "ts": 5519317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5519489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0870", "tid": 35568, "ts": 5519612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5519783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e29c0", "tid": 35568, "ts": 5519907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5520079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2dd0", "tid": 35568, "ts": 5520202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5520463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e35f0", "tid": 35568, "ts": 5520636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5520810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0c80", "tid": 35568, "ts": 5520934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1d90", "tid": 35568, "ts": 5521230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3520", "tid": 35568, "ts": 5521525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e13d0", "tid": 35568, "ts": 5521821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5521993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0d50", "tid": 35568, "ts": 5522117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5522289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0a10", "tid": 35568, "ts": 5522413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5522585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2270", "tid": 35568, "ts": 5522737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5522909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0fc0", "tid": 35568, "ts": 5523034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5523205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2ea0", "tid": 35568, "ts": 5523329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5523502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e36c0", "tid": 35568, "ts": 5523625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5523797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2a90", "tid": 35568, "ts": 5523920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0ef0", "tid": 35568, "ts": 5524216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1b20", "tid": 35568, "ts": 5524511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2750", "tid": 35568, "ts": 5524806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5524978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3450", "tid": 35568, "ts": 5525102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5525275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2340", "tid": 35568, "ts": 5525398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5525570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e20d0", "tid": 35568, "ts": 5525693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5525865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2820", "tid": 35568, "ts": 5525989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5526160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e28f0", "tid": 35568, "ts": 5526283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5526454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2b60", "tid": 35568, "ts": 5526578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5526749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3380", "tid": 35568, "ts": 5526873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1160", "tid": 35568, "ts": 5527168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0940", "tid": 35568, "ts": 5527463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1230", "tid": 35568, "ts": 5527758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5527929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e25b0", "tid": 35568, "ts": 5528083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5528345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3790", "tid": 35568, "ts": 5528506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5528677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e21a0", "tid": 35568, "ts": 5528801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5528973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e24e0", "tid": 35568, "ts": 5529096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5529269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1bf0", "tid": 35568, "ts": 5529392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5529564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2c30", "tid": 35568, "ts": 5529688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5529859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2d00", "tid": 35568, "ts": 5529983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5530154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3860", "tid": 35568, "ts": 5530279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5530450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1090", "tid": 35568, "ts": 5530573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5530744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3040", "tid": 35568, "ts": 5530867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0600", "tid": 35568, "ts": 5531162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2f70", "tid": 35568, "ts": 5531458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3110", "tid": 35568, "ts": 5531752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5531925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e06d0", "tid": 35568, "ts": 5532049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5532221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e14a0", "tid": 35568, "ts": 5532344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5532516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e31e0", "tid": 35568, "ts": 5532639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5532811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e18b0", "tid": 35568, "ts": 5532935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1570", "tid": 35568, "ts": 5533230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e32b0", "tid": 35568, "ts": 5533525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e07a0", "tid": 35568, "ts": 5533819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5533991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1640", "tid": 35568, "ts": 5534115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5534287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1cc0", "tid": 35568, "ts": 5534410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5534582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e0ae0", "tid": 35568, "ts": 5534705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5534876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1710", "tid": 35568, "ts": 5535044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5535216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e2000", "tid": 35568, "ts": 5535341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5535512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1e60", "tid": 35568, "ts": 5535636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5535809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e17e0", "tid": 35568, "ts": 5535932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5536203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1980", "tid": 35568, "ts": 5536329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5536502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e1f30", "tid": 35568, "ts": 5536626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5536798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e65e0", "tid": 35568, "ts": 5536922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5dc0", "tid": 35568, "ts": 5537217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6780", "tid": 35568, "ts": 5537511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4560", "tid": 35568, "ts": 5537806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5537977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4e50", "tid": 35568, "ts": 5538101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5538272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4630", "tid": 35568, "ts": 5538395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5538568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e55a0", "tid": 35568, "ts": 5538691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5538864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6510", "tid": 35568, "ts": 5538987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5539159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e58e0", "tid": 35568, "ts": 5539283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5539455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5a80", "tid": 35568, "ts": 5539578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5539751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5260", "tid": 35568, "ts": 5539874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e47d0", "tid": 35568, "ts": 5540168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5c20", "tid": 35568, "ts": 5540463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5cf0", "tid": 35568, "ts": 5540758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5540929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5e90", "tid": 35568, "ts": 5541052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5541223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e48a0", "tid": 35568, "ts": 5541347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5541519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5810", "tid": 35568, "ts": 5541642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5541814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6370", "tid": 35568, "ts": 5541937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e59b0", "tid": 35568, "ts": 5542232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5f60", "tid": 35568, "ts": 5542527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4f20", "tid": 35568, "ts": 5542823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5542995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5b50", "tid": 35568, "ts": 5543119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5543291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4700", "tid": 35568, "ts": 5543415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5543588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e69f0", "tid": 35568, "ts": 5543712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5543883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4be0", "tid": 35568, "ts": 5544006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5544178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4220", "tid": 35568, "ts": 5544301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5544473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6850", "tid": 35568, "ts": 5544597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5544812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5330", "tid": 35568, "ts": 5544936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4d80", "tid": 35568, "ts": 5545229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4cb0", "tid": 35568, "ts": 5545526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6920", "tid": 35568, "ts": 5545820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5545992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6440", "tid": 35568, "ts": 5546116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5546287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4ff0", "tid": 35568, "ts": 5546411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5546582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e50c0", "tid": 35568, "ts": 5546705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5546875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4490", "tid": 35568, "ts": 5546998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5547170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6030", "tid": 35568, "ts": 5547294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5547465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4970", "tid": 35568, "ts": 5547588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5547759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6100", "tid": 35568, "ts": 5547883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e61d0", "tid": 35568, "ts": 5548177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5190", "tid": 35568, "ts": 5548472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e62a0", "tid": 35568, "ts": 5548767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5548938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3ad0", "tid": 35568, "ts": 5549062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5549232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3e10", "tid": 35568, "ts": 5549355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5549526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5400", "tid": 35568, "ts": 5549650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5549821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e66b0", "tid": 35568, "ts": 5549945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5550116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6ac0", "tid": 35568, "ts": 5550240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5550412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4a40", "tid": 35568, "ts": 5550536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5550707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4b10", "tid": 35568, "ts": 5550831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e54d0", "tid": 35568, "ts": 5551126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6b90", "tid": 35568, "ts": 5551420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6c60", "tid": 35568, "ts": 5551797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5551969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3930", "tid": 35568, "ts": 5552093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5552265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5670", "tid": 35568, "ts": 5552389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5552561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e42f0", "tid": 35568, "ts": 5552685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5552856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3a00", "tid": 35568, "ts": 5552979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5553151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3ba0", "tid": 35568, "ts": 5553274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5553445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3c70", "tid": 35568, "ts": 5553569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5553741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3d40", "tid": 35568, "ts": 5553865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e5740", "tid": 35568, "ts": 5554159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3ee0", "tid": 35568, "ts": 5554453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e3fb0", "tid": 35568, "ts": 5554748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5554920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4080", "tid": 35568, "ts": 5555043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5555215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e4150", "tid": 35568, "ts": 5555340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5555511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e43c0", "tid": 35568, "ts": 5555633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5555806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8180", "tid": 35568, "ts": 5555930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5556102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9020", "tid": 35568, "ts": 5556225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5556396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e77c0", "tid": 35568, "ts": 5556578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5556750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e90f0", "tid": 35568, "ts": 5556874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7fe0", "tid": 35568, "ts": 5557169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8b40", "tid": 35568, "ts": 5557463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e95d0", "tid": 35568, "ts": 5557758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5557930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9910", "tid": 35568, "ts": 5558054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5558227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e91c0", "tid": 35568, "ts": 5558350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5558522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e88d0", "tid": 35568, "ts": 5558645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5558816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea060", "tid": 35568, "ts": 5558939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7890", "tid": 35568, "ts": 5559236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9840", "tid": 35568, "ts": 5559530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9500", "tid": 35568, "ts": 5559826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5559997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9ec0", "tid": 35568, "ts": 5560121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5560292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8e80", "tid": 35568, "ts": 5560415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5560587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9f90", "tid": 35568, "ts": 5560710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5560882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e96a0", "tid": 35568, "ts": 5561006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5561177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8c10", "tid": 35568, "ts": 5561301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5561473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9360", "tid": 35568, "ts": 5561596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5561767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9770", "tid": 35568, "ts": 5561890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8a70", "tid": 35568, "ts": 5562187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e99e0", "tid": 35568, "ts": 5562482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9ab0", "tid": 35568, "ts": 5562777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5562950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8ce0", "tid": 35568, "ts": 5563074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5563246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e89a0", "tid": 35568, "ts": 5563370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5563541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6e00", "tid": 35568, "ts": 5563664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5563835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7550", "tid": 35568, "ts": 5563958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5564130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8db0", "tid": 35568, "ts": 5564253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5564425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7960", "tid": 35568, "ts": 5564549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5564720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7a30", "tid": 35568, "ts": 5564845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8f50", "tid": 35568, "ts": 5565141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6ed0", "tid": 35568, "ts": 5565436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7e40", "tid": 35568, "ts": 5565731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5565903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7480", "tid": 35568, "ts": 5566026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5566198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6fa0", "tid": 35568, "ts": 5566322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5566494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9b80", "tid": 35568, "ts": 5566617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5566788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e6d30", "tid": 35568, "ts": 5566912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5567083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9430", "tid": 35568, "ts": 5567249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5567539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7d70", "tid": 35568, "ts": 5567666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5567881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9290", "tid": 35568, "ts": 5568012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5568183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9c50", "tid": 35568, "ts": 5568308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5568481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9d20", "tid": 35568, "ts": 5568667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5568839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7620", "tid": 35568, "ts": 5568963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5569136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7210", "tid": 35568, "ts": 5569260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5569432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8800", "tid": 35568, "ts": 5569556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5569727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8250", "tid": 35568, "ts": 5569851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8320", "tid": 35568, "ts": 5570145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e9df0", "tid": 35568, "ts": 5570441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7070", "tid": 35568, "ts": 5570737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5570909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e72e0", "tid": 35568, "ts": 5571032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5571204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7140", "tid": 35568, "ts": 5571328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5571501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e73b0", "tid": 35568, "ts": 5571624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5571795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e83f0", "tid": 35568, "ts": 5571918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e76f0", "tid": 35568, "ts": 5572212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7b00", "tid": 35568, "ts": 5572508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7bd0", "tid": 35568, "ts": 5572802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5572974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7ca0", "tid": 35568, "ts": 5573097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5573268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e7f10", "tid": 35568, "ts": 5573392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5573562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e80b0", "tid": 35568, "ts": 5573686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5573858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e84c0", "tid": 35568, "ts": 5573981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5574154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8590", "tid": 35568, "ts": 5574277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5574449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8660", "tid": 35568, "ts": 5574572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5574743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33e8730", "tid": 35568, "ts": 5574866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea7b0", "tid": 35568, "ts": 5575161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea540", "tid": 35568, "ts": 5575508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea3a0", "tid": 35568, "ts": 5575803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5575974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea610", "tid": 35568, "ts": 5576097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5576269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed460", "tid": 35568, "ts": 5576393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5576564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb3e0", "tid": 35568, "ts": 5576688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5576860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebcd0", "tid": 35568, "ts": 5576984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5577155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec4f0", "tid": 35568, "ts": 5577279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5577450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea880", "tid": 35568, "ts": 5577574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5577745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed2c0", "tid": 35568, "ts": 5577869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec760", "tid": 35568, "ts": 5578164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eceb0", "tid": 35568, "ts": 5578460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb4b0", "tid": 35568, "ts": 5578753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5578924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea950", "tid": 35568, "ts": 5579048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5579218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec900", "tid": 35568, "ts": 5579396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5579569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 5579994, "pid": 35104, "args": { "Heap": { "SizeInBytes": 134217728, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234a33ec280", "tid": 35568, "ts": 5580010, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234a33ec280", "tid": 35568, "ts": 5580041, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 134217728, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea6e0", "tid": 35568, "ts": 5580168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5580413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec830", "tid": 35568, "ts": 5580645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5580875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb8c0", "tid": 35568, "ts": 5581002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5581185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebf40", "tid": 35568, "ts": 5581311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5581484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb650", "tid": 35568, "ts": 5581609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5581782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eaa20", "tid": 35568, "ts": 5581973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5582145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea470", "tid": 35568, "ts": 5582270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5582443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eaaf0", "tid": 35568, "ts": 5582568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5582740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eabc0", "tid": 35568, "ts": 5582958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5583189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb240", "tid": 35568, "ts": 5583313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5583486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed390", "tid": 35568, "ts": 5583610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5583782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eac90", "tid": 35568, "ts": 5583906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec1b0", "tid": 35568, "ts": 5584201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea130", "tid": 35568, "ts": 5584496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea2d0", "tid": 35568, "ts": 5584821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5584993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecc40", "tid": 35568, "ts": 5585116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5585288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebda0", "tid": 35568, "ts": 5585411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5585583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ead60", "tid": 35568, "ts": 5585707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5585879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec9d0", "tid": 35568, "ts": 5586003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5586240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecaa0", "tid": 35568, "ts": 5586366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5586543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eae30", "tid": 35568, "ts": 5586668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5586848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eafd0", "tid": 35568, "ts": 5586982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5587155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec010", "tid": 35568, "ts": 5587279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5587453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eaf00", "tid": 35568, "ts": 5587577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5587749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec5c0", "tid": 35568, "ts": 5587873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecb70", "tid": 35568, "ts": 5588169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecd10", "tid": 35568, "ts": 5588465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebe70", "tid": 35568, "ts": 5588760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5588931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb0a0", "tid": 35568, "ts": 5589055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5589226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb170", "tid": 35568, "ts": 5589349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5589521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb720", "tid": 35568, "ts": 5589644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5589815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec0e0", "tid": 35568, "ts": 5589939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec690", "tid": 35568, "ts": 5590235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecde0", "tid": 35568, "ts": 5590531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb7f0", "tid": 35568, "ts": 5590826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5590998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb310", "tid": 35568, "ts": 5591121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5591292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ecf80", "tid": 35568, "ts": 5591416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5591633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec350", "tid": 35568, "ts": 5591787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5591959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb580", "tid": 35568, "ts": 5592082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5592255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eb990", "tid": 35568, "ts": 5592379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5592550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed050", "tid": 35568, "ts": 5592674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5592845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ec420", "tid": 35568, "ts": 5592969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5593140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eba60", "tid": 35568, "ts": 5593264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5593435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebb30", "tid": 35568, "ts": 5593559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5593730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ebc00", "tid": 35568, "ts": 5593854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed120", "tid": 35568, "ts": 5594148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed1f0", "tid": 35568, "ts": 5594443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee570", "tid": 35568, "ts": 5594761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5594933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ede20", "tid": 35568, "ts": 5595057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5595229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed600", "tid": 35568, "ts": 5595353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5595525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef9c0", "tid": 35568, "ts": 5595648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5595820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eef30", "tid": 35568, "ts": 5595944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5596115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee980", "tid": 35568, "ts": 5596238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5596410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eda10", "tid": 35568, "ts": 5596533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5596705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef000", "tid": 35568, "ts": 5596829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed6d0", "tid": 35568, "ts": 5597124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edd50", "tid": 35568, "ts": 5597420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee640", "tid": 35568, "ts": 5597715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5597886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef1a0", "tid": 35568, "ts": 5598009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5598180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef0d0", "tid": 35568, "ts": 5598303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5598537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eee60", "tid": 35568, "ts": 5598686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5598859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efea0", "tid": 35568, "ts": 5598985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5599155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f06c0", "tid": 35568, "ts": 5599279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5599452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eff70", "tid": 35568, "ts": 5599576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5599748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eeb20", "tid": 35568, "ts": 5599872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efb60", "tid": 35568, "ts": 5600168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef270", "tid": 35568, "ts": 5600463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efa90", "tid": 35568, "ts": 5600759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5600931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed530", "tid": 35568, "ts": 5601054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5601225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0040", "tid": 35568, "ts": 5601348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5601563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0110", "tid": 35568, "ts": 5601693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5601866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef340", "tid": 35568, "ts": 5601990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5602163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f02b0", "tid": 35568, "ts": 5602286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5602459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee8b0", "tid": 35568, "ts": 5602583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5602755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee230", "tid": 35568, "ts": 5602878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed940", "tid": 35568, "ts": 5603173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eea50", "tid": 35568, "ts": 5603468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0380", "tid": 35568, "ts": 5603763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5603934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efc30", "tid": 35568, "ts": 5604081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5604252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed870", "tid": 35568, "ts": 5604377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5604548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efd00", "tid": 35568, "ts": 5604672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5604844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee090", "tid": 35568, "ts": 5604967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5605138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef410", "tid": 35568, "ts": 5605261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5605711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0450", "tid": 35568, "ts": 5605838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edae0", "tid": 35568, "ts": 5606135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edbb0", "tid": 35568, "ts": 5606433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eebf0", "tid": 35568, "ts": 5606730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5606902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef4e0", "tid": 35568, "ts": 5607026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5607199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef820", "tid": 35568, "ts": 5607323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5607495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edc80", "tid": 35568, "ts": 5607619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5607792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eecc0", "tid": 35568, "ts": 5607915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef5b0", "tid": 35568, "ts": 5608211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee300", "tid": 35568, "ts": 5608507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f05f0", "tid": 35568, "ts": 5608803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5608974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edef0", "tid": 35568, "ts": 5609097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5609269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33edfc0", "tid": 35568, "ts": 5609392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5609564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0520", "tid": 35568, "ts": 5609688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5609860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee160", "tid": 35568, "ts": 5609984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5610156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef680", "tid": 35568, "ts": 5610280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5610453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33efdd0", "tid": 35568, "ts": 5610576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5610748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33eed90", "tid": 35568, "ts": 5610872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee3d0", "tid": 35568, "ts": 5611167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0790", "tid": 35568, "ts": 5611463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef750", "tid": 35568, "ts": 5611760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5611932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ef8f0", "tid": 35568, "ts": 5612055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5612227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f01e0", "tid": 35568, "ts": 5612350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5612521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ed7a0", "tid": 35568, "ts": 5612644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5612816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0860", "tid": 35568, "ts": 5612938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee4a0", "tid": 35568, "ts": 5613235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee710", "tid": 35568, "ts": 5613531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ee7e0", "tid": 35568, "ts": 5613827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5613999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1490", "tid": 35568, "ts": 5614225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5614552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2740", "tid": 35568, "ts": 5614736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5614958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0e10", "tid": 35568, "ts": 5615153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5615379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1080", "tid": 35568, "ts": 5615502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5615675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f20c0", "tid": 35568, "ts": 5615797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5615969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2330", "tid": 35568, "ts": 5616091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5616263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1150", "tid": 35568, "ts": 5616387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5616602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f31d0", "tid": 35568, "ts": 5616727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5616899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0fb0", "tid": 35568, "ts": 5617022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5617194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f13c0", "tid": 35568, "ts": 5617317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5617489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3030", "tid": 35568, "ts": 5617613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5617785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f28e0", "tid": 35568, "ts": 5617908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1ff0", "tid": 35568, "ts": 5618204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0ba0", "tid": 35568, "ts": 5618498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3b90", "tid": 35568, "ts": 5618794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5618966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0930", "tid": 35568, "ts": 5619090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5619262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2190", "tid": 35568, "ts": 5619385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5619556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f29b0", "tid": 35568, "ts": 5619680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5619852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2f60", "tid": 35568, "ts": 5619976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5620148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2810", "tid": 35568, "ts": 5620271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5620443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2a80", "tid": 35568, "ts": 5620566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5620737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1be0", "tid": 35568, "ts": 5620860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f17d0", "tid": 35568, "ts": 5621155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f12f0", "tid": 35568, "ts": 5621452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3850", "tid": 35568, "ts": 5621748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5621919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0ad0", "tid": 35568, "ts": 5622043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5622214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2260", "tid": 35568, "ts": 5622338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5622510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f32a0", "tid": 35568, "ts": 5622633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5622804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3920", "tid": 35568, "ts": 5622928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1220", "tid": 35568, "ts": 5623221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2b50", "tid": 35568, "ts": 5623517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0ee0", "tid": 35568, "ts": 5623812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5623984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2400", "tid": 35568, "ts": 5624107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5624279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2c20", "tid": 35568, "ts": 5624402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5624575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1b10", "tid": 35568, "ts": 5624698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5624869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2cf0", "tid": 35568, "ts": 5624992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5625165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1560", "tid": 35568, "ts": 5625288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5625487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1cb0", "tid": 35568, "ts": 5625668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5625840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f25a0", "tid": 35568, "ts": 5625965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5626136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2dc0", "tid": 35568, "ts": 5626260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5626432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1f20", "tid": 35568, "ts": 5626556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5626728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f24d0", "tid": 35568, "ts": 5626851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3c60", "tid": 35568, "ts": 5627147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3100", "tid": 35568, "ts": 5627442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2e90", "tid": 35568, "ts": 5627739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5627911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f2670", "tid": 35568, "ts": 5628034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5628206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3370", "tid": 35568, "ts": 5628330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5628503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0d40", "tid": 35568, "ts": 5628626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5628799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1e50", "tid": 35568, "ts": 5628922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5629095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1a40", "tid": 35568, "ts": 5629219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5629392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3440", "tid": 35568, "ts": 5629516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5629748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1630", "tid": 35568, "ts": 5629935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5630127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3510", "tid": 35568, "ts": 5630258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5630435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f35e0", "tid": 35568, "ts": 5630562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5630737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f36b0", "tid": 35568, "ts": 5630863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3780", "tid": 35568, "ts": 5631162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f39f0", "tid": 35568, "ts": 5631460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3ac0", "tid": 35568, "ts": 5631757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5631930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0a00", "tid": 35568, "ts": 5632069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5632242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f0c70", "tid": 35568, "ts": 5632367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5632540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1700", "tid": 35568, "ts": 5632664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5632837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f18a0", "tid": 35568, "ts": 5632961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5633133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1970", "tid": 35568, "ts": 5633257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5633430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f1d80", "tid": 35568, "ts": 5633554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5633727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f42e0", "tid": 35568, "ts": 5633851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5a70", "tid": 35568, "ts": 5634148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5590", "tid": 35568, "ts": 5634445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5660", "tid": 35568, "ts": 5634741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5634914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6d20", "tid": 35568, "ts": 5635084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5635257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f61c0", "tid": 35568, "ts": 5635434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5635608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5b40", "tid": 35568, "ts": 5635738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5635910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5ce0", "tid": 35568, "ts": 5636033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5636206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6430", "tid": 35568, "ts": 5636329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5636502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f43b0", "tid": 35568, "ts": 5636626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5636798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f58d0", "tid": 35568, "ts": 5636923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5e80", "tid": 35568, "ts": 5637218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5c10", "tid": 35568, "ts": 5637514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6ec0", "tid": 35568, "ts": 5637810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5637983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f60f0", "tid": 35568, "ts": 5638106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5638277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4480", "tid": 35568, "ts": 5638401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5638574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4e40", "tid": 35568, "ts": 5638698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5638870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6ab0", "tid": 35568, "ts": 5638994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5639167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5db0", "tid": 35568, "ts": 5639291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5639463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5730", "tid": 35568, "ts": 5639586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5639760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5800", "tid": 35568, "ts": 5639884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f59a0", "tid": 35568, "ts": 5640181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6500", "tid": 35568, "ts": 5640477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3fa0", "tid": 35568, "ts": 5640773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5640946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4960", "tid": 35568, "ts": 5641069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5641242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5f50", "tid": 35568, "ts": 5641365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5641537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4070", "tid": 35568, "ts": 5641661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5641833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6360", "tid": 35568, "ts": 5641957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5642129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6020", "tid": 35568, "ts": 5642253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5642425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f54c0", "tid": 35568, "ts": 5642549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5642761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3d30", "tid": 35568, "ts": 5642889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6290", "tid": 35568, "ts": 5643185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4550", "tid": 35568, "ts": 5643482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6df0", "tid": 35568, "ts": 5643778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5643951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f65d0", "tid": 35568, "ts": 5644075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5644247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f66a0", "tid": 35568, "ts": 5644371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5644544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5320", "tid": 35568, "ts": 5644667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5644840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3e00", "tid": 35568, "ts": 5644964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5645136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f3ed0", "tid": 35568, "ts": 5645260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5645589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4140", "tid": 35568, "ts": 5645723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5645896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4620", "tid": 35568, "ts": 5646021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5646194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4210", "tid": 35568, "ts": 5646318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5646490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f47c0", "tid": 35568, "ts": 5646614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5646785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6770", "tid": 35568, "ts": 5646909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4ca0", "tid": 35568, "ts": 5647205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4d70", "tid": 35568, "ts": 5647501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f46f0", "tid": 35568, "ts": 5647797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5647968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6840", "tid": 35568, "ts": 5648092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5648266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f50b0", "tid": 35568, "ts": 5648389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5648562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4890", "tid": 35568, "ts": 5648685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5648856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4f10", "tid": 35568, "ts": 5648980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5649152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4fe0", "tid": 35568, "ts": 5649275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5649447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6910", "tid": 35568, "ts": 5649570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5649742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4a30", "tid": 35568, "ts": 5649866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4b00", "tid": 35568, "ts": 5650161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f4bd0", "tid": 35568, "ts": 5650456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6c50", "tid": 35568, "ts": 5650751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5650922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5180", "tid": 35568, "ts": 5651045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5651216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f5250", "tid": 35568, "ts": 5651339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5651511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f53f0", "tid": 35568, "ts": 5651634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5651805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f69e0", "tid": 35568, "ts": 5651928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5652100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33f6b80", "tid": 35568, "ts": 5652224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5652395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7260", "tid": 35568, "ts": 5652585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5652758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af81d0", "tid": 35568, "ts": 5652882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7670", "tid": 35568, "ts": 5653178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8fa0", "tid": 35568, "ts": 5653472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8920", "tid": 35568, "ts": 5653766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5653937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af67d0", "tid": 35568, "ts": 5654059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5654229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8d30", "tid": 35568, "ts": 5654353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5654525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6e50", "tid": 35568, "ts": 5654648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5654820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af86b0", "tid": 35568, "ts": 5654943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5655114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af82a0", "tid": 35568, "ts": 5655237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5655409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7330", "tid": 35568, "ts": 5655531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5655703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8100", "tid": 35568, "ts": 5655891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9480", "tid": 35568, "ts": 5656185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9070", "tid": 35568, "ts": 5656480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8e00", "tid": 35568, "ts": 5656775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5656946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af79b0", "tid": 35568, "ts": 5657069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5657243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af68a0", "tid": 35568, "ts": 5657366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5657539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af89f0", "tid": 35568, "ts": 5657661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5657833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7a80", "tid": 35568, "ts": 5657957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5658128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8370", "tid": 35568, "ts": 5658251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5658424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8030", "tid": 35568, "ts": 5658548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5658719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8b90", "tid": 35568, "ts": 5658841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af85e0", "tid": 35568, "ts": 5659134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8ac0", "tid": 35568, "ts": 5659429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7f60", "tid": 35568, "ts": 5659724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5659896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6f20", "tid": 35568, "ts": 5660019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5660190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8780", "tid": 35568, "ts": 5660313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5660485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af75a0", "tid": 35568, "ts": 5660608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5660780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8440", "tid": 35568, "ts": 5660903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5661131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6700", "tid": 35568, "ts": 5661256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5661428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8850", "tid": 35568, "ts": 5661552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5661723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8510", "tid": 35568, "ts": 5661846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7b50", "tid": 35568, "ts": 5662142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6d80", "tid": 35568, "ts": 5662437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7400", "tid": 35568, "ts": 5662732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5662903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af93b0", "tid": 35568, "ts": 5663026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5663197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8c60", "tid": 35568, "ts": 5663321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5663493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af74d0", "tid": 35568, "ts": 5663617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5663788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6a40", "tid": 35568, "ts": 5663911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af8ed0", "tid": 35568, "ts": 5664205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9140", "tid": 35568, "ts": 5664499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9210", "tid": 35568, "ts": 5664795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5664967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af92e0", "tid": 35568, "ts": 5665091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5665264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6150", "tid": 35568, "ts": 5665387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5665559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6220", "tid": 35568, "ts": 5665683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5665855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af62f0", "tid": 35568, "ts": 5666001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5666173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af63c0", "tid": 35568, "ts": 5666297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5666468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7740", "tid": 35568, "ts": 5666591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5666762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7810", "tid": 35568, "ts": 5666886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6b10", "tid": 35568, "ts": 5667182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6490", "tid": 35568, "ts": 5667475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6560", "tid": 35568, "ts": 5667770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5667984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6630", "tid": 35568, "ts": 5668113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5668284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6970", "tid": 35568, "ts": 5668408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5668580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6be0", "tid": 35568, "ts": 5668704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5668875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7dc0", "tid": 35568, "ts": 5668999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5669171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af70c0", "tid": 35568, "ts": 5669294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5669465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7cf0", "tid": 35568, "ts": 5669588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5669760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6cb0", "tid": 35568, "ts": 5669883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af78e0", "tid": 35568, "ts": 5670178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af6ff0", "tid": 35568, "ts": 5670472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7190", "tid": 35568, "ts": 5670767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5670938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7c20", "tid": 35568, "ts": 5671061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5671232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af7e90", "tid": 35568, "ts": 5671355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5671527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc060", "tid": 35568, "ts": 5671650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5671821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc200", "tid": 35568, "ts": 5671944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5672116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa660", "tid": 35568, "ts": 5672239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5672410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb5d0", "tid": 35568, "ts": 5672533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5672705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb290", "tid": 35568, "ts": 5672828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbc50", "tid": 35568, "ts": 5673122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa0b0", "tid": 35568, "ts": 5673418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb1c0", "tid": 35568, "ts": 5673713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5673885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa180", "tid": 35568, "ts": 5674007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5674179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb9e0", "tid": 35568, "ts": 5674302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5674473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9620", "tid": 35568, "ts": 5674596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5674767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb020", "tid": 35568, "ts": 5674890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9890", "tid": 35568, "ts": 5675186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa250", "tid": 35568, "ts": 5675481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc2d0", "tid": 35568, "ts": 5675775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5675947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc130", "tid": 35568, "ts": 5676070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5676243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc540", "tid": 35568, "ts": 5676366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5676538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb770", "tid": 35568, "ts": 5676771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5676943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afab40", "tid": 35568, "ts": 5677068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5677240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afaa70", "tid": 35568, "ts": 5677363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5677537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbd20", "tid": 35568, "ts": 5677661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5677832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc3a0", "tid": 35568, "ts": 5677956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5678128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbf90", "tid": 35568, "ts": 5678251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5678422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa4c0", "tid": 35568, "ts": 5678546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5678718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb0f0", "tid": 35568, "ts": 5678842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9960", "tid": 35568, "ts": 5679136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb360", "tid": 35568, "ts": 5679430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9f10", "tid": 35568, "ts": 5679725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5679897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa320", "tid": 35568, "ts": 5680020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5680191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbab0", "tid": 35568, "ts": 5680315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5680487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af97c0", "tid": 35568, "ts": 5680610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5680781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbb80", "tid": 35568, "ts": 5680905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc880", "tid": 35568, "ts": 5681200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb430", "tid": 35568, "ts": 5681494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb840", "tid": 35568, "ts": 5681790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5681960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb500", "tid": 35568, "ts": 5682084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5682256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa8d0", "tid": 35568, "ts": 5682379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5682551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af96f0", "tid": 35568, "ts": 5682675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5682847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc7b0", "tid": 35568, "ts": 5682970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5683142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afac10", "tid": 35568, "ts": 5683264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5683435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9a30", "tid": 35568, "ts": 5683559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5683731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa730", "tid": 35568, "ts": 5683854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc470", "tid": 35568, "ts": 5684150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aface0", "tid": 35568, "ts": 5684445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9e40", "tid": 35568, "ts": 5684740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5684911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9b00", "tid": 35568, "ts": 5685035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5685206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9fe0", "tid": 35568, "ts": 5685329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5685501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc6e0", "tid": 35568, "ts": 5685624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5685797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc610", "tid": 35568, "ts": 5685920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5686092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9550", "tid": 35568, "ts": 5686216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5686387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbdf0", "tid": 35568, "ts": 5686510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5686725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9ca0", "tid": 35568, "ts": 5686849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa3f0", "tid": 35568, "ts": 5687144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb6a0", "tid": 35568, "ts": 5687438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9bd0", "tid": 35568, "ts": 5687733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5687904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afbec0", "tid": 35568, "ts": 5688027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5688198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa590", "tid": 35568, "ts": 5688321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5688493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa9a0", "tid": 35568, "ts": 5688615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5688787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3af9d70", "tid": 35568, "ts": 5688910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afa800", "tid": 35568, "ts": 5689205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afb910", "tid": 35568, "ts": 5689500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afadb0", "tid": 35568, "ts": 5689794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5689965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afaf50", "tid": 35568, "ts": 5690087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5690258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afae80", "tid": 35568, "ts": 5690381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5690552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe690", "tid": 35568, "ts": 5690676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5690847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff120", "tid": 35568, "ts": 5690970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5691142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd580", "tid": 35568, "ts": 5691265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5691436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd240", "tid": 35568, "ts": 5691558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5691731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe9d0", "tid": 35568, "ts": 5691854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5692025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affbb0", "tid": 35568, "ts": 5692148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5692426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afeaa0", "tid": 35568, "ts": 5692563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5692735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afeb70", "tid": 35568, "ts": 5692858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdda0", "tid": 35568, "ts": 5693154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe830", "tid": 35568, "ts": 5693449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdcd0", "tid": 35568, "ts": 5693809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5693982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd990", "tid": 35568, "ts": 5694105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5694277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affc80", "tid": 35568, "ts": 5694400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5694596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe5c0", "tid": 35568, "ts": 5694720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5694892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe900", "tid": 35568, "ts": 5695015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5695186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe4f0", "tid": 35568, "ts": 5695309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5695481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcd60", "tid": 35568, "ts": 5695605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5695777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affa10", "tid": 35568, "ts": 5695900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5696118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd0a0", "tid": 35568, "ts": 5696339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5697189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcfd0", "tid": 35568, "ts": 5697317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5697490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff530", "tid": 35568, "ts": 5697615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5697787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff940", "tid": 35568, "ts": 5697911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afde70", "tid": 35568, "ts": 5698206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdf40", "tid": 35568, "ts": 5698502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff7a0", "tid": 35568, "ts": 5698797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5698968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff870", "tid": 35568, "ts": 5699092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5699263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe350", "tid": 35568, "ts": 5699386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5699558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affae0", "tid": 35568, "ts": 5699681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5699853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd7f0", "tid": 35568, "ts": 5699976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5700147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe760", "tid": 35568, "ts": 5700270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5700442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afce30", "tid": 35568, "ts": 5700565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5700737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe010", "tid": 35568, "ts": 5700860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe420", "tid": 35568, "ts": 5701155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcf00", "tid": 35568, "ts": 5701494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afec40", "tid": 35568, "ts": 5701791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5701962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd8c0", "tid": 35568, "ts": 5702086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5702257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afed10", "tid": 35568, "ts": 5702381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5702553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd650", "tid": 35568, "ts": 5702677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5702848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd310", "tid": 35568, "ts": 5702972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5703144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afc950", "tid": 35568, "ts": 5703268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5703440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe0e0", "tid": 35568, "ts": 5703563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5703735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afef80", "tid": 35568, "ts": 5703858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afda60", "tid": 35568, "ts": 5704153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afca20", "tid": 35568, "ts": 5704446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd170", "tid": 35568, "ts": 5704741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5704912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afede0", "tid": 35568, "ts": 5705036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5705207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd3e0", "tid": 35568, "ts": 5705331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5705502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd4b0", "tid": 35568, "ts": 5705625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5705797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff1f0", "tid": 35568, "ts": 5705921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe1b0", "tid": 35568, "ts": 5706216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcaf0", "tid": 35568, "ts": 5706510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afeeb0", "tid": 35568, "ts": 5706805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5706976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afe280", "tid": 35568, "ts": 5707098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5707270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afd720", "tid": 35568, "ts": 5707392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5707563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdb30", "tid": 35568, "ts": 5707686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5707944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff2c0", "tid": 35568, "ts": 5708068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5708241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afdc00", "tid": 35568, "ts": 5708364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5708535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff050", "tid": 35568, "ts": 5708659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5708831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff390", "tid": 35568, "ts": 5708953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5709125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff460", "tid": 35568, "ts": 5709248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5709420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff600", "tid": 35568, "ts": 5709544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5709716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3aff6d0", "tid": 35568, "ts": 5709840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcbc0", "tid": 35568, "ts": 5710137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afcc90", "tid": 35568, "ts": 5710433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01dd0", "tid": 35568, "ts": 5710728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5710900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00e60", "tid": 35568, "ts": 5711023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5711195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00640", "tid": 35568, "ts": 5711318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5711489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b021e0", "tid": 35568, "ts": 5711612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5711783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01c30", "tid": 35568, "ts": 5711906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affe20", "tid": 35568, "ts": 5712202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00f30", "tid": 35568, "ts": 5712497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00710", "tid": 35568, "ts": 5712791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5712962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01ea0", "tid": 35568, "ts": 5713085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5713257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b011a0", "tid": 35568, "ts": 5713380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5713552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00cc0", "tid": 35568, "ts": 5713675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5713845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b025f0", "tid": 35568, "ts": 5713969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5714140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02930", "tid": 35568, "ts": 5714264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5714435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02e10", "tid": 35568, "ts": 5714559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5714731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b003d0", "tid": 35568, "ts": 5714854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01340", "tid": 35568, "ts": 5715150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02ad0", "tid": 35568, "ts": 5715446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b010d0", "tid": 35568, "ts": 5715740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5715911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02040", "tid": 35568, "ts": 5716035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5716206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02fb0", "tid": 35568, "ts": 5716329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5716500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02520", "tid": 35568, "ts": 5716624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5716795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00230", "tid": 35568, "ts": 5716918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00a50", "tid": 35568, "ts": 5717213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b022b0", "tid": 35568, "ts": 5717508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01d00", "tid": 35568, "ts": 5717803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5717974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b018f0", "tid": 35568, "ts": 5718096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5718267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01680", "tid": 35568, "ts": 5718390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5718561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01f70", "tid": 35568, "ts": 5718684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5718855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02790", "tid": 35568, "ts": 5718979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5719152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02450", "tid": 35568, "ts": 5719275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5719446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b008b0", "tid": 35568, "ts": 5719570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5719741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02110", "tid": 35568, "ts": 5719864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02860", "tid": 35568, "ts": 5720160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b007e0", "tid": 35568, "ts": 5720456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01b60", "tid": 35568, "ts": 5720749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5720921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b004a0", "tid": 35568, "ts": 5721044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5721216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b019c0", "tid": 35568, "ts": 5721339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5721510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00d90", "tid": 35568, "ts": 5721633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5721804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01000", "tid": 35568, "ts": 5721926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01270", "tid": 35568, "ts": 5722220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00980", "tid": 35568, "ts": 5722517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00b20", "tid": 35568, "ts": 5722812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5722984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b026c0", "tid": 35568, "ts": 5723108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5723280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00bf0", "tid": 35568, "ts": 5723403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5723691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01410", "tid": 35568, "ts": 5723868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5724105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01a90", "tid": 35568, "ts": 5724300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5724526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02a00", "tid": 35568, "ts": 5724650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5724821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02ba0", "tid": 35568, "ts": 5724945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5725117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02380", "tid": 35568, "ts": 5725240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5725411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02c70", "tid": 35568, "ts": 5725535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5725706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02d40", "tid": 35568, "ts": 5725829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b014e0", "tid": 35568, "ts": 5726126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b02ee0", "tid": 35568, "ts": 5726423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b015b0", "tid": 35568, "ts": 5726718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5726890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01750", "tid": 35568, "ts": 5727014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5727186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affef0", "tid": 35568, "ts": 5727309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5727480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00090", "tid": 35568, "ts": 5727604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5727776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b01820", "tid": 35568, "ts": 5727899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03080", "tid": 35568, "ts": 5728193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3affd50", "tid": 35568, "ts": 5728487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3afffc0", "tid": 35568, "ts": 5728782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5728953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00160", "tid": 35568, "ts": 5729077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5729249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00300", "tid": 35568, "ts": 5729373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5729544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b00570", "tid": 35568, "ts": 5729668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5729839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05030", "tid": 35568, "ts": 5729962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5730133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03560", "tid": 35568, "ts": 5730256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5730427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05100", "tid": 35568, "ts": 5730550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5730722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06480", "tid": 35568, "ts": 5730845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b059f0", "tid": 35568, "ts": 5731140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03d80", "tid": 35568, "ts": 5731436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05370", "tid": 35568, "ts": 5731730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5731900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04740", "tid": 35568, "ts": 5732024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5732196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05ed0", "tid": 35568, "ts": 5732319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5732491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b044d0", "tid": 35568, "ts": 5732615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5732786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05440", "tid": 35568, "ts": 5732910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b038a0", "tid": 35568, "ts": 5733204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03be0", "tid": 35568, "ts": 5733499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05510", "tid": 35568, "ts": 5733793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5733965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04670", "tid": 35568, "ts": 5734134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5734305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05920", "tid": 35568, "ts": 5734429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5734602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03cb0", "tid": 35568, "ts": 5734726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5734896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b040c0", "tid": 35568, "ts": 5735019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5735191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b051d0", "tid": 35568, "ts": 5735314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5735486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03e50", "tid": 35568, "ts": 5735609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5735781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b063b0", "tid": 35568, "ts": 5735904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05fa0", "tid": 35568, "ts": 5736199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03f20", "tid": 35568, "ts": 5736493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06210", "tid": 35568, "ts": 5736789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5736961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b037d0", "tid": 35568, "ts": 5737086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5737258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06070", "tid": 35568, "ts": 5737381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5737553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04b50", "tid": 35568, "ts": 5737676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5737848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b052a0", "tid": 35568, "ts": 5737971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5738143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03490", "tid": 35568, "ts": 5738267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5738439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03ff0", "tid": 35568, "ts": 5738562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5738734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03630", "tid": 35568, "ts": 5738858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5739029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03700", "tid": 35568, "ts": 5739211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5739446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04190", "tid": 35568, "ts": 5739605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5739811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04dc0", "tid": 35568, "ts": 5739957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5740153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05ac0", "tid": 35568, "ts": 5740300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5740547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03a40", "tid": 35568, "ts": 5740686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5740858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b045a0", "tid": 35568, "ts": 5741005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5741276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03970", "tid": 35568, "ts": 5741460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5741633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05c60", "tid": 35568, "ts": 5741757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5741931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04810", "tid": 35568, "ts": 5742054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5742226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05d30", "tid": 35568, "ts": 5742350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5742548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b048e0", "tid": 35568, "ts": 5742737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5742911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04e90", "tid": 35568, "ts": 5743036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5743210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04330", "tid": 35568, "ts": 5743335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5743511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b055e0", "tid": 35568, "ts": 5743636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5743809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b049b0", "tid": 35568, "ts": 5743934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5744108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b062e0", "tid": 35568, "ts": 5744233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5744406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05b90", "tid": 35568, "ts": 5744531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5744706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03b10", "tid": 35568, "ts": 5744831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03220", "tid": 35568, "ts": 5745129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04c20", "tid": 35568, "ts": 5745427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04260", "tid": 35568, "ts": 5745728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5745903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05e00", "tid": 35568, "ts": 5746028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5746203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04400", "tid": 35568, "ts": 5746328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5746503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06140", "tid": 35568, "ts": 5746627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5746801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04a80", "tid": 35568, "ts": 5746926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5747100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04cf0", "tid": 35568, "ts": 5747225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5747399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b03150", "tid": 35568, "ts": 5747523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5747721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b032f0", "tid": 35568, "ts": 5747846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5748018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b056b0", "tid": 35568, "ts": 5748142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5748313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05780", "tid": 35568, "ts": 5748437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5748632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b04f60", "tid": 35568, "ts": 5748780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b05850", "tid": 35568, "ts": 5749125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b033c0", "tid": 35568, "ts": 5749421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06e40", "tid": 35568, "ts": 5749716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5749888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08430", "tid": 35568, "ts": 5750012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5750183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08500", "tid": 35568, "ts": 5750306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5750478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09200", "tid": 35568, "ts": 5750602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5750774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07800", "tid": 35568, "ts": 5750898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b081c0", "tid": 35568, "ts": 5751193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07f50", "tid": 35568, "ts": 5751489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b074c0", "tid": 35568, "ts": 5751784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5751957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b086a0", "tid": 35568, "ts": 5752081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5752252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07a70", "tid": 35568, "ts": 5752377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5752549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b093a0", "tid": 35568, "ts": 5752673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5752844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b085d0", "tid": 35568, "ts": 5752968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5753140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08d20", "tid": 35568, "ts": 5753265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5753435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06bd0", "tid": 35568, "ts": 5753558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5753730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06ca0", "tid": 35568, "ts": 5753854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08df0", "tid": 35568, "ts": 5754150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06d70", "tid": 35568, "ts": 5754446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b096e0", "tid": 35568, "ts": 5754762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5754934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08020", "tid": 35568, "ts": 5755058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5755230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b097b0", "tid": 35568, "ts": 5755354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5755526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08ec0", "tid": 35568, "ts": 5755649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5755820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09880", "tid": 35568, "ts": 5755944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5756116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08f90", "tid": 35568, "ts": 5756240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5756412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08360", "tid": 35568, "ts": 5756536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5756707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09470", "tid": 35568, "ts": 5756832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08770", "tid": 35568, "ts": 5757127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07730", "tid": 35568, "ts": 5757422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b080f0", "tid": 35568, "ts": 5757719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5757890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06550", "tid": 35568, "ts": 5758014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5758247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b070b0", "tid": 35568, "ts": 5758372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5758544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08290", "tid": 35568, "ts": 5758669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5758840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06960", "tid": 35568, "ts": 5758963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5759135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b067c0", "tid": 35568, "ts": 5759259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5759432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08840", "tid": 35568, "ts": 5759556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5759726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06620", "tid": 35568, "ts": 5759850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06890", "tid": 35568, "ts": 5760144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b066f0", "tid": 35568, "ts": 5760439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b089e0", "tid": 35568, "ts": 5760733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5760904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06a30", "tid": 35568, "ts": 5761029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5761200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08910", "tid": 35568, "ts": 5761323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5761495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08ab0", "tid": 35568, "ts": 5761619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5761790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07b40", "tid": 35568, "ts": 5761913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08b80", "tid": 35568, "ts": 5762208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06b00", "tid": 35568, "ts": 5762503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06f10", "tid": 35568, "ts": 5762798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5762970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07250", "tid": 35568, "ts": 5763159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5763332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b06fe0", "tid": 35568, "ts": 5763456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5763628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07180", "tid": 35568, "ts": 5763752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5763924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b08c50", "tid": 35568, "ts": 5764047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5764218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07320", "tid": 35568, "ts": 5764342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5764515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09060", "tid": 35568, "ts": 5764639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5764811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09130", "tid": 35568, "ts": 5764934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07660", "tid": 35568, "ts": 5765229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b073f0", "tid": 35568, "ts": 5765525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b092d0", "tid": 35568, "ts": 5765819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5765990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09540", "tid": 35568, "ts": 5766114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5766285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09610", "tid": 35568, "ts": 5766410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5766581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07590", "tid": 35568, "ts": 5766705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5766876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07c10", "tid": 35568, "ts": 5766999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5767170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b078d0", "tid": 35568, "ts": 5767293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5767506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b079a0", "tid": 35568, "ts": 5767635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5767806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07ce0", "tid": 35568, "ts": 5767929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07db0", "tid": 35568, "ts": 5768224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b07e80", "tid": 35568, "ts": 5768519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b9d0", "tid": 35568, "ts": 5768814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5768986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c1f0", "tid": 35568, "ts": 5769109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5769280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c120", "tid": 35568, "ts": 5769404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5769575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ae70", "tid": 35568, "ts": 5769699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5769870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b1b0", "tid": 35568, "ts": 5769994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5770165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0baa0", "tid": 35568, "ts": 5770289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5770521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a990", "tid": 35568, "ts": 5770646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5770817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bde0", "tid": 35568, "ts": 5770940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09e30", "tid": 35568, "ts": 5771235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cc80", "tid": 35568, "ts": 5771531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b5c0", "tid": 35568, "ts": 5771828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5771999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a650", "tid": 35568, "ts": 5772123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5772294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a4b0", "tid": 35568, "ts": 5772418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5772590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bb70", "tid": 35568, "ts": 5772713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5772884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a580", "tid": 35568, "ts": 5773008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5773180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cae0", "tid": 35568, "ts": 5773303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5773474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0af40", "tid": 35568, "ts": 5773598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5773770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ca10", "tid": 35568, "ts": 5773894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b690", "tid": 35568, "ts": 5774188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09fd0", "tid": 35568, "ts": 5774483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09a20", "tid": 35568, "ts": 5774780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5774951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ab30", "tid": 35568, "ts": 5775074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5775246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c870", "tid": 35568, "ts": 5775369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5775541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c530", "tid": 35568, "ts": 5775665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5775836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09c90", "tid": 35568, "ts": 5775959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5776131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c2c0", "tid": 35568, "ts": 5776255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5776427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a720", "tid": 35568, "ts": 5776551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5776721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a7f0", "tid": 35568, "ts": 5776845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bc40", "tid": 35568, "ts": 5777139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b010", "tid": 35568, "ts": 5777435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c600", "tid": 35568, "ts": 5777728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5777900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09f00", "tid": 35568, "ts": 5778024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5778196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b420", "tid": 35568, "ts": 5778320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5778490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09af0", "tid": 35568, "ts": 5778614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5778785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cbb0", "tid": 35568, "ts": 5778909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b4f0", "tid": 35568, "ts": 5779204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09bc0", "tid": 35568, "ts": 5779499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09950", "tid": 35568, "ts": 5779794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5779965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c390", "tid": 35568, "ts": 5780089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5780261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a8c0", "tid": 35568, "ts": 5780384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5780556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b09d60", "tid": 35568, "ts": 5780679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5780851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c460", "tid": 35568, "ts": 5780975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5781147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0aa60", "tid": 35568, "ts": 5781271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5781442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bd10", "tid": 35568, "ts": 5781566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5781737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a0a0", "tid": 35568, "ts": 5781862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a170", "tid": 35568, "ts": 5782157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b0e0", "tid": 35568, "ts": 5782454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b280", "tid": 35568, "ts": 5782748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5782920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b760", "tid": 35568, "ts": 5783044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5783215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a240", "tid": 35568, "ts": 5783338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5783510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a3e0", "tid": 35568, "ts": 5783633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5783805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c050", "tid": 35568, "ts": 5783929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b900", "tid": 35568, "ts": 5784224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b350", "tid": 35568, "ts": 5784520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0a310", "tid": 35568, "ts": 5784816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5784987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ac00", "tid": 35568, "ts": 5785111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5785283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0b830", "tid": 35568, "ts": 5785407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5785578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0beb0", "tid": 35568, "ts": 5785702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5785874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c6d0", "tid": 35568, "ts": 5786058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5786229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c7a0", "tid": 35568, "ts": 5786354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5786525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0acd0", "tid": 35568, "ts": 5786649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5786819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0bf80", "tid": 35568, "ts": 5786943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5787115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0c940", "tid": 35568, "ts": 5787239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5787411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ada0", "tid": 35568, "ts": 5787535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5787706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fc70", "tid": 35568, "ts": 5787829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fee0", "tid": 35568, "ts": 5788124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e820", "tid": 35568, "ts": 5788419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d160", "tid": 35568, "ts": 5788714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5788886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0eb60", "tid": 35568, "ts": 5789010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5789181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e270", "tid": 35568, "ts": 5789305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5789477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d640", "tid": 35568, "ts": 5789601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5789771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d090", "tid": 35568, "ts": 5789896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0da50", "tid": 35568, "ts": 5790192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fad0", "tid": 35568, "ts": 5790487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10080", "tid": 35568, "ts": 5790782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5790954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f520", "tid": 35568, "ts": 5791078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5791250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d710", "tid": 35568, "ts": 5791476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5791648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f790", "tid": 35568, "ts": 5791772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5791944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d230", "tid": 35568, "ts": 5792068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5792239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d8b0", "tid": 35568, "ts": 5792363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5792535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e750", "tid": 35568, "ts": 5792659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5792830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ffb0", "tid": 35568, "ts": 5792954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5793125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e8f0", "tid": 35568, "ts": 5793248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5793420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f2b0", "tid": 35568, "ts": 5793544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5793716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cd50", "tid": 35568, "ts": 5793839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ce20", "tid": 35568, "ts": 5794134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ec30", "tid": 35568, "ts": 5794521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cef0", "tid": 35568, "ts": 5794817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5794988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fd40", "tid": 35568, "ts": 5795112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5795283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e0d0", "tid": 35568, "ts": 5795406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5795577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f860", "tid": 35568, "ts": 5795701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5795873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e5b0", "tid": 35568, "ts": 5795996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5796168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f5f0", "tid": 35568, "ts": 5796291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5796463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f6c0", "tid": 35568, "ts": 5796586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5796759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0db20", "tid": 35568, "ts": 5796882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fe10", "tid": 35568, "ts": 5797178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e680", "tid": 35568, "ts": 5797474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e1a0", "tid": 35568, "ts": 5797770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5797942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0dd90", "tid": 35568, "ts": 5798066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5798237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d980", "tid": 35568, "ts": 5798360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5798531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f110", "tid": 35568, "ts": 5798654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5798825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fba0", "tid": 35568, "ts": 5798949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5799121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f930", "tid": 35568, "ts": 5799244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5799416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0dbf0", "tid": 35568, "ts": 5799539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5799712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0edd0", "tid": 35568, "ts": 5799836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f380", "tid": 35568, "ts": 5800190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0cfc0", "tid": 35568, "ts": 5800486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0fa00", "tid": 35568, "ts": 5800782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5800953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0dcc0", "tid": 35568, "ts": 5801076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5801247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0de60", "tid": 35568, "ts": 5801371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5801548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d4a0", "tid": 35568, "ts": 5801763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5801936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d300", "tid": 35568, "ts": 5802061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5802235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d570", "tid": 35568, "ts": 5802359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5802530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ea90", "tid": 35568, "ts": 5802654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5802826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0df30", "tid": 35568, "ts": 5802950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5803122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f1e0", "tid": 35568, "ts": 5803246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5803419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d3d0", "tid": 35568, "ts": 5803542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5803713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e000", "tid": 35568, "ts": 5803838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0d7e0", "tid": 35568, "ts": 5804134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e340", "tid": 35568, "ts": 5804430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e9c0", "tid": 35568, "ts": 5804725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5804897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ed00", "tid": 35568, "ts": 5805021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5805192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e410", "tid": 35568, "ts": 5805316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5805488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0eea0", "tid": 35568, "ts": 5805612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5805784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0e4e0", "tid": 35568, "ts": 5805907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0ef70", "tid": 35568, "ts": 5806202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f450", "tid": 35568, "ts": 5806497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b0f040", "tid": 35568, "ts": 5806792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5806963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11260", "tid": 35568, "ts": 5807086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5807257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b133b0", "tid": 35568, "ts": 5807380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5807552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b102f0", "tid": 35568, "ts": 5807676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5807848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b125e0", "tid": 35568, "ts": 5807971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5808143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12fa0", "tid": 35568, "ts": 5808267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5808438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10220", "tid": 35568, "ts": 5808561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5808733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11b50", "tid": 35568, "ts": 5808857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10560", "tid": 35568, "ts": 5809151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b114d0", "tid": 35568, "ts": 5809446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10cb0", "tid": 35568, "ts": 5809743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5809915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11c20", "tid": 35568, "ts": 5810039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5810210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b107d0", "tid": 35568, "ts": 5810333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5810504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12030", "tid": 35568, "ts": 5810627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5810797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11cf0", "tid": 35568, "ts": 5810921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b121d0", "tid": 35568, "ts": 5811216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12920", "tid": 35568, "ts": 5811511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12c60", "tid": 35568, "ts": 5811806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5811978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10be0", "tid": 35568, "ts": 5812102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5812274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b103c0", "tid": 35568, "ts": 5812397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5812569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12100", "tid": 35568, "ts": 5812693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5812864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11dc0", "tid": 35568, "ts": 5812988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5813160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12440", "tid": 35568, "ts": 5813282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5813453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10d80", "tid": 35568, "ts": 5813576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5813747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b126b0", "tid": 35568, "ts": 5813870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13480", "tid": 35568, "ts": 5814164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10a40", "tid": 35568, "ts": 5814460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10e50", "tid": 35568, "ts": 5814756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5814927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12d30", "tid": 35568, "ts": 5815050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5815221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10f20", "tid": 35568, "ts": 5815344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5815515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12370", "tid": 35568, "ts": 5815638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5815809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10490", "tid": 35568, "ts": 5815933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b115a0", "tid": 35568, "ts": 5816227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b122a0", "tid": 35568, "ts": 5816522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11e90", "tid": 35568, "ts": 5816816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5816987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b108a0", "tid": 35568, "ts": 5817110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5817331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11330", "tid": 35568, "ts": 5817455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5817629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11670", "tid": 35568, "ts": 5817752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5817923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11f60", "tid": 35568, "ts": 5818047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5818220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10630", "tid": 35568, "ts": 5818343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5818514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11740", "tid": 35568, "ts": 5818637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5818810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12510", "tid": 35568, "ts": 5818934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b110c0", "tid": 35568, "ts": 5819229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12780", "tid": 35568, "ts": 5819525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10970", "tid": 35568, "ts": 5819821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5819993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b129f0", "tid": 35568, "ts": 5820117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5820288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10b10", "tid": 35568, "ts": 5820411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5820583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10150", "tid": 35568, "ts": 5820706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5820877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13070", "tid": 35568, "ts": 5821001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5821173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10700", "tid": 35568, "ts": 5821297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5821468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12850", "tid": 35568, "ts": 5821591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5821762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b10ff0", "tid": 35568, "ts": 5821885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12ac0", "tid": 35568, "ts": 5822182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11190", "tid": 35568, "ts": 5822477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12b90", "tid": 35568, "ts": 5822773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5822944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13140", "tid": 35568, "ts": 5823069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5823242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12e00", "tid": 35568, "ts": 5823366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5823537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11810", "tid": 35568, "ts": 5823660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5823832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b12ed0", "tid": 35568, "ts": 5823956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5824127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11400", "tid": 35568, "ts": 5824250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5824422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b118e0", "tid": 35568, "ts": 5824546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5824719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b119b0", "tid": 35568, "ts": 5824843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b11a80", "tid": 35568, "ts": 5825138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13210", "tid": 35568, "ts": 5825457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b132e0", "tid": 35568, "ts": 5825753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5825924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15b80", "tid": 35568, "ts": 5826049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5826220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14660", "tid": 35568, "ts": 5826344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5826516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b167b0", "tid": 35568, "ts": 5826640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5826812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14730", "tid": 35568, "ts": 5826935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5827210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b166e0", "tid": 35568, "ts": 5827423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5827596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13e40", "tid": 35568, "ts": 5827721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5827892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14250", "tid": 35568, "ts": 5828017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5828274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14b40", "tid": 35568, "ts": 5828550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5828723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14a70", "tid": 35568, "ts": 5828848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15290", "tid": 35568, "ts": 5829145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b137c0", "tid": 35568, "ts": 5829491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14ce0", "tid": 35568, "ts": 5829788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5829960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13b00", "tid": 35568, "ts": 5830085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5830258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13890", "tid": 35568, "ts": 5830382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5830553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14c10", "tid": 35568, "ts": 5830678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5830850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13a30", "tid": 35568, "ts": 5830974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5831146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15500", "tid": 35568, "ts": 5831381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5831553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15d20", "tid": 35568, "ts": 5831678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5831852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13bd0", "tid": 35568, "ts": 5831976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5832147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14db0", "tid": 35568, "ts": 5832271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5832441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b155d0", "tid": 35568, "ts": 5832565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5832736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15910", "tid": 35568, "ts": 5832957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5833258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13ca0", "tid": 35568, "ts": 5833437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5833762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15020", "tid": 35568, "ts": 5833891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13d70", "tid": 35568, "ts": 5834192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14e80", "tid": 35568, "ts": 5834490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14f50", "tid": 35568, "ts": 5834787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5834959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15df0", "tid": 35568, "ts": 5835083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5835256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b150f0", "tid": 35568, "ts": 5835380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5835553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13f10", "tid": 35568, "ts": 5835677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5835849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14320", "tid": 35568, "ts": 5835973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5836146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b151c0", "tid": 35568, "ts": 5836269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5836441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14800", "tid": 35568, "ts": 5836565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5836738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b156a0", "tid": 35568, "ts": 5836861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b143f0", "tid": 35568, "ts": 5837197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15770", "tid": 35568, "ts": 5837494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15840", "tid": 35568, "ts": 5837791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5837964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16610", "tid": 35568, "ts": 5838087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5838260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b149a0", "tid": 35568, "ts": 5838385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5838557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13fe0", "tid": 35568, "ts": 5838681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5838853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13960", "tid": 35568, "ts": 5838978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5839149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b140b0", "tid": 35568, "ts": 5839273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5839445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b163a0", "tid": 35568, "ts": 5839570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5839741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15360", "tid": 35568, "ts": 5839865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16200", "tid": 35568, "ts": 5840161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b144c0", "tid": 35568, "ts": 5840458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b159e0", "tid": 35568, "ts": 5840754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5840927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14590", "tid": 35568, "ts": 5841051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5841224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b14180", "tid": 35568, "ts": 5841348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5841520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15ab0", "tid": 35568, "ts": 5841644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5841816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15ec0", "tid": 35568, "ts": 5841940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5842112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15c50", "tid": 35568, "ts": 5842236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5842409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15f90", "tid": 35568, "ts": 5842534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5842705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16060", "tid": 35568, "ts": 5842830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b148d0", "tid": 35568, "ts": 5843126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b15430", "tid": 35568, "ts": 5843423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16130", "tid": 35568, "ts": 5843719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5843891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b162d0", "tid": 35568, "ts": 5844016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5844189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16470", "tid": 35568, "ts": 5844314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5844487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16540", "tid": 35568, "ts": 5844611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5844783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16880", "tid": 35568, "ts": 5844906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13550", "tid": 35568, "ts": 5845202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b13620", "tid": 35568, "ts": 5845498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b136f0", "tid": 35568, "ts": 5845793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5845966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19940", "tid": 35568, "ts": 5846090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5846261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18de0", "tid": 35568, "ts": 5846385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5846556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b180e0", "tid": 35568, "ts": 5846681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5846854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19600", "tid": 35568, "ts": 5846977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5847150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18eb0", "tid": 35568, "ts": 5847274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5847445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16e30", "tid": 35568, "ts": 5847569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5847741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16fd0", "tid": 35568, "ts": 5847866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18900", "tid": 35568, "ts": 5848162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18350", "tid": 35568, "ts": 5848523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19120", "tid": 35568, "ts": 5848820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5848993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18760", "tid": 35568, "ts": 5849117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5849289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b178c0", "tid": 35568, "ts": 5849414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5849586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b184f0", "tid": 35568, "ts": 5849711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5849882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18830", "tid": 35568, "ts": 5850006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5850177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17240", "tid": 35568, "ts": 5850349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5850521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b181b0", "tid": 35568, "ts": 5850645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5850818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17310", "tid": 35568, "ts": 5850942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5851114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16bc0", "tid": 35568, "ts": 5851238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5851411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16a20", "tid": 35568, "ts": 5851535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5851707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16c90", "tid": 35568, "ts": 5851831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19c80", "tid": 35568, "ts": 5852127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16d60", "tid": 35568, "ts": 5852423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17da0", "tid": 35568, "ts": 5852718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5852889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b173e0", "tid": 35568, "ts": 5853014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5853186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18c40", "tid": 35568, "ts": 5853310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5853482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16f00", "tid": 35568, "ts": 5853606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5853777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16af0", "tid": 35568, "ts": 5853900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b174b0", "tid": 35568, "ts": 5854197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17580", "tid": 35568, "ts": 5854494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17650", "tid": 35568, "ts": 5854790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5854962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b170a0", "tid": 35568, "ts": 5855087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5855257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17990", "tid": 35568, "ts": 5855381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5855554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18280", "tid": 35568, "ts": 5855678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5855849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b196d0", "tid": 35568, "ts": 5855973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5856145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17170", "tid": 35568, "ts": 5856270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5856443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b189d0", "tid": 35568, "ts": 5856568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5856740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18aa0", "tid": 35568, "ts": 5856864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17e70", "tid": 35568, "ts": 5857160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18d10", "tid": 35568, "ts": 5857457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17cd0", "tid": 35568, "ts": 5857753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5857926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b177f0", "tid": 35568, "ts": 5858051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5858223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18420", "tid": 35568, "ts": 5858347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5858519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17720", "tid": 35568, "ts": 5858643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5858816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17a60", "tid": 35568, "ts": 5858940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17b30", "tid": 35568, "ts": 5859236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17c00", "tid": 35568, "ts": 5859531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b192c0", "tid": 35568, "ts": 5859827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5859999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18b70", "tid": 35568, "ts": 5860123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5860295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19870", "tid": 35568, "ts": 5860420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5860592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b185c0", "tid": 35568, "ts": 5860716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5860888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18690", "tid": 35568, "ts": 5861012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5861183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b17f40", "tid": 35568, "ts": 5861307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5861479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18010", "tid": 35568, "ts": 5861604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5861776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b18f80", "tid": 35568, "ts": 5861900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19050", "tid": 35568, "ts": 5862197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b191f0", "tid": 35568, "ts": 5862492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19390", "tid": 35568, "ts": 5862788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5862962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19460", "tid": 35568, "ts": 5863086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5863258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19530", "tid": 35568, "ts": 5863382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5863554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b197a0", "tid": 35568, "ts": 5863679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5863850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19a10", "tid": 35568, "ts": 5863974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5864224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19ae0", "tid": 35568, "ts": 5864352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5864529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19bb0", "tid": 35568, "ts": 5864691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5864893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b16950", "tid": 35568, "ts": 5865042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5865216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a7e0", "tid": 35568, "ts": 5865343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5865539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bdd0", "tid": 35568, "ts": 5865665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5865837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bd00", "tid": 35568, "ts": 5865961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5866147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c860", "tid": 35568, "ts": 5866275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5866452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c520", "tid": 35568, "ts": 5866634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5866806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b9c0", "tid": 35568, "ts": 5866931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c930", "tid": 35568, "ts": 5867226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19fc0", "tid": 35568, "ts": 5867523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ce10", "tid": 35568, "ts": 5867820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5867993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ae60", "tid": 35568, "ts": 5868117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5868289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c5f0", "tid": 35568, "ts": 5868413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5868585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a3d0", "tid": 35568, "ts": 5868709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5868882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d080", "tid": 35568, "ts": 5869007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5869179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bf70", "tid": 35568, "ts": 5869303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5869475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a230", "tid": 35568, "ts": 5869598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5869770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1af30", "tid": 35568, "ts": 5869894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ba90", "tid": 35568, "ts": 5870190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a090", "tid": 35568, "ts": 5870486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b4e0", "tid": 35568, "ts": 5870783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5870956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a160", "tid": 35568, "ts": 5871080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5871253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a710", "tid": 35568, "ts": 5871377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5871549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b270", "tid": 35568, "ts": 5871674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5871846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b0d0", "tid": 35568, "ts": 5871970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5872141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cd40", "tid": 35568, "ts": 5872265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5872437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a980", "tid": 35568, "ts": 5872562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5872734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b1a0", "tid": 35568, "ts": 5872858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bea0", "tid": 35568, "ts": 5873154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c6c0", "tid": 35568, "ts": 5873449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b750", "tid": 35568, "ts": 5873746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5873918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c790", "tid": 35568, "ts": 5874043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5874215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b340", "tid": 35568, "ts": 5874340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5874512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b000", "tid": 35568, "ts": 5874637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5874809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bb60", "tid": 35568, "ts": 5874933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a640", "tid": 35568, "ts": 5875228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c040", "tid": 35568, "ts": 5875524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ca00", "tid": 35568, "ts": 5875820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5875991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c110", "tid": 35568, "ts": 5876115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5876287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cad0", "tid": 35568, "ts": 5876410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5876583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b410", "tid": 35568, "ts": 5876707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5876879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c1e0", "tid": 35568, "ts": 5877004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5877176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cba0", "tid": 35568, "ts": 5877301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5877473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b820", "tid": 35568, "ts": 5877598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5877771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b5b0", "tid": 35568, "ts": 5877895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cee0", "tid": 35568, "ts": 5878191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a8b0", "tid": 35568, "ts": 5878486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b680", "tid": 35568, "ts": 5878783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5878956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19d50", "tid": 35568, "ts": 5879080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5879251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1bc30", "tid": 35568, "ts": 5879376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5879547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a300", "tid": 35568, "ts": 5879705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5879912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1b8f0", "tid": 35568, "ts": 5880036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5880210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cc70", "tid": 35568, "ts": 5880334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5880507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c2b0", "tid": 35568, "ts": 5880631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5880804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c380", "tid": 35568, "ts": 5880928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1c450", "tid": 35568, "ts": 5881225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1cfb0", "tid": 35568, "ts": 5881522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19e20", "tid": 35568, "ts": 5881818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5881990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b19ef0", "tid": 35568, "ts": 5882114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5882287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a4a0", "tid": 35568, "ts": 5882411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5882583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1a570", "tid": 35568, "ts": 5882707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5882880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1aa50", "tid": 35568, "ts": 5883004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5883176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ab20", "tid": 35568, "ts": 5883301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5883474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1abf0", "tid": 35568, "ts": 5883599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5883772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1acc0", "tid": 35568, "ts": 5883896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ad90", "tid": 35568, "ts": 5884193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ef60", "tid": 35568, "ts": 5884490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fe00", "tid": 35568, "ts": 5884787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5884959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f030", "tid": 35568, "ts": 5885083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5885256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ea80", "tid": 35568, "ts": 5885380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5885552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1de50", "tid": 35568, "ts": 5885677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5885849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dcb0", "tid": 35568, "ts": 5885973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5886144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f440", "tid": 35568, "ts": 5886270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5886442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dbe0", "tid": 35568, "ts": 5886567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5886738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e330", "tid": 35568, "ts": 5886862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e260", "tid": 35568, "ts": 5887158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20210", "tid": 35568, "ts": 5887455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f9f0", "tid": 35568, "ts": 5887752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5887924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1eb50", "tid": 35568, "ts": 5888049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5888221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fc60", "tid": 35568, "ts": 5888346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5888518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e810", "tid": 35568, "ts": 5888642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5888814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1da40", "tid": 35568, "ts": 5888939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5889112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1db10", "tid": 35568, "ts": 5889236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5889407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fac0", "tid": 35568, "ts": 5889531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5889704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dd80", "tid": 35568, "ts": 5889829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d3c0", "tid": 35568, "ts": 5890124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e400", "tid": 35568, "ts": 5890420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d8a0", "tid": 35568, "ts": 5890716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5890887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20140", "tid": 35568, "ts": 5891013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5891186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d700", "tid": 35568, "ts": 5891311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5891482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f920", "tid": 35568, "ts": 5891607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5891779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d490", "tid": 35568, "ts": 5891903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b202e0", "tid": 35568, "ts": 5892198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e8e0", "tid": 35568, "ts": 5892495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f5e0", "tid": 35568, "ts": 5892792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5892963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ffa0", "tid": 35568, "ts": 5893088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5893260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d970", "tid": 35568, "ts": 5893385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5893556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fb90", "tid": 35568, "ts": 5893681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5893854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1df20", "tid": 35568, "ts": 5893978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5894150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f100", "tid": 35568, "ts": 5894275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5894459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f510", "tid": 35568, "ts": 5894620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5894792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fd30", "tid": 35568, "ts": 5894916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5895089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e9b0", "tid": 35568, "ts": 5895214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5895450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d630", "tid": 35568, "ts": 5895575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5895748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1dff0", "tid": 35568, "ts": 5895872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20070", "tid": 35568, "ts": 5896169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e0c0", "tid": 35568, "ts": 5896467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d150", "tid": 35568, "ts": 5896765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5896936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d7d0", "tid": 35568, "ts": 5897061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5897233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b203b0", "tid": 35568, "ts": 5897358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5897529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d560", "tid": 35568, "ts": 5897653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5897825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f1d0", "tid": 35568, "ts": 5897950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5898123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e190", "tid": 35568, "ts": 5898248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5898419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1fed0", "tid": 35568, "ts": 5898543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5898715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ec20", "tid": 35568, "ts": 5898840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5899057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ecf0", "tid": 35568, "ts": 5899185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5899397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e4d0", "tid": 35568, "ts": 5899522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5899694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e5a0", "tid": 35568, "ts": 5899876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5900048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e670", "tid": 35568, "ts": 5900172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5900410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20480", "tid": 35568, "ts": 5900538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5900716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d220", "tid": 35568, "ts": 5900843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1d2f0", "tid": 35568, "ts": 5901170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1e740", "tid": 35568, "ts": 5901468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1edc0", "tid": 35568, "ts": 5901765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5901936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f2a0", "tid": 35568, "ts": 5902061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5902233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f370", "tid": 35568, "ts": 5902358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5902530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1ee90", "tid": 35568, "ts": 5902654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5902824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f6b0", "tid": 35568, "ts": 5902949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5903121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f780", "tid": 35568, "ts": 5903247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5903419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b1f850", "tid": 35568, "ts": 5903544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5903716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b226a0", "tid": 35568, "ts": 5903841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20d70", "tid": 35568, "ts": 5904136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20620", "tid": 35568, "ts": 5904432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b236e0", "tid": 35568, "ts": 5904727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5904900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21660", "tid": 35568, "ts": 5905025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5905197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20890", "tid": 35568, "ts": 5905321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5905493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20960", "tid": 35568, "ts": 5905618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5905789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21a70", "tid": 35568, "ts": 5905914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21e80", "tid": 35568, "ts": 5906210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23540", "tid": 35568, "ts": 5906505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b225d0", "tid": 35568, "ts": 5906803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5906975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22500", "tid": 35568, "ts": 5907100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5907272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23200", "tid": 35568, "ts": 5907396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5907569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20a30", "tid": 35568, "ts": 5907694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5907864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22770", "tid": 35568, "ts": 5907989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5908160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b210b0", "tid": 35568, "ts": 5908285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5908458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b237b0", "tid": 35568, "ts": 5908583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5908755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23060", "tid": 35568, "ts": 5908880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21b40", "tid": 35568, "ts": 5909177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b221c0", "tid": 35568, "ts": 5909473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23130", "tid": 35568, "ts": 5909769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5909941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22840", "tid": 35568, "ts": 5910066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5910238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22b80", "tid": 35568, "ts": 5910363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5910534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b207c0", "tid": 35568, "ts": 5910659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5910831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21180", "tid": 35568, "ts": 5911024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5911197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22c50", "tid": 35568, "ts": 5911322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5911495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22d20", "tid": 35568, "ts": 5911621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5911792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b232d0", "tid": 35568, "ts": 5911917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22df0", "tid": 35568, "ts": 5912213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21f50", "tid": 35568, "ts": 5912509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22910", "tid": 35568, "ts": 5912806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5912978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20f10", "tid": 35568, "ts": 5913102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5913275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21db0", "tid": 35568, "ts": 5913400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5913571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22290", "tid": 35568, "ts": 5913696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5913869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23610", "tid": 35568, "ts": 5913993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5914164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b233a0", "tid": 35568, "ts": 5914288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5914460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23470", "tid": 35568, "ts": 5914584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5914755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22020", "tid": 35568, "ts": 5914943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5915115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22f90", "tid": 35568, "ts": 5915241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5915413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b229e0", "tid": 35568, "ts": 5915538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5915710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22430", "tid": 35568, "ts": 5915835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22360", "tid": 35568, "ts": 5916131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20b00", "tid": 35568, "ts": 5916428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b214c0", "tid": 35568, "ts": 5916725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5916969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23880", "tid": 35568, "ts": 5917106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5917279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20bd0", "tid": 35568, "ts": 5917403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5917576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22ab0", "tid": 35568, "ts": 5917701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5917872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20550", "tid": 35568, "ts": 5917997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5918169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20ca0", "tid": 35568, "ts": 5918292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5918464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21320", "tid": 35568, "ts": 5918589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5918761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b22ec0", "tid": 35568, "ts": 5918886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20e40", "tid": 35568, "ts": 5919184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21ce0", "tid": 35568, "ts": 5919479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b220f0", "tid": 35568, "ts": 5919775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5919947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b206f0", "tid": 35568, "ts": 5920072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5920244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b20fe0", "tid": 35568, "ts": 5920369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5920541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21590", "tid": 35568, "ts": 5920666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5920838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21250", "tid": 35568, "ts": 5920963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5921136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b213f0", "tid": 35568, "ts": 5921260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5921433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21730", "tid": 35568, "ts": 5921557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5921729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21800", "tid": 35568, "ts": 5921854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b218d0", "tid": 35568, "ts": 5922151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b219a0", "tid": 35568, "ts": 5922448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b21c10", "tid": 35568, "ts": 5922743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5922916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25760", "tid": 35568, "ts": 5923041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5923213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23e30", "tid": 35568, "ts": 5923337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5923509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24310", "tid": 35568, "ts": 5923634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5923805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23bc0", "tid": 35568, "ts": 5923930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b243e0", "tid": 35568, "ts": 5924227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b262c0", "tid": 35568, "ts": 5924522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26870", "tid": 35568, "ts": 5924818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5924989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25350", "tid": 35568, "ts": 5925113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5925285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25900", "tid": 35568, "ts": 5925409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5925580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b255c0", "tid": 35568, "ts": 5925705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5925878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24240", "tid": 35568, "ts": 5926003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5926176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b261f0", "tid": 35568, "ts": 5926301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5926472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b259d0", "tid": 35568, "ts": 5926668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5926841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26940", "tid": 35568, "ts": 5926967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5927139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25420", "tid": 35568, "ts": 5927264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5927435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26530", "tid": 35568, "ts": 5927559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5927732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25830", "tid": 35568, "ts": 5927857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24e70", "tid": 35568, "ts": 5928153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26390", "tid": 35568, "ts": 5928451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26460", "tid": 35568, "ts": 5928746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5928917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24cd0", "tid": 35568, "ts": 5929041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5929213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26a10", "tid": 35568, "ts": 5929338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5929509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26ae0", "tid": 35568, "ts": 5929634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5929805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23d60", "tid": 35568, "ts": 5929929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23a20", "tid": 35568, "ts": 5930226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26bb0", "tid": 35568, "ts": 5930523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26600", "tid": 35568, "ts": 5930818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5930991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23f00", "tid": 35568, "ts": 5931115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5931287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26c80", "tid": 35568, "ts": 5931412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5931584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24650", "tid": 35568, "ts": 5931709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5931881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23fd0", "tid": 35568, "ts": 5932005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5932177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b244b0", "tid": 35568, "ts": 5932346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5932520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25010", "tid": 35568, "ts": 5932644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5932816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23af0", "tid": 35568, "ts": 5932940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25aa0", "tid": 35568, "ts": 5933236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25f80", "tid": 35568, "ts": 5933531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25b70", "tid": 35568, "ts": 5933828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5933999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b240a0", "tid": 35568, "ts": 5934124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5934296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23950", "tid": 35568, "ts": 5934420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5934592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24580", "tid": 35568, "ts": 5934716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5934889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24720", "tid": 35568, "ts": 5935012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5935185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b247f0", "tid": 35568, "ts": 5935310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5935482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b248c0", "tid": 35568, "ts": 5935606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5935778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24170", "tid": 35568, "ts": 5935903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24990", "tid": 35568, "ts": 5936200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24da0", "tid": 35568, "ts": 5936495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25690", "tid": 35568, "ts": 5936792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5936963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24a60", "tid": 35568, "ts": 5937087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5937259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b23c90", "tid": 35568, "ts": 5937383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5937556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24b30", "tid": 35568, "ts": 5937682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5937854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24c00", "tid": 35568, "ts": 5937978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5938151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25c40", "tid": 35568, "ts": 5938276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5938447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b24f40", "tid": 35568, "ts": 5938571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5938743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25d10", "tid": 35568, "ts": 5938867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25de0", "tid": 35568, "ts": 5939162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b250e0", "tid": 35568, "ts": 5939458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b251b0", "tid": 35568, "ts": 5939754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5939927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25eb0", "tid": 35568, "ts": 5940051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5940223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b266d0", "tid": 35568, "ts": 5940347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5940520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b267a0", "tid": 35568, "ts": 5940644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5940817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b25280", "tid": 35568, "ts": 5940941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5941114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b254f0", "tid": 35568, "ts": 5941239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5941411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26050", "tid": 35568, "ts": 5941535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5941707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26120", "tid": 35568, "ts": 5941831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5942002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b277e0", "tid": 35568, "ts": 5942127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5942428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b285b0", "tid": 35568, "ts": 5942626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5942881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29860", "tid": 35568, "ts": 5943029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5943316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29c70", "tid": 35568, "ts": 5943441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5943612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29930", "tid": 35568, "ts": 5943737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5943909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b280d0", "tid": 35568, "ts": 5944033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5944206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27f30", "tid": 35568, "ts": 5944331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5944503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28820", "tid": 35568, "ts": 5944628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5944800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27300", "tid": 35568, "ts": 5944925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27090", "tid": 35568, "ts": 5945223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27160", "tid": 35568, "ts": 5945519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29a00", "tid": 35568, "ts": 5945816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5945987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28b60", "tid": 35568, "ts": 5946112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5946283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b281a0", "tid": 35568, "ts": 5946408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5946581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28f70", "tid": 35568, "ts": 5946706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5946877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b278b0", "tid": 35568, "ts": 5947002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5947174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29ee0", "tid": 35568, "ts": 5947299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5947472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27230", "tid": 35568, "ts": 5947596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5947767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29d40", "tid": 35568, "ts": 5947892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29110", "tid": 35568, "ts": 5948188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28c30", "tid": 35568, "ts": 5948485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28d00", "tid": 35568, "ts": 5948781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5948954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28270", "tid": 35568, "ts": 5949078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5949249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28680", "tid": 35568, "ts": 5949373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5949545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26e20", "tid": 35568, "ts": 5949670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5949841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27e60", "tid": 35568, "ts": 5949967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5950140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27cc0", "tid": 35568, "ts": 5950265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5950438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28750", "tid": 35568, "ts": 5950563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5950737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28340", "tid": 35568, "ts": 5950861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b284e0", "tid": 35568, "ts": 5951159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29520", "tid": 35568, "ts": 5951455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29ad0", "tid": 35568, "ts": 5951752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5951924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b273d0", "tid": 35568, "ts": 5952049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5952220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29e10", "tid": 35568, "ts": 5952344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5952516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28000", "tid": 35568, "ts": 5952641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5952812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28dd0", "tid": 35568, "ts": 5952936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5953108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28410", "tid": 35568, "ts": 5953287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5953460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b274a0", "tid": 35568, "ts": 5953592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5953765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27710", "tid": 35568, "ts": 5953890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29ba0", "tid": 35568, "ts": 5954188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29fb0", "tid": 35568, "ts": 5954485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a080", "tid": 35568, "ts": 5954782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5954954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28ea0", "tid": 35568, "ts": 5955079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5955251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29040", "tid": 35568, "ts": 5955376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5955547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b291e0", "tid": 35568, "ts": 5955672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5955844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27570", "tid": 35568, "ts": 5955968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5956139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26d50", "tid": 35568, "ts": 5956263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5956435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b292b0", "tid": 35568, "ts": 5956559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5956731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26ef0", "tid": 35568, "ts": 5956855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5957026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27640", "tid": 35568, "ts": 5957151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5957323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29380", "tid": 35568, "ts": 5957448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5957621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b288f0", "tid": 35568, "ts": 5957746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5958035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b289c0", "tid": 35568, "ts": 5958217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5958406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b28a90", "tid": 35568, "ts": 5958555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5958780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27980", "tid": 35568, "ts": 5958905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5959102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29450", "tid": 35568, "ts": 5959278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5959596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b295f0", "tid": 35568, "ts": 5959722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5959896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b296c0", "tid": 35568, "ts": 5960021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5960194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b29790", "tid": 35568, "ts": 5960344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5960515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b26fc0", "tid": 35568, "ts": 5960640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5960814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27a50", "tid": 35568, "ts": 5960939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5961113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27b20", "tid": 35568, "ts": 5961237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5961409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27bf0", "tid": 35568, "ts": 5961534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5961705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b27d90", "tid": 35568, "ts": 5961831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ae50", "tid": 35568, "ts": 5962127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2aa40", "tid": 35568, "ts": 5962425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a220", "tid": 35568, "ts": 5962723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5962895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d210", "tid": 35568, "ts": 5963021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5963193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cac0", "tid": 35568, "ts": 5963318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5963490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bf60", "tid": 35568, "ts": 5963614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5963785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d070", "tid": 35568, "ts": 5963910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bb50", "tid": 35568, "ts": 5964207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b9b0", "tid": 35568, "ts": 5964505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b330", "tid": 35568, "ts": 5964802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5964975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b4d0", "tid": 35568, "ts": 5965100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5965272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cb90", "tid": 35568, "ts": 5965397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5965568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b5a0", "tid": 35568, "ts": 5965735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5965909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2abe0", "tid": 35568, "ts": 5966035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5966207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a560", "tid": 35568, "ts": 5966331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5966503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2acb0", "tid": 35568, "ts": 5966627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5966798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a490", "tid": 35568, "ts": 5966922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5967094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b670", "tid": 35568, "ts": 5967219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5967448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cd30", "tid": 35568, "ts": 5967613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5967796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bc20", "tid": 35568, "ts": 5967921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5968094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c850", "tid": 35568, "ts": 5968258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5968484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b740", "tid": 35568, "ts": 5968609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5968782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b260", "tid": 35568, "ts": 5968965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5969138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a2f0", "tid": 35568, "ts": 5969263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5969436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b8e0", "tid": 35568, "ts": 5969562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5969734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2af20", "tid": 35568, "ts": 5969859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d2e0", "tid": 35568, "ts": 5970156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c920", "tid": 35568, "ts": 5970454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b810", "tid": 35568, "ts": 5970796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5970968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c780", "tid": 35568, "ts": 5971093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5971264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ab10", "tid": 35568, "ts": 5971389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5971571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ba80", "tid": 35568, "ts": 5971698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5971870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bcf0", "tid": 35568, "ts": 5971994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5972165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c030", "tid": 35568, "ts": 5972290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5972463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2aff0", "tid": 35568, "ts": 5972618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5972844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ce00", "tid": 35568, "ts": 5972968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5973141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c1d0", "tid": 35568, "ts": 5973266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5973438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c9f0", "tid": 35568, "ts": 5973564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5973735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cc60", "tid": 35568, "ts": 5973860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5974032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c440", "tid": 35568, "ts": 5974156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5974328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2bdc0", "tid": 35568, "ts": 5974453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5974654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a3c0", "tid": 35568, "ts": 5974837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5975010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c510", "tid": 35568, "ts": 5975202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5975426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ced0", "tid": 35568, "ts": 5975563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5975749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ad80", "tid": 35568, "ts": 5975874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b0c0", "tid": 35568, "ts": 5976173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a630", "tid": 35568, "ts": 5976495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b190", "tid": 35568, "ts": 5976817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5976990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2be90", "tid": 35568, "ts": 5977114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5977287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c100", "tid": 35568, "ts": 5977414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5977610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a700", "tid": 35568, "ts": 5977735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5977907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a150", "tid": 35568, "ts": 5978035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5978208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2b400", "tid": 35568, "ts": 5978333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5978507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d140", "tid": 35568, "ts": 5978658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5978831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a7d0", "tid": 35568, "ts": 5978957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5979130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d3b0", "tid": 35568, "ts": 5979256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5979430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2cfa0", "tid": 35568, "ts": 5979567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5979751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d480", "tid": 35568, "ts": 5979877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5980050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c2a0", "tid": 35568, "ts": 5980175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5980347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a8a0", "tid": 35568, "ts": 5980473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5980670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c370", "tid": 35568, "ts": 5980795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5981091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c5e0", "tid": 35568, "ts": 5981254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5981456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2a970", "tid": 35568, "ts": 5981631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5981954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2c6b0", "tid": 35568, "ts": 5982134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5982307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f500", "tid": 35568, "ts": 5982432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5982607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f360", "tid": 35568, "ts": 5982732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5982905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ec10", "tid": 35568, "ts": 5983030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5983202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d6f0", "tid": 35568, "ts": 5983327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5983499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b307b0", "tid": 35568, "ts": 5983626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5983798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f290", "tid": 35568, "ts": 5983924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d960", "tid": 35568, "ts": 5984221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e730", "tid": 35568, "ts": 5984519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e8d0", "tid": 35568, "ts": 5984818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5984989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f430", "tid": 35568, "ts": 5985114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5985287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2db00", "tid": 35568, "ts": 5985412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5985585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d550", "tid": 35568, "ts": 5985710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5985881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dbd0", "tid": 35568, "ts": 5986007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5986179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2eb40", "tid": 35568, "ts": 5986305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5986477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f910", "tid": 35568, "ts": 5986616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5986788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e660", "tid": 35568, "ts": 5986913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30470", "tid": 35568, "ts": 5987210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2edb0", "tid": 35568, "ts": 5987507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ece0", "tid": 35568, "ts": 5987806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5987979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30060", "tid": 35568, "ts": 5988103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5988275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e320", "tid": 35568, "ts": 5988400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5988604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fec0", "tid": 35568, "ts": 5988791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5988964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f5d0", "tid": 35568, "ts": 5989088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5989261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e800", "tid": 35568, "ts": 5989386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5989560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f6a0", "tid": 35568, "ts": 5989685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5989857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f770", "tid": 35568, "ts": 5989983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5990155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ff90", "tid": 35568, "ts": 5990280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5990452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fab0", "tid": 35568, "ts": 5990622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5990962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2df10", "tid": 35568, "ts": 5991175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5991553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d7c0", "tid": 35568, "ts": 5991772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5991945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f840", "tid": 35568, "ts": 5992071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5992243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ee80", "tid": 35568, "ts": 5992368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5992570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e9a0", "tid": 35568, "ts": 5992725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5992957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e4c0", "tid": 35568, "ts": 5993138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5993411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dca0", "tid": 35568, "ts": 5993630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5993820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ef50", "tid": 35568, "ts": 5993945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5994117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f9e0", "tid": 35568, "ts": 5994242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5994414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fb80", "tid": 35568, "ts": 5994564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5994736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dfe0", "tid": 35568, "ts": 5994861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fc50", "tid": 35568, "ts": 5995189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30880", "tid": 35568, "ts": 5995488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e3f0", "tid": 35568, "ts": 5995788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5995960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e590", "tid": 35568, "ts": 5996086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5996259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2da30", "tid": 35568, "ts": 5996384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5996557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fd20", "tid": 35568, "ts": 5996683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5996854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f020", "tid": 35568, "ts": 5996979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5997150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2fdf0", "tid": 35568, "ts": 5997274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5997447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b302d0", "tid": 35568, "ts": 5997573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5997746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30200", "tid": 35568, "ts": 5997871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f0f0", "tid": 35568, "ts": 5998169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2f1c0", "tid": 35568, "ts": 5998466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30130", "tid": 35568, "ts": 5998764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5998937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e0b0", "tid": 35568, "ts": 5999061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5999233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2dd70", "tid": 35568, "ts": 5999357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5999531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2de40", "tid": 35568, "ts": 5999658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 5999831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b303a0", "tid": 35568, "ts": 5999957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6000129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e180", "tid": 35568, "ts": 6000267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6000550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30540", "tid": 35568, "ts": 6000686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6000917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30610", "tid": 35568, "ts": 6001084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6001257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b306e0", "tid": 35568, "ts": 6001381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6001564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d620", "tid": 35568, "ts": 6001690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6001862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2d890", "tid": 35568, "ts": 6001987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6002159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2ea70", "tid": 35568, "ts": 6002285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6002456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b2e250", "tid": 35568, "ts": 6002582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6002755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30c90", "tid": 35568, "ts": 6002942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6003115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32900", "tid": 35568, "ts": 6003240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6003411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33c80", "tid": 35568, "ts": 6003535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6003709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32d10", "tid": 35568, "ts": 6003899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6004073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b313e0", "tid": 35568, "ts": 6004197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6004370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b318c0", "tid": 35568, "ts": 6004494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6004806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b324f0", "tid": 35568, "ts": 6005002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6005175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31240", "tid": 35568, "ts": 6005300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6005472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32de0", "tid": 35568, "ts": 6005598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6005770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31a60", "tid": 35568, "ts": 6005894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30a20", "tid": 35568, "ts": 6006190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33ae0", "tid": 35568, "ts": 6006488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31990", "tid": 35568, "ts": 6006788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6006960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31cd0", "tid": 35568, "ts": 6007084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6007258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33bb0", "tid": 35568, "ts": 6007382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6007555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b331f0", "tid": 35568, "ts": 6007680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6007853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b314b0", "tid": 35568, "ts": 6007978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6008150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32f80", "tid": 35568, "ts": 6008274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6008447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32c40", "tid": 35568, "ts": 6008601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6008773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32280", "tid": 35568, "ts": 6008898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31b30", "tid": 35568, "ts": 6009196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32eb0", "tid": 35568, "ts": 6009492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b329d0", "tid": 35568, "ts": 6009789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6009960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b325c0", "tid": 35568, "ts": 6010085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6010256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31310", "tid": 35568, "ts": 6010382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6010554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30950", "tid": 35568, "ts": 6010679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6010851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31da0", "tid": 35568, "ts": 6010976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6011148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31720", "tid": 35568, "ts": 6011274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6011446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32690", "tid": 35568, "ts": 6011572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6011743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33050", "tid": 35568, "ts": 6011868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32aa0", "tid": 35568, "ts": 6012165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32760", "tid": 35568, "ts": 6012461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33a10", "tid": 35568, "ts": 6012759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6012931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33120", "tid": 35568, "ts": 6013055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6013227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32830", "tid": 35568, "ts": 6013351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6013523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30d60", "tid": 35568, "ts": 6013649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6013822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32b70", "tid": 35568, "ts": 6013947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6014119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b332c0", "tid": 35568, "ts": 6014243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6014415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31580", "tid": 35568, "ts": 6014541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6014714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33390", "tid": 35568, "ts": 6014838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33460", "tid": 35568, "ts": 6015135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31650", "tid": 35568, "ts": 6015432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30e30", "tid": 35568, "ts": 6015732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6015904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31c00", "tid": 35568, "ts": 6016029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6016200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33530", "tid": 35568, "ts": 6016324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6016497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32350", "tid": 35568, "ts": 6016631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6016803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31f40", "tid": 35568, "ts": 6016928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30af0", "tid": 35568, "ts": 6017224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33600", "tid": 35568, "ts": 6017521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31e70", "tid": 35568, "ts": 6017819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6017991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b336d0", "tid": 35568, "ts": 6018116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6018289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b337a0", "tid": 35568, "ts": 6018413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6018587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33870", "tid": 35568, "ts": 6018712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6018884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33940", "tid": 35568, "ts": 6019010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6019181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b317f0", "tid": 35568, "ts": 6019307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6019478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30bc0", "tid": 35568, "ts": 6019677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6019852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32010", "tid": 35568, "ts": 6019979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6020153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b320e0", "tid": 35568, "ts": 6020278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6020450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30f00", "tid": 35568, "ts": 6020577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6020750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b30fd0", "tid": 35568, "ts": 6020875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b310a0", "tid": 35568, "ts": 6021174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b321b0", "tid": 35568, "ts": 6021471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b31170", "tid": 35568, "ts": 6021771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6021943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b32420", "tid": 35568, "ts": 6022068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6022241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34b20", "tid": 35568, "ts": 6022365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6022538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35d00", "tid": 35568, "ts": 6022663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6022836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36380", "tid": 35568, "ts": 6022961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6023133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34570", "tid": 35568, "ts": 6023258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6023431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35410", "tid": 35568, "ts": 6023599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6023788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36e10", "tid": 35568, "ts": 6023912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34cc0", "tid": 35568, "ts": 6024210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b355b0", "tid": 35568, "ts": 6024508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35820", "tid": 35568, "ts": 6024804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6024977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34160", "tid": 35568, "ts": 6025102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6025273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b365f0", "tid": 35568, "ts": 6025397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6025595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35000", "tid": 35568, "ts": 6025719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6025891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33fc0", "tid": 35568, "ts": 6026016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6026188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34230", "tid": 35568, "ts": 6026312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6026484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34640", "tid": 35568, "ts": 6026608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6026779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34d90", "tid": 35568, "ts": 6026904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34a50", "tid": 35568, "ts": 6027201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36790", "tid": 35568, "ts": 6027496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34710", "tid": 35568, "ts": 6027793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6027966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34300", "tid": 35568, "ts": 6028090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6028263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35270", "tid": 35568, "ts": 6028387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6028559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36ee0", "tid": 35568, "ts": 6028683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6028854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b350d0", "tid": 35568, "ts": 6028979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6029150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34980", "tid": 35568, "ts": 6029275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6029447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b343d0", "tid": 35568, "ts": 6029571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6029743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35dd0", "tid": 35568, "ts": 6029868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35a90", "tid": 35568, "ts": 6030164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35ea0", "tid": 35568, "ts": 6030459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36c70", "tid": 35568, "ts": 6030756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6030928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35340", "tid": 35568, "ts": 6031053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6031226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35680", "tid": 35568, "ts": 6031350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6031523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b354e0", "tid": 35568, "ts": 6031647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6031819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33d50", "tid": 35568, "ts": 6031943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6032115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b358f0", "tid": 35568, "ts": 6032239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6032411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b347e0", "tid": 35568, "ts": 6032535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6032706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35f70", "tid": 35568, "ts": 6032832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35b60", "tid": 35568, "ts": 6033128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36d40", "tid": 35568, "ts": 6033425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b361e0", "tid": 35568, "ts": 6033721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6033892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b348b0", "tid": 35568, "ts": 6034060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6034234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34bf0", "tid": 35568, "ts": 6034360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6034532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35750", "tid": 35568, "ts": 6034657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6034829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b359c0", "tid": 35568, "ts": 6034953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6035125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b366c0", "tid": 35568, "ts": 6035250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6035423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36520", "tid": 35568, "ts": 6035548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6035719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34e60", "tid": 35568, "ts": 6035843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36450", "tid": 35568, "ts": 6036140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b35c30", "tid": 35568, "ts": 6036437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36040", "tid": 35568, "ts": 6036734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6036906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33e20", "tid": 35568, "ts": 6037030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6037202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36860", "tid": 35568, "ts": 6037326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6037497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36110", "tid": 35568, "ts": 6037622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6037793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36930", "tid": 35568, "ts": 6037918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34f30", "tid": 35568, "ts": 6038214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b362b0", "tid": 35568, "ts": 6038511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b33ef0", "tid": 35568, "ts": 6038808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6038979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b34090", "tid": 35568, "ts": 6039104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6039332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b351a0", "tid": 35568, "ts": 6039735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6039962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36a00", "tid": 35568, "ts": 6040109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6040404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36ad0", "tid": 35568, "ts": 6040532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6040708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b36ba0", "tid": 35568, "ts": 6040836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a3b344a0", "tid": 35568, "ts": 6041136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4907f0", "tid": 35568, "ts": 6041502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491830", "tid": 35568, "ts": 6041806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6041979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f610", "tid": 35568, "ts": 6042105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6042278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fe30", "tid": 35568, "ts": 6042404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6042578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490cd0", "tid": 35568, "ts": 6042704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6042877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491690", "tid": 35568, "ts": 6043003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6043177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ff00", "tid": 35568, "ts": 6043304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6043475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490da0", "tid": 35568, "ts": 6043602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6043817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ffd0", "tid": 35568, "ts": 6043944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6044117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4914f0", "tid": 35568, "ts": 6044243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6044415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492460", "tid": 35568, "ts": 6044541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6044714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4903e0", "tid": 35568, "ts": 6044839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491350", "tid": 35568, "ts": 6045137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fa20", "tid": 35568, "ts": 6045438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491010", "tid": 35568, "ts": 6045737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6045909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4908c0", "tid": 35568, "ts": 6046035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6046206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4926d0", "tid": 35568, "ts": 6046331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6046503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490990", "tid": 35568, "ts": 6046628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6046801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4915c0", "tid": 35568, "ts": 6046926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4919d0", "tid": 35568, "ts": 6047224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490720", "tid": 35568, "ts": 6047522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490a60", "tid": 35568, "ts": 6047821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6047995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491f80", "tid": 35568, "ts": 6048120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6048293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491aa0", "tid": 35568, "ts": 6048418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6048592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491900", "tid": 35568, "ts": 6048718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6048890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490240", "tid": 35568, "ts": 6049017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6049189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4911b0", "tid": 35568, "ts": 6049314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6049487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492120", "tid": 35568, "ts": 6049613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6049785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492600", "tid": 35568, "ts": 6049910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491760", "tid": 35568, "ts": 6050208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490b30", "tid": 35568, "ts": 6050505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491420", "tid": 35568, "ts": 6050803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6050975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48faf0", "tid": 35568, "ts": 6051101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6051274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491b70", "tid": 35568, "ts": 6051399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6051571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4904b0", "tid": 35568, "ts": 6051696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6051868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4900a0", "tid": 35568, "ts": 6051993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6052165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490580", "tid": 35568, "ts": 6052290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6052464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4910e0", "tid": 35568, "ts": 6052588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6052761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490e70", "tid": 35568, "ts": 6052886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f6e0", "tid": 35568, "ts": 6053184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491280", "tid": 35568, "ts": 6053480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490c00", "tid": 35568, "ts": 6053778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6053950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4922c0", "tid": 35568, "ts": 6054075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6054249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f950", "tid": 35568, "ts": 6054375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6054547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491c40", "tid": 35568, "ts": 6054671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6054843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490f40", "tid": 35568, "ts": 6055031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6055204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492530", "tid": 35568, "ts": 6055330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6055502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491d10", "tid": 35568, "ts": 6055628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6055800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491de0", "tid": 35568, "ts": 6055926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492870", "tid": 35568, "ts": 6056223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf491eb0", "tid": 35568, "ts": 6056520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492050", "tid": 35568, "ts": 6056818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6056991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4921f0", "tid": 35568, "ts": 6057116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6057288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492390", "tid": 35568, "ts": 6057413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6057586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4927a0", "tid": 35568, "ts": 6057712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6057884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490650", "tid": 35568, "ts": 6058009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6058182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f7b0", "tid": 35568, "ts": 6058307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6058479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f540", "tid": 35568, "ts": 6058605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6058778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f880", "tid": 35568, "ts": 6058903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fbc0", "tid": 35568, "ts": 6059204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fc90", "tid": 35568, "ts": 6059504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490310", "tid": 35568, "ts": 6059802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6059975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48fd60", "tid": 35568, "ts": 6060100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6060273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf490170", "tid": 35568, "ts": 6060398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6060570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494410", "tid": 35568, "ts": 6060695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6060869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493b20", "tid": 35568, "ts": 6060995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6061168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494d00", "tid": 35568, "ts": 6061294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6061466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492fc0", "tid": 35568, "ts": 6061591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6061763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492940", "tid": 35568, "ts": 6061888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493d90", "tid": 35568, "ts": 6062184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494ea0", "tid": 35568, "ts": 6062482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494c30", "tid": 35568, "ts": 6062782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6062955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493cc0", "tid": 35568, "ts": 6063081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6063254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492ae0", "tid": 35568, "ts": 6063380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6063553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493980", "tid": 35568, "ts": 6063679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6063851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493bf0", "tid": 35568, "ts": 6063976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6064149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493e60", "tid": 35568, "ts": 6064274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6064446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494820", "tid": 35568, "ts": 6064571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6064744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493a50", "tid": 35568, "ts": 6064870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492a10", "tid": 35568, "ts": 6065167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493090", "tid": 35568, "ts": 6065465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495520", "tid": 35568, "ts": 6065761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6065934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493710", "tid": 35568, "ts": 6066060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6066232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494680", "tid": 35568, "ts": 6066357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6066530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493160", "tid": 35568, "ts": 6066654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6066826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492bb0", "tid": 35568, "ts": 6066950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6067123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493f30", "tid": 35568, "ts": 6067248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6067463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4933d0", "tid": 35568, "ts": 6067595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6067769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493230", "tid": 35568, "ts": 6067894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4948f0", "tid": 35568, "ts": 6068191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492ef0", "tid": 35568, "ts": 6068490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4937e0", "tid": 35568, "ts": 6068787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6068960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494a90", "tid": 35568, "ts": 6069085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6069258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494000", "tid": 35568, "ts": 6069384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6069557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493570", "tid": 35568, "ts": 6069683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6069855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4955f0", "tid": 35568, "ts": 6069980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6070154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4956c0", "tid": 35568, "ts": 6070279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6070452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494340", "tid": 35568, "ts": 6070704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6070906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495110", "tid": 35568, "ts": 6071058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6071232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495c70", "tid": 35568, "ts": 6071359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6071531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492c80", "tid": 35568, "ts": 6071658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6071830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4951e0", "tid": 35568, "ts": 6071955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6072127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493640", "tid": 35568, "ts": 6072253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6072427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4938b0", "tid": 35568, "ts": 6072552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6072724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495790", "tid": 35568, "ts": 6072851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf493300", "tid": 35568, "ts": 6073148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4944e0", "tid": 35568, "ts": 6073446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494dd0", "tid": 35568, "ts": 6073743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6073916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4940d0", "tid": 35568, "ts": 6074041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6074213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495860", "tid": 35568, "ts": 6074339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6074512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494b60", "tid": 35568, "ts": 6074636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6074808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4934a0", "tid": 35568, "ts": 6074933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4941a0", "tid": 35568, "ts": 6075231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494270", "tid": 35568, "ts": 6075529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492d50", "tid": 35568, "ts": 6075826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6075998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4945b0", "tid": 35568, "ts": 6076123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6076297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494750", "tid": 35568, "ts": 6076422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6076594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495930", "tid": 35568, "ts": 6076719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6076892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4949c0", "tid": 35568, "ts": 6077017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6077190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4952b0", "tid": 35568, "ts": 6077315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6077488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf494f70", "tid": 35568, "ts": 6077613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6077786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495040", "tid": 35568, "ts": 6077911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495380", "tid": 35568, "ts": 6078210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495450", "tid": 35568, "ts": 6078508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495a00", "tid": 35568, "ts": 6078805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6078977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495ad0", "tid": 35568, "ts": 6079102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6079275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495ba0", "tid": 35568, "ts": 6079400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6079573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf492e20", "tid": 35568, "ts": 6079698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6079871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4963c0", "tid": 35568, "ts": 6079996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6080169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4982a0", "tid": 35568, "ts": 6080295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6080468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496e50", "tid": 35568, "ts": 6080593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6080765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4970c0", "tid": 35568, "ts": 6080890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496d80", "tid": 35568, "ts": 6081187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4978e0", "tid": 35568, "ts": 6081485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495e10", "tid": 35568, "ts": 6081782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6081954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496f20", "tid": 35568, "ts": 6082079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6082251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498510", "tid": 35568, "ts": 6082376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6082548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496630", "tid": 35568, "ts": 6082673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6082845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4986b0", "tid": 35568, "ts": 6082971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6083143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498030", "tid": 35568, "ts": 6083269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6083440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496ff0", "tid": 35568, "ts": 6083565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6083737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499070", "tid": 35568, "ts": 6083862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498440", "tid": 35568, "ts": 6084158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497190", "tid": 35568, "ts": 6084456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497260", "tid": 35568, "ts": 6084754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6084925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497740", "tid": 35568, "ts": 6085049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6085223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4968a0", "tid": 35568, "ts": 6085347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6085519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4981d0", "tid": 35568, "ts": 6085644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6085817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498850", "tid": 35568, "ts": 6085942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6086127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497330", "tid": 35568, "ts": 6086272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6086444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498100", "tid": 35568, "ts": 6086569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6086741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496490", "tid": 35568, "ts": 6086866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6087038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497810", "tid": 35568, "ts": 6087163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6087378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497400", "tid": 35568, "ts": 6087545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6087774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498c60", "tid": 35568, "ts": 6087951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6088154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4975a0", "tid": 35568, "ts": 6088279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6088452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497670", "tid": 35568, "ts": 6088577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6088749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497e90", "tid": 35568, "ts": 6088875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496a40", "tid": 35568, "ts": 6089198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4979b0", "tid": 35568, "ts": 6089495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498780", "tid": 35568, "ts": 6089793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6089965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4974d0", "tid": 35568, "ts": 6090113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6090285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496b10", "tid": 35568, "ts": 6090410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6090582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498370", "tid": 35568, "ts": 6090770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6090942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497a80", "tid": 35568, "ts": 6091090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6091263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496be0", "tid": 35568, "ts": 6091388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6091561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498ac0", "tid": 35568, "ts": 6091686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6091857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496cb0", "tid": 35568, "ts": 6091995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6092179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497b50", "tid": 35568, "ts": 6092304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6092477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497dc0", "tid": 35568, "ts": 6092603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6092776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497c20", "tid": 35568, "ts": 6092901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6093097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496150", "tid": 35568, "ts": 6093222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6093395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498920", "tid": 35568, "ts": 6093521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6093693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497cf0", "tid": 35568, "ts": 6093819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6094021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496220", "tid": 35568, "ts": 6094200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6094436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4962f0", "tid": 35568, "ts": 6094690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6095058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf497f60", "tid": 35568, "ts": 6095303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6095739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4985e0", "tid": 35568, "ts": 6095969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6096232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498d30", "tid": 35568, "ts": 6096366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6096683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4989f0", "tid": 35568, "ts": 6096813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6096989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498b90", "tid": 35568, "ts": 6097118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6097292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496700", "tid": 35568, "ts": 6097420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6097593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498e00", "tid": 35568, "ts": 6097721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6097894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498ed0", "tid": 35568, "ts": 6098022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6098195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496970", "tid": 35568, "ts": 6098321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6098494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf498fa0", "tid": 35568, "ts": 6098620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6098793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495d40", "tid": 35568, "ts": 6098920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495ee0", "tid": 35568, "ts": 6099221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf495fb0", "tid": 35568, "ts": 6099520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496560", "tid": 35568, "ts": 6099819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6099993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf496080", "tid": 35568, "ts": 6100119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6100291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4967d0", "tid": 35568, "ts": 6100416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6100590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4996f0", "tid": 35568, "ts": 6100716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6100890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499fe0", "tid": 35568, "ts": 6101017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6101189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b840", "tid": 35568, "ts": 6101315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6101488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b1c0", "tid": 35568, "ts": 6101614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6101786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b020", "tid": 35568, "ts": 6101960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6102166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4992e0", "tid": 35568, "ts": 6102292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6102465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b5d0", "tid": 35568, "ts": 6102591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6102764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49af50", "tid": 35568, "ts": 6102890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6103064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bd20", "tid": 35568, "ts": 6103189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6103361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499140", "tid": 35568, "ts": 6103488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6103661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499bd0", "tid": 35568, "ts": 6103800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b910", "tid": 35568, "ts": 6104175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bec0", "tid": 35568, "ts": 6104473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49adb0", "tid": 35568, "ts": 6104770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6104943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4997c0", "tid": 35568, "ts": 6105069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6105242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a0b0", "tid": 35568, "ts": 6105367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6105552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bb80", "tid": 35568, "ts": 6105693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6105865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499960", "tid": 35568, "ts": 6105991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6106164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499b00", "tid": 35568, "ts": 6106290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6106463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ae80", "tid": 35568, "ts": 6106588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6106760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4993b0", "tid": 35568, "ts": 6106885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a180", "tid": 35568, "ts": 6107184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a660", "tid": 35568, "ts": 6107482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bdf0", "tid": 35568, "ts": 6107779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6107952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b430", "tid": 35568, "ts": 6108079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6108251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b6a0", "tid": 35568, "ts": 6108377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6108549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bc50", "tid": 35568, "ts": 6108675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6108847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a4c0", "tid": 35568, "ts": 6108982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6109156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b9e0", "tid": 35568, "ts": 6109282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6109456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c130", "tid": 35568, "ts": 6109581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6109754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a320", "tid": 35568, "ts": 6109937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6110111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bab0", "tid": 35568, "ts": 6110237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6110410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499210", "tid": 35568, "ts": 6110535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6110707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499ca0", "tid": 35568, "ts": 6110832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499890", "tid": 35568, "ts": 6111132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b0f0", "tid": 35568, "ts": 6111430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499a30", "tid": 35568, "ts": 6111728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6111900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499d70", "tid": 35568, "ts": 6112027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6112286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ace0", "tid": 35568, "ts": 6112412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6112585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b770", "tid": 35568, "ts": 6112711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6112883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49bf90", "tid": 35568, "ts": 6113066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6113240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a590", "tid": 35568, "ts": 6113366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6113539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499e40", "tid": 35568, "ts": 6113665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6113865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a8d0", "tid": 35568, "ts": 6113990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6114163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49aa70", "tid": 35568, "ts": 6114288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6114460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a250", "tid": 35568, "ts": 6114586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6114758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c060", "tid": 35568, "ts": 6114884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a730", "tid": 35568, "ts": 6115180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b290", "tid": 35568, "ts": 6115478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a9a0", "tid": 35568, "ts": 6115775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6115989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c200", "tid": 35568, "ts": 6116116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6116288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a3f0", "tid": 35568, "ts": 6116414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6116587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b360", "tid": 35568, "ts": 6116713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6116886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499f10", "tid": 35568, "ts": 6117056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6117230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499480", "tid": 35568, "ts": 6117356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6117528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49a800", "tid": 35568, "ts": 6117653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6117826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ab40", "tid": 35568, "ts": 6117952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6118124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ac10", "tid": 35568, "ts": 6118249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6118422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49b500", "tid": 35568, "ts": 6118547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6118720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c2d0", "tid": 35568, "ts": 6118845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c3a0", "tid": 35568, "ts": 6119143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c470", "tid": 35568, "ts": 6119441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499550", "tid": 35568, "ts": 6119739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6119911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf499620", "tid": 35568, "ts": 6120036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6120208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e0e0", "tid": 35568, "ts": 6120393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6120661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49eeb0", "tid": 35568, "ts": 6120812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49eaa0", "tid": 35568, "ts": 6121163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f6d0", "tid": 35568, "ts": 6121473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49db30", "tid": 35568, "ts": 6121798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6121970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49dda0", "tid": 35568, "ts": 6122197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6122390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d240", "tid": 35568, "ts": 6122516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6122688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f1f0", "tid": 35568, "ts": 6122813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6122985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f870", "tid": 35568, "ts": 6123110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6123283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c610", "tid": 35568, "ts": 6123407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6123581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c540", "tid": 35568, "ts": 6123707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6123880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ca20", "tid": 35568, "ts": 6124005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6124178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f2c0", "tid": 35568, "ts": 6124303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6124474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d4b0", "tid": 35568, "ts": 6124600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6124772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f7a0", "tid": 35568, "ts": 6124897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cfd0", "tid": 35568, "ts": 6125194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49da60", "tid": 35568, "ts": 6125492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f390", "tid": 35568, "ts": 6125791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6125962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ef80", "tid": 35568, "ts": 6126088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6126260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d3e0", "tid": 35568, "ts": 6126385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6126558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f050", "tid": 35568, "ts": 6126683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6126855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49eb70", "tid": 35568, "ts": 6126979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6127152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e900", "tid": 35568, "ts": 6127277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6127450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e9d0", "tid": 35568, "ts": 6127574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6127747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e010", "tid": 35568, "ts": 6127872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6128044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f120", "tid": 35568, "ts": 6128169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6128342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d310", "tid": 35568, "ts": 6128467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6128705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f460", "tid": 35568, "ts": 6128860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d0a0", "tid": 35568, "ts": 6129161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cbc0", "tid": 35568, "ts": 6129460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c950", "tid": 35568, "ts": 6129758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6129929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49dc00", "tid": 35568, "ts": 6130056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6130228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f530", "tid": 35568, "ts": 6130395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6130617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c880", "tid": 35568, "ts": 6130742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6130915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d580", "tid": 35568, "ts": 6131040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6131213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c6e0", "tid": 35568, "ts": 6131338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6131510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d650", "tid": 35568, "ts": 6131635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6131808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49df40", "tid": 35568, "ts": 6131933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6132106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ec40", "tid": 35568, "ts": 6132231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6132403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f600", "tid": 35568, "ts": 6132529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6132702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49caf0", "tid": 35568, "ts": 6132828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49de70", "tid": 35568, "ts": 6133125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e1b0", "tid": 35568, "ts": 6133423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cf00", "tid": 35568, "ts": 6133721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6133894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d720", "tid": 35568, "ts": 6134019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6134191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d7f0", "tid": 35568, "ts": 6134317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6134490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49c7b0", "tid": 35568, "ts": 6134615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6134787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e280", "tid": 35568, "ts": 6134912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6135085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cc90", "tid": 35568, "ts": 6135210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6135383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ed10", "tid": 35568, "ts": 6135508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6135727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ede0", "tid": 35568, "ts": 6135858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e4f0", "tid": 35568, "ts": 6136156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d8c0", "tid": 35568, "ts": 6136454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e350", "tid": 35568, "ts": 6136751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6136924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d990", "tid": 35568, "ts": 6137050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6137222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49cd60", "tid": 35568, "ts": 6137347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6137519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e5c0", "tid": 35568, "ts": 6137644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6137818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49dcd0", "tid": 35568, "ts": 6137943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6138116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ce30", "tid": 35568, "ts": 6138300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6138471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49d170", "tid": 35568, "ts": 6138596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6138768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e420", "tid": 35568, "ts": 6138893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e690", "tid": 35568, "ts": 6139192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e760", "tid": 35568, "ts": 6139490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49e830", "tid": 35568, "ts": 6139786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6139972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a15b0", "tid": 35568, "ts": 6140110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6140282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1ea0", "tid": 35568, "ts": 6140407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6140580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fef0", "tid": 35568, "ts": 6140704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6140877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1410", "tid": 35568, "ts": 6141002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6141175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1f70", "tid": 35568, "ts": 6141300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6141472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2930", "tid": 35568, "ts": 6141596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6141769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fae0", "tid": 35568, "ts": 6141894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0cc0", "tid": 35568, "ts": 6142190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1680", "tid": 35568, "ts": 6142489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0300", "tid": 35568, "ts": 6142786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6142959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0980", "tid": 35568, "ts": 6143084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6143256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2040", "tid": 35568, "ts": 6143380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6143552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0d90", "tid": 35568, "ts": 6143677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6143850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1750", "tid": 35568, "ts": 6143975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6144147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2110", "tid": 35568, "ts": 6144272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6144516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fbb0", "tid": 35568, "ts": 6144642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6144814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0090", "tid": 35568, "ts": 6144939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6145112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1a90", "tid": 35568, "ts": 6145237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6145411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1820", "tid": 35568, "ts": 6145537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6145708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a08b0", "tid": 35568, "ts": 6145833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1340", "tid": 35568, "ts": 6146132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a21e0", "tid": 35568, "ts": 6146430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0e60", "tid": 35568, "ts": 6146728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6146899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2450", "tid": 35568, "ts": 6147025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6147197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0710", "tid": 35568, "ts": 6147321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6147493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a10d0", "tid": 35568, "ts": 6147619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6147790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49ffc0", "tid": 35568, "ts": 6147973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6148145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a14e0", "tid": 35568, "ts": 6148270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6148443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a18f0", "tid": 35568, "ts": 6148567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6148741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2a00", "tid": 35568, "ts": 6148865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6149038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1c30", "tid": 35568, "ts": 6149163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6149336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0f30", "tid": 35568, "ts": 6149460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6149708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a11a0", "tid": 35568, "ts": 6149845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6150066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0160", "tid": 35568, "ts": 6150284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6150471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a19c0", "tid": 35568, "ts": 6150597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6150807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2ad0", "tid": 35568, "ts": 6150993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6151228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fc80", "tid": 35568, "ts": 6151494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6151841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0230", "tid": 35568, "ts": 6151966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6152139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1270", "tid": 35568, "ts": 6152264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6152436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1000", "tid": 35568, "ts": 6152561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6152734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a26c0", "tid": 35568, "ts": 6152860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0a50", "tid": 35568, "ts": 6153157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49f940", "tid": 35568, "ts": 6153455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0b20", "tid": 35568, "ts": 6153753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6153925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a07e0", "tid": 35568, "ts": 6154051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6154223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2860", "tid": 35568, "ts": 6154348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6154521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2ba0", "tid": 35568, "ts": 6154647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6154819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1b60", "tid": 35568, "ts": 6154943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6155116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a03d0", "tid": 35568, "ts": 6155240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6155412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0bf0", "tid": 35568, "ts": 6155536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6155709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1dd0", "tid": 35568, "ts": 6155835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a25f0", "tid": 35568, "ts": 6156133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a1d00", "tid": 35568, "ts": 6156430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a22b0", "tid": 35568, "ts": 6156729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6156901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2380", "tid": 35568, "ts": 6157026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6157200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2520", "tid": 35568, "ts": 6157325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6157559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0640", "tid": 35568, "ts": 6157685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6157856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fa10", "tid": 35568, "ts": 6157981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6158154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a04a0", "tid": 35568, "ts": 6158280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6158452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fd50", "tid": 35568, "ts": 6158577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6158751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2790", "tid": 35568, "ts": 6158876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6159049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2c70", "tid": 35568, "ts": 6159233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6159406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf49fe20", "tid": 35568, "ts": 6159531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6159703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a0570", "tid": 35568, "ts": 6159828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6160070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4dc0", "tid": 35568, "ts": 6160385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6160808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a45a0", "tid": 35568, "ts": 6160998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6161335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4670", "tid": 35568, "ts": 6161466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6161641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5030", "tid": 35568, "ts": 6161769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6161942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3a40", "tid": 35568, "ts": 6162069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6162242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5440", "tid": 35568, "ts": 6162368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6162541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3560", "tid": 35568, "ts": 6162699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6162872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2d40", "tid": 35568, "ts": 6162999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6163172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3700", "tid": 35568, "ts": 6163297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6163470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a56b0", "tid": 35568, "ts": 6163595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6163768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4740", "tid": 35568, "ts": 6163894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4810", "tid": 35568, "ts": 6164191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3b10", "tid": 35568, "ts": 6164487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4330", "tid": 35568, "ts": 6164785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6164959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5510", "tid": 35568, "ts": 6165083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6165255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3ff0", "tid": 35568, "ts": 6165380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6165553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2e10", "tid": 35568, "ts": 6165677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6165849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3be0", "tid": 35568, "ts": 6165972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6166145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a38a0", "tid": 35568, "ts": 6166270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6166442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5d30", "tid": 35568, "ts": 6166566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6166739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2ee0", "tid": 35568, "ts": 6166863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a32f0", "tid": 35568, "ts": 6167221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a40c0", "tid": 35568, "ts": 6167519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a49b0", "tid": 35568, "ts": 6167815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6167988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4a80", "tid": 35568, "ts": 6168113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6168284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a52a0", "tid": 35568, "ts": 6168408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6168581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3490", "tid": 35568, "ts": 6168706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6168932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a48e0", "tid": 35568, "ts": 6169056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6169228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5b90", "tid": 35568, "ts": 6169352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6169526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4260", "tid": 35568, "ts": 6169650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6169822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3cb0", "tid": 35568, "ts": 6169947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6170118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5e00", "tid": 35568, "ts": 6170288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6170461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a2fb0", "tid": 35568, "ts": 6170586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6170758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a55e0", "tid": 35568, "ts": 6170883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a37d0", "tid": 35568, "ts": 6171180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5780", "tid": 35568, "ts": 6171474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6070", "tid": 35568, "ts": 6171770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6171942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3150", "tid": 35568, "ts": 6172067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6172239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5920", "tid": 35568, "ts": 6172363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6172535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4190", "tid": 35568, "ts": 6172661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6172834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a44d0", "tid": 35568, "ts": 6172959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6173130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a33c0", "tid": 35568, "ts": 6173255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6173426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4b50", "tid": 35568, "ts": 6173551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6173723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4c20", "tid": 35568, "ts": 6173847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4cf0", "tid": 35568, "ts": 6174143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4400", "tid": 35568, "ts": 6174438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5850", "tid": 35568, "ts": 6174734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6174905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3080", "tid": 35568, "ts": 6175030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6175202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4e90", "tid": 35568, "ts": 6175326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6175497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5ed0", "tid": 35568, "ts": 6175676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6175965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5370", "tid": 35568, "ts": 6176142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6176401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a4f60", "tid": 35568, "ts": 6176537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6176708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3d80", "tid": 35568, "ts": 6176832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3970", "tid": 35568, "ts": 6177129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3630", "tid": 35568, "ts": 6177426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3e50", "tid": 35568, "ts": 6177723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6177896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a51d0", "tid": 35568, "ts": 6178020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6178248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a59f0", "tid": 35568, "ts": 6178372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6178543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3f20", "tid": 35568, "ts": 6178667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6178839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5ac0", "tid": 35568, "ts": 6178963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6179135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5c60", "tid": 35568, "ts": 6179259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6179431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a3220", "tid": 35568, "ts": 6179555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6179727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5100", "tid": 35568, "ts": 6179851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6180021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a5fa0", "tid": 35568, "ts": 6180146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6180318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6f10", "tid": 35568, "ts": 6180442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6180613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7250", "tid": 35568, "ts": 6180858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7730", "tid": 35568, "ts": 6181155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7b40", "tid": 35568, "ts": 6181453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8840", "tid": 35568, "ts": 6181749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6181920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a81c0", "tid": 35568, "ts": 6182045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6182216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7180", "tid": 35568, "ts": 6182340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6182512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8910", "tid": 35568, "ts": 6182636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6182809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a79a0", "tid": 35568, "ts": 6182934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6183106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a89e0", "tid": 35568, "ts": 6183230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6183402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8c50", "tid": 35568, "ts": 6183527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6183699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6fe0", "tid": 35568, "ts": 6183859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6e40", "tid": 35568, "ts": 6184158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8df0", "tid": 35568, "ts": 6184453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8ec0", "tid": 35568, "ts": 6184749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6184921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a70b0", "tid": 35568, "ts": 6185045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6185218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7ce0", "tid": 35568, "ts": 6185342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6185514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8f90", "tid": 35568, "ts": 6185638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6185836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6960", "tid": 35568, "ts": 6185960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6186131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9060", "tid": 35568, "ts": 6186255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6186427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8b80", "tid": 35568, "ts": 6186552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6186723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a86a0", "tid": 35568, "ts": 6186847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6187018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8290", "tid": 35568, "ts": 6187142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6187314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7c10", "tid": 35568, "ts": 6187438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6187609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7590", "tid": 35568, "ts": 6187773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6188018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a74c0", "tid": 35568, "ts": 6188142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6188315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a78d0", "tid": 35568, "ts": 6368851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6369129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7db0", "tid": 35568, "ts": 6369264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6369492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8ab0", "tid": 35568, "ts": 6369621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6369795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6b00", "tid": 35568, "ts": 6369922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6210", "tid": 35568, "ts": 6370221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a67c0", "tid": 35568, "ts": 6370521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9200", "tid": 35568, "ts": 6370820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6370993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7e80", "tid": 35568, "ts": 6371118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6371290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8d20", "tid": 35568, "ts": 6371415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6371587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8430", "tid": 35568, "ts": 6371714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6371885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7320", "tid": 35568, "ts": 6372011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6372182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6ca0", "tid": 35568, "ts": 6372308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6372481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6d70", "tid": 35568, "ts": 6372606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6372780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6bd0", "tid": 35568, "ts": 6372906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a93a0", "tid": 35568, "ts": 6373203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9470", "tid": 35568, "ts": 6373501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a73f0", "tid": 35568, "ts": 6373798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6373971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a80f0", "tid": 35568, "ts": 6374097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6374269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a62e0", "tid": 35568, "ts": 6374393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6374566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a63b0", "tid": 35568, "ts": 6374691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6374863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6480", "tid": 35568, "ts": 6374988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6375160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8500", "tid": 35568, "ts": 6375285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6375458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a85d0", "tid": 35568, "ts": 6375583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6375755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6550", "tid": 35568, "ts": 6375880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6620", "tid": 35568, "ts": 6376177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a66f0", "tid": 35568, "ts": 6376474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6890", "tid": 35568, "ts": 6376770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6376941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6a30", "tid": 35568, "ts": 6377067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6377238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a96e0", "tid": 35568, "ts": 6377363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6377535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac600", "tid": 35568, "ts": 6377661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6377834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a97b0", "tid": 35568, "ts": 6377959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6378131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab1b0", "tid": 35568, "ts": 6378256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6378428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aacd0", "tid": 35568, "ts": 6378554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6378832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab0e0", "tid": 35568, "ts": 6379094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6379344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac2c0", "tid": 35568, "ts": 6379520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6379754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9610", "tid": 35568, "ts": 6379945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6380117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab9d0", "tid": 35568, "ts": 6380242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6380414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9540", "tid": 35568, "ts": 6380539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6380711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa7f0", "tid": 35568, "ts": 6380835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac6d0", "tid": 35568, "ts": 6381132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac870", "tid": 35568, "ts": 6381431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab280", "tid": 35568, "ts": 6381728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6381901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac7a0", "tid": 35568, "ts": 6382027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6382199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aada0", "tid": 35568, "ts": 6382324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6382496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abd10", "tid": 35568, "ts": 6382622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6382794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9f00", "tid": 35568, "ts": 6382920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9880", "tid": 35568, "ts": 6383217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa4b0", "tid": 35568, "ts": 6383514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9fd0", "tid": 35568, "ts": 6383812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6383983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9950", "tid": 35568, "ts": 6384108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6384281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab900", "tid": 35568, "ts": 6384407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6384623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9a20", "tid": 35568, "ts": 6384750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6384922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9e30", "tid": 35568, "ts": 6385047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6385219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa990", "tid": 35568, "ts": 6385343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6385515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab350", "tid": 35568, "ts": 6385640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6385811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abde0", "tid": 35568, "ts": 6385936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6386108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa580", "tid": 35568, "ts": 6386233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6386404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac390", "tid": 35568, "ts": 6386529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6386702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9af0", "tid": 35568, "ts": 6386841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6387014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234bf272930", "tid": 35568, "ts": 6387078, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 6387531, "pid": 35104, "args": { "Heap": { "SizeInBytes": 268435456, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234bf4ab420", "tid": 35568, "ts": 6387545, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234bf4ab420", "tid": 35568, "ts": 6387576, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 268435456, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9bc0", "tid": 35568, "ts": 6387689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6387864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac120", "tid": 35568, "ts": 6387990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6388164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9c90", "tid": 35568, "ts": 6388290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6388476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9d60", "tid": 35568, "ts": 6388601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6388774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa0a0", "tid": 35568, "ts": 6388899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa170", "tid": 35568, "ts": 6389196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa650", "tid": 35568, "ts": 6389493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac460", "tid": 35568, "ts": 6389789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6389960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab690", "tid": 35568, "ts": 6390084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6390257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab760", "tid": 35568, "ts": 6390380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6390552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa240", "tid": 35568, "ts": 6390676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6390849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab4f0", "tid": 35568, "ts": 6390973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6391144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa310", "tid": 35568, "ts": 6391269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6391442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab5c0", "tid": 35568, "ts": 6391566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6391738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa3e0", "tid": 35568, "ts": 6391863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa720", "tid": 35568, "ts": 6392159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab830", "tid": 35568, "ts": 6392455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aae70", "tid": 35568, "ts": 6392753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6392925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aa8c0", "tid": 35568, "ts": 6393049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6393222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aaf40", "tid": 35568, "ts": 6393345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6393517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abc40", "tid": 35568, "ts": 6393642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6393813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aaa60", "tid": 35568, "ts": 6393936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6394108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac530", "tid": 35568, "ts": 6394233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6394484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aab30", "tid": 35568, "ts": 6394650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6394823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aac00", "tid": 35568, "ts": 6394947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6395121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ab010", "tid": 35568, "ts": 6395245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6395417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abaa0", "tid": 35568, "ts": 6395541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6395712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abb70", "tid": 35568, "ts": 6395836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abf80", "tid": 35568, "ts": 6396132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac050", "tid": 35568, "ts": 6396429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac1f0", "tid": 35568, "ts": 6396725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6396897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae820", "tid": 35568, "ts": 6397022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6397195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae270", "tid": 35568, "ts": 6397320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6397492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad8b0", "tid": 35568, "ts": 6397617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6397788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad3d0", "tid": 35568, "ts": 6397913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adbf0", "tid": 35568, "ts": 6398209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae1a0", "tid": 35568, "ts": 6398505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ada50", "tid": 35568, "ts": 6398802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6398973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acbb0", "tid": 35568, "ts": 6399098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6399269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acae0", "tid": 35568, "ts": 6399394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6399565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afba0", "tid": 35568, "ts": 6399689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6399862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af930", "tid": 35568, "ts": 6399987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6400159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aef70", "tid": 35568, "ts": 6400283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6400456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae8f0", "tid": 35568, "ts": 6400580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6400753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae000", "tid": 35568, "ts": 6400878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae9c0", "tid": 35568, "ts": 6401174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad090", "tid": 35568, "ts": 6401470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae340", "tid": 35568, "ts": 6401768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6401952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aec30", "tid": 35568, "ts": 6402078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6402254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad710", "tid": 35568, "ts": 6402380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6402561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af040", "tid": 35568, "ts": 6402697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6402870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad160", "tid": 35568, "ts": 6402995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6403167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aea90", "tid": 35568, "ts": 6403292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6403464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acef0", "tid": 35568, "ts": 6403588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6403760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afc70", "tid": 35568, "ts": 6403884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae680", "tid": 35568, "ts": 6404180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aedd0", "tid": 35568, "ts": 6404477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad7e0", "tid": 35568, "ts": 6404774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6404946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acfc0", "tid": 35568, "ts": 6405070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6405242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acd50", "tid": 35568, "ts": 6405365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6405537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae410", "tid": 35568, "ts": 6405661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6405833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aeb60", "tid": 35568, "ts": 6405958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6406130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ace20", "tid": 35568, "ts": 6406255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6406427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ac940", "tid": 35568, "ts": 6406552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6406723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adcc0", "tid": 35568, "ts": 6407066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6407241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afad0", "tid": 35568, "ts": 6407367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6407539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ade60", "tid": 35568, "ts": 6407664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6407836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aeea0", "tid": 35568, "ts": 6407962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6408133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad980", "tid": 35568, "ts": 6408258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6408430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae4e0", "tid": 35568, "ts": 6408555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6408727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad300", "tid": 35568, "ts": 6408852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aca10", "tid": 35568, "ts": 6409151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4acc80", "tid": 35568, "ts": 6409447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad230", "tid": 35568, "ts": 6409745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6409961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae5b0", "tid": 35568, "ts": 6410104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6410276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af2b0", "tid": 35568, "ts": 6410401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6410573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4aed00", "tid": 35568, "ts": 6410698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6410870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af1e0", "tid": 35568, "ts": 6410996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6411168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adb20", "tid": 35568, "ts": 6411293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6411464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad4a0", "tid": 35568, "ts": 6411589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6411761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af380", "tid": 35568, "ts": 6411885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad570", "tid": 35568, "ts": 6412182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ad640", "tid": 35568, "ts": 6412480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4add90", "tid": 35568, "ts": 6412777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6412949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae750", "tid": 35568, "ts": 6413074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6413246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4adf30", "tid": 35568, "ts": 6413371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6413545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af110", "tid": 35568, "ts": 6413670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6413843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ae0d0", "tid": 35568, "ts": 6413968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6414140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af450", "tid": 35568, "ts": 6414263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6414435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af520", "tid": 35568, "ts": 6414559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6414731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af5f0", "tid": 35568, "ts": 6414855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af6c0", "tid": 35568, "ts": 6415153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af790", "tid": 35568, "ts": 6415450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4af860", "tid": 35568, "ts": 6415747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6415919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afa00", "tid": 35568, "ts": 6416044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6416216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b07d0", "tid": 35568, "ts": 6416341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6416514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2fa0", "tid": 35568, "ts": 6416639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6416811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1c20", "tid": 35568, "ts": 6416936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6417108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3070", "tid": 35568, "ts": 6417233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6417405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1a80", "tid": 35568, "ts": 6417529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6417701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1cf0", "tid": 35568, "ts": 6417826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0560", "tid": 35568, "ts": 6418174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2510", "tid": 35568, "ts": 6418471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1e90", "tid": 35568, "ts": 6418770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6418942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4affb0", "tid": 35568, "ts": 6419067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6419533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0b10", "tid": 35568, "ts": 6419658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6419830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b19b0", "tid": 35568, "ts": 6419954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6420128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b25e0", "tid": 35568, "ts": 6420253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6420426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b08a0", "tid": 35568, "ts": 6420550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6420722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0970", "tid": 35568, "ts": 6420847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0a40", "tid": 35568, "ts": 6421145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1dc0", "tid": 35568, "ts": 6421442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2030", "tid": 35568, "ts": 6421738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6421910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0220", "tid": 35568, "ts": 6422035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6422208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1810", "tid": 35568, "ts": 6422333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6422505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b22a0", "tid": 35568, "ts": 6422630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6422802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2100", "tid": 35568, "ts": 6422926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b21d0", "tid": 35568, "ts": 6423222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b10c0", "tid": 35568, "ts": 6423518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2850", "tid": 35568, "ts": 6423815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6423987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b18e0", "tid": 35568, "ts": 6424112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6424283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2920", "tid": 35568, "ts": 6424407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6424579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0be0", "tid": 35568, "ts": 6424703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6424876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1190", "tid": 35568, "ts": 6425000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6425172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1f60", "tid": 35568, "ts": 6425296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6425469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1740", "tid": 35568, "ts": 6425750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6425923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b02f0", "tid": 35568, "ts": 6426048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6426220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1b50", "tid": 35568, "ts": 6426345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6426517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0150", "tid": 35568, "ts": 6426642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6426814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2370", "tid": 35568, "ts": 6426939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6427110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b26b0", "tid": 35568, "ts": 6427235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6427407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0cb0", "tid": 35568, "ts": 6427532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6427704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0d80", "tid": 35568, "ts": 6427828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1670", "tid": 35568, "ts": 6428125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b03c0", "tid": 35568, "ts": 6428422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0490", "tid": 35568, "ts": 6428718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6428891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2780", "tid": 35568, "ts": 6429016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6429188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2440", "tid": 35568, "ts": 6429313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6429484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b29f0", "tid": 35568, "ts": 6429609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6429781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2ac0", "tid": 35568, "ts": 6429905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0e50", "tid": 35568, "ts": 6430202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0630", "tid": 35568, "ts": 6430503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0f20", "tid": 35568, "ts": 6430799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6430971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2b90", "tid": 35568, "ts": 6431096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6431267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0ff0", "tid": 35568, "ts": 6431392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6431564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2c60", "tid": 35568, "ts": 6431688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6431861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2d30", "tid": 35568, "ts": 6431986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6432158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2e00", "tid": 35568, "ts": 6432283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6432454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1260", "tid": 35568, "ts": 6432579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6432751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b2ed0", "tid": 35568, "ts": 6432875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afd40", "tid": 35568, "ts": 6433172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afe10", "tid": 35568, "ts": 6433468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4afee0", "tid": 35568, "ts": 6433764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6433936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0700", "tid": 35568, "ts": 6434060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6434232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1330", "tid": 35568, "ts": 6434356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6434528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b0080", "tid": 35568, "ts": 6434653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6434825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b1400", "tid": 35568, "ts": 6434950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6435124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b14d0", "tid": 35568, "ts": 6435274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6435447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b15a0", "tid": 35568, "ts": 6435572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6435745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b59e0", "tid": 35568, "ts": 6435870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4180", "tid": 35568, "ts": 6436167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b48d0", "tid": 35568, "ts": 6436464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3d70", "tid": 35568, "ts": 6436761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6436933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3bd0", "tid": 35568, "ts": 6437057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6437229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3480", "tid": 35568, "ts": 6437354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6437527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3ca0", "tid": 35568, "ts": 6437651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6437823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5290", "tid": 35568, "ts": 6437947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6438119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b33b0", "tid": 35568, "ts": 6438243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6438415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5ec0", "tid": 35568, "ts": 6438539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6438712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3e40", "tid": 35568, "ts": 6438836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6060", "tid": 35568, "ts": 6439131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b40b0", "tid": 35568, "ts": 6439427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3f10", "tid": 35568, "ts": 6439723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6439896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4f50", "tid": 35568, "ts": 6440020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6440191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5910", "tid": 35568, "ts": 6440316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6440487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5ab0", "tid": 35568, "ts": 6440612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6440784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4800", "tid": 35568, "ts": 6440908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6441129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5b80", "tid": 35568, "ts": 6441362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6441536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4e80", "tid": 35568, "ts": 6441663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6441835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5360", "tid": 35568, "ts": 6441960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6442132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5c50", "tid": 35568, "ts": 6442258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6442431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4320", "tid": 35568, "ts": 6442555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6442727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6470", "tid": 35568, "ts": 6442852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5020", "tid": 35568, "ts": 6443149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3890", "tid": 35568, "ts": 6443445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3550", "tid": 35568, "ts": 6443741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6443912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5d20", "tid": 35568, "ts": 6444036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6444208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b49a0", "tid": 35568, "ts": 6444331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6444503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b44c0", "tid": 35568, "ts": 6444627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6444799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5430", "tid": 35568, "ts": 6444924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4250", "tid": 35568, "ts": 6445219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b32e0", "tid": 35568, "ts": 6445515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3140", "tid": 35568, "ts": 6445811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6445983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b43f0", "tid": 35568, "ts": 6446107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6446279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b56a0", "tid": 35568, "ts": 6446403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6446575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5500", "tid": 35568, "ts": 6446699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6446870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5df0", "tid": 35568, "ts": 6446994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6447165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3fe0", "tid": 35568, "ts": 6447289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6447460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4a70", "tid": 35568, "ts": 6447584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6447756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b50f0", "tid": 35568, "ts": 6447880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4b40", "tid": 35568, "ts": 6448176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b62d0", "tid": 35568, "ts": 6448479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4c10", "tid": 35568, "ts": 6448775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6448947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4590", "tid": 35568, "ts": 6449070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6449241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3620", "tid": 35568, "ts": 6449365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6449537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5f90", "tid": 35568, "ts": 6449662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6449832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4ce0", "tid": 35568, "ts": 6449957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6450130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4db0", "tid": 35568, "ts": 6450254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6450426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b37c0", "tid": 35568, "ts": 6450550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6450722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b51c0", "tid": 35568, "ts": 6450846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b55d0", "tid": 35568, "ts": 6451183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5770", "tid": 35568, "ts": 6451479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b5840", "tid": 35568, "ts": 6451775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6451947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3210", "tid": 35568, "ts": 6452071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6452243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b36f0", "tid": 35568, "ts": 6452367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6452539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6130", "tid": 35568, "ts": 6452663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6452835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3960", "tid": 35568, "ts": 6452958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6453129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6200", "tid": 35568, "ts": 6453254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6453425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b63a0", "tid": 35568, "ts": 6453549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6453723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3a30", "tid": 35568, "ts": 6453847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b3b00", "tid": 35568, "ts": 6454143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4660", "tid": 35568, "ts": 6454439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b4730", "tid": 35568, "ts": 6454735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6454908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7310", "tid": 35568, "ts": 6455032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6455203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8280", "tid": 35568, "ts": 6455327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6455499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9460", "tid": 35568, "ts": 6455623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6455794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6d60", "tid": 35568, "ts": 6455918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6456090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9530", "tid": 35568, "ts": 6456215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6456386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6bc0", "tid": 35568, "ts": 6456509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6456680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6e30", "tid": 35568, "ts": 6456856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8b70", "tid": 35568, "ts": 6457152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7e70", "tid": 35568, "ts": 6457448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8f80", "tid": 35568, "ts": 6457743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6457914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b67b0", "tid": 35568, "ts": 6458038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6458209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b85c0", "tid": 35568, "ts": 6458332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6458504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7170", "tid": 35568, "ts": 6458628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6458800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6880", "tid": 35568, "ts": 6458968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6459140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b66e0", "tid": 35568, "ts": 6459264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6459437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8c40", "tid": 35568, "ts": 6459561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6459733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8350", "tid": 35568, "ts": 6459857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8690", "tid": 35568, "ts": 6460153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8eb0", "tid": 35568, "ts": 6460449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7990", "tid": 35568, "ts": 6460745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6460916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8aa0", "tid": 35568, "ts": 6461040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6461212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8760", "tid": 35568, "ts": 6461337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6461509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7240", "tid": 35568, "ts": 6461634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6461806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6fd0", "tid": 35568, "ts": 6461930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b70a0", "tid": 35568, "ts": 6462226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9120", "tid": 35568, "ts": 6462521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8d10", "tid": 35568, "ts": 6462817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6462989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6950", "tid": 35568, "ts": 6463113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6463285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6a20", "tid": 35568, "ts": 6463409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6463581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6af0", "tid": 35568, "ts": 6463705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6463877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8420", "tid": 35568, "ts": 6464002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6464173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7da0", "tid": 35568, "ts": 6464299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6464471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b89d0", "tid": 35568, "ts": 6464595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6464765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b91f0", "tid": 35568, "ts": 6464889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7b30", "tid": 35568, "ts": 6465185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8de0", "tid": 35568, "ts": 6465481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9050", "tid": 35568, "ts": 6465778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6465949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7f40", "tid": 35568, "ts": 6466073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6466245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6c90", "tid": 35568, "ts": 6466369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6466541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6f00", "tid": 35568, "ts": 6466665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6466837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b78c0", "tid": 35568, "ts": 6466961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6467133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b81b0", "tid": 35568, "ts": 6467258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6467431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b73e0", "tid": 35568, "ts": 6467556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6467727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9870", "tid": 35568, "ts": 6467852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b74b0", "tid": 35568, "ts": 6468148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8830", "tid": 35568, "ts": 6468445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b84f0", "tid": 35568, "ts": 6468741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6468913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8010", "tid": 35568, "ts": 6469036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6469207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7a60", "tid": 35568, "ts": 6469331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6469503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7c00", "tid": 35568, "ts": 6469627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6469798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7580", "tid": 35568, "ts": 6469921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b92c0", "tid": 35568, "ts": 6470217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b8900", "tid": 35568, "ts": 6470514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9390", "tid": 35568, "ts": 6470809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6470980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7650", "tid": 35568, "ts": 6471104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6471276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7720", "tid": 35568, "ts": 6471401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6471572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9600", "tid": 35568, "ts": 6471696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6471868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b77f0", "tid": 35568, "ts": 6471992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6472163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b96d0", "tid": 35568, "ts": 6472288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6472526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b97a0", "tid": 35568, "ts": 6472651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6472823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6540", "tid": 35568, "ts": 6472947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6473119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b6610", "tid": 35568, "ts": 6473243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6473415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b7cd0", "tid": 35568, "ts": 6473572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6473745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b80e0", "tid": 35568, "ts": 6473870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc2b0", "tid": 35568, "ts": 6474167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bad90", "tid": 35568, "ts": 6474462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb410", "tid": 35568, "ts": 6474758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6474930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9ae0", "tid": 35568, "ts": 6475054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6475226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bacc0", "tid": 35568, "ts": 6475350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6475522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bae60", "tid": 35568, "ts": 6475646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6475817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb680", "tid": 35568, "ts": 6475941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9e20", "tid": 35568, "ts": 6476236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4baf30", "tid": 35568, "ts": 6476532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbea0", "tid": 35568, "ts": 6476827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6476999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbc30", "tid": 35568, "ts": 6477123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6477294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bab20", "tid": 35568, "ts": 6477419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6477590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb000", "tid": 35568, "ts": 6477714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6477886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba980", "tid": 35568, "ts": 6478010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6478181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb4e0", "tid": 35568, "ts": 6478305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6478477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb820", "tid": 35568, "ts": 6478601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6478773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc110", "tid": 35568, "ts": 6478898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcad0", "tid": 35568, "ts": 6479195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb340", "tid": 35568, "ts": 6479490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb5b0", "tid": 35568, "ts": 6479786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6479958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb750", "tid": 35568, "ts": 6480082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6480254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc790", "tid": 35568, "ts": 6480378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6480549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba710", "tid": 35568, "ts": 6480674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6480844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb270", "tid": 35568, "ts": 6480969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6481142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc520", "tid": 35568, "ts": 6481266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6481437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbf70", "tid": 35568, "ts": 6481562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6481734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbd00", "tid": 35568, "ts": 6481859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcba0", "tid": 35568, "ts": 6482156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc5f0", "tid": 35568, "ts": 6482452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc860", "tid": 35568, "ts": 6482749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6482920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb8f0", "tid": 35568, "ts": 6483045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6483216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc1e0", "tid": 35568, "ts": 6483340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6483512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9ef0", "tid": 35568, "ts": 6483636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6483851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb9c0", "tid": 35568, "ts": 6483976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6484148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bba90", "tid": 35568, "ts": 6484273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6484445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb0d0", "tid": 35568, "ts": 6484569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6484740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9fc0", "tid": 35568, "ts": 6484864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba300", "tid": 35568, "ts": 6485161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba3d0", "tid": 35568, "ts": 6485457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4baa50", "tid": 35568, "ts": 6485753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6485926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba4a0", "tid": 35568, "ts": 6486050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6486221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbdd0", "tid": 35568, "ts": 6486346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6486517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bbb60", "tid": 35568, "ts": 6486641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6486812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc380", "tid": 35568, "ts": 6486936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bb1a0", "tid": 35568, "ts": 6487232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba570", "tid": 35568, "ts": 6487528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4babf0", "tid": 35568, "ts": 6487824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6487995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc040", "tid": 35568, "ts": 6488182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6488429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc6c0", "tid": 35568, "ts": 6488604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6488863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba090", "tid": 35568, "ts": 6489026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6489197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba160", "tid": 35568, "ts": 6489322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6489494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba230", "tid": 35568, "ts": 6489618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6489789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc450", "tid": 35568, "ts": 6489913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bc930", "tid": 35568, "ts": 6490209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba640", "tid": 35568, "ts": 6490505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bca00", "tid": 35568, "ts": 6490801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6490974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcc70", "tid": 35568, "ts": 6491098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6491270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9940", "tid": 35568, "ts": 6491395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6491566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9a10", "tid": 35568, "ts": 6491691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6491863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9bb0", "tid": 35568, "ts": 6491987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6492160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9c80", "tid": 35568, "ts": 6492285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6492457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba7e0", "tid": 35568, "ts": 6492582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6492754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ba8b0", "tid": 35568, "ts": 6492879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4b9d50", "tid": 35568, "ts": 6493174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd8a0", "tid": 35568, "ts": 6493471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcd40", "tid": 35568, "ts": 6493767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6493939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bda40", "tid": 35568, "ts": 6494063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6494234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf5e0", "tid": 35568, "ts": 6494359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6494652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdcb0", "tid": 35568, "ts": 6494777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6494948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf2a0", "tid": 35568, "ts": 6495073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6495246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdf20", "tid": 35568, "ts": 6495372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6495543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be8e0", "tid": 35568, "ts": 6495668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6495840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfe00", "tid": 35568, "ts": 6495965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6496137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bee90", "tid": 35568, "ts": 6496261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6496432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4becf0", "tid": 35568, "ts": 6496557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6496728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bef60", "tid": 35568, "ts": 6496853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd220", "tid": 35568, "ts": 6497150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd2f0", "tid": 35568, "ts": 6497446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf370", "tid": 35568, "ts": 6497743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6497914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd630", "tid": 35568, "ts": 6498039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6498210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd970", "tid": 35568, "ts": 6498335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6498507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfc60", "tid": 35568, "ts": 6498635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6498806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdd80", "tid": 35568, "ts": 6498932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bedc0", "tid": 35568, "ts": 6499229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bea80", "tid": 35568, "ts": 6499526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdff0", "tid": 35568, "ts": 6499823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6499996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bce10", "tid": 35568, "ts": 6500121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6500293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf030", "tid": 35568, "ts": 6500417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6500588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf100", "tid": 35568, "ts": 6500713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6500885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be0c0", "tid": 35568, "ts": 6501009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6501181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcee0", "tid": 35568, "ts": 6501305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6501476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfd30", "tid": 35568, "ts": 6501601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6501774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be9b0", "tid": 35568, "ts": 6501899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bde50", "tid": 35568, "ts": 6502196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd7d0", "tid": 35568, "ts": 6502493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfed0", "tid": 35568, "ts": 6502790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6502961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be190", "tid": 35568, "ts": 6503085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6503256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be740", "tid": 35568, "ts": 6503382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6503553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4beb50", "tid": 35568, "ts": 6503739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6503912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be810", "tid": 35568, "ts": 6504037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6504210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd080", "tid": 35568, "ts": 6504335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6504506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdb10", "tid": 35568, "ts": 6504630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6504802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be260", "tid": 35568, "ts": 6504927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bffa0", "tid": 35568, "ts": 6505223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf1d0", "tid": 35568, "ts": 6505520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf510", "tid": 35568, "ts": 6505817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6505988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be330", "tid": 35568, "ts": 6506113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6506286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd700", "tid": 35568, "ts": 6506411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6506582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be400", "tid": 35568, "ts": 6506706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6506879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf920", "tid": 35568, "ts": 6507005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6507177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bec20", "tid": 35568, "ts": 6507335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6507508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf780", "tid": 35568, "ts": 6507633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6507805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be5a0", "tid": 35568, "ts": 6507930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf440", "tid": 35568, "ts": 6508226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf6b0", "tid": 35568, "ts": 6508524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bcfb0", "tid": 35568, "ts": 6508820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6508992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be670", "tid": 35568, "ts": 6509118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6509289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4be4d0", "tid": 35568, "ts": 6509414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6509585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd150", "tid": 35568, "ts": 6509710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6509882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0070", "tid": 35568, "ts": 6510006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6510177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf850", "tid": 35568, "ts": 6510301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6510474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bf9f0", "tid": 35568, "ts": 6510598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6510770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bdbe0", "tid": 35568, "ts": 6510895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6511067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfac0", "tid": 35568, "ts": 6511191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6511407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bfb90", "tid": 35568, "ts": 6511532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6511703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd3c0", "tid": 35568, "ts": 6511828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd490", "tid": 35568, "ts": 6512126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4bd560", "tid": 35568, "ts": 6512422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c26a0", "tid": 35568, "ts": 6512719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6512891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c21c0", "tid": 35568, "ts": 6513016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6513188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0bd0", "tid": 35568, "ts": 6513312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6513484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c32d0", "tid": 35568, "ts": 6513609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6513781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2290", "tid": 35568, "ts": 6513905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2840", "tid": 35568, "ts": 6514202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c03b0", "tid": 35568, "ts": 6514500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1c10", "tid": 35568, "ts": 6514797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6514968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c02e0", "tid": 35568, "ts": 6515093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6515265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2770", "tid": 35568, "ts": 6515390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6515563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2360", "tid": 35568, "ts": 6515689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6515859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1a70", "tid": 35568, "ts": 6515984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6516157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3130", "tid": 35568, "ts": 6516282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6516454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c07c0", "tid": 35568, "ts": 6516578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6516750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0620", "tid": 35568, "ts": 6516918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3470", "tid": 35568, "ts": 6517216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1db0", "tid": 35568, "ts": 6517513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2ec0", "tid": 35568, "ts": 6517809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6517981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2910", "tid": 35568, "ts": 6518106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6518278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2430", "tid": 35568, "ts": 6518403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6518575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0e40", "tid": 35568, "ts": 6518700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6518870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1250", "tid": 35568, "ts": 6518995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6519166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1e80", "tid": 35568, "ts": 6519340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6519513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3200", "tid": 35568, "ts": 6519639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6519811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c06f0", "tid": 35568, "ts": 6519936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c25d0", "tid": 35568, "ts": 6520231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c29e0", "tid": 35568, "ts": 6520528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2b80", "tid": 35568, "ts": 6520823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6520996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0480", "tid": 35568, "ts": 6521120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6521292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2500", "tid": 35568, "ts": 6521417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6521589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1f50", "tid": 35568, "ts": 6521715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6521886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0a30", "tid": 35568, "ts": 6522011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6522183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0960", "tid": 35568, "ts": 6522308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6522480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c10b0", "tid": 35568, "ts": 6522604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6522775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3060", "tid": 35568, "ts": 6522900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0550", "tid": 35568, "ts": 6523197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0f10", "tid": 35568, "ts": 6523494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1180", "tid": 35568, "ts": 6523791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6523962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2ab0", "tid": 35568, "ts": 6524086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6524259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2c50", "tid": 35568, "ts": 6524383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6524556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2d20", "tid": 35568, "ts": 6524681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6524853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c33a0", "tid": 35568, "ts": 6524977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6525149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2df0", "tid": 35568, "ts": 6525275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6525447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2f90", "tid": 35568, "ts": 6525572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6525743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1b40", "tid": 35568, "ts": 6525868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0140", "tid": 35568, "ts": 6526164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c20f0", "tid": 35568, "ts": 6526460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0210", "tid": 35568, "ts": 6526756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6526928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0890", "tid": 35568, "ts": 6527052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6527225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c13f0", "tid": 35568, "ts": 6527350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6527521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0b00", "tid": 35568, "ts": 6527647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6527820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0ca0", "tid": 35568, "ts": 6527944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6528116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c19a0", "tid": 35568, "ts": 6528241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6528414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c2020", "tid": 35568, "ts": 6528539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6528712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1ce0", "tid": 35568, "ts": 6528836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c14c0", "tid": 35568, "ts": 6529133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1590", "tid": 35568, "ts": 6529430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0d70", "tid": 35568, "ts": 6529727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6529899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c0fe0", "tid": 35568, "ts": 6530024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6530196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1320", "tid": 35568, "ts": 6530320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6530492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1660", "tid": 35568, "ts": 6530618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6530789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1730", "tid": 35568, "ts": 6530914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c1800", "tid": 35568, "ts": 6531212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c18d0", "tid": 35568, "ts": 6531510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c40a0", "tid": 35568, "ts": 6531807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6531978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c36e0", "tid": 35568, "ts": 6532103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6532274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4240", "tid": 35568, "ts": 6532398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6532569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3880", "tid": 35568, "ts": 6532695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6532866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c55c0", "tid": 35568, "ts": 6532990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6533161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5c40", "tid": 35568, "ts": 6533286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6533458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c59d0", "tid": 35568, "ts": 6533583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6533754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c62c0", "tid": 35568, "ts": 6533879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5de0", "tid": 35568, "ts": 6534182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c51b0", "tid": 35568, "ts": 6534479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6120", "tid": 35568, "ts": 6534776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6534958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5d10", "tid": 35568, "ts": 6535084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6535256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4650", "tid": 35568, "ts": 6535381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6535553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5280", "tid": 35568, "ts": 6535678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6535849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3a20", "tid": 35568, "ts": 6535974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6536147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3af0", "tid": 35568, "ts": 6536272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6536444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c47f0", "tid": 35568, "ts": 6536569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6536741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4170", "tid": 35568, "ts": 6536866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5aa0", "tid": 35568, "ts": 6537162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3e30", "tid": 35568, "ts": 6537459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5b70", "tid": 35568, "ts": 6537756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6537929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4b30", "tid": 35568, "ts": 6538054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6538226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c48c0", "tid": 35568, "ts": 6538351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6538524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4990", "tid": 35568, "ts": 6538649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6538821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6600", "tid": 35568, "ts": 6538946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6539117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3c90", "tid": 35568, "ts": 6539241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6539414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5f80", "tid": 35568, "ts": 6539539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6539711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4da0", "tid": 35568, "ts": 6539835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5eb0", "tid": 35568, "ts": 6540134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5420", "tid": 35568, "ts": 6540432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3d60", "tid": 35568, "ts": 6540728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6540900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6050", "tid": 35568, "ts": 6541026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6541199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5900", "tid": 35568, "ts": 6541324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6541496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c61f0", "tid": 35568, "ts": 6541621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6541794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5350", "tid": 35568, "ts": 6541919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4e70", "tid": 35568, "ts": 6542216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5760", "tid": 35568, "ts": 6542513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5690", "tid": 35568, "ts": 6542809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6542981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4310", "tid": 35568, "ts": 6543106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6543277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c44b0", "tid": 35568, "ts": 6543401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6543573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6390", "tid": 35568, "ts": 6543698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6543868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6530", "tid": 35568, "ts": 6543992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6544164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c43e0", "tid": 35568, "ts": 6544288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6544461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c54f0", "tid": 35568, "ts": 6544586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6544759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c66d0", "tid": 35568, "ts": 6544883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4580", "tid": 35568, "ts": 6545180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3950", "tid": 35568, "ts": 6545479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4a60", "tid": 35568, "ts": 6545775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6545947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c50e0", "tid": 35568, "ts": 6546072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6546243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6460", "tid": 35568, "ts": 6546368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6546540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c67a0", "tid": 35568, "ts": 6546665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6546838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6870", "tid": 35568, "ts": 6546963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6547135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3540", "tid": 35568, "ts": 6547260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6547432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3610", "tid": 35568, "ts": 6547557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6547729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4720", "tid": 35568, "ts": 6547854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c37b0", "tid": 35568, "ts": 6548151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5830", "tid": 35568, "ts": 6548448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3bc0", "tid": 35568, "ts": 6548744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6548915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3f00", "tid": 35568, "ts": 6549039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6549211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4c00", "tid": 35568, "ts": 6549337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6549552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c3fd0", "tid": 35568, "ts": 6549678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6549851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4cd0", "tid": 35568, "ts": 6549975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6550148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c4f40", "tid": 35568, "ts": 6550273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6550444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c5010", "tid": 35568, "ts": 6550659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6550873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7090", "tid": 35568, "ts": 6551002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6551175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6c80", "tid": 35568, "ts": 6551300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6551473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9450", "tid": 35568, "ts": 6551598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6551770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9790", "tid": 35568, "ts": 6551895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c81a0", "tid": 35568, "ts": 6552191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7cc0", "tid": 35568, "ts": 6552488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7e60", "tid": 35568, "ts": 6552784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6552957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8d00", "tid": 35568, "ts": 6553081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6553253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9040", "tid": 35568, "ts": 6553378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6553550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8750", "tid": 35568, "ts": 6553675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6553848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c92b0", "tid": 35568, "ts": 6553973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6554145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8dd0", "tid": 35568, "ts": 6554270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6554442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9ba0", "tid": 35568, "ts": 6554566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6554738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9380", "tid": 35568, "ts": 6554863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9860", "tid": 35568, "ts": 6555160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8a90", "tid": 35568, "ts": 6555455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9930", "tid": 35568, "ts": 6555752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6555924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7710", "tid": 35568, "ts": 6556049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6556221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9ad0", "tid": 35568, "ts": 6556346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6556518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6d50", "tid": 35568, "ts": 6556643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6556816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c77e0", "tid": 35568, "ts": 6556940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6557113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c74a0", "tid": 35568, "ts": 6557237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6557409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7160", "tid": 35568, "ts": 6557534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6557706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7300", "tid": 35568, "ts": 6557830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c85b0", "tid": 35568, "ts": 6558127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6ef0", "tid": 35568, "ts": 6558424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8820", "tid": 35568, "ts": 6558721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6558893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8ea0", "tid": 35568, "ts": 6559018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6559191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9a00", "tid": 35568, "ts": 6559316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6559487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c84e0", "tid": 35568, "ts": 6559612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6559784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6940", "tid": 35568, "ts": 6559910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9520", "tid": 35568, "ts": 6560206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9c70", "tid": 35568, "ts": 6560503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7230", "tid": 35568, "ts": 6560800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6560972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8270", "tid": 35568, "ts": 6561097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6561269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6bb0", "tid": 35568, "ts": 6561393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6561564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8410", "tid": 35568, "ts": 6561689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6561861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6fc0", "tid": 35568, "ts": 6561985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6562158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c88f0", "tid": 35568, "ts": 6562282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6562454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c78b0", "tid": 35568, "ts": 6562578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6562751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6ae0", "tid": 35568, "ts": 6562876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6a10", "tid": 35568, "ts": 6563172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8340", "tid": 35568, "ts": 6563469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7d90", "tid": 35568, "ts": 6563767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6563939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7b20", "tid": 35568, "ts": 6564063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6564235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8680", "tid": 35568, "ts": 6564361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6564533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c89c0", "tid": 35568, "ts": 6564658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6564830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9110", "tid": 35568, "ts": 6564955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6565125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c6e20", "tid": 35568, "ts": 6565250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6565423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7f30", "tid": 35568, "ts": 6565547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6565720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c73d0", "tid": 35568, "ts": 6565846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6566018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8b60", "tid": 35568, "ts": 6566175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6566396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7570", "tid": 35568, "ts": 6566538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6566710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7640", "tid": 35568, "ts": 6566835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c95f0", "tid": 35568, "ts": 6567133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7980", "tid": 35568, "ts": 6567430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7a50", "tid": 35568, "ts": 6567726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6567898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c96c0", "tid": 35568, "ts": 6568022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6568194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8f70", "tid": 35568, "ts": 6568318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6568489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c7bf0", "tid": 35568, "ts": 6568613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6568786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8000", "tid": 35568, "ts": 6568910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c8c30", "tid": 35568, "ts": 6569207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c80d0", "tid": 35568, "ts": 6569503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c91e0", "tid": 35568, "ts": 6569800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6569973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cabe0", "tid": 35568, "ts": 6570097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6570269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb5a0", "tid": 35568, "ts": 6570394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6570565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc780", "tid": 35568, "ts": 6570690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6570862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4caa40", "tid": 35568, "ts": 6570986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6571159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9d40", "tid": 35568, "ts": 6571284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6571456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc5e0", "tid": 35568, "ts": 6571581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6571753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb190", "tid": 35568, "ts": 6571877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb8e0", "tid": 35568, "ts": 6572174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb670", "tid": 35568, "ts": 6572471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca700", "tid": 35568, "ts": 6572769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6572940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb740", "tid": 35568, "ts": 6573065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6573238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc1d0", "tid": 35568, "ts": 6573362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6573534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4caff0", "tid": 35568, "ts": 6573659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6573831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbf60", "tid": 35568, "ts": 6573955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6574127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc100", "tid": 35568, "ts": 6574252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6574425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca2f0", "tid": 35568, "ts": 6574551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6574722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb0c0", "tid": 35568, "ts": 6574846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9e10", "tid": 35568, "ts": 6575144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cad80", "tid": 35568, "ts": 6575441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb9b0", "tid": 35568, "ts": 6575738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6575911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4caf20", "tid": 35568, "ts": 6576035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6576209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9fb0", "tid": 35568, "ts": 6576333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6576506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cae50", "tid": 35568, "ts": 6576630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6576801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb260", "tid": 35568, "ts": 6576927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4c9ee0", "tid": 35568, "ts": 6577225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc9f0", "tid": 35568, "ts": 6577521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb330", "tid": 35568, "ts": 6577818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6577990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc850", "tid": 35568, "ts": 6578115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6578289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbb50", "tid": 35568, "ts": 6578413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6578586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc030", "tid": 35568, "ts": 6578711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6578884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca080", "tid": 35568, "ts": 6579009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6579182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc2a0", "tid": 35568, "ts": 6579308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6579481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca7d0", "tid": 35568, "ts": 6579606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6579778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cab10", "tid": 35568, "ts": 6579902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb400", "tid": 35568, "ts": 6580198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cacb0", "tid": 35568, "ts": 6580495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca150", "tid": 35568, "ts": 6580794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6580966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca220", "tid": 35568, "ts": 6581090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6581306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc920", "tid": 35568, "ts": 6581433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6581606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc370", "tid": 35568, "ts": 6581756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6581992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccb90", "tid": 35568, "ts": 6582118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6582290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb4d0", "tid": 35568, "ts": 6582459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6582632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbc20", "tid": 35568, "ts": 6582757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6582930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccac0", "tid": 35568, "ts": 6583055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6583227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca3c0", "tid": 35568, "ts": 6583351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6583523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc6b0", "tid": 35568, "ts": 6583648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6583820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cb810", "tid": 35568, "ts": 6583945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6584116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cba80", "tid": 35568, "ts": 6584241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6584413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbcf0", "tid": 35568, "ts": 6584537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6584709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbdc0", "tid": 35568, "ts": 6584833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cbe90", "tid": 35568, "ts": 6585131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca490", "tid": 35568, "ts": 6585427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc440", "tid": 35568, "ts": 6585723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6585896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cc510", "tid": 35568, "ts": 6586020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6586191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccc60", "tid": 35568, "ts": 6586316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6586488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ccd30", "tid": 35568, "ts": 6586613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6586784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cce00", "tid": 35568, "ts": 6586909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4cced0", "tid": 35568, "ts": 6587204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca560", "tid": 35568, "ts": 6587499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca630", "tid": 35568, "ts": 6587795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6587966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca8a0", "tid": 35568, "ts": 6588091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6588262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4ca970", "tid": 35568, "ts": 6588386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6588559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d0b0", "tid": 35568, "ts": 6588684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6588855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e770", "tid": 35568, "ts": 6588980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6589152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ed20", "tid": 35568, "ts": 6589277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6589448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48df50", "tid": 35568, "ts": 6589573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6589746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e840", "tid": 35568, "ts": 6589872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48de80", "tid": 35568, "ts": 6590168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e910", "tid": 35568, "ts": 6590466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d320", "tid": 35568, "ts": 6590762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6590933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c3b0", "tid": 35568, "ts": 6591058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6591230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d180", "tid": 35568, "ts": 6591355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6591527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d4c0", "tid": 35568, "ts": 6591652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6591823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e0f0", "tid": 35568, "ts": 6591947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6592120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f3a0", "tid": 35568, "ts": 6592244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6592416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f470", "tid": 35568, "ts": 6592540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6592712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c480", "tid": 35568, "ts": 6592837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e360", "tid": 35568, "ts": 6593132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d590", "tid": 35568, "ts": 6593430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cb00", "tid": 35568, "ts": 6593726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6593897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d660", "tid": 35568, "ts": 6594021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6594194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d3f0", "tid": 35568, "ts": 6594318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6594515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c6f0", "tid": 35568, "ts": 6594640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6594812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cbd0", "tid": 35568, "ts": 6594937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6595110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ddb0", "tid": 35568, "ts": 6595234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6595407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c550", "tid": 35568, "ts": 6595531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6595704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e1c0", "tid": 35568, "ts": 6595829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d250", "tid": 35568, "ts": 6596125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e9e0", "tid": 35568, "ts": 6596421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d730", "tid": 35568, "ts": 6596716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6596887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d800", "tid": 35568, "ts": 6597012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6597184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e020", "tid": 35568, "ts": 6597309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6597624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ec50", "tid": 35568, "ts": 6597817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6598091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d8d0", "tid": 35568, "ts": 6598240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6598525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e290", "tid": 35568, "ts": 6598651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6598823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c140", "tid": 35568, "ts": 6598947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6599120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cf10", "tid": 35568, "ts": 6599245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6599416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c210", "tid": 35568, "ts": 6599541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6599713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48eab0", "tid": 35568, "ts": 6599838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48edf0", "tid": 35568, "ts": 6600134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48d9a0", "tid": 35568, "ts": 6600431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e430", "tid": 35568, "ts": 6600729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6600899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e500", "tid": 35568, "ts": 6601024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6601196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f130", "tid": 35568, "ts": 6601321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6601493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c620", "tid": 35568, "ts": 6601618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6601790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cfe0", "tid": 35568, "ts": 6601914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48eec0", "tid": 35568, "ts": 6602211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ef90", "tid": 35568, "ts": 6602506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f060", "tid": 35568, "ts": 6602800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6602971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f200", "tid": 35568, "ts": 6603096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6603267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48da70", "tid": 35568, "ts": 6603392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6603581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48dce0", "tid": 35568, "ts": 6603917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48db40", "tid": 35568, "ts": 6604218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48eb80", "tid": 35568, "ts": 6604515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c7c0", "tid": 35568, "ts": 6604814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6604987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e5d0", "tid": 35568, "ts": 6605111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6605283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48f2d0", "tid": 35568, "ts": 6605407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6605580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c2e0", "tid": 35568, "ts": 6605705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6605877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48dc10", "tid": 35568, "ts": 6606002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6606173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c890", "tid": 35568, "ts": 6606298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6606469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48e6a0", "tid": 35568, "ts": 6606593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6606905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48c960", "tid": 35568, "ts": 6607062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6607234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ca30", "tid": 35568, "ts": 6607360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6607531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cca0", "tid": 35568, "ts": 6607656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6607828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48cd70", "tid": 35568, "ts": 6607953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6608126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf48ce40", "tid": 35568, "ts": 6608250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6608422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09df350", "tid": 35568, "ts": 6608548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6608719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dd470", "tid": 35568, "ts": 6608844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09de990", "tid": 35568, "ts": 6609141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09decd0", "tid": 35568, "ts": 6609438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09deda0", "tid": 35568, "ts": 6609733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6609905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dcab0", "tid": 35568, "ts": 6610029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6610202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dc360", "tid": 35568, "ts": 6610326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6610498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a09dda20", "tid": 35568, "ts": 6610623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6610795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a33ea200", "tid": 35568, "ts": 6610920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a012c050", "tid": 35568, "ts": 6611217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11990", "tid": 35568, "ts": 6611528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12d10", "tid": 35568, "ts": 6611826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6611996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12900", "tid": 35568, "ts": 6612122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6612294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11f40", "tid": 35568, "ts": 6612418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6612589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12760", "tid": 35568, "ts": 6612714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6612886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11e70", "tid": 35568, "ts": 6613016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6613245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10200", "tid": 35568, "ts": 6613371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6613544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11650", "tid": 35568, "ts": 6613670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6613842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10130", "tid": 35568, "ts": 6613967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6614138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b124f0", "tid": 35568, "ts": 6614265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6614436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12830", "tid": 35568, "ts": 6614561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6614733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12eb0", "tid": 35568, "ts": 6614858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10540", "tid": 35568, "ts": 6615156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10f00", "tid": 35568, "ts": 6615452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11170", "tid": 35568, "ts": 6615796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6615968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12f80", "tid": 35568, "ts": 6616094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6616266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12010", "tid": 35568, "ts": 6616392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6616564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12de0", "tid": 35568, "ts": 6616689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6616860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10fd0", "tid": 35568, "ts": 6616985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6617156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10470", "tid": 35568, "ts": 6617334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6617507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12c40", "tid": 35568, "ts": 6617637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6617809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11240", "tid": 35568, "ts": 6617934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b117f0", "tid": 35568, "ts": 6618232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11a60", "tid": 35568, "ts": 6618527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11b30", "tid": 35568, "ts": 6618824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6618996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b106e0", "tid": 35568, "ts": 6619121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6619293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b125c0", "tid": 35568, "ts": 6619417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6619589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b131f0", "tid": 35568, "ts": 6619714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6619886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11c00", "tid": 35568, "ts": 6620011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6620182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b103a0", "tid": 35568, "ts": 6620306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6620477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b129d0", "tid": 35568, "ts": 6620608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6620780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b107b0", "tid": 35568, "ts": 6620905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13050", "tid": 35568, "ts": 6621202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b120e0", "tid": 35568, "ts": 6621498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10bc0", "tid": 35568, "ts": 6621793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6621966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10880", "tid": 35568, "ts": 6622090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6622261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b121b0", "tid": 35568, "ts": 6622386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6622557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10a20", "tid": 35568, "ts": 6622682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6622853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12aa0", "tid": 35568, "ts": 6622978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6623150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10af0", "tid": 35568, "ts": 6623275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6623447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12b70", "tid": 35568, "ts": 6623572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6623743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13120", "tid": 35568, "ts": 6623867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11580", "tid": 35568, "ts": 6624163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11720", "tid": 35568, "ts": 6624459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10c90", "tid": 35568, "ts": 6624755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6624926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10d60", "tid": 35568, "ts": 6625051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6625223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10610", "tid": 35568, "ts": 6625347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6625518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b132c0", "tid": 35568, "ts": 6625668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6625840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11cd0", "tid": 35568, "ts": 6625964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6626136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b118c0", "tid": 35568, "ts": 6626261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6626432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11da0", "tid": 35568, "ts": 6626557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6626728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10e30", "tid": 35568, "ts": 6626853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b110a0", "tid": 35568, "ts": 6627150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b102d0", "tid": 35568, "ts": 6627446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13390", "tid": 35568, "ts": 6627743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6627915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b10950", "tid": 35568, "ts": 6628040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6628212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b11310", "tid": 35568, "ts": 6628336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6628508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b113e0", "tid": 35568, "ts": 6628633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6628956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13460", "tid": 35568, "ts": 6629130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6629303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b114b0", "tid": 35568, "ts": 6629427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6629600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12280", "tid": 35568, "ts": 6629725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6629897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12350", "tid": 35568, "ts": 6630022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6630195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12420", "tid": 35568, "ts": 6630320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6630492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b12690", "tid": 35568, "ts": 6630616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6630787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13fc0", "tid": 35568, "ts": 6630912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13940", "tid": 35568, "ts": 6631209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b162b0", "tid": 35568, "ts": 6631504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14090", "tid": 35568, "ts": 6631801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6631973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b143d0", "tid": 35568, "ts": 6632097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6632268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13ae0", "tid": 35568, "ts": 6632392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6632564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13a10", "tid": 35568, "ts": 6632689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6632861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16380", "tid": 35568, "ts": 6632986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6633158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13bb0", "tid": 35568, "ts": 6633282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6633454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16860", "tid": 35568, "ts": 6633579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6633752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b161e0", "tid": 35568, "ts": 6633877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15b60", "tid": 35568, "ts": 6634174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16040", "tid": 35568, "ts": 6634471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b147e0", "tid": 35568, "ts": 6634767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6634939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15f70", "tid": 35568, "ts": 6635064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6635235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15d00", "tid": 35568, "ts": 6635363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6635535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14980", "tid": 35568, "ts": 6635660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6635830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b144a0", "tid": 35568, "ts": 6635956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6636128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b151a0", "tid": 35568, "ts": 6636253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6636424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13c80", "tid": 35568, "ts": 6636548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6636721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16450", "tid": 35568, "ts": 6636846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16790", "tid": 35568, "ts": 6637142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16520", "tid": 35568, "ts": 6637440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b165f0", "tid": 35568, "ts": 6637737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6637909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13870", "tid": 35568, "ts": 6638033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6638204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13d50", "tid": 35568, "ts": 6638329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6638500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14f30", "tid": 35568, "ts": 6638626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6638797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16110", "tid": 35568, "ts": 6638921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13e20", "tid": 35568, "ts": 6639217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13ef0", "tid": 35568, "ts": 6639514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b166c0", "tid": 35568, "ts": 6639809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6639982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b154e0", "tid": 35568, "ts": 6640106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6640277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14160", "tid": 35568, "ts": 6640401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6640573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14230", "tid": 35568, "ts": 6640697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6640868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15c30", "tid": 35568, "ts": 6640993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6641165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15ea0", "tid": 35568, "ts": 6641289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6641461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b155b0", "tid": 35568, "ts": 6641586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6641757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14570", "tid": 35568, "ts": 6641881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13530", "tid": 35568, "ts": 6642178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14a50", "tid": 35568, "ts": 6642475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14300", "tid": 35568, "ts": 6642772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6642944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15000", "tid": 35568, "ts": 6643068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6643240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15680", "tid": 35568, "ts": 6643364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6643536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b13600", "tid": 35568, "ts": 6643660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6643832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b150d0", "tid": 35568, "ts": 6643958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6644130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15dd0", "tid": 35568, "ts": 6644255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6644480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15270", "tid": 35568, "ts": 6644606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6644778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15a90", "tid": 35568, "ts": 6644904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14640", "tid": 35568, "ts": 6645199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b136d0", "tid": 35568, "ts": 6645496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14710", "tid": 35568, "ts": 6645792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6645964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15750", "tid": 35568, "ts": 6646088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6646261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15340", "tid": 35568, "ts": 6646386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6646557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b137a0", "tid": 35568, "ts": 6646682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6646854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b148b0", "tid": 35568, "ts": 6646979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6647150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15410", "tid": 35568, "ts": 6647276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6647448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14b20", "tid": 35568, "ts": 6647573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6647746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14bf0", "tid": 35568, "ts": 6647870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14cc0", "tid": 35568, "ts": 6648168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b15820", "tid": 35568, "ts": 6648464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14d90", "tid": 35568, "ts": 6648804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6648976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b158f0", "tid": 35568, "ts": 6649102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6649274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b14e60", "tid": 35568, "ts": 6649399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6649571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b159c0", "tid": 35568, "ts": 6649695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6649867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16d40", "tid": 35568, "ts": 6649992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6650163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b188e0", "tid": 35568, "ts": 6650288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6650459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17150", "tid": 35568, "ts": 6650585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6650756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19780", "tid": 35568, "ts": 6650881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b185a0", "tid": 35568, "ts": 6651177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18670", "tid": 35568, "ts": 6651473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16fb0", "tid": 35568, "ts": 6651769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6651942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19c60", "tid": 35568, "ts": 6652066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6652238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19100", "tid": 35568, "ts": 6652363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6652575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18b50", "tid": 35568, "ts": 6652700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6652872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18c20", "tid": 35568, "ts": 6652998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6653169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19ac0", "tid": 35568, "ts": 6653293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6653465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16ad0", "tid": 35568, "ts": 6653589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6653761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17630", "tid": 35568, "ts": 6653885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18cf0", "tid": 35568, "ts": 6654182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b192a0", "tid": 35568, "ts": 6654478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18dc0", "tid": 35568, "ts": 6654774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6654945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18e90", "tid": 35568, "ts": 6655069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6655242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19920", "tid": 35568, "ts": 6655367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6655538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b177d0", "tid": 35568, "ts": 6655663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6655835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17560", "tid": 35568, "ts": 6655960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6656132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19850", "tid": 35568, "ts": 6656256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6656428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17080", "tid": 35568, "ts": 6656552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6656724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16ba0", "tid": 35568, "ts": 6656849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17700", "tid": 35568, "ts": 6657145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b199f0", "tid": 35568, "ts": 6657441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16930", "tid": 35568, "ts": 6657738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6657909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17b10", "tid": 35568, "ts": 6658034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6658206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17e50", "tid": 35568, "ts": 6658330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6658503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18a80", "tid": 35568, "ts": 6658626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6658798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b178a0", "tid": 35568, "ts": 6658922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6659093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18330", "tid": 35568, "ts": 6659218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6659389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18740", "tid": 35568, "ts": 6659515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6659685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19510", "tid": 35568, "ts": 6659810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19b90", "tid": 35568, "ts": 6660188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17d80", "tid": 35568, "ts": 6660486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16a00", "tid": 35568, "ts": 6660783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6660973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17be0", "tid": 35568, "ts": 6661104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6661276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16c70", "tid": 35568, "ts": 6661401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6661571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b191d0", "tid": 35568, "ts": 6661696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6661869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17f20", "tid": 35568, "ts": 6661994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6662164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18810", "tid": 35568, "ts": 6662288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6662461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19370", "tid": 35568, "ts": 6662587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6662759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18f60", "tid": 35568, "ts": 6662884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16e10", "tid": 35568, "ts": 6663180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17ff0", "tid": 35568, "ts": 6663476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19440", "tid": 35568, "ts": 6663773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6663945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19030", "tid": 35568, "ts": 6664069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6664241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b195e0", "tid": 35568, "ts": 6664365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6664537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18260", "tid": 35568, "ts": 6664662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6664833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b16ee0", "tid": 35568, "ts": 6664958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6665130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17220", "tid": 35568, "ts": 6665255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6665428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b172f0", "tid": 35568, "ts": 6665552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6665723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b189b0", "tid": 35568, "ts": 6665848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b173c0", "tid": 35568, "ts": 6666147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17490", "tid": 35568, "ts": 6666443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17970", "tid": 35568, "ts": 6666742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6666913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17a40", "tid": 35568, "ts": 6667038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6667209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18190", "tid": 35568, "ts": 6667333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6667505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b17cb0", "tid": 35568, "ts": 6667630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6667802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b180c0", "tid": 35568, "ts": 6667927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b18400", "tid": 35568, "ts": 6668223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b184d0", "tid": 35568, "ts": 6668521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b196b0", "tid": 35568, "ts": 6668816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6668987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c910", "tid": 35568, "ts": 6669112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6669284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c430", "tid": 35568, "ts": 6669409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6669580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c6a0", "tid": 35568, "ts": 6669704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6669876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c500", "tid": 35568, "ts": 6670031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6670204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b180", "tid": 35568, "ts": 6670329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6670502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a210", "tid": 35568, "ts": 6670627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6670800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d060", "tid": 35568, "ts": 6670924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c5d0", "tid": 35568, "ts": 6671220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cec0", "tid": 35568, "ts": 6671518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c360", "tid": 35568, "ts": 6671816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6671988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1aa30", "tid": 35568, "ts": 6672112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6672284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bb40", "tid": 35568, "ts": 6672409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6672581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bdb0", "tid": 35568, "ts": 6672706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6672877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a960", "tid": 35568, "ts": 6673002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6673175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a2e0", "tid": 35568, "ts": 6673300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6673471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c9e0", "tid": 35568, "ts": 6673596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6673769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b250", "tid": 35568, "ts": 6673894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c770", "tid": 35568, "ts": 6674190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19d30", "tid": 35568, "ts": 6674486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ab00", "tid": 35568, "ts": 6674783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6674956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cb80", "tid": 35568, "ts": 6675081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6675254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a480", "tid": 35568, "ts": 6675379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6675611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1af10", "tid": 35568, "ts": 6675770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6675942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ae40", "tid": 35568, "ts": 6676067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6676239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b3f0", "tid": 35568, "ts": 6676365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6676537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bc10", "tid": 35568, "ts": 6676662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6676833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ba70", "tid": 35568, "ts": 6676958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6677130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c840", "tid": 35568, "ts": 6677255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6677426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b320", "tid": 35568, "ts": 6677551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6677725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a070", "tid": 35568, "ts": 6677850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a7c0", "tid": 35568, "ts": 6678146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c0f0", "tid": 35568, "ts": 6678443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1abd0", "tid": 35568, "ts": 6678740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6678912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a550", "tid": 35568, "ts": 6679038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6679209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cd20", "tid": 35568, "ts": 6679334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6679506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b9a0", "tid": 35568, "ts": 6679631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6679804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b730", "tid": 35568, "ts": 6679929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cdf0", "tid": 35568, "ts": 6680226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19e00", "tid": 35568, "ts": 6680523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cab0", "tid": 35568, "ts": 6680819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6680992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a620", "tid": 35568, "ts": 6681117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6681289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cc50", "tid": 35568, "ts": 6681456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6681630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1cf90", "tid": 35568, "ts": 6681755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6681927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19ed0", "tid": 35568, "ts": 6682051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6682224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bce0", "tid": 35568, "ts": 6682349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6682520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b590", "tid": 35568, "ts": 6682645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6682817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b19fa0", "tid": 35568, "ts": 6682941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6683112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a140", "tid": 35568, "ts": 6683237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6683409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b660", "tid": 35568, "ts": 6683534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6683705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a3b0", "tid": 35568, "ts": 6683830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1be80", "tid": 35568, "ts": 6684126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c020", "tid": 35568, "ts": 6684423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ad70", "tid": 35568, "ts": 6684721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6684893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b800", "tid": 35568, "ts": 6685018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6685190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b8d0", "tid": 35568, "ts": 6685315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6685488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a6f0", "tid": 35568, "ts": 6685613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6685785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1a890", "tid": 35568, "ts": 6685910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1aca0", "tid": 35568, "ts": 6686207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1afe0", "tid": 35568, "ts": 6686503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c1c0", "tid": 35568, "ts": 6686799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6686971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b0b0", "tid": 35568, "ts": 6687095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6687267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1bf50", "tid": 35568, "ts": 6687392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6687563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1b4c0", "tid": 35568, "ts": 6687687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6687859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1c290", "tid": 35568, "ts": 6687984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6688157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1faa0", "tid": 35568, "ts": 6688282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6688453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d880", "tid": 35568, "ts": 6688579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6688750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f760", "tid": 35568, "ts": 6688875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1de30", "tid": 35568, "ts": 6689171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ef40", "tid": 35568, "ts": 6689467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1df00", "tid": 35568, "ts": 6689763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6689935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d470", "tid": 35568, "ts": 6690059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6690231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f900", "tid": 35568, "ts": 6690356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6690527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fb70", "tid": 35568, "ts": 6690676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6690849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1daf0", "tid": 35568, "ts": 6690975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6691206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e8c0", "tid": 35568, "ts": 6691388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6691562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20120", "tid": 35568, "ts": 6691688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6691861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1eda0", "tid": 35568, "ts": 6691986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6692158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ee70", "tid": 35568, "ts": 6692282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6692455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20050", "tid": 35568, "ts": 6692580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6692752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e720", "tid": 35568, "ts": 6692877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f0e0", "tid": 35568, "ts": 6693175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dbc0", "tid": 35568, "ts": 6693471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e990", "tid": 35568, "ts": 6693767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6693940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fde0", "tid": 35568, "ts": 6694065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6694239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b201f0", "tid": 35568, "ts": 6694364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6694560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e7f0", "tid": 35568, "ts": 6694684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6694857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e4b0", "tid": 35568, "ts": 6694981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6695154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dd60", "tid": 35568, "ts": 6695279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6695451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d6e0", "tid": 35568, "ts": 6695576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6695749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ea60", "tid": 35568, "ts": 6695873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e0a0", "tid": 35568, "ts": 6696171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f010", "tid": 35568, "ts": 6696468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f1b0", "tid": 35568, "ts": 6696765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6696938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e580", "tid": 35568, "ts": 6697062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6697234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b202c0", "tid": 35568, "ts": 6697359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6697531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f830", "tid": 35568, "ts": 6697656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6697828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fc40", "tid": 35568, "ts": 6697953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6698124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f690", "tid": 35568, "ts": 6698250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6698421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f9d0", "tid": 35568, "ts": 6698546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6698719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1eb30", "tid": 35568, "ts": 6698843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e170", "tid": 35568, "ts": 6699141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ec00", "tid": 35568, "ts": 6699438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1fd10", "tid": 35568, "ts": 6699735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6699907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ecd0", "tid": 35568, "ts": 6700031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6700203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f280", "tid": 35568, "ts": 6700327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6700499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d130", "tid": 35568, "ts": 6700624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6700797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e650", "tid": 35568, "ts": 6700921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f350", "tid": 35568, "ts": 6701217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f420", "tid": 35568, "ts": 6701515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1feb0", "tid": 35568, "ts": 6701810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6701983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f4f0", "tid": 35568, "ts": 6702107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6702279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1f5c0", "tid": 35568, "ts": 6702403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6702575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1ff80", "tid": 35568, "ts": 6702700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6702872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dfd0", "tid": 35568, "ts": 6702996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6703169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20390", "tid": 35568, "ts": 6703351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6703524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20460", "tid": 35568, "ts": 6703649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6703823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d200", "tid": 35568, "ts": 6703948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6704119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1dc90", "tid": 35568, "ts": 6704244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6704416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e310", "tid": 35568, "ts": 6704541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6704883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d2d0", "tid": 35568, "ts": 6705028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6705201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d7b0", "tid": 35568, "ts": 6705326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6705499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d3a0", "tid": 35568, "ts": 6705625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6705798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d540", "tid": 35568, "ts": 6705923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6706095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d610", "tid": 35568, "ts": 6706221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6706394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1d950", "tid": 35568, "ts": 6706582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6706758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1da20", "tid": 35568, "ts": 6707041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6707274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e240", "tid": 35568, "ts": 6707493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6707715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b1e3e0", "tid": 35568, "ts": 6707933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6708115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21d90", "tid": 35568, "ts": 6708241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6708413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21300", "tid": 35568, "ts": 6708539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6708711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23110", "tid": 35568, "ts": 6708836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23520", "tid": 35568, "ts": 6709134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b221a0", "tid": 35568, "ts": 6709432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21160", "tid": 35568, "ts": 6709729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6709902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21710", "tid": 35568, "ts": 6710028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6710201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22270", "tid": 35568, "ts": 6710325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6710498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b232b0", "tid": 35568, "ts": 6710622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6710794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21980", "tid": 35568, "ts": 6710918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b217e0", "tid": 35568, "ts": 6711216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21640", "tid": 35568, "ts": 6711512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21570", "tid": 35568, "ts": 6711810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6711982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23040", "tid": 35568, "ts": 6712107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6712279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21a50", "tid": 35568, "ts": 6712404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6712576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20870", "tid": 35568, "ts": 6712701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6712873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21cc0", "tid": 35568, "ts": 6712998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6713169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20530", "tid": 35568, "ts": 6713294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6713467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23380", "tid": 35568, "ts": 6713593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6713764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22340", "tid": 35568, "ts": 6713891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22410", "tid": 35568, "ts": 6714188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20940", "tid": 35568, "ts": 6714485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b236c0", "tid": 35568, "ts": 6714782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6714995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20600", "tid": 35568, "ts": 6715126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6715361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b218b0", "tid": 35568, "ts": 6715489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6715665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22d00", "tid": 35568, "ts": 6715791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6715972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21e60", "tid": 35568, "ts": 6716108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6716280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21f30", "tid": 35568, "ts": 6716404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6716576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b224e0", "tid": 35568, "ts": 6716701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6716873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21b20", "tid": 35568, "ts": 6716998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6717170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22c30", "tid": 35568, "ts": 6717295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6717469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b207a0", "tid": 35568, "ts": 6717594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6717766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21bf0", "tid": 35568, "ts": 6717891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20d50", "tid": 35568, "ts": 6718190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22000", "tid": 35568, "ts": 6718487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b225b0", "tid": 35568, "ts": 6718784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6718956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21230", "tid": 35568, "ts": 6719081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6719252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b220d0", "tid": 35568, "ts": 6719377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6719550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20c80", "tid": 35568, "ts": 6719709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6719882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b231e0", "tid": 35568, "ts": 6720008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6720179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22680", "tid": 35568, "ts": 6720304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6720476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22750", "tid": 35568, "ts": 6720601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6720775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20a10", "tid": 35568, "ts": 6720900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b228f0", "tid": 35568, "ts": 6721196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b214a0", "tid": 35568, "ts": 6721495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22820", "tid": 35568, "ts": 6721792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6721964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b229c0", "tid": 35568, "ts": 6722089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6722260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22a90", "tid": 35568, "ts": 6722397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6722570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23790", "tid": 35568, "ts": 6722695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6722867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22f70", "tid": 35568, "ts": 6722992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6723164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23450", "tid": 35568, "ts": 6723288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6723504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20e20", "tid": 35568, "ts": 6723629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6723802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b235f0", "tid": 35568, "ts": 6723927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22b60", "tid": 35568, "ts": 6724224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22dd0", "tid": 35568, "ts": 6724521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20ef0", "tid": 35568, "ts": 6724818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6724990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b22ea0", "tid": 35568, "ts": 6725115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6725286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23860", "tid": 35568, "ts": 6725411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6725582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b206d0", "tid": 35568, "ts": 6725707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6725879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20ae0", "tid": 35568, "ts": 6726004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6726176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20bb0", "tid": 35568, "ts": 6726301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6726473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b20fc0", "tid": 35568, "ts": 6726598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6726770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b21090", "tid": 35568, "ts": 6726894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b213d0", "tid": 35568, "ts": 6727191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26ac0", "tid": 35568, "ts": 6727488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b247d0", "tid": 35568, "ts": 6727786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6727958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23d40", "tid": 35568, "ts": 6728083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6728255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b255a0", "tid": 35568, "ts": 6728380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6728552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26b90", "tid": 35568, "ts": 6728677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6728848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b259b0", "tid": 35568, "ts": 6728972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6729144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24ff0", "tid": 35568, "ts": 6729269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6729439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23ee0", "tid": 35568, "ts": 6729564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6729736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25e90", "tid": 35568, "ts": 6729861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25330", "tid": 35568, "ts": 6730158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24220", "tid": 35568, "ts": 6730454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25f60", "tid": 35568, "ts": 6730750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6730923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b250c0", "tid": 35568, "ts": 6731048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6731220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23c70", "tid": 35568, "ts": 6731345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6731517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25190", "tid": 35568, "ts": 6731642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6731813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23ba0", "tid": 35568, "ts": 6731937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24be0", "tid": 35568, "ts": 6732234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26030", "tid": 35568, "ts": 6732531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24cb0", "tid": 35568, "ts": 6732828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6732999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b265e0", "tid": 35568, "ts": 6733124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6733296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24150", "tid": 35568, "ts": 6733422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6733594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25a80", "tid": 35568, "ts": 6733719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6733890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24560", "tid": 35568, "ts": 6734015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6734187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b262a0", "tid": 35568, "ts": 6734312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6734484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24080", "tid": 35568, "ts": 6734609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6734781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24b10", "tid": 35568, "ts": 6734906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b266b0", "tid": 35568, "ts": 6735204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b242f0", "tid": 35568, "ts": 6735500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25260", "tid": 35568, "ts": 6735796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6735968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26510", "tid": 35568, "ts": 6736092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6736264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25400", "tid": 35568, "ts": 6736389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6736562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b254d0", "tid": 35568, "ts": 6736686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6736858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23fb0", "tid": 35568, "ts": 6736983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6737155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26c60", "tid": 35568, "ts": 6737280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6737453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b243c0", "tid": 35568, "ts": 6737577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6737748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b261d0", "tid": 35568, "ts": 6737873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6738090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25c20", "tid": 35568, "ts": 6738284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6738457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25670", "tid": 35568, "ts": 6738583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6738755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25740", "tid": 35568, "ts": 6738881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23930", "tid": 35568, "ts": 6739179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26370", "tid": 35568, "ts": 6739477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25810", "tid": 35568, "ts": 6739775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6739948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b258e0", "tid": 35568, "ts": 6740073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6740244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23e10", "tid": 35568, "ts": 6740369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6740542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b248a0", "tid": 35568, "ts": 6740666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6740838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25b50", "tid": 35568, "ts": 6740963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6741135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26780", "tid": 35568, "ts": 6741260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6741432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25cf0", "tid": 35568, "ts": 6741557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6741730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24630", "tid": 35568, "ts": 6741854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24490", "tid": 35568, "ts": 6742150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24700", "tid": 35568, "ts": 6742446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24970", "tid": 35568, "ts": 6742743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6742916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24d80", "tid": 35568, "ts": 6743042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6743214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b25dc0", "tid": 35568, "ts": 6743340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6743512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24a40", "tid": 35568, "ts": 6743637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6743808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26100", "tid": 35568, "ts": 6743933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26440", "tid": 35568, "ts": 6744231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26850", "tid": 35568, "ts": 6744528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24e50", "tid": 35568, "ts": 6744824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6744997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b24f20", "tid": 35568, "ts": 6745123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6745295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26920", "tid": 35568, "ts": 6745421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6745593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b269f0", "tid": 35568, "ts": 6745718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6745890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23a00", "tid": 35568, "ts": 6746016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6746187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b23ad0", "tid": 35568, "ts": 6746312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6746484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29ec0", "tid": 35568, "ts": 6746610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6746781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28590", "tid": 35568, "ts": 6746906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6747078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27ca0", "tid": 35568, "ts": 6747203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6747376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27550", "tid": 35568, "ts": 6747501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6747674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b290f0", "tid": 35568, "ts": 6747846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28250", "tid": 35568, "ts": 6748145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28e80", "tid": 35568, "ts": 6748442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28730", "tid": 35568, "ts": 6748738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6748910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28660", "tid": 35568, "ts": 6749035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6749208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28800", "tid": 35568, "ts": 6749333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6749505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b288d0", "tid": 35568, "ts": 6749631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6749803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27620", "tid": 35568, "ts": 6749928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a060", "tid": 35568, "ts": 6750226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29f90", "tid": 35568, "ts": 6750522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28c10", "tid": 35568, "ts": 6750819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6750991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b280b0", "tid": 35568, "ts": 6751116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6751288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29500", "tid": 35568, "ts": 6751414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6751585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28db0", "tid": 35568, "ts": 6751710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6751883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29910", "tid": 35568, "ts": 6752009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6752182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b299e0", "tid": 35568, "ts": 6752307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6752479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29360", "tid": 35568, "ts": 6752604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6752776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26d30", "tid": 35568, "ts": 6752901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6753074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b289a0", "tid": 35568, "ts": 6753199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6753371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b284c0", "tid": 35568, "ts": 6753495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6753728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26e00", "tid": 35568, "ts": 6753935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6754183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27e40", "tid": 35568, "ts": 6754322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6754517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28a70", "tid": 35568, "ts": 6754667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6754872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28b40", "tid": 35568, "ts": 6755011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6755274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27070", "tid": 35568, "ts": 6755403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6755598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27f10", "tid": 35568, "ts": 6755757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6755996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27a30", "tid": 35568, "ts": 6756148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6756321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28f50", "tid": 35568, "ts": 6756445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6756618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28ce0", "tid": 35568, "ts": 6756742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6756915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b273b0", "tid": 35568, "ts": 6757066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6757239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27fe0", "tid": 35568, "ts": 6757365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6757538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27b00", "tid": 35568, "ts": 6757665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6757840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27140", "tid": 35568, "ts": 6757967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6758141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28320", "tid": 35568, "ts": 6758268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6758442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b28180", "tid": 35568, "ts": 6758570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6758744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b295d0", "tid": 35568, "ts": 6758871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29020", "tid": 35568, "ts": 6759173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b291c0", "tid": 35568, "ts": 6759476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29290", "tid": 35568, "ts": 6759777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6759951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29430", "tid": 35568, "ts": 6760078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6760253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b283f0", "tid": 35568, "ts": 6760381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6760555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b296a0", "tid": 35568, "ts": 6760683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6760858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29770", "tid": 35568, "ts": 6760986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6761161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29840", "tid": 35568, "ts": 6761288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6761462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27bd0", "tid": 35568, "ts": 6761589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6761762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29ab0", "tid": 35568, "ts": 6761888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29b80", "tid": 35568, "ts": 6762188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29c50", "tid": 35568, "ts": 6762513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29d20", "tid": 35568, "ts": 6762813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6762985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b29df0", "tid": 35568, "ts": 6763110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6763328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26ed0", "tid": 35568, "ts": 6763467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6763676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b26fa0", "tid": 35568, "ts": 6763801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6763973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27210", "tid": 35568, "ts": 6764098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6764271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b272e0", "tid": 35568, "ts": 6764397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6764568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27480", "tid": 35568, "ts": 6764694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6764866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b276f0", "tid": 35568, "ts": 6764991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6765163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b277c0", "tid": 35568, "ts": 6765288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6765461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27890", "tid": 35568, "ts": 6765585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6765758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27d70", "tid": 35568, "ts": 6765883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b27960", "tid": 35568, "ts": 6766182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c760", "tid": 35568, "ts": 6766479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b0a0", "tid": 35568, "ts": 6766776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6766948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cb70", "tid": 35568, "ts": 6767072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6767245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b990", "tid": 35568, "ts": 6767369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6767541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a130", "tid": 35568, "ts": 6767666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6767838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d390", "tid": 35568, "ts": 6767964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6768135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d2c0", "tid": 35568, "ts": 6768261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6768433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2afd0", "tid": 35568, "ts": 6768558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6768729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b240", "tid": 35568, "ts": 6768855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b3e0", "tid": 35568, "ts": 6769152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c830", "tid": 35568, "ts": 6769473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a610", "tid": 35568, "ts": 6769771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6769944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d460", "tid": 35568, "ts": 6770070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6770241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bda0", "tid": 35568, "ts": 6770365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6770537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ceb0", "tid": 35568, "ts": 6770662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6770834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b580", "tid": 35568, "ts": 6770958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6771131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2be70", "tid": 35568, "ts": 6771256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6771428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a6e0", "tid": 35568, "ts": 6771552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6771723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b4b0", "tid": 35568, "ts": 6771847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2aaf0", "tid": 35568, "ts": 6772146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bb30", "tid": 35568, "ts": 6772444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c350", "tid": 35568, "ts": 6772804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6772976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cde0", "tid": 35568, "ts": 6773103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6773275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bc00", "tid": 35568, "ts": 6773401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6773573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c280", "tid": 35568, "ts": 6773697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6773870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c900", "tid": 35568, "ts": 6773996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6774167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b170", "tid": 35568, "ts": 6774293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6774464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ba60", "tid": 35568, "ts": 6774589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6774762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bf40", "tid": 35568, "ts": 6774888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a200", "tid": 35568, "ts": 6775185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2af00", "tid": 35568, "ts": 6775482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cd10", "tid": 35568, "ts": 6775779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6775951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ad60", "tid": 35568, "ts": 6776076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6776248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c010", "tid": 35568, "ts": 6776373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6776545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c4f0", "tid": 35568, "ts": 6776714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6776887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c420", "tid": 35568, "ts": 6777013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6777186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a2d0", "tid": 35568, "ts": 6777311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6777483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a3a0", "tid": 35568, "ts": 6777608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6777779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c1b0", "tid": 35568, "ts": 6777904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b310", "tid": 35568, "ts": 6778200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cc40", "tid": 35568, "ts": 6778498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a880", "tid": 35568, "ts": 6778795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6778967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2cf80", "tid": 35568, "ts": 6779092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6779264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c5c0", "tid": 35568, "ts": 6779389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6779563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2bcd0", "tid": 35568, "ts": 6779688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6779861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b650", "tid": 35568, "ts": 6779986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6780158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b720", "tid": 35568, "ts": 6780283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6780455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a950", "tid": 35568, "ts": 6780580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6780751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c0e0", "tid": 35568, "ts": 6780876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2caa0", "tid": 35568, "ts": 6781173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a470", "tid": 35568, "ts": 6781516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c690", "tid": 35568, "ts": 6781815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6781988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2c9d0", "tid": 35568, "ts": 6782112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6782284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d050", "tid": 35568, "ts": 6782410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6782583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d120", "tid": 35568, "ts": 6782708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6782880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d1f0", "tid": 35568, "ts": 6783005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6783177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a540", "tid": 35568, "ts": 6783302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6783474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2a7b0", "tid": 35568, "ts": 6783598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6783770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2aa20", "tid": 35568, "ts": 6783895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2abc0", "tid": 35568, "ts": 6784193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b7f0", "tid": 35568, "ts": 6784490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ac90", "tid": 35568, "ts": 6784788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6784972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ae30", "tid": 35568, "ts": 6785098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6785270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2b8c0", "tid": 35568, "ts": 6785394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6785566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ecc0", "tid": 35568, "ts": 6785692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6785863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d870", "tid": 35568, "ts": 6785988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6786161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ea50", "tid": 35568, "ts": 6786286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6786458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e640", "tid": 35568, "ts": 6786583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6786755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e3d0", "tid": 35568, "ts": 6786880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dae0", "tid": 35568, "ts": 6787177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ee60", "tid": 35568, "ts": 6787474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ef30", "tid": 35568, "ts": 6787771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6787944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e7e0", "tid": 35568, "ts": 6788069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6788240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30450", "tid": 35568, "ts": 6788366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6788538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e090", "tid": 35568, "ts": 6788663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6788835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e570", "tid": 35568, "ts": 6788960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6789131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f820", "tid": 35568, "ts": 6789256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6789429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e710", "tid": 35568, "ts": 6789554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6789725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dd50", "tid": 35568, "ts": 6789850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f1a0", "tid": 35568, "ts": 6790147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e980", "tid": 35568, "ts": 6790444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f5b0", "tid": 35568, "ts": 6790739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6790912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f8f0", "tid": 35568, "ts": 6791038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6791210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d940", "tid": 35568, "ts": 6791335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6791507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30380", "tid": 35568, "ts": 6791632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6791805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e160", "tid": 35568, "ts": 6791930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ed90", "tid": 35568, "ts": 6792228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30790", "tid": 35568, "ts": 6792525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e8b0", "tid": 35568, "ts": 6792822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6792994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b301e0", "tid": 35568, "ts": 6793119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6793292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fd00", "tid": 35568, "ts": 6793490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6793662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2eb20", "tid": 35568, "ts": 6793787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6793960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fc30", "tid": 35568, "ts": 6794085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6794301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2de20", "tid": 35568, "ts": 6794426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6794621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f410", "tid": 35568, "ts": 6794746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6794918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ebf0", "tid": 35568, "ts": 6795043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6795215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f270", "tid": 35568, "ts": 6795339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6795511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f340", "tid": 35568, "ts": 6795636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6795808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f000", "tid": 35568, "ts": 6795933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f0d0", "tid": 35568, "ts": 6796231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f750", "tid": 35568, "ts": 6796527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b302b0", "tid": 35568, "ts": 6796824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6796996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f4e0", "tid": 35568, "ts": 6797121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6797293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30520", "tid": 35568, "ts": 6797418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6797590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b305f0", "tid": 35568, "ts": 6797715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6797886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dc80", "tid": 35568, "ts": 6798010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6798183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f680", "tid": 35568, "ts": 6798308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6798479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e300", "tid": 35568, "ts": 6798604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6798776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d530", "tid": 35568, "ts": 6798900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dbb0", "tid": 35568, "ts": 6799196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b306c0", "tid": 35568, "ts": 6799492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2f9c0", "tid": 35568, "ts": 6799789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6799961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e4a0", "tid": 35568, "ts": 6800085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6800257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fa90", "tid": 35568, "ts": 6800397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6800648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30860", "tid": 35568, "ts": 6800775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6800946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fb60", "tid": 35568, "ts": 6801072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6801244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2e230", "tid": 35568, "ts": 6801368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6801539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fdd0", "tid": 35568, "ts": 6801664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6801835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2def0", "tid": 35568, "ts": 6801960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6802132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2fea0", "tid": 35568, "ts": 6802256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6802429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d600", "tid": 35568, "ts": 6802554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6802726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2ff70", "tid": 35568, "ts": 6802850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30040", "tid": 35568, "ts": 6803147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30110", "tid": 35568, "ts": 6803443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d6d0", "tid": 35568, "ts": 6803740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6803912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2d7a0", "tid": 35568, "ts": 6804036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6804209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2da10", "tid": 35568, "ts": 6804334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6804506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b2dfc0", "tid": 35568, "ts": 6804631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6804802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31a40", "tid": 35568, "ts": 6804927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30a00", "tid": 35568, "ts": 6805222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32670", "tid": 35568, "ts": 6805519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30c70", "tid": 35568, "ts": 6805815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6805987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b332a0", "tid": 35568, "ts": 6806112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6806284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31080", "tid": 35568, "ts": 6806408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6806580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32a80", "tid": 35568, "ts": 6806705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6806876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32330", "tid": 35568, "ts": 6807001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6807172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33370", "tid": 35568, "ts": 6807297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6807468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33440", "tid": 35568, "ts": 6807593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6807764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32cf0", "tid": 35568, "ts": 6807889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31b10", "tid": 35568, "ts": 6808185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32dc0", "tid": 35568, "ts": 6808481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31560", "tid": 35568, "ts": 6808777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6808949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32260", "tid": 35568, "ts": 6809074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6809244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31150", "tid": 35568, "ts": 6809369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6809541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30e10", "tid": 35568, "ts": 6809665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6809837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33c60", "tid": 35568, "ts": 6809961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6810133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31220", "tid": 35568, "ts": 6810259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6810430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31490", "tid": 35568, "ts": 6810555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6810728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32b50", "tid": 35568, "ts": 6810853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b335e0", "tid": 35568, "ts": 6811150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32740", "tid": 35568, "ts": 6811446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b329b0", "tid": 35568, "ts": 6811743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6811915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32190", "tid": 35568, "ts": 6812040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6812212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31be0", "tid": 35568, "ts": 6812336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6812507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31cb0", "tid": 35568, "ts": 6812632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6812804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30ba0", "tid": 35568, "ts": 6812929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b312f0", "tid": 35568, "ts": 6813227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31700", "tid": 35568, "ts": 6813525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30930", "tid": 35568, "ts": 6813823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6813996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30d40", "tid": 35568, "ts": 6814166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6814339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31e50", "tid": 35568, "ts": 6814465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6814637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32c20", "tid": 35568, "ts": 6814763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6814934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30ee0", "tid": 35568, "ts": 6815134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6815307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32400", "tid": 35568, "ts": 6815433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6815606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b317d0", "tid": 35568, "ts": 6815730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6815903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32e90", "tid": 35568, "ts": 6816027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6816335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b336b0", "tid": 35568, "ts": 6816585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6816835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b328e0", "tid": 35568, "ts": 6816974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6817251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33100", "tid": 35568, "ts": 6817457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6817630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33b90", "tid": 35568, "ts": 6817755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6817927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31d80", "tid": 35568, "ts": 6818053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6818225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b318a0", "tid": 35568, "ts": 6818350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6818524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30fb0", "tid": 35568, "ts": 6818649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6818821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b313c0", "tid": 35568, "ts": 6818946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6819119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31f20", "tid": 35568, "ts": 6819244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6819416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31970", "tid": 35568, "ts": 6819542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6819713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32810", "tid": 35568, "ts": 6819839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31630", "tid": 35568, "ts": 6820136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b324d0", "tid": 35568, "ts": 6820434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b339f0", "tid": 35568, "ts": 6820732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6820904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b31ff0", "tid": 35568, "ts": 6821030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6821202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b320c0", "tid": 35568, "ts": 6821327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6821499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b325a0", "tid": 35568, "ts": 6821625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6821797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b32f60", "tid": 35568, "ts": 6821923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33030", "tid": 35568, "ts": 6822220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b30ad0", "tid": 35568, "ts": 6822518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b331d0", "tid": 35568, "ts": 6822815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6822986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33780", "tid": 35568, "ts": 6823111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6823283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33510", "tid": 35568, "ts": 6823407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6823579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33850", "tid": 35568, "ts": 6823704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6823876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33920", "tid": 35568, "ts": 6824001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6824172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33ac0", "tid": 35568, "ts": 6824297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6824469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34620", "tid": 35568, "ts": 6824594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6824767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34d70", "tid": 35568, "ts": 6824893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36f90", "tid": 35568, "ts": 6825188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33fa0", "tid": 35568, "ts": 6825485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36020", "tid": 35568, "ts": 6825806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6825977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35800", "tid": 35568, "ts": 6826102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6826275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36500", "tid": 35568, "ts": 6826401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6826571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34480", "tid": 35568, "ts": 6826697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6826869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36290", "tid": 35568, "ts": 6826993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6827165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34210", "tid": 35568, "ts": 6827290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6827463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36c50", "tid": 35568, "ts": 6827587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6827759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36df0", "tid": 35568, "ts": 6827884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35c10", "tid": 35568, "ts": 6828181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b360f0", "tid": 35568, "ts": 6828477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33d30", "tid": 35568, "ts": 6828774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6828946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b359a0", "tid": 35568, "ts": 6829071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6829243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b358d0", "tid": 35568, "ts": 6829368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6829540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b342e0", "tid": 35568, "ts": 6829665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6829837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35ce0", "tid": 35568, "ts": 6829962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6830134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37060", "tid": 35568, "ts": 6830259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6830431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34890", "tid": 35568, "ts": 6830557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6830728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b346f0", "tid": 35568, "ts": 6830853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34070", "tid": 35568, "ts": 6831150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b361c0", "tid": 35568, "ts": 6831446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34f10", "tid": 35568, "ts": 6831742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6831927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34550", "tid": 35568, "ts": 6832053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6832225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b347c0", "tid": 35568, "ts": 6832351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6832523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34b00", "tid": 35568, "ts": 6832648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6832819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35730", "tid": 35568, "ts": 6832945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6833117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35660", "tid": 35568, "ts": 6833242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6833413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35db0", "tid": 35568, "ts": 6833538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6833709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35b40", "tid": 35568, "ts": 6833835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36360", "tid": 35568, "ts": 6834161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35e80", "tid": 35568, "ts": 6834458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34fe0", "tid": 35568, "ts": 6834756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6834928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33e00", "tid": 35568, "ts": 6835053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6835225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35f50", "tid": 35568, "ts": 6835349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6835521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b350b0", "tid": 35568, "ts": 6835645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6835817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36430", "tid": 35568, "ts": 6835943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6836115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35a70", "tid": 35568, "ts": 6836240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6836413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b33ed0", "tid": 35568, "ts": 6836538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6836710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b365d0", "tid": 35568, "ts": 6836834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b366a0", "tid": 35568, "ts": 6837132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36770", "tid": 35568, "ts": 6837428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34140", "tid": 35568, "ts": 6837726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6837897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36840", "tid": 35568, "ts": 6838022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6838194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36910", "tid": 35568, "ts": 6838319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6838491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b343b0", "tid": 35568, "ts": 6838615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6838786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36ab0", "tid": 35568, "ts": 6838910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b369e0", "tid": 35568, "ts": 6839207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34960", "tid": 35568, "ts": 6839504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34a30", "tid": 35568, "ts": 6839802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6839975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35590", "tid": 35568, "ts": 6840101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6840273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34bd0", "tid": 35568, "ts": 6840398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6840570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34ca0", "tid": 35568, "ts": 6840695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6840867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36b80", "tid": 35568, "ts": 6840992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6841164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35180", "tid": 35568, "ts": 6841352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6841524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b34e40", "tid": 35568, "ts": 6841649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6841821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35250", "tid": 35568, "ts": 6841946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6842117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36d20", "tid": 35568, "ts": 6842243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6842414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b35320", "tid": 35568, "ts": 6842538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6842710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b353f0", "tid": 35568, "ts": 6842835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b36ec0", "tid": 35568, "ts": 6843132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b354c0", "tid": 35568, "ts": 6843429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37880", "tid": 35568, "ts": 6843726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6843896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38990", "tid": 35568, "ts": 6844021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6844193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b384b0", "tid": 35568, "ts": 6844318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6844489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37950", "tid": 35568, "ts": 6844615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6844786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37d60", "tid": 35568, "ts": 6844911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38a60", "tid": 35568, "ts": 6845207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38b30", "tid": 35568, "ts": 6845503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37a20", "tid": 35568, "ts": 6845801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6845973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38c00", "tid": 35568, "ts": 6846098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6846270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37fd0", "tid": 35568, "ts": 6846395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6846567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38650", "tid": 35568, "ts": 6846693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6846865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a120", "tid": 35568, "ts": 6846990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6847162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a2c0", "tid": 35568, "ts": 6847288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6847573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37470", "tid": 35568, "ts": 6847699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6847871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38cd0", "tid": 35568, "ts": 6847996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6848169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37af0", "tid": 35568, "ts": 6848294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6848466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b394f0", "tid": 35568, "ts": 6848591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6848762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37e30", "tid": 35568, "ts": 6848887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b376e0", "tid": 35568, "ts": 6849185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38da0", "tid": 35568, "ts": 6849482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39de0", "tid": 35568, "ts": 6849779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6849950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38f40", "tid": 35568, "ts": 6850075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6850247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38e70", "tid": 35568, "ts": 6850372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6850544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b388c0", "tid": 35568, "ts": 6850669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6850840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38310", "tid": 35568, "ts": 6850966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6851138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37f00", "tid": 35568, "ts": 6851264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6851436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b377b0", "tid": 35568, "ts": 6851560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6851731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38170", "tid": 35568, "ts": 6851856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39c40", "tid": 35568, "ts": 6852154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39280", "tid": 35568, "ts": 6852450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39f80", "tid": 35568, "ts": 6852747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6852919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39eb0", "tid": 35568, "ts": 6853075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6853248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39010", "tid": 35568, "ts": 6853374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6853544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b383e0", "tid": 35568, "ts": 6853670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6853841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a390", "tid": 35568, "ts": 6853967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6854138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a1f0", "tid": 35568, "ts": 6854264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6854436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39d10", "tid": 35568, "ts": 6854562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6854734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38580", "tid": 35568, "ts": 6854860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39350", "tid": 35568, "ts": 6855157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b390e0", "tid": 35568, "ts": 6855453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b391b0", "tid": 35568, "ts": 6855750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6855921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a460", "tid": 35568, "ts": 6856046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6856219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37130", "tid": 35568, "ts": 6856344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6856515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39420", "tid": 35568, "ts": 6856640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6856812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b380a0", "tid": 35568, "ts": 6856937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38240", "tid": 35568, "ts": 6857233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b38720", "tid": 35568, "ts": 6857530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a050", "tid": 35568, "ts": 6857826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6857998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b395c0", "tid": 35568, "ts": 6858124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6858295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39aa0", "tid": 35568, "ts": 6858420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6858592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37bc0", "tid": 35568, "ts": 6858717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6858889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39690", "tid": 35568, "ts": 6859015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6859187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37200", "tid": 35568, "ts": 6859312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6859485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b387f0", "tid": 35568, "ts": 6859610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6859781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39760", "tid": 35568, "ts": 6859907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6860079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39b70", "tid": 35568, "ts": 6860207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6860502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39830", "tid": 35568, "ts": 6860740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6860914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b39900", "tid": 35568, "ts": 6861041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6861213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37610", "tid": 35568, "ts": 6861338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6861511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b399d0", "tid": 35568, "ts": 6861636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6861809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b372d0", "tid": 35568, "ts": 6861935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6862107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b373a0", "tid": 35568, "ts": 6862232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6862404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37540", "tid": 35568, "ts": 6862530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6862702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b37c90", "tid": 35568, "ts": 6862826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6863026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ad50", "tid": 35568, "ts": 6863278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6863539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3aa10", "tid": 35568, "ts": 6863715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6863998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c410", "tid": 35568, "ts": 6864189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6864464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ba50", "tid": 35568, "ts": 6864642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6864962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c680", "tid": 35568, "ts": 6865138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6865401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a940", "tid": 35568, "ts": 6865600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6865862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c340", "tid": 35568, "ts": 6866047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6866378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c270", "tid": 35568, "ts": 6866552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6866809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ae20", "tid": 35568, "ts": 6866981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6867236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b300", "tid": 35568, "ts": 6867407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6867661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b7e0", "tid": 35568, "ts": 6867834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6868088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b230", "tid": 35568, "ts": 6868248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6868422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d040", "tid": 35568, "ts": 6868549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6868722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cea0", "tid": 35568, "ts": 6868848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c4e0", "tid": 35568, "ts": 6869146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b640", "tid": 35568, "ts": 6869443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a6d0", "tid": 35568, "ts": 6869740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6869911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a530", "tid": 35568, "ts": 6870036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6870208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cdd0", "tid": 35568, "ts": 6870334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6870507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3aef0", "tid": 35568, "ts": 6870634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6870805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c5b0", "tid": 35568, "ts": 6870931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a600", "tid": 35568, "ts": 6871227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d2b0", "tid": 35568, "ts": 6871524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c1a0", "tid": 35568, "ts": 6871822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6871994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a870", "tid": 35568, "ts": 6872120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6872292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bd90", "tid": 35568, "ts": 6872417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6872590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b980", "tid": 35568, "ts": 6872717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6872889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c750", "tid": 35568, "ts": 6873015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6873187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c820", "tid": 35568, "ts": 6873312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6873483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3afc0", "tid": 35568, "ts": 6873608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6873780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b3d0", "tid": 35568, "ts": 6873905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b090", "tid": 35568, "ts": 6874202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c8f0", "tid": 35568, "ts": 6874499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3be60", "tid": 35568, "ts": 6874795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6874968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cc30", "tid": 35568, "ts": 6875094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6875265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d380", "tid": 35568, "ts": 6875391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6875562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c9c0", "tid": 35568, "ts": 6875689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6875861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b160", "tid": 35568, "ts": 6875986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6876159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b4a0", "tid": 35568, "ts": 6876285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6876456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bf30", "tid": 35568, "ts": 6876581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6876753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ca90", "tid": 35568, "ts": 6876879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d520", "tid": 35568, "ts": 6877177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3a7a0", "tid": 35568, "ts": 6877475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cf70", "tid": 35568, "ts": 6877773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6877944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c000", "tid": 35568, "ts": 6878069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6878241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cb60", "tid": 35568, "ts": 6878367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6878538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3aae0", "tid": 35568, "ts": 6878727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6878898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b570", "tid": 35568, "ts": 6879026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6879198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b8b0", "tid": 35568, "ts": 6879324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6879497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d110", "tid": 35568, "ts": 6879622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6879794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3b710", "tid": 35568, "ts": 6879920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bb20", "tid": 35568, "ts": 6880218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bbf0", "tid": 35568, "ts": 6880517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3bcc0", "tid": 35568, "ts": 6880814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6880985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3c0d0", "tid": 35568, "ts": 6881111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6881283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3abb0", "tid": 35568, "ts": 6881408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6881580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3cd00", "tid": 35568, "ts": 6881768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6881940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ac80", "tid": 35568, "ts": 6882066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6882238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d450", "tid": 35568, "ts": 6882406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6882578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d1e0", "tid": 35568, "ts": 6882703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6882876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d5f0", "tid": 35568, "ts": 6883001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6883172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d6c0", "tid": 35568, "ts": 6883297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6883469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d790", "tid": 35568, "ts": 6883594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6883765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d860", "tid": 35568, "ts": 6883891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40370", "tid": 35568, "ts": 6884188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f9b0", "tid": 35568, "ts": 6884483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fdc0", "tid": 35568, "ts": 6884780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6884951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dba0", "tid": 35568, "ts": 6885077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6885248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dc70", "tid": 35568, "ts": 6885373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6885544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dee0", "tid": 35568, "ts": 6885669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6885841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3eff0", "tid": 35568, "ts": 6885966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6886138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e150", "tid": 35568, "ts": 6886262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6886434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b402a0", "tid": 35568, "ts": 6886559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6886731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dfb0", "tid": 35568, "ts": 6886857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dd40", "tid": 35568, "ts": 6887154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e7d0", "tid": 35568, "ts": 6887451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40510", "tid": 35568, "ts": 6887747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6887919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e700", "tid": 35568, "ts": 6888044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6888216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ebe0", "tid": 35568, "ts": 6888341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6888513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f0c0", "tid": 35568, "ts": 6888638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6888810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fa80", "tid": 35568, "ts": 6888935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40440", "tid": 35568, "ts": 6889232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3d930", "tid": 35568, "ts": 6889530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ecb0", "tid": 35568, "ts": 6889826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6889999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ea40", "tid": 35568, "ts": 6890124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6890296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40850", "tid": 35568, "ts": 6890421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6890592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b405e0", "tid": 35568, "ts": 6890718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6890890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e8a0", "tid": 35568, "ts": 6891016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6891187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ee50", "tid": 35568, "ts": 6891312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6891484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f260", "tid": 35568, "ts": 6891608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6891780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ef20", "tid": 35568, "ts": 6891904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fc20", "tid": 35568, "ts": 6892202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3de10", "tid": 35568, "ts": 6892500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e080", "tid": 35568, "ts": 6892796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6892968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fb50", "tid": 35568, "ts": 6893093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6893264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e970", "tid": 35568, "ts": 6893389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6893561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ed80", "tid": 35568, "ts": 6893686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6893857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f190", "tid": 35568, "ts": 6893982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6894154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3eb10", "tid": 35568, "ts": 6894344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6894576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3dad0", "tid": 35568, "ts": 6894713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6894885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b406b0", "tid": 35568, "ts": 6895012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6895183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3da00", "tid": 35568, "ts": 6895309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6895481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b401d0", "tid": 35568, "ts": 6895606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6895779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e220", "tid": 35568, "ts": 6895904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6896075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40780", "tid": 35568, "ts": 6896201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6896373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fcf0", "tid": 35568, "ts": 6896498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6896669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40920", "tid": 35568, "ts": 6897455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6897628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f330", "tid": 35568, "ts": 6897755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6897928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f400", "tid": 35568, "ts": 6898054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6898225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e2f0", "tid": 35568, "ts": 6898351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6898522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b409f0", "tid": 35568, "ts": 6898648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6898821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f5a0", "tid": 35568, "ts": 6898947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6899119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3fe90", "tid": 35568, "ts": 6899244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6899416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3ff60", "tid": 35568, "ts": 6899542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6899714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40b90", "tid": 35568, "ts": 6899840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f810", "tid": 35568, "ts": 6900138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40030", "tid": 35568, "ts": 6900435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f4d0", "tid": 35568, "ts": 6900733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6900905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e490", "tid": 35568, "ts": 6901031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6901202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40100", "tid": 35568, "ts": 6901327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6901498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40ac0", "tid": 35568, "ts": 6901624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6901796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40c60", "tid": 35568, "ts": 6901922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e3c0", "tid": 35568, "ts": 6902219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e560", "tid": 35568, "ts": 6902516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f670", "tid": 35568, "ts": 6902814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6902986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f740", "tid": 35568, "ts": 6903111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6903283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3f8e0", "tid": 35568, "ts": 6903409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6903580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b3e630", "tid": 35568, "ts": 6903705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6903876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40d30", "tid": 35568, "ts": 6904002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6904174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42c10", "tid": 35568, "ts": 6904299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6904471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42800", "tid": 35568, "ts": 6904598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6904769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42660", "tid": 35568, "ts": 6904895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43f90", "tid": 35568, "ts": 6905194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b420b0", "tid": 35568, "ts": 6905491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42180", "tid": 35568, "ts": 6905789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6905961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42250", "tid": 35568, "ts": 6906087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6906259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b416f0", "tid": 35568, "ts": 6906384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6906556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41a30", "tid": 35568, "ts": 6906681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6906854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42ce0", "tid": 35568, "ts": 6906979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6907150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b423f0", "tid": 35568, "ts": 6907276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6907448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41f10", "tid": 35568, "ts": 6907574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6907746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41140", "tid": 35568, "ts": 6907871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b428d0", "tid": 35568, "ts": 6908169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41210", "tid": 35568, "ts": 6908466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42b40", "tid": 35568, "ts": 6908762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6908934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41fe0", "tid": 35568, "ts": 6909059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6909232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40fa0", "tid": 35568, "ts": 6909358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6909531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b413b0", "tid": 35568, "ts": 6909656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6909829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43ec0", "tid": 35568, "ts": 6910014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6910187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44060", "tid": 35568, "ts": 6910313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6910486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42db0", "tid": 35568, "ts": 6910612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6910784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43020", "tid": 35568, "ts": 6910909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b417c0", "tid": 35568, "ts": 6911208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42e80", "tid": 35568, "ts": 6911505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42f50", "tid": 35568, "ts": 6911804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6911975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41550", "tid": 35568, "ts": 6912178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6912351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b430f0", "tid": 35568, "ts": 6912477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6912650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41e40", "tid": 35568, "ts": 6912775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6912949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40e00", "tid": 35568, "ts": 6913075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6913247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b431c0", "tid": 35568, "ts": 6913372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6913545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41960", "tid": 35568, "ts": 6913670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6913842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b429a0", "tid": 35568, "ts": 6913968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6914140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43500", "tid": 35568, "ts": 6914266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6914438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b412e0", "tid": 35568, "ts": 6914565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6914737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42320", "tid": 35568, "ts": 6914863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43430", "tid": 35568, "ts": 6915160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43290", "tid": 35568, "ts": 6915458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43d20", "tid": 35568, "ts": 6915758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6915947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41480", "tid": 35568, "ts": 6916073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6916246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b40ed0", "tid": 35568, "ts": 6916372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6916543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41070", "tid": 35568, "ts": 6916669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6916842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41620", "tid": 35568, "ts": 6916967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6917139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b424c0", "tid": 35568, "ts": 6917264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6917437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42a70", "tid": 35568, "ts": 6917562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6917733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43360", "tid": 35568, "ts": 6917859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41ca0", "tid": 35568, "ts": 6918156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43df0", "tid": 35568, "ts": 6918454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42590", "tid": 35568, "ts": 6918751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6918924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b435d0", "tid": 35568, "ts": 6919050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6919222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41d70", "tid": 35568, "ts": 6919348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6919521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b42730", "tid": 35568, "ts": 6919646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6919818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b436a0", "tid": 35568, "ts": 6919943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6920115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43770", "tid": 35568, "ts": 6920240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6920412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43840", "tid": 35568, "ts": 6920538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6920711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43910", "tid": 35568, "ts": 6920836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b439e0", "tid": 35568, "ts": 6921134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43c50", "tid": 35568, "ts": 6921431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41890", "tid": 35568, "ts": 6921728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6921900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43ab0", "tid": 35568, "ts": 6922025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6922198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b43b80", "tid": 35568, "ts": 6922323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6922495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41b00", "tid": 35568, "ts": 6922621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6922792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b41bd0", "tid": 35568, "ts": 6922917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45a60", "tid": 35568, "ts": 6923215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45b30", "tid": 35568, "ts": 6923512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b447b0", "tid": 35568, "ts": 6923809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6923982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b472c0", "tid": 35568, "ts": 6924107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6924279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b469d0", "tid": 35568, "ts": 6924405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6924578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45c00", "tid": 35568, "ts": 6924704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6924876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47050", "tid": 35568, "ts": 6925002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6925174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46280", "tid": 35568, "ts": 6925300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6925473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46d10", "tid": 35568, "ts": 6925787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6926026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45da0", "tid": 35568, "ts": 6926214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6926432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45580", "tid": 35568, "ts": 6926619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6926792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44130", "tid": 35568, "ts": 6926918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46eb0", "tid": 35568, "ts": 6927216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b458c0", "tid": 35568, "ts": 6927515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47120", "tid": 35568, "ts": 6927815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6927987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b471f0", "tid": 35568, "ts": 6928112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6928283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46420", "tid": 35568, "ts": 6928409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6928581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46aa0", "tid": 35568, "ts": 6928707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6928879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45cd0", "tid": 35568, "ts": 6929005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6929177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44200", "tid": 35568, "ts": 6929303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6929476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b443a0", "tid": 35568, "ts": 6929601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6929773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45990", "tid": 35568, "ts": 6929899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46010", "tid": 35568, "ts": 6930196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47390", "tid": 35568, "ts": 6930492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b457f0", "tid": 35568, "ts": 6930790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6930962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44bc0", "tid": 35568, "ts": 6931086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6931258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b446e0", "tid": 35568, "ts": 6931383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6931555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45e70", "tid": 35568, "ts": 6931680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6931852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45f40", "tid": 35568, "ts": 6931977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6932150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b442d0", "tid": 35568, "ts": 6932275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6932447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44470", "tid": 35568, "ts": 6932573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6932744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b454b0", "tid": 35568, "ts": 6932868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47460", "tid": 35568, "ts": 6933166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44540", "tid": 35568, "ts": 6933463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b461b0", "tid": 35568, "ts": 6933761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6933934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b464f0", "tid": 35568, "ts": 6934059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6934231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44610", "tid": 35568, "ts": 6934357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6934530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46f80", "tid": 35568, "ts": 6934656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6934828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b460e0", "tid": 35568, "ts": 6934953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6935126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44880", "tid": 35568, "ts": 6935251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6935424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44950", "tid": 35568, "ts": 6935549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6935721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46350", "tid": 35568, "ts": 6935846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b465c0", "tid": 35568, "ts": 6936144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44a20", "tid": 35568, "ts": 6936441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44af0", "tid": 35568, "ts": 6936739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6936912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46690", "tid": 35568, "ts": 6937037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6937208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46760", "tid": 35568, "ts": 6937333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6937505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46830", "tid": 35568, "ts": 6937629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6937802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46900", "tid": 35568, "ts": 6937981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6938160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44c90", "tid": 35568, "ts": 6938329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6938501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46b70", "tid": 35568, "ts": 6938627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6938799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46c40", "tid": 35568, "ts": 6938925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44d60", "tid": 35568, "ts": 6939222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44e30", "tid": 35568, "ts": 6939518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45650", "tid": 35568, "ts": 6939815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6939987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b46de0", "tid": 35568, "ts": 6940112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6940284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45720", "tid": 35568, "ts": 6940410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6940580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44f00", "tid": 35568, "ts": 6940706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6940878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b44fd0", "tid": 35568, "ts": 6941003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6941279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b450a0", "tid": 35568, "ts": 6941498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6941718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45170", "tid": 35568, "ts": 6941844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45240", "tid": 35568, "ts": 6942142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b45310", "tid": 35568, "ts": 6942439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b453e0", "tid": 35568, "ts": 6942738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6942910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a790", "tid": 35568, "ts": 6943037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6943209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49410", "tid": 35568, "ts": 6943334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6943507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49680", "tid": 35568, "ts": 6943632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6943805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48a50", "tid": 35568, "ts": 6943930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48b20", "tid": 35568, "ts": 6944228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b491a0", "tid": 35568, "ts": 6944525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47600", "tid": 35568, "ts": 6944822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6944993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48570", "tid": 35568, "ts": 6945119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6945291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49000", "tid": 35568, "ts": 6945416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6945589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49750", "tid": 35568, "ts": 6945715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6945886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49ea0", "tid": 35568, "ts": 6946011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6946183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47c80", "tid": 35568, "ts": 6946309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6946481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47d50", "tid": 35568, "ts": 6946607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6946779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a1e0", "tid": 35568, "ts": 6946904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48640", "tid": 35568, "ts": 6947202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48230", "tid": 35568, "ts": 6947499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47870", "tid": 35568, "ts": 6947795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6947968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47ef0", "tid": 35568, "ts": 6948093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6948265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49d00", "tid": 35568, "ts": 6948390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6948563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48bf0", "tid": 35568, "ts": 6948689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6948862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a5f0", "tid": 35568, "ts": 6948987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6949159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b487e0", "tid": 35568, "ts": 6949327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6949500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b483d0", "tid": 35568, "ts": 6949625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6949798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a110", "tid": 35568, "ts": 6949924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47940", "tid": 35568, "ts": 6950222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49f70", "tid": 35568, "ts": 6950519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49270", "tid": 35568, "ts": 6950817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6950989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b494e0", "tid": 35568, "ts": 6951114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6951287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48e60", "tid": 35568, "ts": 6951412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6951583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49340", "tid": 35568, "ts": 6951708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6951881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b476d0", "tid": 35568, "ts": 6952006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6952178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47a10", "tid": 35568, "ts": 6952304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6952476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48d90", "tid": 35568, "ts": 6952601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6952773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b490d0", "tid": 35568, "ts": 6952899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48300", "tid": 35568, "ts": 6953196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48710", "tid": 35568, "ts": 6953493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47ae0", "tid": 35568, "ts": 6953791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6953962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b495b0", "tid": 35568, "ts": 6954087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6954259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49820", "tid": 35568, "ts": 6954385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6954557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48cc0", "tid": 35568, "ts": 6954682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6954853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b488b0", "tid": 35568, "ts": 6954978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6955150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b477a0", "tid": 35568, "ts": 6955276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6955448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48f30", "tid": 35568, "ts": 6955572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6955745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b498f0", "tid": 35568, "ts": 6955870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b499c0", "tid": 35568, "ts": 6956167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47e20", "tid": 35568, "ts": 6956464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49a90", "tid": 35568, "ts": 6956802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6956991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49b60", "tid": 35568, "ts": 6957117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6957289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a040", "tid": 35568, "ts": 6957415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6957587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a2b0", "tid": 35568, "ts": 6957712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6957883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49c30", "tid": 35568, "ts": 6958009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6958180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b49dd0", "tid": 35568, "ts": 6958305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6958478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47bb0", "tid": 35568, "ts": 6958603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6958774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48980", "tid": 35568, "ts": 6958899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b484a0", "tid": 35568, "ts": 6959196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a380", "tid": 35568, "ts": 6959492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a450", "tid": 35568, "ts": 6959790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6959963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47fc0", "tid": 35568, "ts": 6960089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6960262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a520", "tid": 35568, "ts": 6960387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6960559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b47530", "tid": 35568, "ts": 6960684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6960856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a6c0", "tid": 35568, "ts": 6960981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6961152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a860", "tid": 35568, "ts": 6961277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6961449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48090", "tid": 35568, "ts": 6961574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6961745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b48160", "tid": 35568, "ts": 6961870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c810", "tid": 35568, "ts": 6962168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b220", "tid": 35568, "ts": 6962465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b630", "tid": 35568, "ts": 6962762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6962934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4be50", "tid": 35568, "ts": 6963059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6963232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aad0", "tid": 35568, "ts": 6963357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6963529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b150", "tid": 35568, "ts": 6963654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6963826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c4d0", "tid": 35568, "ts": 6963951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6964124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bd80", "tid": 35568, "ts": 6964249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6964420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aa00", "tid": 35568, "ts": 6964545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6964716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ce90", "tid": 35568, "ts": 6964841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d780", "tid": 35568, "ts": 6965138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bb10", "tid": 35568, "ts": 6965436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ba40", "tid": 35568, "ts": 6965732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6965904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b560", "tid": 35568, "ts": 6966029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6966201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b2f0", "tid": 35568, "ts": 6966326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6966498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cf60", "tid": 35568, "ts": 6966623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6966793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cdc0", "tid": 35568, "ts": 6966919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bbe0", "tid": 35568, "ts": 6967215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c190", "tid": 35568, "ts": 6967512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bcb0", "tid": 35568, "ts": 6967810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6967982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d5e0", "tid": 35568, "ts": 6968108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6968281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d030", "tid": 35568, "ts": 6968406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6968578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c260", "tid": 35568, "ts": 6968765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6968938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c5a0", "tid": 35568, "ts": 6969063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6969236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aba0", "tid": 35568, "ts": 6969361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6969533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c670", "tid": 35568, "ts": 6969659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6969831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ac70", "tid": 35568, "ts": 6969956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6970128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b700", "tid": 35568, "ts": 6970253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6970425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c0c0", "tid": 35568, "ts": 6970550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6970722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c740", "tid": 35568, "ts": 6970848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cc20", "tid": 35568, "ts": 6971145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b3c0", "tid": 35568, "ts": 6971441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b490", "tid": 35568, "ts": 6971738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6971910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bf20", "tid": 35568, "ts": 6972035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6972207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d9f0", "tid": 35568, "ts": 6972332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6972554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4bff0", "tid": 35568, "ts": 6972680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6972852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d510", "tid": 35568, "ts": 6972978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6973150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d2a0", "tid": 35568, "ts": 6973275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6973448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d6b0", "tid": 35568, "ts": 6973573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6973746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d370", "tid": 35568, "ts": 6973872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c330", "tid": 35568, "ts": 6974169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d100", "tid": 35568, "ts": 6974467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c400", "tid": 35568, "ts": 6974765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6974938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4aee0", "tid": 35568, "ts": 6975063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6975235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c8e0", "tid": 35568, "ts": 6975361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6975533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b7d0", "tid": 35568, "ts": 6975659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6975831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b970", "tid": 35568, "ts": 6975956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6976128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d1d0", "tid": 35568, "ts": 6976253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6976426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ad40", "tid": 35568, "ts": 6976551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6976723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4c9b0", "tid": 35568, "ts": 6976849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d850", "tid": 35568, "ts": 6977146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ca80", "tid": 35568, "ts": 6977443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d920", "tid": 35568, "ts": 6977742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6977915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4cb50", "tid": 35568, "ts": 6978040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6978212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4d440", "tid": 35568, "ts": 6978337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6978509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ae10", "tid": 35568, "ts": 6978634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6978806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ccf0", "tid": 35568, "ts": 6978931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dac0", "tid": 35568, "ts": 6979228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b8a0", "tid": 35568, "ts": 6979525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4db90", "tid": 35568, "ts": 6979822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6979994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dc60", "tid": 35568, "ts": 6980118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6980291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4a930", "tid": 35568, "ts": 6980416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6980589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4afb0", "tid": 35568, "ts": 6980774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6980946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4b080", "tid": 35568, "ts": 6981072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6981245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f590", "tid": 35568, "ts": 6981371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6981543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f8d0", "tid": 35568, "ts": 6981670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6981842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50770", "tid": 35568, "ts": 6982009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6982182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50840", "tid": 35568, "ts": 6982308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6982481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e890", "tid": 35568, "ts": 6982607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6982780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e960", "tid": 35568, "ts": 6982905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ebd0", "tid": 35568, "ts": 6983202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fdb0", "tid": 35568, "ts": 6983501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f0b0", "tid": 35568, "ts": 6983798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6983970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ded0", "tid": 35568, "ts": 6984095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6984267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ff50", "tid": 35568, "ts": 6984392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6984564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ee40", "tid": 35568, "ts": 6984689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6984861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50290", "tid": 35568, "ts": 6984988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6985159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b506a0", "tid": 35568, "ts": 6985284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6985456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50ab0", "tid": 35568, "ts": 6985581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6985754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50430", "tid": 35568, "ts": 6985879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f660", "tid": 35568, "ts": 6986177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50910", "tid": 35568, "ts": 6986475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ea30", "tid": 35568, "ts": 6986772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6986944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fa70", "tid": 35568, "ts": 6987069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6987242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50d20", "tid": 35568, "ts": 6987368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6987540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e140", "tid": 35568, "ts": 6987667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6987839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f9a0", "tid": 35568, "ts": 6987964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6988216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4eca0", "tid": 35568, "ts": 6988408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6988580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e3b0", "tid": 35568, "ts": 6988705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6988877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f730", "tid": 35568, "ts": 6989002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6989174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e550", "tid": 35568, "ts": 6989300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6989473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f800", "tid": 35568, "ts": 6989599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6989771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4de00", "tid": 35568, "ts": 6989897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e480", "tid": 35568, "ts": 6990195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fb40", "tid": 35568, "ts": 6990493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b509e0", "tid": 35568, "ts": 6990790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6990962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50ec0", "tid": 35568, "ts": 6991088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6991260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f3f0", "tid": 35568, "ts": 6991385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6991557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e620", "tid": 35568, "ts": 6991683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6991855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50df0", "tid": 35568, "ts": 6991981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6992153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4efe0", "tid": 35568, "ts": 6992278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6992451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f180", "tid": 35568, "ts": 6992577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6992750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ed70", "tid": 35568, "ts": 6992876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4eb00", "tid": 35568, "ts": 6993174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50b80", "tid": 35568, "ts": 6993472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dd30", "tid": 35568, "ts": 6993770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6993942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e7c0", "tid": 35568, "ts": 6994067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6994239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fc10", "tid": 35568, "ts": 6994365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6994559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fe80", "tid": 35568, "ts": 6994685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6994858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4ef10", "tid": 35568, "ts": 6994983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6995155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f250", "tid": 35568, "ts": 6995280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6995454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f320", "tid": 35568, "ts": 6995579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6995751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4fce0", "tid": 35568, "ts": 6995877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50c50", "tid": 35568, "ts": 6996176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50360", "tid": 35568, "ts": 6996475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50020", "tid": 35568, "ts": 6996772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6996944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4f4c0", "tid": 35568, "ts": 6997070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6997242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b50500", "tid": 35568, "ts": 6997367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6997540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4dfa0", "tid": 35568, "ts": 6997665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6997835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e070", "tid": 35568, "ts": 6997961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6998134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b500f0", "tid": 35568, "ts": 6998260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6998432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e210", "tid": 35568, "ts": 6998557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6998728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e2e0", "tid": 35568, "ts": 6998854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b4e6f0", "tid": 35568, "ts": 6999151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b501c0", "tid": 35568, "ts": 6999450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234a0b505d0", "tid": 35568, "ts": 6999771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 6999943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652bf0", "tid": 35568, "ts": 7000134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7000309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6527e0", "tid": 35568, "ts": 7000435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7000607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654110", "tid": 35568, "ts": 7000732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7000905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652710", "tid": 35568, "ts": 7001031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7001204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652640", "tid": 35568, "ts": 7001329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7001501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6523d0", "tid": 35568, "ts": 7001626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7001798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652e60", "tid": 35568, "ts": 7001923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652a50", "tid": 35568, "ts": 7002220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654450", "tid": 35568, "ts": 7002518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654520", "tid": 35568, "ts": 7002816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7002987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6524a0", "tid": 35568, "ts": 7003112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7003285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651a10", "tid": 35568, "ts": 7003410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7003582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653270", "tid": 35568, "ts": 7003772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7003944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653820", "tid": 35568, "ts": 7004070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7004242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651870", "tid": 35568, "ts": 7004368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7004541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651940", "tid": 35568, "ts": 7004667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7004839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6541e0", "tid": 35568, "ts": 7004965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7005136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6542b0", "tid": 35568, "ts": 7005262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7005434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654790", "tid": 35568, "ts": 7005560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7005732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653410", "tid": 35568, "ts": 7005858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652cc0", "tid": 35568, "ts": 7006155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651ae0", "tid": 35568, "ts": 7006453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653a90", "tid": 35568, "ts": 7006751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7006923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654380", "tid": 35568, "ts": 7007048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7007221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654860", "tid": 35568, "ts": 7007346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7007518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651bb0", "tid": 35568, "ts": 7007644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7007816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653ea0", "tid": 35568, "ts": 7007941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7008114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6545f0", "tid": 35568, "ts": 7008239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7008411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6539c0", "tid": 35568, "ts": 7008537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7008752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653000", "tid": 35568, "ts": 7008881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6546c0", "tid": 35568, "ts": 7009180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6534e0", "tid": 35568, "ts": 7009477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652090", "tid": 35568, "ts": 7009775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7009947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652980", "tid": 35568, "ts": 7010072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7010244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651d50", "tid": 35568, "ts": 7010369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7010540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652230", "tid": 35568, "ts": 7010666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7010839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653b60", "tid": 35568, "ts": 7010964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7011136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652570", "tid": 35568, "ts": 7011261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7011433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6530d0", "tid": 35568, "ts": 7011558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7011730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652300", "tid": 35568, "ts": 7011855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6531a0", "tid": 35568, "ts": 7012153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6528b0", "tid": 35568, "ts": 7012452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652b20", "tid": 35568, "ts": 7012749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7012921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652d90", "tid": 35568, "ts": 7013046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7013218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652f30", "tid": 35568, "ts": 7013344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7013517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653340", "tid": 35568, "ts": 7013642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7013815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651530", "tid": 35568, "ts": 7013940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7014112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653dd0", "tid": 35568, "ts": 7014237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7014409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651600", "tid": 35568, "ts": 7014534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7014706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6516d0", "tid": 35568, "ts": 7014831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651c80", "tid": 35568, "ts": 7015171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6535b0", "tid": 35568, "ts": 7015470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653680", "tid": 35568, "ts": 7015768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7015939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653750", "tid": 35568, "ts": 7016065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7016239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6538f0", "tid": 35568, "ts": 7016365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7016536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653c30", "tid": 35568, "ts": 7016661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7016834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653d00", "tid": 35568, "ts": 7016960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7017131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac653f70", "tid": 35568, "ts": 7017257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7017428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654040", "tid": 35568, "ts": 7017553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7017724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6517a0", "tid": 35568, "ts": 7017849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651e20", "tid": 35568, "ts": 7018146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651ef0", "tid": 35568, "ts": 7018442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651fc0", "tid": 35568, "ts": 7018739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7018910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac652160", "tid": 35568, "ts": 7019036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7019208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654ad0", "tid": 35568, "ts": 7019379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7019551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656c20", "tid": 35568, "ts": 7019676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7019847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6569b0", "tid": 35568, "ts": 7019973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7020145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656a80", "tid": 35568, "ts": 7020270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7020441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6557d0", "tid": 35568, "ts": 7020567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7020739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656810", "tid": 35568, "ts": 7020865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6552f0", "tid": 35568, "ts": 7021189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655b10", "tid": 35568, "ts": 7021488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655150", "tid": 35568, "ts": 7021786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7021958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654c70", "tid": 35568, "ts": 7022083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7022255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655be0", "tid": 35568, "ts": 7022381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7022553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656b50", "tid": 35568, "ts": 7022679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7022850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655970", "tid": 35568, "ts": 7022975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7023147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655700", "tid": 35568, "ts": 7023272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7023443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6572a0", "tid": 35568, "ts": 7023568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7023738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655cb0", "tid": 35568, "ts": 7023863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654d40", "tid": 35568, "ts": 7024160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657920", "tid": 35568, "ts": 7024457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657ac0", "tid": 35568, "ts": 7024754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7024926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655220", "tid": 35568, "ts": 7025051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7025223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6565a0", "tid": 35568, "ts": 7025349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7025521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655d80", "tid": 35568, "ts": 7025646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7025843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655e50", "tid": 35568, "ts": 7025970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7026142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655ff0", "tid": 35568, "ts": 7026268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7026439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657030", "tid": 35568, "ts": 7026627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7026799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655f20", "tid": 35568, "ts": 7026925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657100", "tid": 35568, "ts": 7027223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6568e0", "tid": 35568, "ts": 7027520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6553c0", "tid": 35568, "ts": 7027818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7027989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655630", "tid": 35568, "ts": 7028114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7028285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656400", "tid": 35568, "ts": 7028411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7028582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6558a0", "tid": 35568, "ts": 7028707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7028879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6564d0", "tid": 35568, "ts": 7029005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7029176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657440", "tid": 35568, "ts": 7029302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7029474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655a40", "tid": 35568, "ts": 7029599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7029772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6575e0", "tid": 35568, "ts": 7029897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656dc0", "tid": 35568, "ts": 7030195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6560c0", "tid": 35568, "ts": 7030492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654ee0", "tid": 35568, "ts": 7030789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7030961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656670", "tid": 35568, "ts": 7031086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7031257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656740", "tid": 35568, "ts": 7031382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7031618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654e10", "tid": 35568, "ts": 7031746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7031924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656cf0", "tid": 35568, "ts": 7032050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7032231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656190", "tid": 35568, "ts": 7032368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7032540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6571d0", "tid": 35568, "ts": 7032666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7032838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656260", "tid": 35568, "ts": 7032963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7033135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656330", "tid": 35568, "ts": 7033261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7033432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657b90", "tid": 35568, "ts": 7033558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7033730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657370", "tid": 35568, "ts": 7033855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655490", "tid": 35568, "ts": 7034153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656e90", "tid": 35568, "ts": 7034452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac656f60", "tid": 35568, "ts": 7034750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7034983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657510", "tid": 35568, "ts": 7035242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7035490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6576b0", "tid": 35568, "ts": 7035628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7035904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657780", "tid": 35568, "ts": 7036089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7036261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657850", "tid": 35568, "ts": 7036387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7036558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6579f0", "tid": 35568, "ts": 7036684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7036856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655560", "tid": 35568, "ts": 7036982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7037154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657c60", "tid": 35568, "ts": 7037280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7037452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654930", "tid": 35568, "ts": 7037577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7037748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654a00", "tid": 35568, "ts": 7037873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654ba0", "tid": 35568, "ts": 7038170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac654fb0", "tid": 35568, "ts": 7038468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac655080", "tid": 35568, "ts": 7038765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7038936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659b40", "tid": 35568, "ts": 7039062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7039234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658f10", "tid": 35568, "ts": 7039359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7039531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658070", "tid": 35568, "ts": 7039656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7039828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658fe0", "tid": 35568, "ts": 7039953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7040125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ac50", "tid": 35568, "ts": 7040252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7040423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ad20", "tid": 35568, "ts": 7040548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7040721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65adf0", "tid": 35568, "ts": 7040847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6590b0", "tid": 35568, "ts": 7041145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658960", "tid": 35568, "ts": 7041444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659a70", "tid": 35568, "ts": 7041741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7041913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a360", "tid": 35568, "ts": 7042040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7042211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659800", "tid": 35568, "ts": 7042336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7042509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658e40", "tid": 35568, "ts": 7042634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7042806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657d30", "tid": 35568, "ts": 7042932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a020", "tid": 35568, "ts": 7043229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6599a0", "tid": 35568, "ts": 7043526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6593f0", "tid": 35568, "ts": 7043825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7043997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659590", "tid": 35568, "ts": 7044122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7044294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658890", "tid": 35568, "ts": 7044419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7044591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659180", "tid": 35568, "ts": 7044716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7044889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65aec0", "tid": 35568, "ts": 7045014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7045185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658d70", "tid": 35568, "ts": 7045311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7045484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659e80", "tid": 35568, "ts": 7045610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7045782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a5d0", "tid": 35568, "ts": 7045908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658210", "tid": 35568, "ts": 7046207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6594c0", "tid": 35568, "ts": 7046506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658140", "tid": 35568, "ts": 7046804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7046976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a430", "tid": 35568, "ts": 7047102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7047274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659250", "tid": 35568, "ts": 7047399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7047571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a6a0", "tid": 35568, "ts": 7047697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7047870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659320", "tid": 35568, "ts": 7047996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7048167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657ed0", "tid": 35568, "ts": 7048334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7048506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659ce0", "tid": 35568, "ts": 7048631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7048803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659660", "tid": 35568, "ts": 7048929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7049100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65af90", "tid": 35568, "ts": 7049226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7049398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6582e0", "tid": 35568, "ts": 7049580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7049753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65aab0", "tid": 35568, "ts": 7049879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7050051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a500", "tid": 35568, "ts": 7050177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7050348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659730", "tid": 35568, "ts": 7050474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7050706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6598d0", "tid": 35568, "ts": 7050832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659c10", "tid": 35568, "ts": 7051131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a770", "tid": 35568, "ts": 7051430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a840", "tid": 35568, "ts": 7051729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7051901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659db0", "tid": 35568, "ts": 7052027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7052199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac659f50", "tid": 35568, "ts": 7052324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7052497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a0f0", "tid": 35568, "ts": 7052623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7052795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a1c0", "tid": 35568, "ts": 7052920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b060", "tid": 35568, "ts": 7053216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a290", "tid": 35568, "ts": 7053513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6587c0", "tid": 35568, "ts": 7053811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7053984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a910", "tid": 35568, "ts": 7054109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7054282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65a9e0", "tid": 35568, "ts": 7054407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7054579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658ca0", "tid": 35568, "ts": 7054704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7054877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658a30", "tid": 35568, "ts": 7055001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7055174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ab80", "tid": 35568, "ts": 7055365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7055538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658b00", "tid": 35568, "ts": 7055665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7055837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657e00", "tid": 35568, "ts": 7055964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7056136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac657fa0", "tid": 35568, "ts": 7056262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7056434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658bd0", "tid": 35568, "ts": 7056560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7056732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6583b0", "tid": 35568, "ts": 7056857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658480", "tid": 35568, "ts": 7057155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658550", "tid": 35568, "ts": 7057452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac658620", "tid": 35568, "ts": 7057750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7057922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6586f0", "tid": 35568, "ts": 7058048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7058221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e390", "tid": 35568, "ts": 7058346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7058518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c310", "tid": 35568, "ts": 7058643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7058815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e2c0", "tid": 35568, "ts": 7058941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7059113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e460", "tid": 35568, "ts": 7059239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7059411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b3a0", "tid": 35568, "ts": 7059538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7059709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c240", "tid": 35568, "ts": 7059834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d010", "tid": 35568, "ts": 7060131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b130", "tid": 35568, "ts": 7060428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65daa0", "tid": 35568, "ts": 7060726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7060899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d420", "tid": 35568, "ts": 7061024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7061197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bfd0", "tid": 35568, "ts": 7061322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7061494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d0e0", "tid": 35568, "ts": 7061620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7061793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65dde0", "tid": 35568, "ts": 7061918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bbc0", "tid": 35568, "ts": 7062217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b2d0", "tid": 35568, "ts": 7062515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d1b0", "tid": 35568, "ts": 7062813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7062984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b470", "tid": 35568, "ts": 7063110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7063282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d900", "tid": 35568, "ts": 7063408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7063581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b540", "tid": 35568, "ts": 7063706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7063878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d280", "tid": 35568, "ts": 7064003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7064176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c650", "tid": 35568, "ts": 7064302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7064474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ba20", "tid": 35568, "ts": 7064599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7064771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ccd0", "tid": 35568, "ts": 7064896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b200", "tid": 35568, "ts": 7065193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b950", "tid": 35568, "ts": 7065491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65be30", "tid": 35568, "ts": 7065789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7065962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d350", "tid": 35568, "ts": 7066087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7066394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b610", "tid": 35568, "ts": 7066524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7066698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ce70", "tid": 35568, "ts": 7066824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7066997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c4b0", "tid": 35568, "ts": 7067123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7067297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bc90", "tid": 35568, "ts": 7067422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7067595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b6e0", "tid": 35568, "ts": 7067721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7067893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bd60", "tid": 35568, "ts": 7068019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7068191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b7b0", "tid": 35568, "ts": 7068317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7068491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65b880", "tid": 35568, "ts": 7068616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7068790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65bf00", "tid": 35568, "ts": 7068916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d4f0", "tid": 35568, "ts": 7069214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65deb0", "tid": 35568, "ts": 7069512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c0a0", "tid": 35568, "ts": 7069809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7069983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d5c0", "tid": 35568, "ts": 7070109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7070281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65baf0", "tid": 35568, "ts": 7070407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7070579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c170", "tid": 35568, "ts": 7070705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7070878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65df80", "tid": 35568, "ts": 7071004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7071176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c3e0", "tid": 35568, "ts": 7071301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7071473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d690", "tid": 35568, "ts": 7071599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7071770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cda0", "tid": 35568, "ts": 7071896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cc00", "tid": 35568, "ts": 7072194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c580", "tid": 35568, "ts": 7072491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c720", "tid": 35568, "ts": 7072789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7072960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c7f0", "tid": 35568, "ts": 7073085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7073259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c8c0", "tid": 35568, "ts": 7073385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7073558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65c990", "tid": 35568, "ts": 7073684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7073857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ca60", "tid": 35568, "ts": 7073982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7074154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d760", "tid": 35568, "ts": 7074280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7074452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cb30", "tid": 35568, "ts": 7074578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7074751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65cf40", "tid": 35568, "ts": 7074876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d830", "tid": 35568, "ts": 7075175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e120", "tid": 35568, "ts": 7075472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65d9d0", "tid": 35568, "ts": 7075770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7075942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65db70", "tid": 35568, "ts": 7076068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7076239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65dc40", "tid": 35568, "ts": 7076365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7076538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65dd10", "tid": 35568, "ts": 7076663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7076837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e050", "tid": 35568, "ts": 7076962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7077135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e1f0", "tid": 35568, "ts": 7077261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7077433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660820", "tid": 35568, "ts": 7077559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7077732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f230", "tid": 35568, "ts": 7077857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6608f0", "tid": 35568, "ts": 7078156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660a90", "tid": 35568, "ts": 7078454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660270", "tid": 35568, "ts": 7078752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7078925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f8b0", "tid": 35568, "ts": 7079050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7079224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e530", "tid": 35568, "ts": 7079349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7079522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ee20", "tid": 35568, "ts": 7079648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7079862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661520", "tid": 35568, "ts": 7079989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7080163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660680", "tid": 35568, "ts": 7080288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7080461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6616c0", "tid": 35568, "ts": 7080587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7080759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ed50", "tid": 35568, "ts": 7080885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7081056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e600", "tid": 35568, "ts": 7081181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7081395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fbf0", "tid": 35568, "ts": 7081527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7081700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fe60", "tid": 35568, "ts": 7081903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7082151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6609c0", "tid": 35568, "ts": 7082281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7082455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f3d0", "tid": 35568, "ts": 7082581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7082753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6601a0", "tid": 35568, "ts": 7082879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660340", "tid": 35568, "ts": 7083178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65eef0", "tid": 35568, "ts": 7083476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ff30", "tid": 35568, "ts": 7083774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7083945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fd90", "tid": 35568, "ts": 7084071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7084245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6604e0", "tid": 35568, "ts": 7084370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7084542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6611e0", "tid": 35568, "ts": 7084667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7084839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6615f0", "tid": 35568, "ts": 7084965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7085136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f640", "tid": 35568, "ts": 7085262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7085434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ea10", "tid": 35568, "ts": 7085559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7085731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661790", "tid": 35568, "ts": 7085856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660410", "tid": 35568, "ts": 7086153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660b60", "tid": 35568, "ts": 7086450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6600d0", "tid": 35568, "ts": 7086748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7086921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65eae0", "tid": 35568, "ts": 7087046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7087220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660c30", "tid": 35568, "ts": 7087346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7087518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e6d0", "tid": 35568, "ts": 7087644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7087816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660000", "tid": 35568, "ts": 7087942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7088113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f980", "tid": 35568, "ts": 7088239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7088411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6605b0", "tid": 35568, "ts": 7088536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7088709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661450", "tid": 35568, "ts": 7088835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ebb0", "tid": 35568, "ts": 7089133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660d00", "tid": 35568, "ts": 7089430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e870", "tid": 35568, "ts": 7089729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7089901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e7a0", "tid": 35568, "ts": 7090026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7090197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661110", "tid": 35568, "ts": 7090323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7090495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65efc0", "tid": 35568, "ts": 7090621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7090794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f570", "tid": 35568, "ts": 7090919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660dd0", "tid": 35568, "ts": 7091216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660750", "tid": 35568, "ts": 7091513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661860", "tid": 35568, "ts": 7091810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7091983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660ea0", "tid": 35568, "ts": 7092108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7092281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fcc0", "tid": 35568, "ts": 7092406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7092578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65ec80", "tid": 35568, "ts": 7092704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7092876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f090", "tid": 35568, "ts": 7093001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7093175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac660f70", "tid": 35568, "ts": 7093301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7093473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661040", "tid": 35568, "ts": 7093598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7093771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65e940", "tid": 35568, "ts": 7093897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6612b0", "tid": 35568, "ts": 7094194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f160", "tid": 35568, "ts": 7094493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f300", "tid": 35568, "ts": 7094814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7094986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f710", "tid": 35568, "ts": 7095112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7095284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661380", "tid": 35568, "ts": 7095410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7095582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f4a0", "tid": 35568, "ts": 7095708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7095880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65f7e0", "tid": 35568, "ts": 7096005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7096178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fa50", "tid": 35568, "ts": 7096303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7096475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac65fb20", "tid": 35568, "ts": 7096602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7096774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6641d0", "tid": 35568, "ts": 7096899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7097071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6639b0", "tid": 35568, "ts": 7097241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7097472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663a80", "tid": 35568, "ts": 7097600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7097773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662a40", "tid": 35568, "ts": 7097899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662220", "tid": 35568, "ts": 7098199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6645e0", "tid": 35568, "ts": 7098495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663dc0", "tid": 35568, "ts": 7098794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7098966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664920", "tid": 35568, "ts": 7099092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7099263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664780", "tid": 35568, "ts": 7099388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7099560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664c60", "tid": 35568, "ts": 7099685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7099857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663c20", "tid": 35568, "ts": 7099982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7100156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661ee0", "tid": 35568, "ts": 7100282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7100455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663cf0", "tid": 35568, "ts": 7100580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7100752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661d40", "tid": 35568, "ts": 7100877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663810", "tid": 35568, "ts": 7101175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664ac0", "tid": 35568, "ts": 7101472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661fb0", "tid": 35568, "ts": 7101769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7101941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661e10", "tid": 35568, "ts": 7102067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7102239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662080", "tid": 35568, "ts": 7102364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7102535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662d80", "tid": 35568, "ts": 7102660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7102833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661c70", "tid": 35568, "ts": 7102958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7103129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661ba0", "tid": 35568, "ts": 7103255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7103428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662be0", "tid": 35568, "ts": 7103554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7103725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662150", "tid": 35568, "ts": 7103851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6635a0", "tid": 35568, "ts": 7104148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662e50", "tid": 35568, "ts": 7104446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662b10", "tid": 35568, "ts": 7104743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7104916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6622f0", "tid": 35568, "ts": 7105041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7105214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6623c0", "tid": 35568, "ts": 7105339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7105512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663670", "tid": 35568, "ts": 7105637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7105810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663b50", "tid": 35568, "ts": 7105935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7106108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662f20", "tid": 35568, "ts": 7106233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7106405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662490", "tid": 35568, "ts": 7106530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7106702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661930", "tid": 35568, "ts": 7106828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663e90", "tid": 35568, "ts": 7107126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662ff0", "tid": 35568, "ts": 7107423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663f60", "tid": 35568, "ts": 7107719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7107892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662560", "tid": 35568, "ts": 7108018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7108191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662cb0", "tid": 35568, "ts": 7108316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7108487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6630c0", "tid": 35568, "ts": 7108614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7108785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6642a0", "tid": 35568, "ts": 7108911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664030", "tid": 35568, "ts": 7109208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663740", "tid": 35568, "ts": 7109507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662630", "tid": 35568, "ts": 7109805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7109978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662700", "tid": 35568, "ts": 7110104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7110276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6646b0", "tid": 35568, "ts": 7110401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7110574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6627d0", "tid": 35568, "ts": 7110700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7110870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661a00", "tid": 35568, "ts": 7110995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7111168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664100", "tid": 35568, "ts": 7111294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7111465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac661ad0", "tid": 35568, "ts": 7111591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7111762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6638e0", "tid": 35568, "ts": 7111887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663190", "tid": 35568, "ts": 7112185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6628a0", "tid": 35568, "ts": 7112482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac662970", "tid": 35568, "ts": 7112781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7112954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664370", "tid": 35568, "ts": 7113092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7113264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663260", "tid": 35568, "ts": 7113390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7113562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663330", "tid": 35568, "ts": 7113689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7113862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac663400", "tid": 35568, "ts": 7113989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7114162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664440", "tid": 35568, "ts": 7114331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7114505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664510", "tid": 35568, "ts": 7114630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7114802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6634d0", "tid": 35568, "ts": 7114928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664850", "tid": 35568, "ts": 7115226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6649f0", "tid": 35568, "ts": 7115524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664b90", "tid": 35568, "ts": 7115822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7115993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667ec0", "tid": 35568, "ts": 7116119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7116292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666b40", "tid": 35568, "ts": 7116417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7116589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667290", "tid": 35568, "ts": 7116715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7116887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667840", "tid": 35568, "ts": 7117012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7117184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6676a0", "tid": 35568, "ts": 7117310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7117482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6653b0", "tid": 35568, "ts": 7117607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7117779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6671c0", "tid": 35568, "ts": 7117961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7118133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664d30", "tid": 35568, "ts": 7118258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7118430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667d20", "tid": 35568, "ts": 7118556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7118728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666db0", "tid": 35568, "ts": 7118853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667020", "tid": 35568, "ts": 7119151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6668d0", "tid": 35568, "ts": 7119449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667f90", "tid": 35568, "ts": 7119746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7119918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666e80", "tid": 35568, "ts": 7120043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7120215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6675d0", "tid": 35568, "ts": 7120340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7120513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666ce0", "tid": 35568, "ts": 7120638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7120811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6679e0", "tid": 35568, "ts": 7120937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7121108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666250", "tid": 35568, "ts": 7121233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7121405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665e40", "tid": 35568, "ts": 7121531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7121702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665070", "tid": 35568, "ts": 7121827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666320", "tid": 35568, "ts": 7122124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665bd0", "tid": 35568, "ts": 7122421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667910", "tid": 35568, "ts": 7122719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7122890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667430", "tid": 35568, "ts": 7123015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7123187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666f50", "tid": 35568, "ts": 7123314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7123486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667770", "tid": 35568, "ts": 7123611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7123783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665f10", "tid": 35568, "ts": 7123908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6657c0", "tid": 35568, "ts": 7124205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667b80", "tid": 35568, "ts": 7124502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665ca0", "tid": 35568, "ts": 7124799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7124971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666c10", "tid": 35568, "ts": 7125097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7125269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665fe0", "tid": 35568, "ts": 7125394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7125566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6670f0", "tid": 35568, "ts": 7125691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7125862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668060", "tid": 35568, "ts": 7125988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7126160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665140", "tid": 35568, "ts": 7126285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7126457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667360", "tid": 35568, "ts": 7126582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7126753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6663f0", "tid": 35568, "ts": 7126878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665210", "tid": 35568, "ts": 7127176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6660b0", "tid": 35568, "ts": 7127473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667500", "tid": 35568, "ts": 7127771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7127943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666180", "tid": 35568, "ts": 7128070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7128242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666660", "tid": 35568, "ts": 7128368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7128540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667df0", "tid": 35568, "ts": 7128728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7128900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667ab0", "tid": 35568, "ts": 7129027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7129200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664e00", "tid": 35568, "ts": 7129325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7129497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac667c50", "tid": 35568, "ts": 7129623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7129797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666800", "tid": 35568, "ts": 7129922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7130095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664ed0", "tid": 35568, "ts": 7130244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7130416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac664fa0", "tid": 35568, "ts": 7130542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7130714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6664c0", "tid": 35568, "ts": 7130840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6652e0", "tid": 35568, "ts": 7131136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665480", "tid": 35568, "ts": 7131433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665550", "tid": 35568, "ts": 7131731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7131902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665620", "tid": 35568, "ts": 7132028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7132200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6656f0", "tid": 35568, "ts": 7132325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7132497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666590", "tid": 35568, "ts": 7132622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7132794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665890", "tid": 35568, "ts": 7132919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665d70", "tid": 35568, "ts": 7133216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666730", "tid": 35568, "ts": 7133513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665960", "tid": 35568, "ts": 7133809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7133980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665a30", "tid": 35568, "ts": 7134105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7134277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac665b00", "tid": 35568, "ts": 7134402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7134574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6669a0", "tid": 35568, "ts": 7134699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7134871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac666a70", "tid": 35568, "ts": 7134996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7135168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b460", "tid": 35568, "ts": 7135293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7135465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a420", "tid": 35568, "ts": 7135590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7135762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668fd0", "tid": 35568, "ts": 7135888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6683a0", "tid": 35568, "ts": 7136185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ade0", "tid": 35568, "ts": 7136483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668130", "tid": 35568, "ts": 7136780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7136952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6693e0", "tid": 35568, "ts": 7137077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7137249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a5c0", "tid": 35568, "ts": 7137375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7137547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668200", "tid": 35568, "ts": 7137672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7137844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669720", "tid": 35568, "ts": 7137970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7138142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66aaa0", "tid": 35568, "ts": 7138267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7138439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a280", "tid": 35568, "ts": 7138565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7138737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669da0", "tid": 35568, "ts": 7138862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ad10", "tid": 35568, "ts": 7139160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b120", "tid": 35568, "ts": 7139457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a350", "tid": 35568, "ts": 7139755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7139928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668af0", "tid": 35568, "ts": 7140054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7140225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669a60", "tid": 35568, "ts": 7140351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7140523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669e70", "tid": 35568, "ts": 7140649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7140821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6697f0", "tid": 35568, "ts": 7140946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7141118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668a20", "tid": 35568, "ts": 7141307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7141478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668880", "tid": 35568, "ts": 7141604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7141777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668f00", "tid": 35568, "ts": 7141902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ab70", "tid": 35568, "ts": 7142199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b050", "tid": 35568, "ts": 7142497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a0e0", "tid": 35568, "ts": 7142794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7142967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669650", "tid": 35568, "ts": 7143092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7143264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669240", "tid": 35568, "ts": 7143389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7143561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66aeb0", "tid": 35568, "ts": 7143686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7143859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6682d0", "tid": 35568, "ts": 7143984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7144157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669b30", "tid": 35568, "ts": 7144343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7144605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668bc0", "tid": 35568, "ts": 7144813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7145035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668e30", "tid": 35568, "ts": 7145251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7145434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6694b0", "tid": 35568, "ts": 7145560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7145733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b2c0", "tid": 35568, "ts": 7145858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6690a0", "tid": 35568, "ts": 7146156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a4f0", "tid": 35568, "ts": 7146454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668470", "tid": 35568, "ts": 7146751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7146923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669580", "tid": 35568, "ts": 7147048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7147219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a690", "tid": 35568, "ts": 7147345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7147559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a760", "tid": 35568, "ts": 7147691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7147864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669c00", "tid": 35568, "ts": 7147990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7148163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a830", "tid": 35568, "ts": 7148288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7148461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669cd0", "tid": 35568, "ts": 7148586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7148759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669170", "tid": 35568, "ts": 7148884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669f40", "tid": 35568, "ts": 7149182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668950", "tid": 35568, "ts": 7149480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ac40", "tid": 35568, "ts": 7149777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7149949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6698c0", "tid": 35568, "ts": 7150074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7150245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b1f0", "tid": 35568, "ts": 7150371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7150583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669990", "tid": 35568, "ts": 7150710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7150882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a010", "tid": 35568, "ts": 7151008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7151180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a1b0", "tid": 35568, "ts": 7151305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7151478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a900", "tid": 35568, "ts": 7151604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7151776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66a9d0", "tid": 35568, "ts": 7151901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66af80", "tid": 35568, "ts": 7152198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b390", "tid": 35568, "ts": 7152496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac669310", "tid": 35568, "ts": 7152793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7152966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668540", "tid": 35568, "ts": 7153092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7153264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668610", "tid": 35568, "ts": 7153390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7153562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6686e0", "tid": 35568, "ts": 7153687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7153860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6687b0", "tid": 35568, "ts": 7153986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7154159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668c90", "tid": 35568, "ts": 7154285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7154458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac668d60", "tid": 35568, "ts": 7154583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7154754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d1a0", "tid": 35568, "ts": 7154879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d820", "tid": 35568, "ts": 7155178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e860", "tid": 35568, "ts": 7155475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b530", "tid": 35568, "ts": 7155772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7155945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66da90", "tid": 35568, "ts": 7156071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7156242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bbb0", "tid": 35568, "ts": 7156368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7156539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66be20", "tid": 35568, "ts": 7156665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7156836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c980", "tid": 35568, "ts": 7156962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7157134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ce60", "tid": 35568, "ts": 7157260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7157431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c3d0", "tid": 35568, "ts": 7157556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7157728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c7e0", "tid": 35568, "ts": 7157853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c090", "tid": 35568, "ts": 7158150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b940", "tid": 35568, "ts": 7158447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d8f0", "tid": 35568, "ts": 7158744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7158916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c570", "tid": 35568, "ts": 7159041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7159212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d4e0", "tid": 35568, "ts": 7159337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7159509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e1e0", "tid": 35568, "ts": 7159635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7159806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d680", "tid": 35568, "ts": 7159993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7160165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c160", "tid": 35568, "ts": 7160291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7160462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d5b0", "tid": 35568, "ts": 7160588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7160759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d9c0", "tid": 35568, "ts": 7160884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b6d0", "tid": 35568, "ts": 7161181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e380", "tid": 35568, "ts": 7161480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ccc0", "tid": 35568, "ts": 7161777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7161947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e520", "tid": 35568, "ts": 7162073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7162244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d750", "tid": 35568, "ts": 7162369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7162541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e2b0", "tid": 35568, "ts": 7162666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7162837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b600", "tid": 35568, "ts": 7162963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7163136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b870", "tid": 35568, "ts": 7163293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7163465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66b7a0", "tid": 35568, "ts": 7163591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7163764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66df70", "tid": 35568, "ts": 7163890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e450", "tid": 35568, "ts": 7164188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cd90", "tid": 35568, "ts": 7164484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ca50", "tid": 35568, "ts": 7164782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7164954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bd50", "tid": 35568, "ts": 7165079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7165251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c230", "tid": 35568, "ts": 7165377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7165549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cb20", "tid": 35568, "ts": 7165674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7165846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cbf0", "tid": 35568, "ts": 7165971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7166145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bc80", "tid": 35568, "ts": 7166270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7166442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66cf30", "tid": 35568, "ts": 7166567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7166739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e5f0", "tid": 35568, "ts": 7166865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e6c0", "tid": 35568, "ts": 7167163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c710", "tid": 35568, "ts": 7167460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bef0", "tid": 35568, "ts": 7167758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7167931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e790", "tid": 35568, "ts": 7168056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7168228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66db60", "tid": 35568, "ts": 7168354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7168527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d000", "tid": 35568, "ts": 7168652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7168825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c300", "tid": 35568, "ts": 7168951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7169122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66dc30", "tid": 35568, "ts": 7169248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7169420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d0d0", "tid": 35568, "ts": 7169546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7169718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d270", "tid": 35568, "ts": 7169844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c8b0", "tid": 35568, "ts": 7170141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e040", "tid": 35568, "ts": 7170440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66dd00", "tid": 35568, "ts": 7170737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7170909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d340", "tid": 35568, "ts": 7171035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7171207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ba10", "tid": 35568, "ts": 7171332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7171505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c640", "tid": 35568, "ts": 7171631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7171803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66d410", "tid": 35568, "ts": 7171928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ddd0", "tid": 35568, "ts": 7172226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66dea0", "tid": 35568, "ts": 7172524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bfc0", "tid": 35568, "ts": 7172822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7172994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66c4a0", "tid": 35568, "ts": 7173120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7173291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e110", "tid": 35568, "ts": 7173417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7173587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66bae0", "tid": 35568, "ts": 7173713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7173886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f3c0", "tid": 35568, "ts": 7174011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7174183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fff0", "tid": 35568, "ts": 7174308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7174480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6700c0", "tid": 35568, "ts": 7174606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7174779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670c20", "tid": 35568, "ts": 7174904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7175077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f970", "tid": 35568, "ts": 7175204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7175376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670190", "tid": 35568, "ts": 7175549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7175787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6705a0", "tid": 35568, "ts": 7176027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7176279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670260", "tid": 35568, "ts": 7176460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7176632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ec70", "tid": 35568, "ts": 7176758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7176929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fcb0", "tid": 35568, "ts": 7177055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7177227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671850", "tid": 35568, "ts": 7177352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7177525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671ac0", "tid": 35568, "ts": 7177651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7177823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66e930", "tid": 35568, "ts": 7177949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7178121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6712a0", "tid": 35568, "ts": 7178247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7178419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671100", "tid": 35568, "ts": 7178544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7178715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6711d0", "tid": 35568, "ts": 7178841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670330", "tid": 35568, "ts": 7179140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671920", "tid": 35568, "ts": 7179437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670cf0", "tid": 35568, "ts": 7179735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7179905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671c60", "tid": 35568, "ts": 7180030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7180202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670dc0", "tid": 35568, "ts": 7180328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7180500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ed40", "tid": 35568, "ts": 7180670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7180842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670e90", "tid": 35568, "ts": 7180969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7181142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fa40", "tid": 35568, "ts": 7181267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7181440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671780", "tid": 35568, "ts": 7181566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7181737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f490", "tid": 35568, "ts": 7181863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6719f0", "tid": 35568, "ts": 7182160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671b90", "tid": 35568, "ts": 7182458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fe50", "tid": 35568, "ts": 7182756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7182929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671370", "tid": 35568, "ts": 7183054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7183227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670f60", "tid": 35568, "ts": 7183352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7183525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670400", "tid": 35568, "ts": 7183651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7183822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6704d0", "tid": 35568, "ts": 7183948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7184119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670740", "tid": 35568, "ts": 7184246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7184418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f7d0", "tid": 35568, "ts": 7184544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7184716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670670", "tid": 35568, "ts": 7184842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670810", "tid": 35568, "ts": 7185141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671440", "tid": 35568, "ts": 7185438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f150", "tid": 35568, "ts": 7185735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7185907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6708e0", "tid": 35568, "ts": 7186032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7186204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ff20", "tid": 35568, "ts": 7186331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7186502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fd80", "tid": 35568, "ts": 7186684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7186858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671030", "tid": 35568, "ts": 7186984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7187155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6709b0", "tid": 35568, "ts": 7187281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7187453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670a80", "tid": 35568, "ts": 7187579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7187750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66efb0", "tid": 35568, "ts": 7187875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac670b50", "tid": 35568, "ts": 7188173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ea00", "tid": 35568, "ts": 7188470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ee10", "tid": 35568, "ts": 7188768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7188939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671510", "tid": 35568, "ts": 7189066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7189239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f2f0", "tid": 35568, "ts": 7189365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7189538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6715e0", "tid": 35568, "ts": 7189664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7189836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fbe0", "tid": 35568, "ts": 7189961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7190132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6716b0", "tid": 35568, "ts": 7190258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7190429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66ead0", "tid": 35568, "ts": 7190556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7190727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66eba0", "tid": 35568, "ts": 7190852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7191024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66eee0", "tid": 35568, "ts": 7191229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7191464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f080", "tid": 35568, "ts": 7191594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7191768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f220", "tid": 35568, "ts": 7191894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f560", "tid": 35568, "ts": 7192193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f630", "tid": 35568, "ts": 7192493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f700", "tid": 35568, "ts": 7192791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7192963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66f8a0", "tid": 35568, "ts": 7193089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7193262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac66fb10", "tid": 35568, "ts": 7193388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7193560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673db0", "tid": 35568, "ts": 7193685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7193858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6739a0", "tid": 35568, "ts": 7193984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7194157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672d70", "tid": 35568, "ts": 7194284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7194456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672e40", "tid": 35568, "ts": 7194605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7194777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672070", "tid": 35568, "ts": 7194904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6730b0", "tid": 35568, "ts": 7195203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674c50", "tid": 35568, "ts": 7195500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673800", "tid": 35568, "ts": 7195798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7195970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6745d0", "tid": 35568, "ts": 7196096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7196268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672620", "tid": 35568, "ts": 7196393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7196566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674020", "tid": 35568, "ts": 7196691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7196864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673730", "tid": 35568, "ts": 7196989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7197162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672890", "tid": 35568, "ts": 7197288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7197459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671e00", "tid": 35568, "ts": 7197585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7197756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6726f0", "tid": 35568, "ts": 7197882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673660", "tid": 35568, "ts": 7198179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674290", "tid": 35568, "ts": 7198476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6723b0", "tid": 35568, "ts": 7198772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7198945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672210", "tid": 35568, "ts": 7199072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7199244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672f10", "tid": 35568, "ts": 7199370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7199542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672b00", "tid": 35568, "ts": 7199668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7199841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672480", "tid": 35568, "ts": 7199967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7200139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674b80", "tid": 35568, "ts": 7200265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7200437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673e80", "tid": 35568, "ts": 7200563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7200735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6733f0", "tid": 35568, "ts": 7200862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674840", "tid": 35568, "ts": 7201160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673f50", "tid": 35568, "ts": 7201456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673a70", "tid": 35568, "ts": 7201752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7201924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674910", "tid": 35568, "ts": 7202050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7202223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673180", "tid": 35568, "ts": 7202349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7202521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672fe0", "tid": 35568, "ts": 7202646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7202818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6746a0", "tid": 35568, "ts": 7202943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7203114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673b40", "tid": 35568, "ts": 7203240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7203412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673250", "tid": 35568, "ts": 7203538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7203710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673320", "tid": 35568, "ts": 7203836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674770", "tid": 35568, "ts": 7204133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674f90", "tid": 35568, "ts": 7204430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6734c0", "tid": 35568, "ts": 7204729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7204902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6740f0", "tid": 35568, "ts": 7205027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7205201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673590", "tid": 35568, "ts": 7205327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7205500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674d20", "tid": 35568, "ts": 7205627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7205799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673c10", "tid": 35568, "ts": 7205924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7206097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674ec0", "tid": 35568, "ts": 7206221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7206394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac673ce0", "tid": 35568, "ts": 7206519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7206692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6738d0", "tid": 35568, "ts": 7206863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674360", "tid": 35568, "ts": 7207162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672550", "tid": 35568, "ts": 7207462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6741c0", "tid": 35568, "ts": 7207761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7207933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674430", "tid": 35568, "ts": 7208059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7208231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674500", "tid": 35568, "ts": 7208358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7208531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6749e0", "tid": 35568, "ts": 7208657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7208831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674df0", "tid": 35568, "ts": 7208957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7209129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675060", "tid": 35568, "ts": 7209256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7209429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6727c0", "tid": 35568, "ts": 7209555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7209728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672960", "tid": 35568, "ts": 7209854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac674ab0", "tid": 35568, "ts": 7210153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671d30", "tid": 35568, "ts": 7210451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671ed0", "tid": 35568, "ts": 7210749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7210921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac671fa0", "tid": 35568, "ts": 7211046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7211219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672140", "tid": 35568, "ts": 7211345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7211517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6722e0", "tid": 35568, "ts": 7211643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7211816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672a30", "tid": 35568, "ts": 7211942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7212114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672bd0", "tid": 35568, "ts": 7212241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7212412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac672ca0", "tid": 35568, "ts": 7212538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7212711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677690", "tid": 35568, "ts": 7212838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676e70", "tid": 35568, "ts": 7213136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6779d0", "tid": 35568, "ts": 7213435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6771b0", "tid": 35568, "ts": 7213781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7213954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6768c0", "tid": 35568, "ts": 7214080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7214253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677900", "tid": 35568, "ts": 7214379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7214551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677420", "tid": 35568, "ts": 7214677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7214849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677c40", "tid": 35568, "ts": 7214975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7215148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677760", "tid": 35568, "ts": 7215273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7215446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678050", "tid": 35568, "ts": 7215571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7215744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678120", "tid": 35568, "ts": 7215869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676da0", "tid": 35568, "ts": 7216167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677eb0", "tid": 35568, "ts": 7216464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677280", "tid": 35568, "ts": 7216762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7216934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676240", "tid": 35568, "ts": 7217060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7217230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677f80", "tid": 35568, "ts": 7217357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7217529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6774f0", "tid": 35568, "ts": 7217655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7217827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676650", "tid": 35568, "ts": 7217953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7218126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675c90", "tid": 35568, "ts": 7218251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7218424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6781f0", "tid": 35568, "ts": 7218550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7218723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6782c0", "tid": 35568, "ts": 7218848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676720", "tid": 35568, "ts": 7219146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6752d0", "tid": 35568, "ts": 7219445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676f40", "tid": 35568, "ts": 7219742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7219915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677010", "tid": 35568, "ts": 7220041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7220212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676c00", "tid": 35568, "ts": 7220337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7220509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6757b0", "tid": 35568, "ts": 7220635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7220807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6770e0", "tid": 35568, "ts": 7220932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7221144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677350", "tid": 35568, "ts": 7221271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7221516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6775c0", "tid": 35568, "ts": 7221648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7221821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6767f0", "tid": 35568, "ts": 7221947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7222119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677d10", "tid": 35568, "ts": 7222245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7222498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675a20", "tid": 35568, "ts": 7222633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7222807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676580", "tid": 35568, "ts": 7222934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7223106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676cd0", "tid": 35568, "ts": 7223233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7223405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675950", "tid": 35568, "ts": 7223532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7223704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675d60", "tid": 35568, "ts": 7223829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676990", "tid": 35568, "ts": 7224128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6763e0", "tid": 35568, "ts": 7224427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677830", "tid": 35568, "ts": 7224724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7224895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6753a0", "tid": 35568, "ts": 7225021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7225194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677aa0", "tid": 35568, "ts": 7225319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7225491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677b70", "tid": 35568, "ts": 7225616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7225813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675af0", "tid": 35568, "ts": 7225940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7226112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675880", "tid": 35568, "ts": 7226238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7226410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac677de0", "tid": 35568, "ts": 7226535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7226707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675200", "tid": 35568, "ts": 7226833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675bc0", "tid": 35568, "ts": 7227131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676a60", "tid": 35568, "ts": 7227428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678390", "tid": 35568, "ts": 7227725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7227898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678460", "tid": 35568, "ts": 7228087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7228259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675470", "tid": 35568, "ts": 7228385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7228557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675130", "tid": 35568, "ts": 7228683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7228855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675540", "tid": 35568, "ts": 7228981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7229152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676b30", "tid": 35568, "ts": 7229277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7229449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675610", "tid": 35568, "ts": 7229574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7229746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6756e0", "tid": 35568, "ts": 7229872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675e30", "tid": 35568, "ts": 7230169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675f00", "tid": 35568, "ts": 7230467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac675fd0", "tid": 35568, "ts": 7230763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7230934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6760a0", "tid": 35568, "ts": 7231060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7231231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676170", "tid": 35568, "ts": 7231356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7231528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac676310", "tid": 35568, "ts": 7231653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7231825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6764b0", "tid": 35568, "ts": 7231951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7232123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a8f0", "tid": 35568, "ts": 7232249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7232420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679a50", "tid": 35568, "ts": 7232546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7232716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6797e0", "tid": 35568, "ts": 7232842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a340", "tid": 35568, "ts": 7233139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b040", "tid": 35568, "ts": 7233437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67add0", "tid": 35568, "ts": 7233733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7233906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a0d0", "tid": 35568, "ts": 7234031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7234203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678600", "tid": 35568, "ts": 7234329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7234501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6798b0", "tid": 35568, "ts": 7234627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7234799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a750", "tid": 35568, "ts": 7234925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7235097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6786d0", "tid": 35568, "ts": 7235224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7235394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679980", "tid": 35568, "ts": 7235520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7235692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678d50", "tid": 35568, "ts": 7235881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67af70", "tid": 35568, "ts": 7236178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679e60", "tid": 35568, "ts": 7236475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679d90", "tid": 35568, "ts": 7236774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7236947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679f30", "tid": 35568, "ts": 7237073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7237245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a410", "tid": 35568, "ts": 7237370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7237543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67aa90", "tid": 35568, "ts": 7237670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7237842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6787a0", "tid": 35568, "ts": 7237970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7238189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ab60", "tid": 35568, "ts": 7238316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7238490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a000", "tid": 35568, "ts": 7238615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7238787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a5b0", "tid": 35568, "ts": 7238913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7239084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a820", "tid": 35568, "ts": 7239209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7239380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b380", "tid": 35568, "ts": 7239538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7239711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a1a0", "tid": 35568, "ts": 7239837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a9c0", "tid": 35568, "ts": 7240135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a270", "tid": 35568, "ts": 7240432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679b20", "tid": 35568, "ts": 7240730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7240902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679bf0", "tid": 35568, "ts": 7241027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7241199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b450", "tid": 35568, "ts": 7241324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7241496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679570", "tid": 35568, "ts": 7241623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7241794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679300", "tid": 35568, "ts": 7241921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67aea0", "tid": 35568, "ts": 7242219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678a10", "tid": 35568, "ts": 7242517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ac30", "tid": 35568, "ts": 7242815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7242987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b520", "tid": 35568, "ts": 7243113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7243285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b5f0", "tid": 35568, "ts": 7243411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7243583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678c80", "tid": 35568, "ts": 7243709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7243883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b110", "tid": 35568, "ts": 7244008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7244181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ad00", "tid": 35568, "ts": 7244307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7244479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a4e0", "tid": 35568, "ts": 7244604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7244776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678e20", "tid": 35568, "ts": 7244902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678ef0", "tid": 35568, "ts": 7245198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b1e0", "tid": 35568, "ts": 7245496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679090", "tid": 35568, "ts": 7245793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7245965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67a680", "tid": 35568, "ts": 7246090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7246262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b6c0", "tid": 35568, "ts": 7246388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7246560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678870", "tid": 35568, "ts": 7246729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7246902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b2b0", "tid": 35568, "ts": 7247028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7247200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b790", "tid": 35568, "ts": 7247326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7247497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b860", "tid": 35568, "ts": 7247624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7247796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678530", "tid": 35568, "ts": 7247922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679cc0", "tid": 35568, "ts": 7248219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678940", "tid": 35568, "ts": 7248517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678ae0", "tid": 35568, "ts": 7248814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7248986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678bb0", "tid": 35568, "ts": 7249112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7249285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac678fc0", "tid": 35568, "ts": 7249410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7249582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679160", "tid": 35568, "ts": 7249708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7249879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679230", "tid": 35568, "ts": 7250005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7250177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6793d0", "tid": 35568, "ts": 7250303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7250475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6794a0", "tid": 35568, "ts": 7250601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7250772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679640", "tid": 35568, "ts": 7250898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac679710", "tid": 35568, "ts": 7251195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c490", "tid": 35568, "ts": 7251493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cd80", "tid": 35568, "ts": 7251790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7251962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c080", "tid": 35568, "ts": 7252089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7252261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e370", "tid": 35568, "ts": 7252386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7252559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d4d0", "tid": 35568, "ts": 7252685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7252856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67eac0", "tid": 35568, "ts": 7252982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7253154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cb10", "tid": 35568, "ts": 7253279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7253452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c630", "tid": 35568, "ts": 7253577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7253944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ccb0", "tid": 35568, "ts": 7254221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7254507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d400", "tid": 35568, "ts": 7254675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7254885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d9b0", "tid": 35568, "ts": 7255070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7255307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e510", "tid": 35568, "ts": 7255434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7255605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c970", "tid": 35568, "ts": 7255788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7255960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ce50", "tid": 35568, "ts": 7256087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7256260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d260", "tid": 35568, "ts": 7256387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7256559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d8e0", "tid": 35568, "ts": 7256738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7256909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c150", "tid": 35568, "ts": 7257041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7257212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d330", "tid": 35568, "ts": 7257338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7257510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67b930", "tid": 35568, "ts": 7257635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7257807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ca40", "tid": 35568, "ts": 7257931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c220", "tid": 35568, "ts": 7258229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e440", "tid": 35568, "ts": 7258527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d5a0", "tid": 35568, "ts": 7258825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7258996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d0c0", "tid": 35568, "ts": 7259122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7259295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d190", "tid": 35568, "ts": 7259421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7259593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cbe0", "tid": 35568, "ts": 7259719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7259890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67db50", "tid": 35568, "ts": 7260015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7260187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d670", "tid": 35568, "ts": 7260312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7260484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c560", "tid": 35568, "ts": 7260609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7260781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e780", "tid": 35568, "ts": 7260906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d740", "tid": 35568, "ts": 7261204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67da80", "tid": 35568, "ts": 7261501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67eb90", "tid": 35568, "ts": 7261799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7261970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e2a0", "tid": 35568, "ts": 7262096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7262269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67d810", "tid": 35568, "ts": 7262394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7262566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67dc20", "tid": 35568, "ts": 7262691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7262863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67dcf0", "tid": 35568, "ts": 7262988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7263160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ddc0", "tid": 35568, "ts": 7263286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7263458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cff0", "tid": 35568, "ts": 7263583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7263755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e1d0", "tid": 35568, "ts": 7263880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67de90", "tid": 35568, "ts": 7264179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67cf20", "tid": 35568, "ts": 7264474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bd40", "tid": 35568, "ts": 7264772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7264944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e920", "tid": 35568, "ts": 7265070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7265243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e5e0", "tid": 35568, "ts": 7265368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7265540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67df60", "tid": 35568, "ts": 7265665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7265837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e030", "tid": 35568, "ts": 7265963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7266135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bad0", "tid": 35568, "ts": 7266260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7266432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e100", "tid": 35568, "ts": 7266558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7266730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e9f0", "tid": 35568, "ts": 7266856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e6b0", "tid": 35568, "ts": 7267155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67e850", "tid": 35568, "ts": 7267452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ec60", "tid": 35568, "ts": 7267749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7267921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ba00", "tid": 35568, "ts": 7268046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7268220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bba0", "tid": 35568, "ts": 7268346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7268517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bc70", "tid": 35568, "ts": 7268643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7268815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67be10", "tid": 35568, "ts": 7268941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7269113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bee0", "tid": 35568, "ts": 7269285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7269524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67bfb0", "tid": 35568, "ts": 7269650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7269823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c2f0", "tid": 35568, "ts": 7269948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7270120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c3c0", "tid": 35568, "ts": 7270246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7270419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c700", "tid": 35568, "ts": 7270544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7270716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c7d0", "tid": 35568, "ts": 7270842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67c8a0", "tid": 35568, "ts": 7271138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6804c0", "tid": 35568, "ts": 7271436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680320", "tid": 35568, "ts": 7271733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7271905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681c50", "tid": 35568, "ts": 7272031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7272202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681df0", "tid": 35568, "ts": 7272328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7272500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6810f0", "tid": 35568, "ts": 7272626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7272798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ee00", "tid": 35568, "ts": 7272924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6815d0", "tid": 35568, "ts": 7273223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f210", "tid": 35568, "ts": 7273520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680590", "tid": 35568, "ts": 7273820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7273991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681b80", "tid": 35568, "ts": 7274116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7274289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681d20", "tid": 35568, "ts": 7274414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7274586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f890", "tid": 35568, "ts": 7274713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7274885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6800b0", "tid": 35568, "ts": 7275011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7275184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681ec0", "tid": 35568, "ts": 7275311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7275484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f550", "tid": 35568, "ts": 7275609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7275782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f070", "tid": 35568, "ts": 7275908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67eed0", "tid": 35568, "ts": 7276206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f620", "tid": 35568, "ts": 7276504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680180", "tid": 35568, "ts": 7276802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7276974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f3b0", "tid": 35568, "ts": 7277101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7277274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6809a0", "tid": 35568, "ts": 7277400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7277572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680800", "tid": 35568, "ts": 7277698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7277870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6808d0", "tid": 35568, "ts": 7277995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7278168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680250", "tid": 35568, "ts": 7278294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7278465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67efa0", "tid": 35568, "ts": 7278592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7278763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ed30", "tid": 35568, "ts": 7278889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f140", "tid": 35568, "ts": 7279187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680a70", "tid": 35568, "ts": 7279484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680b40", "tid": 35568, "ts": 7279781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7279953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f2e0", "tid": 35568, "ts": 7280079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7280294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681500", "tid": 35568, "ts": 7280420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7280591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f960", "tid": 35568, "ts": 7280718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7280890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6803f0", "tid": 35568, "ts": 7281016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7281187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6811c0", "tid": 35568, "ts": 7281313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7281485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680c10", "tid": 35568, "ts": 7281610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7281781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681290", "tid": 35568, "ts": 7281906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681f90", "tid": 35568, "ts": 7282203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680660", "tid": 35568, "ts": 7282499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681910", "tid": 35568, "ts": 7282797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7282969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681430", "tid": 35568, "ts": 7283094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7283266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fd70", "tid": 35568, "ts": 7283391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7283562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f480", "tid": 35568, "ts": 7283687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7283858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682060", "tid": 35568, "ts": 7283983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7284156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680ce0", "tid": 35568, "ts": 7284281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7284452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f6f0", "tid": 35568, "ts": 7284577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7284749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680db0", "tid": 35568, "ts": 7284914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7285191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67f7c0", "tid": 35568, "ts": 7285318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7285489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680730", "tid": 35568, "ts": 7285615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7285787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680e80", "tid": 35568, "ts": 7285942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7286114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6819e0", "tid": 35568, "ts": 7286240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7286414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681770", "tid": 35568, "ts": 7286542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7286715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fa30", "tid": 35568, "ts": 7286841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac680f50", "tid": 35568, "ts": 7287169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681020", "tid": 35568, "ts": 7287468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681360", "tid": 35568, "ts": 7287770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7287944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6816a0", "tid": 35568, "ts": 7288071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7288243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fb00", "tid": 35568, "ts": 7288370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7288543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fbd0", "tid": 35568, "ts": 7288669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7288842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681840", "tid": 35568, "ts": 7289013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7289186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac681ab0", "tid": 35568, "ts": 7289314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7289488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fca0", "tid": 35568, "ts": 7289616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7289789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67fe40", "tid": 35568, "ts": 7289945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7290119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ff10", "tid": 35568, "ts": 7290247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7290419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac67ffe0", "tid": 35568, "ts": 7290547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7290719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6822d0", "tid": 35568, "ts": 7290845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683c00", "tid": 35568, "ts": 7291145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683cd0", "tid": 35568, "ts": 7291445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6841b0", "tid": 35568, "ts": 7291744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7291917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684690", "tid": 35568, "ts": 7292043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7292214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682fd0", "tid": 35568, "ts": 7292341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7292564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6830a0", "tid": 35568, "ts": 7292717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7292945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684900", "tid": 35568, "ts": 7293073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7293245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684420", "tid": 35568, "ts": 7293371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7293543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684830", "tid": 35568, "ts": 7293669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7293841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685120", "tid": 35568, "ts": 7293967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7294138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6849d0", "tid": 35568, "ts": 7294264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7294436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6851f0", "tid": 35568, "ts": 7294584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7294757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682af0", "tid": 35568, "ts": 7294885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6837f0", "tid": 35568, "ts": 7295184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685050", "tid": 35568, "ts": 7295480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684d10", "tid": 35568, "ts": 7295777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7295950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682470", "tid": 35568, "ts": 7296076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7296249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6826e0", "tid": 35568, "ts": 7296377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7296549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6840e0", "tid": 35568, "ts": 7296675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7296848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683f40", "tid": 35568, "ts": 7296974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7297146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6852c0", "tid": 35568, "ts": 7297272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7297444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684f80", "tid": 35568, "ts": 7297570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7297742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6844f0", "tid": 35568, "ts": 7297867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684aa0", "tid": 35568, "ts": 7298165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685390", "tid": 35568, "ts": 7298465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685460", "tid": 35568, "ts": 7298765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7298937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684010", "tid": 35568, "ts": 7299063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7299236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684c40", "tid": 35568, "ts": 7299362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7299533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683b30", "tid": 35568, "ts": 7299659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7299833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684b70", "tid": 35568, "ts": 7299960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7300131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682bc0", "tid": 35568, "ts": 7300258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7300430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683240", "tid": 35568, "ts": 7300645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7300859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683720", "tid": 35568, "ts": 7300985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7301157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683da0", "tid": 35568, "ts": 7301284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7301455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682130", "tid": 35568, "ts": 7301581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7301752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682200", "tid": 35568, "ts": 7301879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683e70", "tid": 35568, "ts": 7302176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683170", "tid": 35568, "ts": 7302474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684280", "tid": 35568, "ts": 7302772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7302944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6823a0", "tid": 35568, "ts": 7303070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7303242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682950", "tid": 35568, "ts": 7303367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7303540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682e30", "tid": 35568, "ts": 7303666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7303837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684350", "tid": 35568, "ts": 7303963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7304135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6845c0", "tid": 35568, "ts": 7304262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7304433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684760", "tid": 35568, "ts": 7304559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7304731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682880", "tid": 35568, "ts": 7304858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683a60", "tid": 35568, "ts": 7305157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684de0", "tid": 35568, "ts": 7305455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682540", "tid": 35568, "ts": 7305754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7305927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682610", "tid": 35568, "ts": 7306053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7306226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac684eb0", "tid": 35568, "ts": 7306352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7306523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683990", "tid": 35568, "ts": 7306650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7306821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6827b0", "tid": 35568, "ts": 7306948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7307120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682a20", "tid": 35568, "ts": 7307247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7307419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682c90", "tid": 35568, "ts": 7307545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7307717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683580", "tid": 35568, "ts": 7307844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682d60", "tid": 35568, "ts": 7308142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac682f00", "tid": 35568, "ts": 7308440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683310", "tid": 35568, "ts": 7308740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7308914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6833e0", "tid": 35568, "ts": 7309040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7309213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6834b0", "tid": 35568, "ts": 7309339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7309511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6838c0", "tid": 35568, "ts": 7309637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7309809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac683650", "tid": 35568, "ts": 7309934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7310105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686090", "tid": 35568, "ts": 7310232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7310405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686bf0", "tid": 35568, "ts": 7310532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7310703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6864a0", "tid": 35568, "ts": 7310830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6874e0", "tid": 35568, "ts": 7311126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6875b0", "tid": 35568, "ts": 7311424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687a90", "tid": 35568, "ts": 7311721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7311893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686d90", "tid": 35568, "ts": 7312019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7312191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686f30", "tid": 35568, "ts": 7312317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7312490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688110", "tid": 35568, "ts": 7312616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7312787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685870", "tid": 35568, "ts": 7312913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7313085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685d50", "tid": 35568, "ts": 7313211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7313383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686cc0", "tid": 35568, "ts": 7313556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7313728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688790", "tid": 35568, "ts": 7313855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685c80", "tid": 35568, "ts": 7314153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6879c0", "tid": 35568, "ts": 7314452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686e60", "tid": 35568, "ts": 7314751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7314923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686980", "tid": 35568, "ts": 7315111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7315284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687820", "tid": 35568, "ts": 7315411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7315583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687680", "tid": 35568, "ts": 7315709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7315881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687750", "tid": 35568, "ts": 7316007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7316239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6885f0", "tid": 35568, "ts": 7316366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7316538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685600", "tid": 35568, "ts": 7316664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7316837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686710", "tid": 35568, "ts": 7316963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7317134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687b60", "tid": 35568, "ts": 7317260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7317432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687000", "tid": 35568, "ts": 7317559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7317731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6871a0", "tid": 35568, "ts": 7317856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686b20", "tid": 35568, "ts": 7318154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6857a0", "tid": 35568, "ts": 7318451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686160", "tid": 35568, "ts": 7318750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7318922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688380", "tid": 35568, "ts": 7319048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7319220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6886c0", "tid": 35568, "ts": 7319346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7319518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6878f0", "tid": 35568, "ts": 7319644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7319816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686230", "tid": 35568, "ts": 7319943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7320114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6856d0", "tid": 35568, "ts": 7320240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7320412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686a50", "tid": 35568, "ts": 7320538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7320708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685a10", "tid": 35568, "ts": 7320834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686300", "tid": 35568, "ts": 7321133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688450", "tid": 35568, "ts": 7321431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6863d0", "tid": 35568, "ts": 7321729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7321901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686640", "tid": 35568, "ts": 7322027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7322199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac686570", "tid": 35568, "ts": 7322325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7322497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687270", "tid": 35568, "ts": 7322623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7322794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688520", "tid": 35568, "ts": 7322920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6867e0", "tid": 35568, "ts": 7323218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687d00", "tid": 35568, "ts": 7323516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687c30", "tid": 35568, "ts": 7323814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7323986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6870d0", "tid": 35568, "ts": 7324111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7324284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687340", "tid": 35568, "ts": 7324467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7324639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687dd0", "tid": 35568, "ts": 7324766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7324939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688860", "tid": 35568, "ts": 7325065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7325237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685530", "tid": 35568, "ts": 7325363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7325535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687410", "tid": 35568, "ts": 7325660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7325832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6868b0", "tid": 35568, "ts": 7325958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7326130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685940", "tid": 35568, "ts": 7326255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7326427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687ea0", "tid": 35568, "ts": 7326553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7326725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6881e0", "tid": 35568, "ts": 7326851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685ae0", "tid": 35568, "ts": 7327149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac687f70", "tid": 35568, "ts": 7327475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688040", "tid": 35568, "ts": 7327774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7327946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685bb0", "tid": 35568, "ts": 7328071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7328243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685e20", "tid": 35568, "ts": 7328370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7328543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685ef0", "tid": 35568, "ts": 7328670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7328842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6882b0", "tid": 35568, "ts": 7328967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7329139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac685fc0", "tid": 35568, "ts": 7329266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7329439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a9b0", "tid": 35568, "ts": 7329565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7329736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bb90", "tid": 35568, "ts": 7329862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b780", "tid": 35568, "ts": 7330161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689ff0", "tid": 35568, "ts": 7330459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689630", "tid": 35568, "ts": 7330757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7330929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a810", "tid": 35568, "ts": 7331055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7331228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68aa80", "tid": 35568, "ts": 7331356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7331528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b1d0", "tid": 35568, "ts": 7331653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7331970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a5a0", "tid": 35568, "ts": 7332098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7332270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ab50", "tid": 35568, "ts": 7332397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7332569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688ad0", "tid": 35568, "ts": 7332696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7332869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688d40", "tid": 35568, "ts": 7332996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7333169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b510", "tid": 35568, "ts": 7333295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7333468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ac20", "tid": 35568, "ts": 7333594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7333766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a670", "tid": 35568, "ts": 7333891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b850", "tid": 35568, "ts": 7334189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689490", "tid": 35568, "ts": 7334488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68af60", "tid": 35568, "ts": 7334788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7334960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a260", "tid": 35568, "ts": 7335086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7335258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b030", "tid": 35568, "ts": 7335384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7335557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a0c0", "tid": 35568, "ts": 7335684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7335856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a330", "tid": 35568, "ts": 7335983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7336155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b920", "tid": 35568, "ts": 7336281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7336453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689a40", "tid": 35568, "ts": 7336579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7336751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688ba0", "tid": 35568, "ts": 7336877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688c70", "tid": 35568, "ts": 7337174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68acf0", "tid": 35568, "ts": 7337471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688e10", "tid": 35568, "ts": 7337769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7337941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a400", "tid": 35568, "ts": 7338066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7338239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68adc0", "tid": 35568, "ts": 7338365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7338536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b9f0", "tid": 35568, "ts": 7338662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7338833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688ee0", "tid": 35568, "ts": 7338959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7339131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6893c0", "tid": 35568, "ts": 7339258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7339429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a740", "tid": 35568, "ts": 7339555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7339727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ae90", "tid": 35568, "ts": 7339853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a8e0", "tid": 35568, "ts": 7340151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bac0", "tid": 35568, "ts": 7340448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b100", "tid": 35568, "ts": 7340746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7340919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b2a0", "tid": 35568, "ts": 7341044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7341215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bc60", "tid": 35568, "ts": 7341341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7341513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689150", "tid": 35568, "ts": 7341640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7341811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a4d0", "tid": 35568, "ts": 7341938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7342110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b370", "tid": 35568, "ts": 7342236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7342408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688930", "tid": 35568, "ts": 7342534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7342705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688fb0", "tid": 35568, "ts": 7342831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b440", "tid": 35568, "ts": 7343129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b5e0", "tid": 35568, "ts": 7343427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689080", "tid": 35568, "ts": 7343725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7343897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68b6b0", "tid": 35568, "ts": 7344025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7344198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689560", "tid": 35568, "ts": 7344324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7344496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689b10", "tid": 35568, "ts": 7344622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7344794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac688a00", "tid": 35568, "ts": 7344921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689be0", "tid": 35568, "ts": 7345219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689220", "tid": 35568, "ts": 7345518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68a190", "tid": 35568, "ts": 7345816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7345989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689700", "tid": 35568, "ts": 7346114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7346349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6897d0", "tid": 35568, "ts": 7346517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7346695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689970", "tid": 35568, "ts": 7346824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7347005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6892f0", "tid": 35568, "ts": 7347142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7347316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6898a0", "tid": 35568, "ts": 7347563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7347752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689cb0", "tid": 35568, "ts": 7347878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689d80", "tid": 35568, "ts": 7348175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689e50", "tid": 35568, "ts": 7348474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac689f20", "tid": 35568, "ts": 7348770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7348943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c890", "tid": 35568, "ts": 7349069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7349240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c960", "tid": 35568, "ts": 7349390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7349563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68de80", "tid": 35568, "ts": 7349745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7350008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68be00", "tid": 35568, "ts": 7350162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7350365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d0b0", "tid": 35568, "ts": 7350491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7350704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ed20", "tid": 35568, "ts": 7350872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7351132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e840", "tid": 35568, "ts": 7351326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7351569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e290", "tid": 35568, "ts": 7351753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7351998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d730", "tid": 35568, "ts": 7352139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7352311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d180", "tid": 35568, "ts": 7352437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7352609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d660", "tid": 35568, "ts": 7352735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7352907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68edf0", "tid": 35568, "ts": 7353034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7353206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68dc10", "tid": 35568, "ts": 7353332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7353505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c7c0", "tid": 35568, "ts": 7353631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7353803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d800", "tid": 35568, "ts": 7353929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c620", "tid": 35568, "ts": 7354227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68dce0", "tid": 35568, "ts": 7354525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e020", "tid": 35568, "ts": 7354825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7354997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d3f0", "tid": 35568, "ts": 7355123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7355296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d8d0", "tid": 35568, "ts": 7355422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7355595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e500", "tid": 35568, "ts": 7355720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7355892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cb00", "tid": 35568, "ts": 7356019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7356192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d250", "tid": 35568, "ts": 7356318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7356490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e360", "tid": 35568, "ts": 7356616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7356789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bd30", "tid": 35568, "ts": 7356915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cbd0", "tid": 35568, "ts": 7357214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d9a0", "tid": 35568, "ts": 7357514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ddb0", "tid": 35568, "ts": 7357812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7357984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68eec0", "tid": 35568, "ts": 7358110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7358282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68da70", "tid": 35568, "ts": 7358407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7358580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bed0", "tid": 35568, "ts": 7358706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7358878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68df50", "tid": 35568, "ts": 7359004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7359206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68db40", "tid": 35568, "ts": 7359332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7359504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e5d0", "tid": 35568, "ts": 7359631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7359802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e0f0", "tid": 35568, "ts": 7359928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68bfa0", "tid": 35568, "ts": 7360227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e1c0", "tid": 35568, "ts": 7360526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e430", "tid": 35568, "ts": 7360823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7360996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e6a0", "tid": 35568, "ts": 7361134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7361384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c070", "tid": 35568, "ts": 7361571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7361832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e910", "tid": 35568, "ts": 7361999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7362249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e770", "tid": 35568, "ts": 7362435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7362695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68e9e0", "tid": 35568, "ts": 7362864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7363210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68eab0", "tid": 35568, "ts": 7363481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7363841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68eb80", "tid": 35568, "ts": 7364140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7364392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ec50", "tid": 35568, "ts": 7364581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7364817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c140", "tid": 35568, "ts": 7364987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7365238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d590", "tid": 35568, "ts": 7365394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7365700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c210", "tid": 35568, "ts": 7365858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7366121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c2e0", "tid": 35568, "ts": 7366280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7366512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c3b0", "tid": 35568, "ts": 7366639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7366813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c480", "tid": 35568, "ts": 7366940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7367113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c550", "tid": 35568, "ts": 7367239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7367411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68c6f0", "tid": 35568, "ts": 7367536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7367710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ca30", "tid": 35568, "ts": 7367835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cca0", "tid": 35568, "ts": 7368134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cd70", "tid": 35568, "ts": 7368433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68ce40", "tid": 35568, "ts": 7368732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7368904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cf10", "tid": 35568, "ts": 7369030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7369203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68cfe0", "tid": 35568, "ts": 7369329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7369502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d320", "tid": 35568, "ts": 7369627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7369799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac68d4c0", "tid": 35568, "ts": 7369925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f240", "tid": 35568, "ts": 7370222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650690", "tid": 35568, "ts": 7370520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fcd0", "tid": 35568, "ts": 7370818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7370990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651120", "tid": 35568, "ts": 7371115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7371287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651050", "tid": 35568, "ts": 7371412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7371585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6500e0", "tid": 35568, "ts": 7371710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7371883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fc00", "tid": 35568, "ts": 7372009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7372181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fb30", "tid": 35568, "ts": 7372307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7372480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e880", "tid": 35568, "ts": 7372608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7372779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f4b0", "tid": 35568, "ts": 7372905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650b70", "tid": 35568, "ts": 7373203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6501b0", "tid": 35568, "ts": 7373501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f310", "tid": 35568, "ts": 7373799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7373972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fe70", "tid": 35568, "ts": 7374098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7374270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fda0", "tid": 35568, "ts": 7374396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7374568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6511f0", "tid": 35568, "ts": 7374694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7374866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650280", "tid": 35568, "ts": 7374992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7375164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650760", "tid": 35568, "ts": 7375289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7375462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650350", "tid": 35568, "ts": 7375588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7375760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ee30", "tid": 35568, "ts": 7375885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e950", "tid": 35568, "ts": 7376183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ef00", "tid": 35568, "ts": 7376481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e7b0", "tid": 35568, "ts": 7376778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7376949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6512c0", "tid": 35568, "ts": 7377075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7377247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64fa60", "tid": 35568, "ts": 7377373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7377546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ff40", "tid": 35568, "ts": 7377673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7377845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651390", "tid": 35568, "ts": 7377971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7378144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e3a0", "tid": 35568, "ts": 7378270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7378442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e130", "tid": 35568, "ts": 7378569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7378804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e6e0", "tid": 35568, "ts": 7378931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7379104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6504f0", "tid": 35568, "ts": 7379230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7379403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f3e0", "tid": 35568, "ts": 7379529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7379702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650010", "tid": 35568, "ts": 7379828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f8c0", "tid": 35568, "ts": 7380127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650420", "tid": 35568, "ts": 7380426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac651460", "tid": 35568, "ts": 7380725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7380897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650f80", "tid": 35568, "ts": 7381023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7381196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e200", "tid": 35568, "ts": 7381322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7381495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650c40", "tid": 35568, "ts": 7381621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7381794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f0a0", "tid": 35568, "ts": 7381920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7382092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e470", "tid": 35568, "ts": 7382262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7382435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64efd0", "tid": 35568, "ts": 7382561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7382734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ea20", "tid": 35568, "ts": 7382860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e540", "tid": 35568, "ts": 7383159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e610", "tid": 35568, "ts": 7383459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6505c0", "tid": 35568, "ts": 7383757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7383928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650830", "tid": 35568, "ts": 7384054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7384225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64e2d0", "tid": 35568, "ts": 7384352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7384523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650900", "tid": 35568, "ts": 7384650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7384821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650d10", "tid": 35568, "ts": 7384947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7385120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64eaf0", "tid": 35568, "ts": 7385246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7385418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650de0", "tid": 35568, "ts": 7385544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7385716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ebc0", "tid": 35568, "ts": 7385843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac6509d0", "tid": 35568, "ts": 7386140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650aa0", "tid": 35568, "ts": 7386439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ec90", "tid": 35568, "ts": 7386737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7386909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64ed60", "tid": 35568, "ts": 7387035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7387208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f170", "tid": 35568, "ts": 7387335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7387507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac650eb0", "tid": 35568, "ts": 7387633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7387805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f580", "tid": 35568, "ts": 7387931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f650", "tid": 35568, "ts": 7388230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f720", "tid": 35568, "ts": 7388528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f7f0", "tid": 35568, "ts": 7388826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7388999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ac64f990", "tid": 35568, "ts": 7389125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7389297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41180", "tid": 35568, "ts": 7389489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7389663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41db0", "tid": 35568, "ts": 7389790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7389963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40f10", "tid": 35568, "ts": 7390089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7390260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41590", "tid": 35568, "ts": 7390386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7390559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd426a0", "tid": 35568, "ts": 7390686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7390858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40960", "tid": 35568, "ts": 7390986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7391158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40e40", "tid": 35568, "ts": 7391284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7391457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41a70", "tid": 35568, "ts": 7391583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7391756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42f90", "tid": 35568, "ts": 7391882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42430", "tid": 35568, "ts": 7392180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42910", "tid": 35568, "ts": 7392479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40ca0", "tid": 35568, "ts": 7392778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7392951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42500", "tid": 35568, "ts": 7393077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7393249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd425d0", "tid": 35568, "ts": 7393375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7393547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41e80", "tid": 35568, "ts": 7393673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7393845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41660", "tid": 35568, "ts": 7393971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7394143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42770", "tid": 35568, "ts": 7394282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7394455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42290", "tid": 35568, "ts": 7394593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7394777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41f50", "tid": 35568, "ts": 7394904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7395077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40d70", "tid": 35568, "ts": 7395204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7395376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40550", "tid": 35568, "ts": 7395560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7395732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43200", "tid": 35568, "ts": 7395860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40fe0", "tid": 35568, "ts": 7396158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43060", "tid": 35568, "ts": 7396458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41c10", "tid": 35568, "ts": 7396758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7396930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd433a0", "tid": 35568, "ts": 7397056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7397229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42020", "tid": 35568, "ts": 7397355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7397528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd418d0", "tid": 35568, "ts": 7397654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7397827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd421c0", "tid": 35568, "ts": 7397952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7398125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41250", "tid": 35568, "ts": 7398251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7398423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd402e0", "tid": 35568, "ts": 7398550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7398722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41b40", "tid": 35568, "ts": 7398848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42df0", "tid": 35568, "ts": 7399147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40a30", "tid": 35568, "ts": 7399446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd420f0", "tid": 35568, "ts": 7399745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7399917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43130", "tid": 35568, "ts": 7400043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7400218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd410b0", "tid": 35568, "ts": 7400345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7400517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd432d0", "tid": 35568, "ts": 7400644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7400816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41320", "tid": 35568, "ts": 7400942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7401114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42ab0", "tid": 35568, "ts": 7401240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7401413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40140", "tid": 35568, "ts": 7401539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7401711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd419a0", "tid": 35568, "ts": 7401837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43470", "tid": 35568, "ts": 7402136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42c50", "tid": 35568, "ts": 7402433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42360", "tid": 35568, "ts": 7402731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7402904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd413f0", "tid": 35568, "ts": 7403030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7403202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd406f0", "tid": 35568, "ts": 7403329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7403501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41ce0", "tid": 35568, "ts": 7403627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7403799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40b00", "tid": 35568, "ts": 7403991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7404165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42840", "tid": 35568, "ts": 7404291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7404464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd414c0", "tid": 35568, "ts": 7404589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7404762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40210", "tid": 35568, "ts": 7404889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41730", "tid": 35568, "ts": 7405189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd429e0", "tid": 35568, "ts": 7405487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40bd0", "tid": 35568, "ts": 7405786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7405959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42b80", "tid": 35568, "ts": 7406086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7406259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42ec0", "tid": 35568, "ts": 7406385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7406556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd403b0", "tid": 35568, "ts": 7406682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7406853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40480", "tid": 35568, "ts": 7406980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7407152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd42d20", "tid": 35568, "ts": 7407277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7407450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd41800", "tid": 35568, "ts": 7407576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7407749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40620", "tid": 35568, "ts": 7407875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd407c0", "tid": 35568, "ts": 7408173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd40890", "tid": 35568, "ts": 7408473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44f40", "tid": 35568, "ts": 7408772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7408943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45aa0", "tid": 35568, "ts": 7409070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7409241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd450e0", "tid": 35568, "ts": 7409368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7409540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46530", "tid": 35568, "ts": 7409666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7409868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45830", "tid": 35568, "ts": 7410027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7410198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46600", "tid": 35568, "ts": 7410325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7410497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45690", "tid": 35568, "ts": 7410624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7410796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44240", "tid": 35568, "ts": 7410923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45010", "tid": 35568, "ts": 7411222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45eb0", "tid": 35568, "ts": 7411520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43540", "tid": 35568, "ts": 7411818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7411989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45760", "tid": 35568, "ts": 7412116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7412287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44310", "tid": 35568, "ts": 7412414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7412586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43950", "tid": 35568, "ts": 7412714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7412885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44cd0", "tid": 35568, "ts": 7413012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7413185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45900", "tid": 35568, "ts": 7413312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7413484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44720", "tid": 35568, "ts": 7413611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7413782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43fd0", "tid": 35568, "ts": 7413910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44990", "tid": 35568, "ts": 7414209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44b30", "tid": 35568, "ts": 7414507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd459d0", "tid": 35568, "ts": 7414806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7414978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd440a0", "tid": 35568, "ts": 7415145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7415318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd444b0", "tid": 35568, "ts": 7415445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7415617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46390", "tid": 35568, "ts": 7415743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7415916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45b70", "tid": 35568, "ts": 7416042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7416214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd466d0", "tid": 35568, "ts": 7416341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7416513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd461f0", "tid": 35568, "ts": 7416639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7416813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43610", "tid": 35568, "ts": 7416938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7417110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44da0", "tid": 35568, "ts": 7417236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7417410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43a20", "tid": 35568, "ts": 7417536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7417710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43af0", "tid": 35568, "ts": 7417836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44e70", "tid": 35568, "ts": 7418133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd467a0", "tid": 35568, "ts": 7418473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46120", "tid": 35568, "ts": 7418771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7418942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46460", "tid": 35568, "ts": 7419069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7419264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46870", "tid": 35568, "ts": 7419413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7419586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd454f0", "tid": 35568, "ts": 7419713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7419885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd436e0", "tid": 35568, "ts": 7420011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7420182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44170", "tid": 35568, "ts": 7420310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7420481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45c40", "tid": 35568, "ts": 7420608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7420781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd451b0", "tid": 35568, "ts": 7420907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd443e0", "tid": 35568, "ts": 7421206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45f80", "tid": 35568, "ts": 7421503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45d10", "tid": 35568, "ts": 7421801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7421973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45280", "tid": 35568, "ts": 7422099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7422271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd437b0", "tid": 35568, "ts": 7422398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7422569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43880", "tid": 35568, "ts": 7422695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7422867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44a60", "tid": 35568, "ts": 7422992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7423165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43bc0", "tid": 35568, "ts": 7423291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7423463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44580", "tid": 35568, "ts": 7423588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7423761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45de0", "tid": 35568, "ts": 7423887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43f00", "tid": 35568, "ts": 7424186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43d60", "tid": 35568, "ts": 7424483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45350", "tid": 35568, "ts": 7424781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7424952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44650", "tid": 35568, "ts": 7425079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7425251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43c90", "tid": 35568, "ts": 7425377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7425562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd45420", "tid": 35568, "ts": 7425689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7425885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd447f0", "tid": 35568, "ts": 7426011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7426184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd44c00", "tid": 35568, "ts": 7426311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7426483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd43e30", "tid": 35568, "ts": 7426609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7426781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd455c0", "tid": 35568, "ts": 7426907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd448c0", "tid": 35568, "ts": 7427206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46050", "tid": 35568, "ts": 7427505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd462c0", "tid": 35568, "ts": 7427802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7427974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47d90", "tid": 35568, "ts": 7428102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7428274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47f30", "tid": 35568, "ts": 7428400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7428572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd477e0", "tid": 35568, "ts": 7428698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7428870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47710", "tid": 35568, "ts": 7428995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7429167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48c30", "tid": 35568, "ts": 7429294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7429466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd481a0", "tid": 35568, "ts": 7429591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7429762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47230", "tid": 35568, "ts": 7429888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48750", "tid": 35568, "ts": 7430188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49930", "tid": 35568, "ts": 7430487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd478b0", "tid": 35568, "ts": 7430786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7430958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48410", "tid": 35568, "ts": 7431084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7431256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48340", "tid": 35568, "ts": 7431383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7431555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd480d0", "tid": 35568, "ts": 7431681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7431854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46c80", "tid": 35568, "ts": 7431979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7432151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd474a0", "tid": 35568, "ts": 7432277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7432449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48f70", "tid": 35568, "ts": 7432576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7432748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd488f0", "tid": 35568, "ts": 7432874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47570", "tid": 35568, "ts": 7433172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49040", "tid": 35568, "ts": 7433472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46d50", "tid": 35568, "ts": 7433769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7433957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47a50", "tid": 35568, "ts": 7434111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7434284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49860", "tid": 35568, "ts": 7434411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7434583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47e60", "tid": 35568, "ts": 7434710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7434883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47980", "tid": 35568, "ts": 7435010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7435184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47b20", "tid": 35568, "ts": 7435310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7435482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46fc0", "tid": 35568, "ts": 7435608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7435781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49110", "tid": 35568, "ts": 7435907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7436080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd484e0", "tid": 35568, "ts": 7436206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7436420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48a90", "tid": 35568, "ts": 7436548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7436720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48b60", "tid": 35568, "ts": 7436847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48000", "tid": 35568, "ts": 7437147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49a00", "tid": 35568, "ts": 7437445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd489c0", "tid": 35568, "ts": 7437744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7437916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48d00", "tid": 35568, "ts": 7438042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7438214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47160", "tid": 35568, "ts": 7438340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7438513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49380", "tid": 35568, "ts": 7438639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7438812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49ad0", "tid": 35568, "ts": 7438939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7439111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49790", "tid": 35568, "ts": 7439237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7439409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49ba0", "tid": 35568, "ts": 7439535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7439707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49520", "tid": 35568, "ts": 7439833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47bf0", "tid": 35568, "ts": 7440132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47cc0", "tid": 35568, "ts": 7440431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47640", "tid": 35568, "ts": 7440730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7440902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46e20", "tid": 35568, "ts": 7441028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7441260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd492b0", "tid": 35568, "ts": 7441388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7441560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47300", "tid": 35568, "ts": 7441686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7441858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49c70", "tid": 35568, "ts": 7441985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7442157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48270", "tid": 35568, "ts": 7442284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7442456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd47090", "tid": 35568, "ts": 7442583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7442756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd485b0", "tid": 35568, "ts": 7442882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48680", "tid": 35568, "ts": 7443180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd473d0", "tid": 35568, "ts": 7443479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46940", "tid": 35568, "ts": 7443777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7443950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48dd0", "tid": 35568, "ts": 7444076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7444249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48ea0", "tid": 35568, "ts": 7444374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7444547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd491e0", "tid": 35568, "ts": 7444673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7444846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49450", "tid": 35568, "ts": 7444974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7445146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd495f0", "tid": 35568, "ts": 7445272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7445444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46bb0", "tid": 35568, "ts": 7445571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7445743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46ef0", "tid": 35568, "ts": 7445870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd48820", "tid": 35568, "ts": 7446169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd496c0", "tid": 35568, "ts": 7446467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46a10", "tid": 35568, "ts": 7446765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7446937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd46ae0", "tid": 35568, "ts": 7447063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7447235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a7d0", "tid": 35568, "ts": 7447362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7447534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b740", "tid": 35568, "ts": 7447661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7447833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49ee0", "tid": 35568, "ts": 7448022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7448236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bcf0", "tid": 35568, "ts": 7448368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7448540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b400", "tid": 35568, "ts": 7448668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7448840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c030", "tid": 35568, "ts": 7448967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7449140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b4d0", "tid": 35568, "ts": 7449266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7449437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49e10", "tid": 35568, "ts": 7449563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7449736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b5a0", "tid": 35568, "ts": 7449862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a490", "tid": 35568, "ts": 7450161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c370", "tid": 35568, "ts": 7450460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ba80", "tid": 35568, "ts": 7450758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7450930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cb90", "tid": 35568, "ts": 7451057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7451229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c780", "tid": 35568, "ts": 7451355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7451527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b670", "tid": 35568, "ts": 7451653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7451826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a220", "tid": 35568, "ts": 7451952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7452124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a3c0", "tid": 35568, "ts": 7452251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7452424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a2f0", "tid": 35568, "ts": 7452549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7452722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cc60", "tid": 35568, "ts": 7452848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c440", "tid": 35568, "ts": 7453146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c100", "tid": 35568, "ts": 7453446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c5e0", "tid": 35568, "ts": 7453745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7453917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bb50", "tid": 35568, "ts": 7454044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7454216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c920", "tid": 35568, "ts": 7454343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7454515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cd30", "tid": 35568, "ts": 7454641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7454813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bdc0", "tid": 35568, "ts": 7454940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7455111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c850", "tid": 35568, "ts": 7455237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7455410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b810", "tid": 35568, "ts": 7455536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7455708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a700", "tid": 35568, "ts": 7455835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c9f0", "tid": 35568, "ts": 7456132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a560", "tid": 35568, "ts": 7456431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a630", "tid": 35568, "ts": 7456773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7456946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bf60", "tid": 35568, "ts": 7457073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7457244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c1d0", "tid": 35568, "ts": 7457371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7457543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ce00", "tid": 35568, "ts": 7457669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7457841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a150", "tid": 35568, "ts": 7457967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7458140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4be90", "tid": 35568, "ts": 7458265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7458438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ad80", "tid": 35568, "ts": 7458565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7458738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c6b0", "tid": 35568, "ts": 7458864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b8e0", "tid": 35568, "ts": 7459162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b0c0", "tid": 35568, "ts": 7459460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ae50", "tid": 35568, "ts": 7459759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7459931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cac0", "tid": 35568, "ts": 7460057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7460229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4af20", "tid": 35568, "ts": 7460355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7460527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c2a0", "tid": 35568, "ts": 7460654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7460826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4c510", "tid": 35568, "ts": 7460977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7461150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4aff0", "tid": 35568, "ts": 7461277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7461450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ced0", "tid": 35568, "ts": 7461575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7461747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b9b0", "tid": 35568, "ts": 7461874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49fb0", "tid": 35568, "ts": 7462173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4bc20", "tid": 35568, "ts": 7462474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a080", "tid": 35568, "ts": 7462772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7462944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ab10", "tid": 35568, "ts": 7463070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7463242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4cfa0", "tid": 35568, "ts": 7463368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7463540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d070", "tid": 35568, "ts": 7463666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7463839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a8a0", "tid": 35568, "ts": 7464023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7464196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd49d40", "tid": 35568, "ts": 7464323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7464495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4a970", "tid": 35568, "ts": 7464622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7464794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4aa40", "tid": 35568, "ts": 7464920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4abe0", "tid": 35568, "ts": 7465219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4acb0", "tid": 35568, "ts": 7465518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b190", "tid": 35568, "ts": 7465816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7465989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b260", "tid": 35568, "ts": 7466115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7466287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4b330", "tid": 35568, "ts": 7466412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7466585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e590", "tid": 35568, "ts": 7466711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7466882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fdf0", "tid": 35568, "ts": 7467009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7467180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d890", "tid": 35568, "ts": 7467307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7467479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4df10", "tid": 35568, "ts": 7467606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7467778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f9e0", "tid": 35568, "ts": 7467904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fab0", "tid": 35568, "ts": 7468203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e3f0", "tid": 35568, "ts": 7468500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50130", "tid": 35568, "ts": 7468799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7468970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e660", "tid": 35568, "ts": 7469096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7469267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd502d0", "tid": 35568, "ts": 7469394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7469567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fec0", "tid": 35568, "ts": 7469693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7469865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f0f0", "tid": 35568, "ts": 7469991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7470163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e4c0", "tid": 35568, "ts": 7470290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7470462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ec10", "tid": 35568, "ts": 7470589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7470760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50200", "tid": 35568, "ts": 7470887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dca0", "tid": 35568, "ts": 7471184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e8d0", "tid": 35568, "ts": 7471483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d2e0", "tid": 35568, "ts": 7471781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7471953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4eb40", "tid": 35568, "ts": 7472079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7472252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d6f0", "tid": 35568, "ts": 7472465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7472753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ece0", "tid": 35568, "ts": 7472932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7473166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ff90", "tid": 35568, "ts": 7473405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7473610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fd20", "tid": 35568, "ts": 7473738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7473912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50060", "tid": 35568, "ts": 7474038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7474212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e250", "tid": 35568, "ts": 7474339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7474511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd503a0", "tid": 35568, "ts": 7474637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7474809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4edb0", "tid": 35568, "ts": 7474936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7475107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ee80", "tid": 35568, "ts": 7475234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7475406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dd70", "tid": 35568, "ts": 7475533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7475705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f770", "tid": 35568, "ts": 7475831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7476005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e0b0", "tid": 35568, "ts": 7476131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7476303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e320", "tid": 35568, "ts": 7476430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7476771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e730", "tid": 35568, "ts": 7476931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7477104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d7c0", "tid": 35568, "ts": 7477231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7477405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f840", "tid": 35568, "ts": 7477532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7477704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fb80", "tid": 35568, "ts": 7477831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d480", "tid": 35568, "ts": 7478129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50470", "tid": 35568, "ts": 7478428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e800", "tid": 35568, "ts": 7478726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7478899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d620", "tid": 35568, "ts": 7479026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7479199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d140", "tid": 35568, "ts": 7479324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7479496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d210", "tid": 35568, "ts": 7479622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7479795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d3b0", "tid": 35568, "ts": 7479922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d550", "tid": 35568, "ts": 7480221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4d960", "tid": 35568, "ts": 7480520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ef50", "tid": 35568, "ts": 7480817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7480989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e9a0", "tid": 35568, "ts": 7481116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7481287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4db00", "tid": 35568, "ts": 7481413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7481585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4da30", "tid": 35568, "ts": 7481758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7481931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4ea70", "tid": 35568, "ts": 7482058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7482230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f5d0", "tid": 35568, "ts": 7482356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7482528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f910", "tid": 35568, "ts": 7482655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7482828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f290", "tid": 35568, "ts": 7482955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7483126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f360", "tid": 35568, "ts": 7483253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7483424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dbd0", "tid": 35568, "ts": 7483550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7483721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4dfe0", "tid": 35568, "ts": 7483847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f6a0", "tid": 35568, "ts": 7484146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f020", "tid": 35568, "ts": 7484443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f1c0", "tid": 35568, "ts": 7484741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7484912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4de40", "tid": 35568, "ts": 7485038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7485210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f430", "tid": 35568, "ts": 7485336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7485509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4e180", "tid": 35568, "ts": 7485636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7485809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4f500", "tid": 35568, "ts": 7485936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7486107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd4fc50", "tid": 35568, "ts": 7486234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7486407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50950", "tid": 35568, "ts": 7486533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7486705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd510a0", "tid": 35568, "ts": 7486831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52b70", "tid": 35568, "ts": 7487129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52010", "tid": 35568, "ts": 7487427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50d60", "tid": 35568, "ts": 7487726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7487898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52f80", "tid": 35568, "ts": 7488072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7488244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51650", "tid": 35568, "ts": 7488371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7488543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd531f0", "tid": 35568, "ts": 7488669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7488842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51240", "tid": 35568, "ts": 7488970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7489142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd517f0", "tid": 35568, "ts": 7489269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7489442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51310", "tid": 35568, "ts": 7489569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7489741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52de0", "tid": 35568, "ts": 7489868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7490039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd506e0", "tid": 35568, "ts": 7490165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7490338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50a20", "tid": 35568, "ts": 7490465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7490637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53460", "tid": 35568, "ts": 7490826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52aa0", "tid": 35568, "ts": 7491126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51f40", "tid": 35568, "ts": 7491424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd529d0", "tid": 35568, "ts": 7491722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7491895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52eb0", "tid": 35568, "ts": 7492021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7492194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd525c0", "tid": 35568, "ts": 7492320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7492493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52c40", "tid": 35568, "ts": 7492620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7492791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd520e0", "tid": 35568, "ts": 7492917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7493089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51720", "tid": 35568, "ts": 7493215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7493386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51170", "tid": 35568, "ts": 7493512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7493684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52830", "tid": 35568, "ts": 7493841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd513e0", "tid": 35568, "ts": 7494140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53050", "tid": 35568, "ts": 7494438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50540", "tid": 35568, "ts": 7494760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7494931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd507b0", "tid": 35568, "ts": 7495057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7495228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52900", "tid": 35568, "ts": 7495354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7495526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52d10", "tid": 35568, "ts": 7495652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7495823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd518c0", "tid": 35568, "ts": 7495950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7496122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52280", "tid": 35568, "ts": 7496249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7496421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53120", "tid": 35568, "ts": 7496548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7496720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd521b0", "tid": 35568, "ts": 7496846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53530", "tid": 35568, "ts": 7497145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51b30", "tid": 35568, "ts": 7497445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd532c0", "tid": 35568, "ts": 7497744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7497916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50af0", "tid": 35568, "ts": 7498044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7498215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50c90", "tid": 35568, "ts": 7498341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7498515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50880", "tid": 35568, "ts": 7498642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7498813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd514b0", "tid": 35568, "ts": 7498939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7499110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53390", "tid": 35568, "ts": 7499236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7499409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52690", "tid": 35568, "ts": 7499536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7499709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52760", "tid": 35568, "ts": 7499835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51580", "tid": 35568, "ts": 7500133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52350", "tid": 35568, "ts": 7500431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51990", "tid": 35568, "ts": 7500730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7500901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51da0", "tid": 35568, "ts": 7501028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7501199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50e30", "tid": 35568, "ts": 7501326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7501498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50f00", "tid": 35568, "ts": 7501624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7501798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd52420", "tid": 35568, "ts": 7501923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53600", "tid": 35568, "ts": 7502223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd524f0", "tid": 35568, "ts": 7502521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd536d0", "tid": 35568, "ts": 7502820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7502992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50bc0", "tid": 35568, "ts": 7503118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7503291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd537a0", "tid": 35568, "ts": 7503417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7503630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51a60", "tid": 35568, "ts": 7503784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7503956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50fd0", "tid": 35568, "ts": 7504083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7504254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51c00", "tid": 35568, "ts": 7504381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7504555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51cd0", "tid": 35568, "ts": 7504682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7504855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd51e70", "tid": 35568, "ts": 7504981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7505153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53870", "tid": 35568, "ts": 7505279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7505450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd50610", "tid": 35568, "ts": 7505576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7505749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56790", "tid": 35568, "ts": 7505876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd544a0", "tid": 35568, "ts": 7506175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd559c0", "tid": 35568, "ts": 7506473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53ae0", "tid": 35568, "ts": 7506772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7506944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd558f0", "tid": 35568, "ts": 7507070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7507242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54230", "tid": 35568, "ts": 7507368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7507541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55b60", "tid": 35568, "ts": 7507668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7507881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54090", "tid": 35568, "ts": 7508007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7508179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54b20", "tid": 35568, "ts": 7508306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7508478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56c70", "tid": 35568, "ts": 7508604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7508776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd547e0", "tid": 35568, "ts": 7508902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54e60", "tid": 35568, "ts": 7509201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55340", "tid": 35568, "ts": 7509499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55750", "tid": 35568, "ts": 7509797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7509970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd554e0", "tid": 35568, "ts": 7510098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7510269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56930", "tid": 35568, "ts": 7510396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7510568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56860", "tid": 35568, "ts": 7510694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7510865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56ba0", "tid": 35568, "ts": 7510992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7511164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55c30", "tid": 35568, "ts": 7511291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7511463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56040", "tid": 35568, "ts": 7511589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7511761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55270", "tid": 35568, "ts": 7511888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55d00", "tid": 35568, "ts": 7512185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54a50", "tid": 35568, "ts": 7512483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54bf0", "tid": 35568, "ts": 7512782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7512955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd561e0", "tid": 35568, "ts": 7513081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7513253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53bb0", "tid": 35568, "ts": 7513379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7513551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54160", "tid": 35568, "ts": 7513678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7513849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54cc0", "tid": 35568, "ts": 7513975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7514147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55410", "tid": 35568, "ts": 7514273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7514444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54640", "tid": 35568, "ts": 7514569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7514783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56a00", "tid": 35568, "ts": 7514915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54570", "tid": 35568, "ts": 7515213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd562b0", "tid": 35568, "ts": 7515513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55dd0", "tid": 35568, "ts": 7515810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7515983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55820", "tid": 35568, "ts": 7516110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7516281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd555b0", "tid": 35568, "ts": 7516407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7516579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55680", "tid": 35568, "ts": 7516704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7516876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54d90", "tid": 35568, "ts": 7517003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7517176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55ea0", "tid": 35568, "ts": 7517302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7517474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd548b0", "tid": 35568, "ts": 7517601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7517773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56380", "tid": 35568, "ts": 7517899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55a90", "tid": 35568, "ts": 7518198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53e20", "tid": 35568, "ts": 7518498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53fc0", "tid": 35568, "ts": 7518797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7518967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54980", "tid": 35568, "ts": 7519093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7519277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd550d0", "tid": 35568, "ts": 7519428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7519601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55f70", "tid": 35568, "ts": 7519728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7519900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56520", "tid": 35568, "ts": 7520026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7520198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54300", "tid": 35568, "ts": 7520325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7520498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54f30", "tid": 35568, "ts": 7520624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7520796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56110", "tid": 35568, "ts": 7520923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56450", "tid": 35568, "ts": 7521221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd565f0", "tid": 35568, "ts": 7521519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd543d0", "tid": 35568, "ts": 7521818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7521990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd54710", "tid": 35568, "ts": 7522115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7522287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd55000", "tid": 35568, "ts": 7522414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7522586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd551a0", "tid": 35568, "ts": 7522712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7522884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd566c0", "tid": 35568, "ts": 7523010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7523182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56ad0", "tid": 35568, "ts": 7523308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7523481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53940", "tid": 35568, "ts": 7523608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7523780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53a10", "tid": 35568, "ts": 7523907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53ef0", "tid": 35568, "ts": 7524206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53c80", "tid": 35568, "ts": 7524505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd53d50", "tid": 35568, "ts": 7524804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7524975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57560", "tid": 35568, "ts": 7525102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7525274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57150", "tid": 35568, "ts": 7525401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7525573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57d80", "tid": 35568, "ts": 7525699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7525871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58cf0", "tid": 35568, "ts": 7525998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7526169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57630", "tid": 35568, "ts": 7526296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7526468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59d30", "tid": 35568, "ts": 7526594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7526766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58330", "tid": 35568, "ts": 7526893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59e00", "tid": 35568, "ts": 7527191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59ac0", "tid": 35568, "ts": 7527490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59510", "tid": 35568, "ts": 7527787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7527959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59030", "tid": 35568, "ts": 7528086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7528258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56ee0", "tid": 35568, "ts": 7528385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7528557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57220", "tid": 35568, "ts": 7528683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7528854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd592a0", "tid": 35568, "ts": 7528980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7529151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58740", "tid": 35568, "ts": 7529278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7529449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58670", "tid": 35568, "ts": 7529575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7529748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58c20", "tid": 35568, "ts": 7529875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57f20", "tid": 35568, "ts": 7530173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd577d0", "tid": 35568, "ts": 7530471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58a80", "tid": 35568, "ts": 7530769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7530942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58260", "tid": 35568, "ts": 7531069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7531241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59b90", "tid": 35568, "ts": 7531367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7531539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58f60", "tid": 35568, "ts": 7531665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7531837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59c60", "tid": 35568, "ts": 7531963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7532136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd572f0", "tid": 35568, "ts": 7532262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7532434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58dc0", "tid": 35568, "ts": 7532561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7532734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56fb0", "tid": 35568, "ts": 7532921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd573c0", "tid": 35568, "ts": 7533220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd580c0", "tid": 35568, "ts": 7533520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd591d0", "tid": 35568, "ts": 7533818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7533991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58e90", "tid": 35568, "ts": 7534118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7534291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57490", "tid": 35568, "ts": 7534417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7534588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57b10", "tid": 35568, "ts": 7534715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7534947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59ed0", "tid": 35568, "ts": 7535075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7535247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59370", "tid": 35568, "ts": 7535375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7535546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59780", "tid": 35568, "ts": 7535673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7535845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59fa0", "tid": 35568, "ts": 7535972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7536144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59100", "tid": 35568, "ts": 7536270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7536440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59440", "tid": 35568, "ts": 7536567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7536739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59850", "tid": 35568, "ts": 7536865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd595e0", "tid": 35568, "ts": 7537164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57970", "tid": 35568, "ts": 7537461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58190", "tid": 35568, "ts": 7537759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7537930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a070", "tid": 35568, "ts": 7538056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7538227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58810", "tid": 35568, "ts": 7538353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7538523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56d40", "tid": 35568, "ts": 7538649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7538821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57a40", "tid": 35568, "ts": 7538947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7539119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58400", "tid": 35568, "ts": 7539245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7539417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd588e0", "tid": 35568, "ts": 7539545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7539716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57be0", "tid": 35568, "ts": 7539842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd596b0", "tid": 35568, "ts": 7540140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd578a0", "tid": 35568, "ts": 7540438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd59920", "tid": 35568, "ts": 7540736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7540907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd58b50", "tid": 35568, "ts": 7541034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7541205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd599f0", "tid": 35568, "ts": 7541332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7541502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57700", "tid": 35568, "ts": 7541629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7541801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd56e10", "tid": 35568, "ts": 7541926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57080", "tid": 35568, "ts": 7542223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd589b0", "tid": 35568, "ts": 7542521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57cb0", "tid": 35568, "ts": 7542818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7542990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57ff0", "tid": 35568, "ts": 7543116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7543288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd57e50", "tid": 35568, "ts": 7543414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7543586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd584d0", "tid": 35568, "ts": 7543712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7543883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd585a0", "tid": 35568, "ts": 7544009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7544182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c840", "tid": 35568, "ts": 7544308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7544481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ba70", "tid": 35568, "ts": 7544608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7544782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bb40", "tid": 35568, "ts": 7544910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bf50", "tid": 35568, "ts": 7545209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a550", "tid": 35568, "ts": 7545508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d2d0", "tid": 35568, "ts": 7545807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7545978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d060", "tid": 35568, "ts": 7546103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7546275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bce0", "tid": 35568, "ts": 7546401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7546573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d130", "tid": 35568, "ts": 7546699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7546870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cb80", "tid": 35568, "ts": 7546997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7547169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a2e0", "tid": 35568, "ts": 7547295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7547468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a960", "tid": 35568, "ts": 7547638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7547811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d470", "tid": 35568, "ts": 7547938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7548111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ab00", "tid": 35568, "ts": 7548237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7548408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c020", "tid": 35568, "ts": 7548536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7548707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cd20", "tid": 35568, "ts": 7548835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a140", "tid": 35568, "ts": 7549132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c0f0", "tid": 35568, "ts": 7549430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cdf0", "tid": 35568, "ts": 7549728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7549901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d200", "tid": 35568, "ts": 7550027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7550198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5aa30", "tid": 35568, "ts": 7550325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7550510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b590", "tid": 35568, "ts": 7550639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7550811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b0b0", "tid": 35568, "ts": 7550939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7551110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bc10", "tid": 35568, "ts": 7551237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7551409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c6a0", "tid": 35568, "ts": 7551536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7551707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a210", "tid": 35568, "ts": 7551833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c770", "tid": 35568, "ts": 7552131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a3b0", "tid": 35568, "ts": 7552428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b180", "tid": 35568, "ts": 7552727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7552899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b8d0", "tid": 35568, "ts": 7553025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7553197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5afe0", "tid": 35568, "ts": 7553324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7553496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cc50", "tid": 35568, "ts": 7553622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7553794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a480", "tid": 35568, "ts": 7553921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5af10", "tid": 35568, "ts": 7554217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cab0", "tid": 35568, "ts": 7554516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5bdb0", "tid": 35568, "ts": 7554815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7554987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5be80", "tid": 35568, "ts": 7555114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7555286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a620", "tid": 35568, "ts": 7555413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7555585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c1c0", "tid": 35568, "ts": 7555711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7555884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a6f0", "tid": 35568, "ts": 7556010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7556182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5abd0", "tid": 35568, "ts": 7556309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7556480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c290", "tid": 35568, "ts": 7556607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7556779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c360", "tid": 35568, "ts": 7556906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ae40", "tid": 35568, "ts": 7557204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d3a0", "tid": 35568, "ts": 7557502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b660", "tid": 35568, "ts": 7557799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7557971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a7c0", "tid": 35568, "ts": 7558097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7558270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5a890", "tid": 35568, "ts": 7558396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7558568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c430", "tid": 35568, "ts": 7558695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7558867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cec0", "tid": 35568, "ts": 7558993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7559165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5aca0", "tid": 35568, "ts": 7559292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7559464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b250", "tid": 35568, "ts": 7559590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7559763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c5d0", "tid": 35568, "ts": 7559889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ad70", "tid": 35568, "ts": 7560186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5cf90", "tid": 35568, "ts": 7560484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b320", "tid": 35568, "ts": 7560782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7560955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b730", "tid": 35568, "ts": 7561081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7561252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b3f0", "tid": 35568, "ts": 7561378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7561550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b4c0", "tid": 35568, "ts": 7561677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7561848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c500", "tid": 35568, "ts": 7561975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7562147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b800", "tid": 35568, "ts": 7562274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7562447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5b9a0", "tid": 35568, "ts": 7562573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7562746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c910", "tid": 35568, "ts": 7562872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5c9e0", "tid": 35568, "ts": 7563171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f690", "tid": 35568, "ts": 7563469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd607a0", "tid": 35568, "ts": 7563768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7563940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e650", "tid": 35568, "ts": 7564066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7564238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e3e0", "tid": 35568, "ts": 7564364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7564536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ff80", "tid": 35568, "ts": 7564663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7564835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d6e0", "tid": 35568, "ts": 7564962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7565133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e240", "tid": 35568, "ts": 7565260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7565431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d950", "tid": 35568, "ts": 7565557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7565729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60870", "tid": 35568, "ts": 7565856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7566028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e720", "tid": 35568, "ts": 7566256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7566488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5eda0", "tid": 35568, "ts": 7566617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7566789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5de30", "tid": 35568, "ts": 7566917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e7f0", "tid": 35568, "ts": 7567216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e8c0", "tid": 35568, "ts": 7567517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d880", "tid": 35568, "ts": 7567815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7567987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5feb0", "tid": 35568, "ts": 7568114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7568285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d540", "tid": 35568, "ts": 7568412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7568583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ef40", "tid": 35568, "ts": 7568711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7568883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5faa0", "tid": 35568, "ts": 7569010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7569182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d610", "tid": 35568, "ts": 7569308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7569480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fde0", "tid": 35568, "ts": 7569606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7569777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dbc0", "tid": 35568, "ts": 7569903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f350", "tid": 35568, "ts": 7570229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5daf0", "tid": 35568, "ts": 7570528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fd10", "tid": 35568, "ts": 7570827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7570998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e990", "tid": 35568, "ts": 7571125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7571296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dfd0", "tid": 35568, "ts": 7571423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7571595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60390", "tid": 35568, "ts": 7571721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7571892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e0a0", "tid": 35568, "ts": 7572018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7572190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dd60", "tid": 35568, "ts": 7572316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7572489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e310", "tid": 35568, "ts": 7572616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7572788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60460", "tid": 35568, "ts": 7572915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f010", "tid": 35568, "ts": 7573213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5df00", "tid": 35568, "ts": 7573511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60050", "tid": 35568, "ts": 7573809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7573982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ea60", "tid": 35568, "ts": 7574108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7574281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e4b0", "tid": 35568, "ts": 7574408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7574580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f5c0", "tid": 35568, "ts": 7574706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7574878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f420", "tid": 35568, "ts": 7575005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7575177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5dc90", "tid": 35568, "ts": 7575303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7575475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f830", "tid": 35568, "ts": 7575601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7575773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60120", "tid": 35568, "ts": 7575899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7576072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd601f0", "tid": 35568, "ts": 7576198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7576371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5eb30", "tid": 35568, "ts": 7576498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7576670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ec00", "tid": 35568, "ts": 7576858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fb70", "tid": 35568, "ts": 7577158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e170", "tid": 35568, "ts": 7577509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5e580", "tid": 35568, "ts": 7577814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7577986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5fc40", "tid": 35568, "ts": 7578112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7578325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd602c0", "tid": 35568, "ts": 7578452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7578625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ecd0", "tid": 35568, "ts": 7578751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7578923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5ee70", "tid": 35568, "ts": 7579050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7579222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60530", "tid": 35568, "ts": 7579349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7579521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60600", "tid": 35568, "ts": 7579647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7579819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f0e0", "tid": 35568, "ts": 7579945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7580117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f1b0", "tid": 35568, "ts": 7580245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7580417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f280", "tid": 35568, "ts": 7580544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7580755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f4f0", "tid": 35568, "ts": 7580882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7581055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f900", "tid": 35568, "ts": 7581182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7581354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f760", "tid": 35568, "ts": 7581481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7581653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5f9d0", "tid": 35568, "ts": 7581884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7582141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd606d0", "tid": 35568, "ts": 7582282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7582547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5d7b0", "tid": 35568, "ts": 7582675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7582847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd5da20", "tid": 35568, "ts": 7582974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7583146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62340", "tid": 35568, "ts": 7583273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7583446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62750", "tid": 35568, "ts": 7583572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7583745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd617e0", "tid": 35568, "ts": 7583871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61090", "tid": 35568, "ts": 7584173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60d50", "tid": 35568, "ts": 7584471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61160", "tid": 35568, "ts": 7584769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7584940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60bb0", "tid": 35568, "ts": 7585068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7585240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd631e0", "tid": 35568, "ts": 7585367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7585539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61980", "tid": 35568, "ts": 7585665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7585837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62c30", "tid": 35568, "ts": 7585963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7586135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60940", "tid": 35568, "ts": 7586261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7586433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61bf0", "tid": 35568, "ts": 7586559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7586731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62270", "tid": 35568, "ts": 7586857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63450", "tid": 35568, "ts": 7587155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63380", "tid": 35568, "ts": 7587453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61230", "tid": 35568, "ts": 7587751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7587924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60c80", "tid": 35568, "ts": 7588050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7588222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61300", "tid": 35568, "ts": 7588348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7588520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60fc0", "tid": 35568, "ts": 7588647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7588817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd614a0", "tid": 35568, "ts": 7588944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7589116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63ad0", "tid": 35568, "ts": 7589242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7589414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61e60", "tid": 35568, "ts": 7589541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7589712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd625b0", "tid": 35568, "ts": 7589839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60a10", "tid": 35568, "ts": 7590136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61a50", "tid": 35568, "ts": 7590435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63ba0", "tid": 35568, "ts": 7590733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7590905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61f30", "tid": 35568, "ts": 7591031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7591204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd620d0", "tid": 35568, "ts": 7591330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7591502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61cc0", "tid": 35568, "ts": 7591628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7591800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61640", "tid": 35568, "ts": 7591926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd632b0", "tid": 35568, "ts": 7592225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61d90", "tid": 35568, "ts": 7592523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62680", "tid": 35568, "ts": 7592822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7592993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd613d0", "tid": 35568, "ts": 7593120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7593293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60ae0", "tid": 35568, "ts": 7593419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7593590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62d00", "tid": 35568, "ts": 7593716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7593888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63520", "tid": 35568, "ts": 7594014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7594186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd621a0", "tid": 35568, "ts": 7594312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7594485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62820", "tid": 35568, "ts": 7594634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7594806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60e20", "tid": 35568, "ts": 7594933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7595105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63790", "tid": 35568, "ts": 7595232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7595403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63860", "tid": 35568, "ts": 7595530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7595703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61570", "tid": 35568, "ts": 7595829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd635f0", "tid": 35568, "ts": 7596126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62410", "tid": 35568, "ts": 7596424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd636c0", "tid": 35568, "ts": 7596722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7596893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61710", "tid": 35568, "ts": 7597020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7597191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62000", "tid": 35568, "ts": 7597319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7597553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63930", "tid": 35568, "ts": 7597680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7597853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62dd0", "tid": 35568, "ts": 7597979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7598151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63c70", "tid": 35568, "ts": 7598277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7598449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd61b20", "tid": 35568, "ts": 7598577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7598749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd60ef0", "tid": 35568, "ts": 7598875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd618b0", "tid": 35568, "ts": 7599174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd624e0", "tid": 35568, "ts": 7599472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd628f0", "tid": 35568, "ts": 7599769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7599942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd629c0", "tid": 35568, "ts": 7600068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7600239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62a90", "tid": 35568, "ts": 7600365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7600537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62ea0", "tid": 35568, "ts": 7600664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7600836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62b60", "tid": 35568, "ts": 7600962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7601133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd62f70", "tid": 35568, "ts": 7601260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7601433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63040", "tid": 35568, "ts": 7601617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7601789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63110", "tid": 35568, "ts": 7601916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63a00", "tid": 35568, "ts": 7602216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64630", "tid": 35568, "ts": 7602515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64700", "tid": 35568, "ts": 7602814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7602987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66920", "tid": 35568, "ts": 7603113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7603285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64b10", "tid": 35568, "ts": 7603412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7603584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd647d0", "tid": 35568, "ts": 7603711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7603884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd666b0", "tid": 35568, "ts": 7604010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7604182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66ed0", "tid": 35568, "ts": 7604308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7604480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65740", "tid": 35568, "ts": 7604606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7604779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65260", "tid": 35568, "ts": 7604907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63d40", "tid": 35568, "ts": 7605205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65c20", "tid": 35568, "ts": 7605505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65dc0", "tid": 35568, "ts": 7605804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7605977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66780", "tid": 35568, "ts": 7606103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7606276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64560", "tid": 35568, "ts": 7606402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7606573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65a80", "tid": 35568, "ts": 7606699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7606871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64e50", "tid": 35568, "ts": 7606997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7607169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd648a0", "tid": 35568, "ts": 7607295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7607467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66fa0", "tid": 35568, "ts": 7607593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7607765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64f20", "tid": 35568, "ts": 7607892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd662a0", "tid": 35568, "ts": 7608192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64d80", "tid": 35568, "ts": 7608490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66c60", "tid": 35568, "ts": 7608789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7608962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64970", "tid": 35568, "ts": 7609089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7609260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64a40", "tid": 35568, "ts": 7609388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7609560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66370", "tid": 35568, "ts": 7609686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7609858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63fb0", "tid": 35568, "ts": 7609984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7610156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66850", "tid": 35568, "ts": 7610282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7610455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65810", "tid": 35568, "ts": 7610582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7610754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66440", "tid": 35568, "ts": 7610881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64ff0", "tid": 35568, "ts": 7611180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd642f0", "tid": 35568, "ts": 7611479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64150", "tid": 35568, "ts": 7611777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7611949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66030", "tid": 35568, "ts": 7612075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7612248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd665e0", "tid": 35568, "ts": 7612375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7612547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64220", "tid": 35568, "ts": 7612673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7612845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd650c0", "tid": 35568, "ts": 7612983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7613156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65400", "tid": 35568, "ts": 7613284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7613456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64be0", "tid": 35568, "ts": 7613582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7613754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65e90", "tid": 35568, "ts": 7613923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66100", "tid": 35568, "ts": 7614221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65190", "tid": 35568, "ts": 7614520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63e10", "tid": 35568, "ts": 7614817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7614990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd658e0", "tid": 35568, "ts": 7615116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7615288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd659b0", "tid": 35568, "ts": 7615414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7615586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66d30", "tid": 35568, "ts": 7615713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7615884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd63ee0", "tid": 35568, "ts": 7616011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7616183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65b50", "tid": 35568, "ts": 7616309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7616481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd643c0", "tid": 35568, "ts": 7616608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7616779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64cb0", "tid": 35568, "ts": 7616906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65330", "tid": 35568, "ts": 7617203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64080", "tid": 35568, "ts": 7617502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65cf0", "tid": 35568, "ts": 7617799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7617970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd654d0", "tid": 35568, "ts": 7618097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7618269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66e00", "tid": 35568, "ts": 7618395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7618567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd661d0", "tid": 35568, "ts": 7618693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7618865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66510", "tid": 35568, "ts": 7618993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7619165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd655a0", "tid": 35568, "ts": 7619293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7619464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67070", "tid": 35568, "ts": 7619591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7619764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65670", "tid": 35568, "ts": 7619891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd669f0", "tid": 35568, "ts": 7620189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd64490", "tid": 35568, "ts": 7620488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66ac0", "tid": 35568, "ts": 7620786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7620957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd65f60", "tid": 35568, "ts": 7621084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7621255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd66b90", "tid": 35568, "ts": 7621382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7621554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69c50", "tid": 35568, "ts": 7621681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7621852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd680b0", "tid": 35568, "ts": 7621978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7622149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69b80", "tid": 35568, "ts": 7622276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7622448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd673b0", "tid": 35568, "ts": 7622575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7622746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd699e0", "tid": 35568, "ts": 7622873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68db0", "tid": 35568, "ts": 7623170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69840", "tid": 35568, "ts": 7623468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67620", "tid": 35568, "ts": 7623766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7623938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd688d0", "tid": 35568, "ts": 7624064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7624236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67a30", "tid": 35568, "ts": 7624362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7624534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69ab0", "tid": 35568, "ts": 7624660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7624832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67140", "tid": 35568, "ts": 7624959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7625131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd690f0", "tid": 35568, "ts": 7625258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7625429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd672e0", "tid": 35568, "ts": 7625554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7625726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67fe0", "tid": 35568, "ts": 7625852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a3a0", "tid": 35568, "ts": 7626174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69290", "tid": 35568, "ts": 7626472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67e40", "tid": 35568, "ts": 7626770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7626943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67b00", "tid": 35568, "ts": 7627071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7627243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67210", "tid": 35568, "ts": 7627369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7627540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd691c0", "tid": 35568, "ts": 7627666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7627839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69d20", "tid": 35568, "ts": 7627966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7628137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68180", "tid": 35568, "ts": 7628263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7628434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69500", "tid": 35568, "ts": 7628560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7628776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69df0", "tid": 35568, "ts": 7628903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68660", "tid": 35568, "ts": 7629202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68e80", "tid": 35568, "ts": 7629499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd677c0", "tid": 35568, "ts": 7629798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7629970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69910", "tid": 35568, "ts": 7630150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7630322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 7630826, "pid": 35104, "args": { "Heap": { "SizeInBytes": 268435456, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234acd67480", "tid": 35568, "ts": 7630840, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234acd67480", "tid": 35568, "ts": 7630870, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 268435456, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd676f0", "tid": 35568, "ts": 7630987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7631161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68f50", "tid": 35568, "ts": 7631288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7631460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69ec0", "tid": 35568, "ts": 7631588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7631771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd689a0", "tid": 35568, "ts": 7631897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67890", "tid": 35568, "ts": 7632194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68250", "tid": 35568, "ts": 7632492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69f90", "tid": 35568, "ts": 7632790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7632962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67960", "tid": 35568, "ts": 7633088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7633260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67bd0", "tid": 35568, "ts": 7633385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7633558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68a70", "tid": 35568, "ts": 7633685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7633857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69770", "tid": 35568, "ts": 7633984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7634156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68b40", "tid": 35568, "ts": 7634282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7634454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67ca0", "tid": 35568, "ts": 7634581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7634753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68c10", "tid": 35568, "ts": 7634878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68320", "tid": 35568, "ts": 7635177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a060", "tid": 35568, "ts": 7635474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69360", "tid": 35568, "ts": 7635772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7635944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd683f0", "tid": 35568, "ts": 7636071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7636242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68590", "tid": 35568, "ts": 7636369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7636542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67d70", "tid": 35568, "ts": 7636668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7636841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67f10", "tid": 35568, "ts": 7636968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7637141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68ce0", "tid": 35568, "ts": 7637267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7637440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69020", "tid": 35568, "ts": 7637565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7637736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd684c0", "tid": 35568, "ts": 7637863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd69430", "tid": 35568, "ts": 7638161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a200", "tid": 35568, "ts": 7638458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68730", "tid": 35568, "ts": 7638757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7638929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd68800", "tid": 35568, "ts": 7639055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7639226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a130", "tid": 35568, "ts": 7639352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7639524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd695d0", "tid": 35568, "ts": 7639649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7639822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd696a0", "tid": 35568, "ts": 7639948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7640120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a2d0", "tid": 35568, "ts": 7640245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7640418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a470", "tid": 35568, "ts": 7640543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7640715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c690", "tid": 35568, "ts": 7640841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bf40", "tid": 35568, "ts": 7641139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c760", "tid": 35568, "ts": 7641437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c830", "tid": 35568, "ts": 7641734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7641906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c010", "tid": 35568, "ts": 7642032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7642204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a950", "tid": 35568, "ts": 7642331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7642501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d050", "tid": 35568, "ts": 7642628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7642800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b580", "tid": 35568, "ts": 7642926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b8c0", "tid": 35568, "ts": 7643223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6caa0", "tid": 35568, "ts": 7643521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b4b0", "tid": 35568, "ts": 7643819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7643990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a880", "tid": 35568, "ts": 7644117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7644346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d7a0", "tid": 35568, "ts": 7644473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7644645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b990", "tid": 35568, "ts": 7644771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7644943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6aa20", "tid": 35568, "ts": 7645069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7645240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6afd0", "tid": 35568, "ts": 7645366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7645538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b7f0", "tid": 35568, "ts": 7645664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7645836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6be70", "tid": 35568, "ts": 7645962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7646133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c350", "tid": 35568, "ts": 7646260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7646432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d2c0", "tid": 35568, "ts": 7646559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7646730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d600", "tid": 35568, "ts": 7646856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a7b0", "tid": 35568, "ts": 7647198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c1b0", "tid": 35568, "ts": 7647497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a6e0", "tid": 35568, "ts": 7647795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7647966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c900", "tid": 35568, "ts": 7648091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7648265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ba60", "tid": 35568, "ts": 7648391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7648563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c5c0", "tid": 35568, "ts": 7648688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7648860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d120", "tid": 35568, "ts": 7648987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7649158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b310", "tid": 35568, "ts": 7649284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7649498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d390", "tid": 35568, "ts": 7649624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7649795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6abc0", "tid": 35568, "ts": 7649922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c9d0", "tid": 35568, "ts": 7650219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cb70", "tid": 35568, "ts": 7650517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cf80", "tid": 35568, "ts": 7650816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7650989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cc40", "tid": 35568, "ts": 7651115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7651287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b3e0", "tid": 35568, "ts": 7651413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7651584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b650", "tid": 35568, "ts": 7651710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7651882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cd10", "tid": 35568, "ts": 7652008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7652179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6aaf0", "tid": 35568, "ts": 7652306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7652477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bb30", "tid": 35568, "ts": 7652603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7652775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bda0", "tid": 35568, "ts": 7652901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7653073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6cde0", "tid": 35568, "ts": 7653199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7653370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d6d0", "tid": 35568, "ts": 7653497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7653669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b720", "tid": 35568, "ts": 7653833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b0a0", "tid": 35568, "ts": 7654130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d870", "tid": 35568, "ts": 7654428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ceb0", "tid": 35568, "ts": 7654726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7654897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bc00", "tid": 35568, "ts": 7655024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7655195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ac90", "tid": 35568, "ts": 7655321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7655493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ad60", "tid": 35568, "ts": 7655619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7655791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a540", "tid": 35568, "ts": 7655917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c420", "tid": 35568, "ts": 7656215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d460", "tid": 35568, "ts": 7656512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ae30", "tid": 35568, "ts": 7656810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7656981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6bcd0", "tid": 35568, "ts": 7657134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7657305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d1f0", "tid": 35568, "ts": 7657432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7657604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d530", "tid": 35568, "ts": 7657795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7657968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c0e0", "tid": 35568, "ts": 7658094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7658265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6a610", "tid": 35568, "ts": 7658391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7658563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c280", "tid": 35568, "ts": 7658690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7658861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6c4f0", "tid": 35568, "ts": 7658987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7659159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6af00", "tid": 35568, "ts": 7659285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7659457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b170", "tid": 35568, "ts": 7659584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7659756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6b240", "tid": 35568, "ts": 7659971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7660143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dd50", "tid": 35568, "ts": 7660270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7660441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e300", "tid": 35568, "ts": 7660567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7660739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fdd0", "tid": 35568, "ts": 7660865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f270", "tid": 35568, "ts": 7661163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70450", "tid": 35568, "ts": 7661461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ebf0", "tid": 35568, "ts": 7661759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7661930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd701e0", "tid": 35568, "ts": 7662057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7662229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dae0", "tid": 35568, "ts": 7662355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7662527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6d940", "tid": 35568, "ts": 7662653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7662825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd706c0", "tid": 35568, "ts": 7662952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7663189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70110", "tid": 35568, "ts": 7663319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7663498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e090", "tid": 35568, "ts": 7663631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7663870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e7e0", "tid": 35568, "ts": 7664008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7664182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6da10", "tid": 35568, "ts": 7664308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7664480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f410", "tid": 35568, "ts": 7664606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7664777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70380", "tid": 35568, "ts": 7664904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dbb0", "tid": 35568, "ts": 7665202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ea50", "tid": 35568, "ts": 7665500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f4e0", "tid": 35568, "ts": 7665798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7665970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e980", "tid": 35568, "ts": 7666096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7666267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f0d0", "tid": 35568, "ts": 7666393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7666564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f000", "tid": 35568, "ts": 7666690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7666862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e640", "tid": 35568, "ts": 7666988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7667160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6def0", "tid": 35568, "ts": 7667287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7667458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f820", "tid": 35568, "ts": 7667584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7667757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70ad0", "tid": 35568, "ts": 7667882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70520", "tid": 35568, "ts": 7668180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e4a0", "tid": 35568, "ts": 7668477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70ba0", "tid": 35568, "ts": 7668775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7668946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6eb20", "tid": 35568, "ts": 7669072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7669244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6de20", "tid": 35568, "ts": 7669370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7669542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dc80", "tid": 35568, "ts": 7669669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7669841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e3d0", "tid": 35568, "ts": 7670035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7670207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f340", "tid": 35568, "ts": 7670334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7670506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd705f0", "tid": 35568, "ts": 7670632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7670803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e8b0", "tid": 35568, "ts": 7670929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e710", "tid": 35568, "ts": 7671227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ecc0", "tid": 35568, "ts": 7671526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f9c0", "tid": 35568, "ts": 7671824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7671995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6dfc0", "tid": 35568, "ts": 7672121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7672293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fea0", "tid": 35568, "ts": 7672419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7672591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f5b0", "tid": 35568, "ts": 7672718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7672890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70790", "tid": 35568, "ts": 7673015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7673187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd702b0", "tid": 35568, "ts": 7673313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7673485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e160", "tid": 35568, "ts": 7673610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7673781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fa90", "tid": 35568, "ts": 7673907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e570", "tid": 35568, "ts": 7674206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ed90", "tid": 35568, "ts": 7674503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6e230", "tid": 35568, "ts": 7674800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7674972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ee60", "tid": 35568, "ts": 7675097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7675268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ef30", "tid": 35568, "ts": 7675394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7675577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70860", "tid": 35568, "ts": 7675703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7675876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f1a0", "tid": 35568, "ts": 7676002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7676174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f680", "tid": 35568, "ts": 7676301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7676473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fb60", "tid": 35568, "ts": 7676599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7676771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f750", "tid": 35568, "ts": 7676897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70930", "tid": 35568, "ts": 7677193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fc30", "tid": 35568, "ts": 7677492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6f8f0", "tid": 35568, "ts": 7677789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7677961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70a00", "tid": 35568, "ts": 7678086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7678259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6fd00", "tid": 35568, "ts": 7678385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7678558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd6ff70", "tid": 35568, "ts": 7678684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7678856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70040", "tid": 35568, "ts": 7678983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7679154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70c70", "tid": 35568, "ts": 7679291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7679463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73fa0", "tid": 35568, "ts": 7679590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7679762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72400", "tid": 35568, "ts": 7679888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71490", "tid": 35568, "ts": 7680186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71be0", "tid": 35568, "ts": 7680529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71e50", "tid": 35568, "ts": 7680827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7680999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72c20", "tid": 35568, "ts": 7681126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7681297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72e90", "tid": 35568, "ts": 7681423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7681595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71f20", "tid": 35568, "ts": 7681720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7681893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71150", "tid": 35568, "ts": 7682018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7682191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71970", "tid": 35568, "ts": 7682317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7682488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd713c0", "tid": 35568, "ts": 7682614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7682785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71cb0", "tid": 35568, "ts": 7682910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71ff0", "tid": 35568, "ts": 7683209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72a80", "tid": 35568, "ts": 7683506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71630", "tid": 35568, "ts": 7683804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7683975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73d30", "tid": 35568, "ts": 7684102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7684273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71220", "tid": 35568, "ts": 7684399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7684571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd712f0", "tid": 35568, "ts": 7684696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7684869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71560", "tid": 35568, "ts": 7684995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7685167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71a40", "tid": 35568, "ts": 7685293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7685464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd731d0", "tid": 35568, "ts": 7685589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7685761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74070", "tid": 35568, "ts": 7685887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71b10", "tid": 35568, "ts": 7686185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72cf0", "tid": 35568, "ts": 7686482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72dc0", "tid": 35568, "ts": 7686779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7686953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd724d0", "tid": 35568, "ts": 7687079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7687250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70d40", "tid": 35568, "ts": 7687377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7687548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72810", "tid": 35568, "ts": 7687674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7687846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73ac0", "tid": 35568, "ts": 7687972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7688144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd717d0", "tid": 35568, "ts": 7688269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7688441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd725a0", "tid": 35568, "ts": 7688566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7688738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71d80", "tid": 35568, "ts": 7688865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71700", "tid": 35568, "ts": 7689163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd720c0", "tid": 35568, "ts": 7689460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72670", "tid": 35568, "ts": 7689757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7689928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73e00", "tid": 35568, "ts": 7690054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7690226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd718a0", "tid": 35568, "ts": 7690352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7690522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72190", "tid": 35568, "ts": 7690649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7690819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72740", "tid": 35568, "ts": 7690946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7691193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd728e0", "tid": 35568, "ts": 7691459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7691715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70e10", "tid": 35568, "ts": 7691893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7692142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72260", "tid": 35568, "ts": 7692291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7692463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72f60", "tid": 35568, "ts": 7692590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7692762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73ed0", "tid": 35568, "ts": 7692888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73850", "tid": 35568, "ts": 7693187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72330", "tid": 35568, "ts": 7693486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd729b0", "tid": 35568, "ts": 7693783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7693955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd72b50", "tid": 35568, "ts": 7694081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7694253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73030", "tid": 35568, "ts": 7694379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7694573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73100", "tid": 35568, "ts": 7694700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7694873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd732a0", "tid": 35568, "ts": 7694999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7695171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73370", "tid": 35568, "ts": 7695298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7695468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73440", "tid": 35568, "ts": 7695595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7695768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73510", "tid": 35568, "ts": 7695894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd735e0", "tid": 35568, "ts": 7696192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70ee0", "tid": 35568, "ts": 7696490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73b90", "tid": 35568, "ts": 7696788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7696962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd736b0", "tid": 35568, "ts": 7697088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7697260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73780", "tid": 35568, "ts": 7697386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7697558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73920", "tid": 35568, "ts": 7697684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7697856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd739f0", "tid": 35568, "ts": 7697982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7698154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd73c60", "tid": 35568, "ts": 7698280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7698451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd70fb0", "tid": 35568, "ts": 7698578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7698751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd71080", "tid": 35568, "ts": 7698877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76b80", "tid": 35568, "ts": 7699175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd769e0", "tid": 35568, "ts": 7699472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75db0", "tid": 35568, "ts": 7699770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7699942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75e80", "tid": 35568, "ts": 7700068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7700239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76840", "tid": 35568, "ts": 7700365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7700537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76910", "tid": 35568, "ts": 7700664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7700836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74480", "tid": 35568, "ts": 7700962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7701135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75590", "tid": 35568, "ts": 7701261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7701432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd772d0", "tid": 35568, "ts": 7701558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7701731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77130", "tid": 35568, "ts": 7701857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd753f0", "tid": 35568, "ts": 7702157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75a70", "tid": 35568, "ts": 7702455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74fe0", "tid": 35568, "ts": 7702754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7702926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd760f0", "tid": 35568, "ts": 7703052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7703224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd746f0", "tid": 35568, "ts": 7703350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7703523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74f10", "tid": 35568, "ts": 7703649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7703820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd747c0", "tid": 35568, "ts": 7703947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7704118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd758d0", "tid": 35568, "ts": 7704244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7704417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75800", "tid": 35568, "ts": 7704542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7704714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd750b0", "tid": 35568, "ts": 7704840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75180", "tid": 35568, "ts": 7705138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76c50", "tid": 35568, "ts": 7705436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75b40", "tid": 35568, "ts": 7705733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7705905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75250", "tid": 35568, "ts": 7706030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7706203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76d20", "tid": 35568, "ts": 7706329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7706501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74550", "tid": 35568, "ts": 7706627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7706934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74e40", "tid": 35568, "ts": 7707070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7707244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd754c0", "tid": 35568, "ts": 7707372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7707547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75660", "tid": 35568, "ts": 7707674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7707847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75f50", "tid": 35568, "ts": 7707974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7708147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76f90", "tid": 35568, "ts": 7708274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7708445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74d70", "tid": 35568, "ts": 7708573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7708745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd759a0", "tid": 35568, "ts": 7708872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76020", "tid": 35568, "ts": 7709172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74890", "tid": 35568, "ts": 7709472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76df0", "tid": 35568, "ts": 7709771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7709943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76ec0", "tid": 35568, "ts": 7710069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7710242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74ca0", "tid": 35568, "ts": 7710368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7710539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77060", "tid": 35568, "ts": 7710666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7710838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75320", "tid": 35568, "ts": 7710964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7711136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd761c0", "tid": 35568, "ts": 7711263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7711435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74140", "tid": 35568, "ts": 7711561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7711734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76290", "tid": 35568, "ts": 7711860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd743b0", "tid": 35568, "ts": 7712159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74960", "tid": 35568, "ts": 7712456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75ce0", "tid": 35568, "ts": 7712756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7712929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75c10", "tid": 35568, "ts": 7713056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7713229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77200", "tid": 35568, "ts": 7713356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7713527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd773a0", "tid": 35568, "ts": 7713700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7713872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd75730", "tid": 35568, "ts": 7713999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7714172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77470", "tid": 35568, "ts": 7714298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7714471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74210", "tid": 35568, "ts": 7714598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7714770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd742e0", "tid": 35568, "ts": 7714896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74620", "tid": 35568, "ts": 7715194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76430", "tid": 35568, "ts": 7715493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76500", "tid": 35568, "ts": 7715790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7715962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74a30", "tid": 35568, "ts": 7716089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7716261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76360", "tid": 35568, "ts": 7716388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7716560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd765d0", "tid": 35568, "ts": 7716687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7716860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd766a0", "tid": 35568, "ts": 7716986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7717158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76770", "tid": 35568, "ts": 7717284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7717457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74b00", "tid": 35568, "ts": 7717583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7717756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd74bd0", "tid": 35568, "ts": 7717882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd76ab0", "tid": 35568, "ts": 7718180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77af0", "tid": 35568, "ts": 7718480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77540", "tid": 35568, "ts": 7718778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7718950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77bc0", "tid": 35568, "ts": 7719077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7719248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79760", "tid": 35568, "ts": 7719375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7719547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a050", "tid": 35568, "ts": 7719673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7719845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd784b0", "tid": 35568, "ts": 7719971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7720143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd783e0", "tid": 35568, "ts": 7720269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7720498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a7a0", "tid": 35568, "ts": 7720626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7720798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78170", "tid": 35568, "ts": 7720924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a120", "tid": 35568, "ts": 7721223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a2c0", "tid": 35568, "ts": 7721520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77c90", "tid": 35568, "ts": 7721819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7721990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78240", "tid": 35568, "ts": 7722116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7722288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79690", "tid": 35568, "ts": 7722426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7722598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78f40", "tid": 35568, "ts": 7722724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7722896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78580", "tid": 35568, "ts": 7723023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7723195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd777b0", "tid": 35568, "ts": 7723320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7723493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78310", "tid": 35568, "ts": 7723620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7723791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78650", "tid": 35568, "ts": 7723918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd788c0", "tid": 35568, "ts": 7724215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a600", "tid": 35568, "ts": 7724512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77d60", "tid": 35568, "ts": 7724810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7724981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77e30", "tid": 35568, "ts": 7725108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7725281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79d10", "tid": 35568, "ts": 7725407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7725579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77fd0", "tid": 35568, "ts": 7725705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7725878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a870", "tid": 35568, "ts": 7726004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7726175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd799d0", "tid": 35568, "ts": 7726302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7726473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78720", "tid": 35568, "ts": 7726600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7726771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78cd0", "tid": 35568, "ts": 7726897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78c00", "tid": 35568, "ts": 7727196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd787f0", "tid": 35568, "ts": 7727495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78da0", "tid": 35568, "ts": 7727792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7727965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a1f0", "tid": 35568, "ts": 7728091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7728263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a390", "tid": 35568, "ts": 7728389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7728560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd791b0", "tid": 35568, "ts": 7728688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7728859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79aa0", "tid": 35568, "ts": 7728985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7729158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79280", "tid": 35568, "ts": 7729284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7729456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78e70", "tid": 35568, "ts": 7729583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7729755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79830", "tid": 35568, "ts": 7729882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a460", "tid": 35568, "ts": 7730179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd780a0", "tid": 35568, "ts": 7730478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77a20", "tid": 35568, "ts": 7730777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7730949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78990", "tid": 35568, "ts": 7731075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7731248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a530", "tid": 35568, "ts": 7731374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7731546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a6d0", "tid": 35568, "ts": 7731715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7731888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77610", "tid": 35568, "ts": 7732015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7732187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79010", "tid": 35568, "ts": 7732314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7732486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79350", "tid": 35568, "ts": 7732613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7732785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79b70", "tid": 35568, "ts": 7732911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79420", "tid": 35568, "ts": 7733210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79900", "tid": 35568, "ts": 7733508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79c40", "tid": 35568, "ts": 7733806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7733979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd776e0", "tid": 35568, "ts": 7734106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7734277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79de0", "tid": 35568, "ts": 7734403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7734574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd790e0", "tid": 35568, "ts": 7734701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7734871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78a60", "tid": 35568, "ts": 7734998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7735169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77f00", "tid": 35568, "ts": 7735296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7735469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd78b30", "tid": 35568, "ts": 7735595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7735767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd794f0", "tid": 35568, "ts": 7735893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7736064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77880", "tid": 35568, "ts": 7736191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7736363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd795c0", "tid": 35568, "ts": 7736561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7736735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd77950", "tid": 35568, "ts": 7736866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79eb0", "tid": 35568, "ts": 7737165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd79f80", "tid": 35568, "ts": 7737463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d520", "tid": 35568, "ts": 7737762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7737945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7aa10", "tid": 35568, "ts": 7738073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7738245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d110", "tid": 35568, "ts": 7738372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7738543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7aef0", "tid": 35568, "ts": 7738738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7738910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b570", "tid": 35568, "ts": 7739037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7739210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cd00", "tid": 35568, "ts": 7739336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7739508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d380", "tid": 35568, "ts": 7739635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7739807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7afc0", "tid": 35568, "ts": 7739934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7740106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dba0", "tid": 35568, "ts": 7740233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7740405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b300", "tid": 35568, "ts": 7740532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7740703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dc70", "tid": 35568, "ts": 7740829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bf30", "tid": 35568, "ts": 7741127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b090", "tid": 35568, "ts": 7741426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7abb0", "tid": 35568, "ts": 7741724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7741896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b640", "tid": 35568, "ts": 7742022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7742194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b3d0", "tid": 35568, "ts": 7742320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7742492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b160", "tid": 35568, "ts": 7742618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7742790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d790", "tid": 35568, "ts": 7742917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c410", "tid": 35568, "ts": 7743216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d450", "tid": 35568, "ts": 7743514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d5f0", "tid": 35568, "ts": 7743813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7743985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cc30", "tid": 35568, "ts": 7744112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7744284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c9c0", "tid": 35568, "ts": 7744410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7744582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b4a0", "tid": 35568, "ts": 7744708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7744879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d860", "tid": 35568, "ts": 7745006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7745179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7a940", "tid": 35568, "ts": 7745305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7745478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c5b0", "tid": 35568, "ts": 7745605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7745778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7da00", "tid": 35568, "ts": 7745904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7746076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b710", "tid": 35568, "ts": 7746202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7746374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bb20", "tid": 35568, "ts": 7746501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7746761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d1e0", "tid": 35568, "ts": 7746888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d930", "tid": 35568, "ts": 7747189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d6c0", "tid": 35568, "ts": 7747487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c750", "tid": 35568, "ts": 7747786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7747957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cdd0", "tid": 35568, "ts": 7748083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7748254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ac80", "tid": 35568, "ts": 7748381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7748553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b7e0", "tid": 35568, "ts": 7748680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7748851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bbf0", "tid": 35568, "ts": 7748977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7749150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d2b0", "tid": 35568, "ts": 7749276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7749449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b8b0", "tid": 35568, "ts": 7749576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7749748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b230", "tid": 35568, "ts": 7749875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7750047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dad0", "tid": 35568, "ts": 7750328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7750501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bd90", "tid": 35568, "ts": 7750628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7750800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7b980", "tid": 35568, "ts": 7750927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ca90", "tid": 35568, "ts": 7751226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ba50", "tid": 35568, "ts": 7751525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7aae0", "tid": 35568, "ts": 7751823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7751994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c000", "tid": 35568, "ts": 7752121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7752292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c680", "tid": 35568, "ts": 7752418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7752591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cea0", "tid": 35568, "ts": 7752717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7752888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cf70", "tid": 35568, "ts": 7753014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7753186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ad50", "tid": 35568, "ts": 7753313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7753485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c820", "tid": 35568, "ts": 7753673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7753844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ae20", "tid": 35568, "ts": 7753973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7754144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7bcc0", "tid": 35568, "ts": 7754271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7754443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7be60", "tid": 35568, "ts": 7754569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7754739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c0d0", "tid": 35568, "ts": 7754865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c1a0", "tid": 35568, "ts": 7755164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7d040", "tid": 35568, "ts": 7755462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c270", "tid": 35568, "ts": 7755760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7755931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c340", "tid": 35568, "ts": 7756058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7756231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c4e0", "tid": 35568, "ts": 7756358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7756530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7c8f0", "tid": 35568, "ts": 7756657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7756828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7cb60", "tid": 35568, "ts": 7756954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7757126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e150", "tid": 35568, "ts": 7757252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7757423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f0c0", "tid": 35568, "ts": 7757549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7757722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80ed0", "tid": 35568, "ts": 7757848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80100", "tid": 35568, "ts": 7758146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e970", "tid": 35568, "ts": 7758446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f5a0", "tid": 35568, "ts": 7758744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7758915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f8e0", "tid": 35568, "ts": 7759041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7759214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd801d0", "tid": 35568, "ts": 7759340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7759512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80e00", "tid": 35568, "ts": 7759638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7759810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f190", "tid": 35568, "ts": 7759936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7760108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7eb10", "tid": 35568, "ts": 7760234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7760407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ef20", "tid": 35568, "ts": 7760533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7760704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e7d0", "tid": 35568, "ts": 7760830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd805e0", "tid": 35568, "ts": 7761129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fcf0", "tid": 35568, "ts": 7761427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ea40", "tid": 35568, "ts": 7761725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7761896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f670", "tid": 35568, "ts": 7762022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7762195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7eff0", "tid": 35568, "ts": 7762321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7762494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fb50", "tid": 35568, "ts": 7762620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7762792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80d30", "tid": 35568, "ts": 7762918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dd40", "tid": 35568, "ts": 7763217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7de10", "tid": 35568, "ts": 7763517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dee0", "tid": 35568, "ts": 7763815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7763987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e8a0", "tid": 35568, "ts": 7764113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7764284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f260", "tid": 35568, "ts": 7764410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7764583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd806b0", "tid": 35568, "ts": 7764709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7764881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ebe0", "tid": 35568, "ts": 7765007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7765178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e080", "tid": 35568, "ts": 7765304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7765476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ecb0", "tid": 35568, "ts": 7765602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7765774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80780", "tid": 35568, "ts": 7765900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ed80", "tid": 35568, "ts": 7766198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7dfb0", "tid": 35568, "ts": 7766496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ee50", "tid": 35568, "ts": 7766795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7766967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80b90", "tid": 35568, "ts": 7767093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7767265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e220", "tid": 35568, "ts": 7767391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7767563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f740", "tid": 35568, "ts": 7767689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7767862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e3c0", "tid": 35568, "ts": 7767989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7768161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f330", "tid": 35568, "ts": 7768287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7768459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f4d0", "tid": 35568, "ts": 7768585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7768757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e630", "tid": 35568, "ts": 7768884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7769056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80c60", "tid": 35568, "ts": 7769230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7769510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e2f0", "tid": 35568, "ts": 7769671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7769857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e490", "tid": 35568, "ts": 7770007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7770204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e560", "tid": 35568, "ts": 7770354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7770561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7e700", "tid": 35568, "ts": 7770766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7770939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f810", "tid": 35568, "ts": 7771088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7771295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f400", "tid": 35568, "ts": 7771486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7771684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7f9b0", "tid": 35568, "ts": 7771813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7771985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fa80", "tid": 35568, "ts": 7772114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7772288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fc20", "tid": 35568, "ts": 7772415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7772600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fdc0", "tid": 35568, "ts": 7772740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7772915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7fe90", "tid": 35568, "ts": 7773042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7773216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80370", "tid": 35568, "ts": 7773344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7773517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd7ff60", "tid": 35568, "ts": 7773647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7773823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80030", "tid": 35568, "ts": 7773953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7774128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd802a0", "tid": 35568, "ts": 7774258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7774433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80440", "tid": 35568, "ts": 7774563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7774738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80510", "tid": 35568, "ts": 7774868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80850", "tid": 35568, "ts": 7775175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80920", "tid": 35568, "ts": 7775482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd809f0", "tid": 35568, "ts": 7775790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7775968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd80ac0", "tid": 35568, "ts": 7776098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7776277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451d40", "tid": 35568, "ts": 7776553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7776736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4515f0", "tid": 35568, "ts": 7776869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7777050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450ea0", "tid": 35568, "ts": 7777182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7777364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452d80", "tid": 35568, "ts": 7777496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7777677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450d00", "tid": 35568, "ts": 7777808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452220", "tid": 35568, "ts": 7778140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4501a0", "tid": 35568, "ts": 7778445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451380", "tid": 35568, "ts": 7778749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7778969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451930", "tid": 35568, "ts": 7779121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7779322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451e10", "tid": 35568, "ts": 7779450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7779623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452150", "tid": 35568, "ts": 7779750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7779924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453190", "tid": 35568, "ts": 7780051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7780224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452700", "tid": 35568, "ts": 7780351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7780526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450820", "tid": 35568, "ts": 7780721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7780894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453260", "tid": 35568, "ts": 7781021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7781195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4508f0", "tid": 35568, "ts": 7781322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7781495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4509c0", "tid": 35568, "ts": 7781622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7781795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453330", "tid": 35568, "ts": 7781922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450270", "tid": 35568, "ts": 7782222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451040", "tid": 35568, "ts": 7782521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450340", "tid": 35568, "ts": 7782821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7782994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452b10", "tid": 35568, "ts": 7783122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7783293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450c30", "tid": 35568, "ts": 7783419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7783720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4512b0", "tid": 35568, "ts": 7783859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7784032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4523c0", "tid": 35568, "ts": 7784159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7784332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452ff0", "tid": 35568, "ts": 7784459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7784631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453400", "tid": 35568, "ts": 7784758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450750", "tid": 35568, "ts": 7785204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450dd0", "tid": 35568, "ts": 7785504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450a90", "tid": 35568, "ts": 7785803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7785975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451c70", "tid": 35568, "ts": 7786102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7786274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4527d0", "tid": 35568, "ts": 7786402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7786575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451ee0", "tid": 35568, "ts": 7786701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7786873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450410", "tid": 35568, "ts": 7786999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7787170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450f70", "tid": 35568, "ts": 7787296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7787468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4528a0", "tid": 35568, "ts": 7787595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7787766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450b60", "tid": 35568, "ts": 7787893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4534d0", "tid": 35568, "ts": 7788193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4511e0", "tid": 35568, "ts": 7788491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452970", "tid": 35568, "ts": 7788789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7788961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4522f0", "tid": 35568, "ts": 7789088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7789260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4504e0", "tid": 35568, "ts": 7789387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7789558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452490", "tid": 35568, "ts": 7789719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7789893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452560", "tid": 35568, "ts": 7790020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7790193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4505b0", "tid": 35568, "ts": 7790319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7790491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451520", "tid": 35568, "ts": 7790618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7790789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451450", "tid": 35568, "ts": 7790916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451110", "tid": 35568, "ts": 7791214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452a40", "tid": 35568, "ts": 7791512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451ad0", "tid": 35568, "ts": 7791812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7791984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451fb0", "tid": 35568, "ts": 7792110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7792325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452f20", "tid": 35568, "ts": 7792452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7792624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4516c0", "tid": 35568, "ts": 7792751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7792923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452be0", "tid": 35568, "ts": 7793049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7793221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad450680", "tid": 35568, "ts": 7793348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7793519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452080", "tid": 35568, "ts": 7793646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7793817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452cb0", "tid": 35568, "ts": 7793944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7794114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451790", "tid": 35568, "ts": 7794240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7794412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451860", "tid": 35568, "ts": 7794561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7794733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451a00", "tid": 35568, "ts": 7794859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad451ba0", "tid": 35568, "ts": 7795159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452e50", "tid": 35568, "ts": 7795458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad452630", "tid": 35568, "ts": 7795756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7795927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4530c0", "tid": 35568, "ts": 7796055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7796226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455550", "tid": 35568, "ts": 7796353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7796525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453cf0", "tid": 35568, "ts": 7796652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7796822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453c20", "tid": 35568, "ts": 7796949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7797121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4563f0", "tid": 35568, "ts": 7797247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7797420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4560b0", "tid": 35568, "ts": 7797546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7797717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4539b0", "tid": 35568, "ts": 7797843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4557c0", "tid": 35568, "ts": 7798142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4564c0", "tid": 35568, "ts": 7798441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4535a0", "tid": 35568, "ts": 7798740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7798913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455a30", "tid": 35568, "ts": 7799040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7799212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456590", "tid": 35568, "ts": 7799338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7799511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456180", "tid": 35568, "ts": 7799637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7799809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4538e0", "tid": 35568, "ts": 7799935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7800108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454780", "tid": 35568, "ts": 7800235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7800407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453740", "tid": 35568, "ts": 7800604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7800840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455b00", "tid": 35568, "ts": 7801008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7801315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4552e0", "tid": 35568, "ts": 7801471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7801645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454ac0", "tid": 35568, "ts": 7801773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454850", "tid": 35568, "ts": 7802130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455bd0", "tid": 35568, "ts": 7802431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455ca0", "tid": 35568, "ts": 7802756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7802928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455fe0", "tid": 35568, "ts": 7803055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7803228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455890", "tid": 35568, "ts": 7803355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7803527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453670", "tid": 35568, "ts": 7803655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7803827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454920", "tid": 35568, "ts": 7803954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7804126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4546b0", "tid": 35568, "ts": 7804252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7804425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454b90", "tid": 35568, "ts": 7804551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7804726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4541d0", "tid": 35568, "ts": 7804853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4568d0", "tid": 35568, "ts": 7805151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4549f0", "tid": 35568, "ts": 7805449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453810", "tid": 35568, "ts": 7805748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7805920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4542a0", "tid": 35568, "ts": 7806047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7806220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453a80", "tid": 35568, "ts": 7806347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7806520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455d70", "tid": 35568, "ts": 7806647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7806818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4553b0", "tid": 35568, "ts": 7806945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7807116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455070", "tid": 35568, "ts": 7807242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7807412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454440", "tid": 35568, "ts": 7807539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7807711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456250", "tid": 35568, "ts": 7807837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456660", "tid": 35568, "ts": 7808135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454370", "tid": 35568, "ts": 7808432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453b50", "tid": 35568, "ts": 7808793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7808966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454c60", "tid": 35568, "ts": 7809094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7809265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454d30", "tid": 35568, "ts": 7809391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7809563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454e00", "tid": 35568, "ts": 7809690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7809862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453dc0", "tid": 35568, "ts": 7809989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7810161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454510", "tid": 35568, "ts": 7810288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7810460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455480", "tid": 35568, "ts": 7810586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7810758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453e90", "tid": 35568, "ts": 7810885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454ed0", "tid": 35568, "ts": 7811184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455960", "tid": 35568, "ts": 7811482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456320", "tid": 35568, "ts": 7811780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7811954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455e40", "tid": 35568, "ts": 7812080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7812253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad453f60", "tid": 35568, "ts": 7812380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7812551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455f10", "tid": 35568, "ts": 7812677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7812849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454030", "tid": 35568, "ts": 7812976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7813148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454100", "tid": 35568, "ts": 7813275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7813447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4545e0", "tid": 35568, "ts": 7813573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7813745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad454fa0", "tid": 35568, "ts": 7813871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455140", "tid": 35568, "ts": 7814211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455210", "tid": 35568, "ts": 7814512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad455620", "tid": 35568, "ts": 7814811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7814982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4556f0", "tid": 35568, "ts": 7815109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7815281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456730", "tid": 35568, "ts": 7815408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7815580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456800", "tid": 35568, "ts": 7815706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7815878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4586e0", "tid": 35568, "ts": 7816004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7816275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458e30", "tid": 35568, "ts": 7816407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7816581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458d60", "tid": 35568, "ts": 7816709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7816881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458470", "tid": 35568, "ts": 7817008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7817181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456f50", "tid": 35568, "ts": 7817308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7817481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457ab0", "tid": 35568, "ts": 7817608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7817779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457020", "tid": 35568, "ts": 7817906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4569a0", "tid": 35568, "ts": 7818206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457b80", "tid": 35568, "ts": 7818505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457c50", "tid": 35568, "ts": 7818804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7818976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459720", "tid": 35568, "ts": 7819103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7819276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4597f0", "tid": 35568, "ts": 7819403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7819574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456e80", "tid": 35568, "ts": 7819701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7819874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459cd0", "tid": 35568, "ts": 7820000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7820171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456a70", "tid": 35568, "ts": 7820298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7820469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458f00", "tid": 35568, "ts": 7820596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7820768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457910", "tid": 35568, "ts": 7820895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457d20", "tid": 35568, "ts": 7821193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458880", "tid": 35568, "ts": 7821493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456db0", "tid": 35568, "ts": 7821793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7821965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456b40", "tid": 35568, "ts": 7822091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7822262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458610", "tid": 35568, "ts": 7822413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7822586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457770", "tid": 35568, "ts": 7822712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7822885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457500", "tid": 35568, "ts": 7823012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7823183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459b30", "tid": 35568, "ts": 7823310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7823482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456c10", "tid": 35568, "ts": 7823608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7823781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457f90", "tid": 35568, "ts": 7823907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457290", "tid": 35568, "ts": 7824207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458c90", "tid": 35568, "ts": 7824506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad456ce0", "tid": 35568, "ts": 7824803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7824976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4590a0", "tid": 35568, "ts": 7825102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7825274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457df0", "tid": 35568, "ts": 7825401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7825573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4570f0", "tid": 35568, "ts": 7825699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7825873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457ec0", "tid": 35568, "ts": 7826022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7826193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4571c0", "tid": 35568, "ts": 7826319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7826492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4575d0", "tid": 35568, "ts": 7826619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7826791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4587b0", "tid": 35568, "ts": 7826917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458a20", "tid": 35568, "ts": 7827216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457360", "tid": 35568, "ts": 7827515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4579e0", "tid": 35568, "ts": 7827813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7827984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458950", "tid": 35568, "ts": 7828110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7828282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459a60", "tid": 35568, "ts": 7828409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7828580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4598c0", "tid": 35568, "ts": 7828707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7828878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4583a0", "tid": 35568, "ts": 7829005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7829178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459240", "tid": 35568, "ts": 7829305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7829476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458060", "tid": 35568, "ts": 7829602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7829774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458af0", "tid": 35568, "ts": 7829900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458bc0", "tid": 35568, "ts": 7830201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457430", "tid": 35568, "ts": 7830498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458130", "tid": 35568, "ts": 7830796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7830968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458200", "tid": 35568, "ts": 7831094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7831267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458fd0", "tid": 35568, "ts": 7831394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7831566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4576a0", "tid": 35568, "ts": 7831746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7831919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad457840", "tid": 35568, "ts": 7832046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7832219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459580", "tid": 35568, "ts": 7832346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7832518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4582d0", "tid": 35568, "ts": 7832644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7832816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459170", "tid": 35568, "ts": 7832944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7833116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459c00", "tid": 35568, "ts": 7833243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7833415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad458540", "tid": 35568, "ts": 7833542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7833713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459310", "tid": 35568, "ts": 7833840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4593e0", "tid": 35568, "ts": 7834140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4594b0", "tid": 35568, "ts": 7834440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459650", "tid": 35568, "ts": 7834739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7834912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459990", "tid": 35568, "ts": 7835039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7835210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cf30", "tid": 35568, "ts": 7835337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7836847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b120", "tid": 35568, "ts": 7836977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7837149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b2c0", "tid": 35568, "ts": 7837276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7837448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a280", "tid": 35568, "ts": 7837575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7837747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c4a0", "tid": 35568, "ts": 7837874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45aeb0", "tid": 35568, "ts": 7838172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a9d0", "tid": 35568, "ts": 7838471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a690", "tid": 35568, "ts": 7838770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7838941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c230", "tid": 35568, "ts": 7839068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7839241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a420", "tid": 35568, "ts": 7839430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7839603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b050", "tid": 35568, "ts": 7839730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7839902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c980", "tid": 35568, "ts": 7840029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7840200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459f40", "tid": 35568, "ts": 7840327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7840498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45aaa0", "tid": 35568, "ts": 7840624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7840796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b1f0", "tid": 35568, "ts": 7840922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bef0", "tid": 35568, "ts": 7841221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bfc0", "tid": 35568, "ts": 7841519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d000", "tid": 35568, "ts": 7841817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7841989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a350", "tid": 35568, "ts": 7842115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7842287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45af80", "tid": 35568, "ts": 7842414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7842586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c8b0", "tid": 35568, "ts": 7842712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7842884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a1b0", "tid": 35568, "ts": 7843011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7843182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45be20", "tid": 35568, "ts": 7843309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7843481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459da0", "tid": 35568, "ts": 7843607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7843779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ca50", "tid": 35568, "ts": 7843905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d0d0", "tid": 35568, "ts": 7844204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a4f0", "tid": 35568, "ts": 7844502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cb20", "tid": 35568, "ts": 7844801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7844973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bc80", "tid": 35568, "ts": 7845099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7845269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a5c0", "tid": 35568, "ts": 7845396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7845568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a760", "tid": 35568, "ts": 7845695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7845868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cbf0", "tid": 35568, "ts": 7845994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7846167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c7e0", "tid": 35568, "ts": 7846294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7846465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ba10", "tid": 35568, "ts": 7846592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7846764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c570", "tid": 35568, "ts": 7846890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7847061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a830", "tid": 35568, "ts": 7847188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7847421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ccc0", "tid": 35568, "ts": 7847550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7847723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a900", "tid": 35568, "ts": 7847850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ce60", "tid": 35568, "ts": 7848147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ab70", "tid": 35568, "ts": 7848447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b600", "tid": 35568, "ts": 7848791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7848965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a0e0", "tid": 35568, "ts": 7849092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7849264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c090", "tid": 35568, "ts": 7849392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7849564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45cd90", "tid": 35568, "ts": 7849690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7849862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c160", "tid": 35568, "ts": 7849989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7850160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad459e70", "tid": 35568, "ts": 7850286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7850457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c300", "tid": 35568, "ts": 7850584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7850757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45a010", "tid": 35568, "ts": 7850883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c3d0", "tid": 35568, "ts": 7851181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ac40", "tid": 35568, "ts": 7851478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c640", "tid": 35568, "ts": 7851777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7851949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ad10", "tid": 35568, "ts": 7852075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7852247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ade0", "tid": 35568, "ts": 7852373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7852545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b390", "tid": 35568, "ts": 7852671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7852843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b460", "tid": 35568, "ts": 7852968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7853141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b870", "tid": 35568, "ts": 7853267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7853439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b530", "tid": 35568, "ts": 7853565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7853736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b6d0", "tid": 35568, "ts": 7853861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b7a0", "tid": 35568, "ts": 7854159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45b940", "tid": 35568, "ts": 7854458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bae0", "tid": 35568, "ts": 7854756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7854927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bbb0", "tid": 35568, "ts": 7855053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7855226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45bd50", "tid": 35568, "ts": 7855353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7855525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45c710", "tid": 35568, "ts": 7855651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7855823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45dd00", "tid": 35568, "ts": 7855950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7856122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460330", "tid": 35568, "ts": 7856248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7856420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d4e0", "tid": 35568, "ts": 7856547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7856719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f2f0", "tid": 35568, "ts": 7856845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fe50", "tid": 35568, "ts": 7857144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d1a0", "tid": 35568, "ts": 7857442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45da90", "tid": 35568, "ts": 7857739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7857911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d5b0", "tid": 35568, "ts": 7858037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7858208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45dea0", "tid": 35568, "ts": 7858334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7858505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f970", "tid": 35568, "ts": 7858632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7858804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fcb0", "tid": 35568, "ts": 7858929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d680", "tid": 35568, "ts": 7859229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460400", "tid": 35568, "ts": 7859527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e5f0", "tid": 35568, "ts": 7859826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7859997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f630", "tid": 35568, "ts": 7860123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7860295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4604d0", "tid": 35568, "ts": 7860422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7860593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e6c0", "tid": 35568, "ts": 7860720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7860891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45efb0", "tid": 35568, "ts": 7861018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7861190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d750", "tid": 35568, "ts": 7861317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7861490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fa40", "tid": 35568, "ts": 7861616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7861788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45dc30", "tid": 35568, "ts": 7861914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7862086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45eee0", "tid": 35568, "ts": 7862212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7862384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ead0", "tid": 35568, "ts": 7862510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7862682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d820", "tid": 35568, "ts": 7862809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d270", "tid": 35568, "ts": 7863194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f220", "tid": 35568, "ts": 7863504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d8f0", "tid": 35568, "ts": 7863804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7863977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45df70", "tid": 35568, "ts": 7864103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7864274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e2b0", "tid": 35568, "ts": 7864401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7864614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d340", "tid": 35568, "ts": 7864741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7864914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fb10", "tid": 35568, "ts": 7865040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7865213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f150", "tid": 35568, "ts": 7865339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7865510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4600c0", "tid": 35568, "ts": 7865636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7865808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f7d0", "tid": 35568, "ts": 7865935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f080", "tid": 35568, "ts": 7866232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d9c0", "tid": 35568, "ts": 7866530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e450", "tid": 35568, "ts": 7866828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7866999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e790", "tid": 35568, "ts": 7867125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7867296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f3c0", "tid": 35568, "ts": 7867423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7867594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fd80", "tid": 35568, "ts": 7867720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7867891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f490", "tid": 35568, "ts": 7868017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7868188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f700", "tid": 35568, "ts": 7868314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7868484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f560", "tid": 35568, "ts": 7868611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7868782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e040", "tid": 35568, "ts": 7868909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7869080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ff20", "tid": 35568, "ts": 7869207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7869378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45db60", "tid": 35568, "ts": 7869504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7869675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fff0", "tid": 35568, "ts": 7869862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e520", "tid": 35568, "ts": 7870161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e380", "tid": 35568, "ts": 7870459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e860", "tid": 35568, "ts": 7870758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7870928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ec70", "tid": 35568, "ts": 7871054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7871226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45f8a0", "tid": 35568, "ts": 7871352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7871523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ddd0", "tid": 35568, "ts": 7871650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7871821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e930", "tid": 35568, "ts": 7871947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7872119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ea00", "tid": 35568, "ts": 7872245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7872416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e110", "tid": 35568, "ts": 7872542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7872714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45d410", "tid": 35568, "ts": 7872842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45e1e0", "tid": 35568, "ts": 7873140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460190", "tid": 35568, "ts": 7873439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45fbe0", "tid": 35568, "ts": 7873737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7873908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45eba0", "tid": 35568, "ts": 7874034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7874205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ed40", "tid": 35568, "ts": 7874331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7874502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460260", "tid": 35568, "ts": 7874628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7874800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad45ee10", "tid": 35568, "ts": 7874927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463180", "tid": 35568, "ts": 7875225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460cf0", "tid": 35568, "ts": 7875522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460b50", "tid": 35568, "ts": 7875820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7875991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461780", "tid": 35568, "ts": 7876117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7876287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463250", "tid": 35568, "ts": 7876414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7876586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460c20", "tid": 35568, "ts": 7876711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7876882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4605a0", "tid": 35568, "ts": 7877009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7877181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460670", "tid": 35568, "ts": 7877307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7877478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4608e0", "tid": 35568, "ts": 7877604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7877775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4626f0", "tid": 35568, "ts": 7877901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7878072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463320", "tid": 35568, "ts": 7878198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7878370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463800", "tid": 35568, "ts": 7878587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7878801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4609b0", "tid": 35568, "ts": 7878929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4634c0", "tid": 35568, "ts": 7879229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460740", "tid": 35568, "ts": 7879528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461850", "tid": 35568, "ts": 7879827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7879999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461d30", "tid": 35568, "ts": 7880126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7880298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462210", "tid": 35568, "ts": 7880424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7880597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460dc0", "tid": 35568, "ts": 7880724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7880896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460e90", "tid": 35568, "ts": 7881023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7881195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461c60", "tid": 35568, "ts": 7881321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7881492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460f60", "tid": 35568, "ts": 7881659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7881832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462f10", "tid": 35568, "ts": 7881959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7882131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4611d0", "tid": 35568, "ts": 7882256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7882427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461030", "tid": 35568, "ts": 7882553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7882725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460810", "tid": 35568, "ts": 7882851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461920", "tid": 35568, "ts": 7883149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462a30", "tid": 35568, "ts": 7883448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462960", "tid": 35568, "ts": 7883747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7883919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461e00", "tid": 35568, "ts": 7884045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7884217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4619f0", "tid": 35568, "ts": 7884343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7884515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462620", "tid": 35568, "ts": 7884641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7884813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4633f0", "tid": 35568, "ts": 7884939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7885111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462070", "tid": 35568, "ts": 7885238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7885410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462140", "tid": 35568, "ts": 7885536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7885708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462890", "tid": 35568, "ts": 7885835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4638d0", "tid": 35568, "ts": 7886132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4627c0", "tid": 35568, "ts": 7886430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462b00", "tid": 35568, "ts": 7886727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7886898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad460a80", "tid": 35568, "ts": 7887025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7887197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462bd0", "tid": 35568, "ts": 7887322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7887495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461100", "tid": 35568, "ts": 7887621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7887793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4612a0", "tid": 35568, "ts": 7887919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461370", "tid": 35568, "ts": 7888217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461440", "tid": 35568, "ts": 7888514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461510", "tid": 35568, "ts": 7888813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7888984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462fe0", "tid": 35568, "ts": 7889110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7889281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4615e0", "tid": 35568, "ts": 7889408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7889580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4616b0", "tid": 35568, "ts": 7889706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7889877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461ed0", "tid": 35568, "ts": 7890003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7890175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4630b0", "tid": 35568, "ts": 7890301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7890473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463590", "tid": 35568, "ts": 7890599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7890771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4622e0", "tid": 35568, "ts": 7890897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461ac0", "tid": 35568, "ts": 7891194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461b90", "tid": 35568, "ts": 7891493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad461fa0", "tid": 35568, "ts": 7891790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7891962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462ca0", "tid": 35568, "ts": 7892088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7892259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462d70", "tid": 35568, "ts": 7892385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7892556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4623b0", "tid": 35568, "ts": 7892683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7892855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462480", "tid": 35568, "ts": 7892980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7893153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463660", "tid": 35568, "ts": 7893279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7893450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462550", "tid": 35568, "ts": 7893576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7893748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad462e40", "tid": 35568, "ts": 7893874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463730", "tid": 35568, "ts": 7894182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4664b0", "tid": 35568, "ts": 7894482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466580", "tid": 35568, "ts": 7894803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7894974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4652d0", "tid": 35568, "ts": 7895101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7895273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466310", "tid": 35568, "ts": 7895399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7895570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4645d0", "tid": 35568, "ts": 7895697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7895869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464020", "tid": 35568, "ts": 7895996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7896168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4667f0", "tid": 35568, "ts": 7896295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7896467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4640f0", "tid": 35568, "ts": 7896594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7896765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465e30", "tid": 35568, "ts": 7896891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464ab0", "tid": 35568, "ts": 7897188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463e80", "tid": 35568, "ts": 7897485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4668c0", "tid": 35568, "ts": 7897783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7897956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464290", "tid": 35568, "ts": 7898082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7898254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4641c0", "tid": 35568, "ts": 7898421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7898592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4657b0", "tid": 35568, "ts": 7898720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7898892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463f50", "tid": 35568, "ts": 7899018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7899190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4646a0", "tid": 35568, "ts": 7899316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7899488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466650", "tid": 35568, "ts": 7899615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7899787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466c00", "tid": 35568, "ts": 7899913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7900086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464360", "tid": 35568, "ts": 7900233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7900405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464b80", "tid": 35568, "ts": 7900532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7900704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465540", "tid": 35568, "ts": 7900831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464430", "tid": 35568, "ts": 7901129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464770", "tid": 35568, "ts": 7901427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4653a0", "tid": 35568, "ts": 7901726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7901898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464500", "tid": 35568, "ts": 7902025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7902196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463db0", "tid": 35568, "ts": 7902322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7902494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4656e0", "tid": 35568, "ts": 7902619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7902792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464840", "tid": 35568, "ts": 7902918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466a60", "tid": 35568, "ts": 7903216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465130", "tid": 35568, "ts": 7903516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465610", "tid": 35568, "ts": 7903816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7903988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464910", "tid": 35568, "ts": 7904115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7904288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465f00", "tid": 35568, "ts": 7904414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7904585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466990", "tid": 35568, "ts": 7904711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7904883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4649e0", "tid": 35568, "ts": 7905010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7905182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464c50", "tid": 35568, "ts": 7905308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7905481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464d20", "tid": 35568, "ts": 7905608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7905779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466720", "tid": 35568, "ts": 7905906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464df0", "tid": 35568, "ts": 7906204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464ec0", "tid": 35568, "ts": 7906501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466240", "tid": 35568, "ts": 7906801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7906972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4639a0", "tid": 35568, "ts": 7907098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7907271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466b30", "tid": 35568, "ts": 7907397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7907569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466cd0", "tid": 35568, "ts": 7907695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7907868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463c10", "tid": 35568, "ts": 7907994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7908166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4660a0", "tid": 35568, "ts": 7908292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7908464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465470", "tid": 35568, "ts": 7908591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7908763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad464f90", "tid": 35568, "ts": 7908889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7909061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465200", "tid": 35568, "ts": 7909188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7909360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465060", "tid": 35568, "ts": 7909486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7909658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463a70", "tid": 35568, "ts": 7909785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7910132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465880", "tid": 35568, "ts": 7910314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7910580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465950", "tid": 35568, "ts": 7910740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463b40", "tid": 35568, "ts": 7911130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465bc0", "tid": 35568, "ts": 7911429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465a20", "tid": 35568, "ts": 7911728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7911899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465fd0", "tid": 35568, "ts": 7912026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7912197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466170", "tid": 35568, "ts": 7912324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7912496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4663e0", "tid": 35568, "ts": 7912623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7912794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465af0", "tid": 35568, "ts": 7912920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad463ce0", "tid": 35568, "ts": 7913220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465c90", "tid": 35568, "ts": 7913519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad465d60", "tid": 35568, "ts": 7913817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7913989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4698b0", "tid": 35568, "ts": 7914115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7914287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468a10", "tid": 35568, "ts": 7914413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7914585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467010", "tid": 35568, "ts": 7914711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7914925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469570", "tid": 35568, "ts": 7915057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7915229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4671b0", "tid": 35568, "ts": 7915355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7915527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467350", "tid": 35568, "ts": 7915654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7915825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466da0", "tid": 35568, "ts": 7915952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7916124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469f30", "tid": 35568, "ts": 7916251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7916423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468530", "tid": 35568, "ts": 7916549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7916722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468940", "tid": 35568, "ts": 7916848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467280", "tid": 35568, "ts": 7917147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469300", "tid": 35568, "ts": 7917447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467420", "tid": 35568, "ts": 7917745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7917918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469b20", "tid": 35568, "ts": 7918044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7918216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4670e0", "tid": 35568, "ts": 7918342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7918516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4682c0", "tid": 35568, "ts": 7918643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7918815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468ae0", "tid": 35568, "ts": 7918942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7919114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a000", "tid": 35568, "ts": 7919241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7919414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469bf0", "tid": 35568, "ts": 7919540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7919713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468870", "tid": 35568, "ts": 7919840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467830", "tid": 35568, "ts": 7920138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468fc0", "tid": 35568, "ts": 7920436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466e70", "tid": 35568, "ts": 7920735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7920907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467690", "tid": 35568, "ts": 7921033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7921205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469980", "tid": 35568, "ts": 7921331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7921503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467900", "tid": 35568, "ts": 7921629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7921801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469090", "tid": 35568, "ts": 7921928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad466f40", "tid": 35568, "ts": 7922227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4674f0", "tid": 35568, "ts": 7922525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468c80", "tid": 35568, "ts": 7922824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7922996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469160", "tid": 35568, "ts": 7923122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7923293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4694a0", "tid": 35568, "ts": 7923420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7923592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469230", "tid": 35568, "ts": 7923718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7923889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4686d0", "tid": 35568, "ts": 7924015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7924187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469710", "tid": 35568, "ts": 7924314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7924485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4679d0", "tid": 35568, "ts": 7924611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7924783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468600", "tid": 35568, "ts": 7924909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7925081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467de0", "tid": 35568, "ts": 7925208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7925379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4693d0", "tid": 35568, "ts": 7925578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7925750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468460", "tid": 35568, "ts": 7925876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469640", "tid": 35568, "ts": 7926176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4675c0", "tid": 35568, "ts": 7926474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a0d0", "tid": 35568, "ts": 7926772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7926943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467760", "tid": 35568, "ts": 7927070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7927241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467f80", "tid": 35568, "ts": 7927368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7927540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467aa0", "tid": 35568, "ts": 7927667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7927838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4697e0", "tid": 35568, "ts": 7927964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7928135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469a50", "tid": 35568, "ts": 7928261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7928432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467b70", "tid": 35568, "ts": 7928558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7928729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467c40", "tid": 35568, "ts": 7928856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469cc0", "tid": 35568, "ts": 7929154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467d10", "tid": 35568, "ts": 7929453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad467eb0", "tid": 35568, "ts": 7929751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7929923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468050", "tid": 35568, "ts": 7930050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7930223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469d90", "tid": 35568, "ts": 7930350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7930522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad469e60", "tid": 35568, "ts": 7930650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7930822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468120", "tid": 35568, "ts": 7930947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7931118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4681f0", "tid": 35568, "ts": 7931245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7931417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468390", "tid": 35568, "ts": 7931543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7931716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4687a0", "tid": 35568, "ts": 7931843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468bb0", "tid": 35568, "ts": 7932141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468d50", "tid": 35568, "ts": 7932440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468e20", "tid": 35568, "ts": 7932738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7932910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad468ef0", "tid": 35568, "ts": 7933036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7933208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b110", "tid": 35568, "ts": 7933334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7933505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b2b0", "tid": 35568, "ts": 7933632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7933803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ccb0", "tid": 35568, "ts": 7933929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a8f0", "tid": 35568, "ts": 7934227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bc70", "tid": 35568, "ts": 7934525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46aa90", "tid": 35568, "ts": 7934824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7934996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46aea0", "tid": 35568, "ts": 7935122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7935335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d260", "tid": 35568, "ts": 7935464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7935637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a270", "tid": 35568, "ts": 7935764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7935934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a9c0", "tid": 35568, "ts": 7936061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7936234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a820", "tid": 35568, "ts": 7936360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7936532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cff0", "tid": 35568, "ts": 7936659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7936830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46af70", "tid": 35568, "ts": 7936957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7937129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b040", "tid": 35568, "ts": 7937255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7937427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a4e0", "tid": 35568, "ts": 7937553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7937725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b930", "tid": 35568, "ts": 7937853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46be10", "tid": 35568, "ts": 7938152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ab60", "tid": 35568, "ts": 7938450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bee0", "tid": 35568, "ts": 7938748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7938920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d0c0", "tid": 35568, "ts": 7939046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7939217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cd80", "tid": 35568, "ts": 7939344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7939516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d400", "tid": 35568, "ts": 7939642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7939814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c7d0", "tid": 35568, "ts": 7939940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7940111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c3c0", "tid": 35568, "ts": 7940238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7940410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b1e0", "tid": 35568, "ts": 7940536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7940708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bd40", "tid": 35568, "ts": 7940833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b790", "tid": 35568, "ts": 7941196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cbe0", "tid": 35568, "ts": 7941496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a5b0", "tid": 35568, "ts": 7941794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7941966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c970", "tid": 35568, "ts": 7942093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7942264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c560", "tid": 35568, "ts": 7942391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7942562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a1a0", "tid": 35568, "ts": 7942688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7942860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c630", "tid": 35568, "ts": 7942986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7943158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c8a0", "tid": 35568, "ts": 7943284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7943455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bad0", "tid": 35568, "ts": 7943581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7943753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ce50", "tid": 35568, "ts": 7943880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c700", "tid": 35568, "ts": 7944178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bfb0", "tid": 35568, "ts": 7944477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b5f0", "tid": 35568, "ts": 7944775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7944948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d330", "tid": 35568, "ts": 7945074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7945246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c080", "tid": 35568, "ts": 7945372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7945544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a680", "tid": 35568, "ts": 7945670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7945841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ca40", "tid": 35568, "ts": 7945968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7946141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b860", "tid": 35568, "ts": 7946267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7946439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b380", "tid": 35568, "ts": 7946566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7946738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c150", "tid": 35568, "ts": 7946865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7947037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d4d0", "tid": 35568, "ts": 7947222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7947394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cb10", "tid": 35568, "ts": 7947522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7947694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ba00", "tid": 35568, "ts": 7947863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46cf20", "tid": 35568, "ts": 7948164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d190", "tid": 35568, "ts": 7948464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a340", "tid": 35568, "ts": 7948764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7948936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c2f0", "tid": 35568, "ts": 7949062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7949234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b6c0", "tid": 35568, "ts": 7949361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7949532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a410", "tid": 35568, "ts": 7949659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7949831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46a750", "tid": 35568, "ts": 7949958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7950130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ac30", "tid": 35568, "ts": 7950256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7950429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ad00", "tid": 35568, "ts": 7950555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7950726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c490", "tid": 35568, "ts": 7950853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46bba0", "tid": 35568, "ts": 7951151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46add0", "tid": 35568, "ts": 7951450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b450", "tid": 35568, "ts": 7951750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7951922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46b520", "tid": 35568, "ts": 7952049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7952221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46c220", "tid": 35568, "ts": 7952349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7952520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e1d0", "tid": 35568, "ts": 7952647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7952819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d5a0", "tid": 35568, "ts": 7952945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7953117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d670", "tid": 35568, "ts": 7953244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7953415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4703f0", "tid": 35568, "ts": 7953542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7953714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46db50", "tid": 35568, "ts": 7953841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4704c0", "tid": 35568, "ts": 7954138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46eed0", "tid": 35568, "ts": 7954438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d9b0", "tid": 35568, "ts": 7954737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7954909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470590", "tid": 35568, "ts": 7955036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7955208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46dc20", "tid": 35568, "ts": 7955335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7955507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46efa0", "tid": 35568, "ts": 7955633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7955806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470660", "tid": 35568, "ts": 7955932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7956105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f070", "tid": 35568, "ts": 7956231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7956403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46de90", "tid": 35568, "ts": 7956530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7956712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e2a0", "tid": 35568, "ts": 7956840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f960", "tid": 35568, "ts": 7957138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470730", "tid": 35568, "ts": 7957437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fca0", "tid": 35568, "ts": 7957736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7957907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fa30", "tid": 35568, "ts": 7958034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7958205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f140", "tid": 35568, "ts": 7958332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7958505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f2e0", "tid": 35568, "ts": 7958632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7958803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d740", "tid": 35568, "ts": 7958929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46eb90", "tid": 35568, "ts": 7959228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f210", "tid": 35568, "ts": 7959526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e370", "tid": 35568, "ts": 7959824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7959996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e510", "tid": 35568, "ts": 7960122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7960293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fb00", "tid": 35568, "ts": 7960419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7960592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f550", "tid": 35568, "ts": 7960718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7960890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e9f0", "tid": 35568, "ts": 7961017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7961189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fbd0", "tid": 35568, "ts": 7961316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7961488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470800", "tid": 35568, "ts": 7961614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7961786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d810", "tid": 35568, "ts": 7961913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f480", "tid": 35568, "ts": 7962210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f890", "tid": 35568, "ts": 7962509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f3b0", "tid": 35568, "ts": 7962807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7962979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46dcf0", "tid": 35568, "ts": 7963105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7963276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ddc0", "tid": 35568, "ts": 7963403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7963575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e440", "tid": 35568, "ts": 7963701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7963873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46eac0", "tid": 35568, "ts": 7964000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7964172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e030", "tid": 35568, "ts": 7964300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7964471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f7c0", "tid": 35568, "ts": 7964597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7964769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e780", "tid": 35568, "ts": 7964896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470180", "tid": 35568, "ts": 7965194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f620", "tid": 35568, "ts": 7965492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46df60", "tid": 35568, "ts": 7965792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7965964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e5e0", "tid": 35568, "ts": 7966091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7966262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4708d0", "tid": 35568, "ts": 7966389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7966561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fd70", "tid": 35568, "ts": 7966689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7966860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ec60", "tid": 35568, "ts": 7966987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7967158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470250", "tid": 35568, "ts": 7967284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7967456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46d8e0", "tid": 35568, "ts": 7967584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7967756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46f6f0", "tid": 35568, "ts": 7967882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e6b0", "tid": 35568, "ts": 7968181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46da80", "tid": 35568, "ts": 7968479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e100", "tid": 35568, "ts": 7968778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7968950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46fe40", "tid": 35568, "ts": 7969077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7969248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e850", "tid": 35568, "ts": 7969375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7969547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46e920", "tid": 35568, "ts": 7969674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7969845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ed30", "tid": 35568, "ts": 7969972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7970143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ee00", "tid": 35568, "ts": 7970270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7970441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470320", "tid": 35568, "ts": 7970567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7970738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4700b0", "tid": 35568, "ts": 7970865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ff10", "tid": 35568, "ts": 7971162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad46ffe0", "tid": 35568, "ts": 7971460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472f00", "tid": 35568, "ts": 7971758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7971929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472060", "tid": 35568, "ts": 7972055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7972227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470c10", "tid": 35568, "ts": 7972418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7972590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4734b0", "tid": 35568, "ts": 7972718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7972889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4722d0", "tid": 35568, "ts": 7973016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7973188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472e30", "tid": 35568, "ts": 7973314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7973485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4738c0", "tid": 35568, "ts": 7973611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7973783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473720", "tid": 35568, "ts": 7973910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473650", "tid": 35568, "ts": 7974208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471020", "tid": 35568, "ts": 7974506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4737f0", "tid": 35568, "ts": 7974805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7974976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473990", "tid": 35568, "ts": 7975103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7975274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4710f0", "tid": 35568, "ts": 7975401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7975574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4723a0", "tid": 35568, "ts": 7975700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7975871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472d60", "tid": 35568, "ts": 7975999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7976171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470ce0", "tid": 35568, "ts": 7976297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7976469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473c00", "tid": 35568, "ts": 7976596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7976767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472fd0", "tid": 35568, "ts": 7976893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472470", "tid": 35568, "ts": 7977191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471770", "tid": 35568, "ts": 7977490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473b30", "tid": 35568, "ts": 7977788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7977960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471290", "tid": 35568, "ts": 7978087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7978258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473a60", "tid": 35568, "ts": 7978385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7978556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470db0", "tid": 35568, "ts": 7978683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7978855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473170", "tid": 35568, "ts": 7978982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7979154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471430", "tid": 35568, "ts": 7979280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7979453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470e80", "tid": 35568, "ts": 7979580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7979819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473cd0", "tid": 35568, "ts": 7979948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7980125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471500", "tid": 35568, "ts": 7980253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7980433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471910", "tid": 35568, "ts": 7980571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7980784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471d20", "tid": 35568, "ts": 7980917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4709a0", "tid": 35568, "ts": 7981216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471f90", "tid": 35568, "ts": 7981515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472540", "tid": 35568, "ts": 7981814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7981985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472200", "tid": 35568, "ts": 7982112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7982284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470a70", "tid": 35568, "ts": 7982411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7982583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4730a0", "tid": 35568, "ts": 7982710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7982882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471c50", "tid": 35568, "ts": 7983010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7983180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470b40", "tid": 35568, "ts": 7983308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7983480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472610", "tid": 35568, "ts": 7983607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7983779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473240", "tid": 35568, "ts": 7983905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4715d0", "tid": 35568, "ts": 7984203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad470f50", "tid": 35568, "ts": 7984502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471ec0", "tid": 35568, "ts": 7984800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7984972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473310", "tid": 35568, "ts": 7985099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7985270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471840", "tid": 35568, "ts": 7985397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7985568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4711c0", "tid": 35568, "ts": 7985695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7985866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471360", "tid": 35568, "ts": 7985993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7986164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4716a0", "tid": 35568, "ts": 7986291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7986462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4726e0", "tid": 35568, "ts": 7986590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7986762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4719e0", "tid": 35568, "ts": 7986914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7987086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471b80", "tid": 35568, "ts": 7987214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7987385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4733e0", "tid": 35568, "ts": 7987511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7987682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471ab0", "tid": 35568, "ts": 7987809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad471df0", "tid": 35568, "ts": 7988164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472130", "tid": 35568, "ts": 7988463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4727b0", "tid": 35568, "ts": 7988761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7988932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472880", "tid": 35568, "ts": 7989059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7989232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472950", "tid": 35568, "ts": 7989359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7989531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472a20", "tid": 35568, "ts": 7989658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7989829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472af0", "tid": 35568, "ts": 7989956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7990128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472bc0", "tid": 35568, "ts": 7990255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7990426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad472c90", "tid": 35568, "ts": 7990552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7990724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473580", "tid": 35568, "ts": 7990850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474830", "tid": 35568, "ts": 7991147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4751f0", "tid": 35568, "ts": 7991445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474350", "tid": 35568, "ts": 7991743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7991915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475d50", "tid": 35568, "ts": 7992041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7992212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4756d0", "tid": 35568, "ts": 7992339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7992511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4749d0", "tid": 35568, "ts": 7992638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7992809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474010", "tid": 35568, "ts": 7992936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7993107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4752c0", "tid": 35568, "ts": 7993234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7993406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475600", "tid": 35568, "ts": 7993533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7993704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474aa0", "tid": 35568, "ts": 7993831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475e20", "tid": 35568, "ts": 7994128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474420", "tid": 35568, "ts": 7994426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476b20", "tid": 35568, "ts": 7994746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7994919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474de0", "tid": 35568, "ts": 7995045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7995217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476bf0", "tid": 35568, "ts": 7995344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7995515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474690", "tid": 35568, "ts": 7995642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7995814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474b70", "tid": 35568, "ts": 7995941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7996111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475ef0", "tid": 35568, "ts": 7996238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7996410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475fc0", "tid": 35568, "ts": 7996537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7996708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4740e0", "tid": 35568, "ts": 7996834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475530", "tid": 35568, "ts": 7997133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476160", "tid": 35568, "ts": 7997430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476cc0", "tid": 35568, "ts": 7997728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7997899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474c40", "tid": 35568, "ts": 7998025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7998196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476230", "tid": 35568, "ts": 7998322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7998493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476d90", "tid": 35568, "ts": 7998621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7998792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4741b0", "tid": 35568, "ts": 7998918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477000", "tid": 35568, "ts": 7999217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476090", "tid": 35568, "ts": 7999514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4768b0", "tid": 35568, "ts": 7999813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 7999985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475390", "tid": 35568, "ts": 8000112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8000283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4767e0", "tid": 35568, "ts": 8000410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8000581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475460", "tid": 35568, "ts": 8000708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8000879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474900", "tid": 35568, "ts": 8001006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8001177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476300", "tid": 35568, "ts": 8001303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8001475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4757a0", "tid": 35568, "ts": 8001602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8001774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4770d0", "tid": 35568, "ts": 8001901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4763d0", "tid": 35568, "ts": 8002200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4744f0", "tid": 35568, "ts": 8002497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473da0", "tid": 35568, "ts": 8002794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8002966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4764a0", "tid": 35568, "ts": 8003093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8003264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474f80", "tid": 35568, "ts": 8003391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8003650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474d10", "tid": 35568, "ts": 8003865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475870", "tid": 35568, "ts": 8004190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475a10", "tid": 35568, "ts": 8004498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476980", "tid": 35568, "ts": 8004802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8004976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476570", "tid": 35568, "ts": 8005106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8005279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4745c0", "tid": 35568, "ts": 8005408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8005582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473e70", "tid": 35568, "ts": 8005710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8005885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476640", "tid": 35568, "ts": 8006014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8006232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475940", "tid": 35568, "ts": 8006361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8006536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474eb0", "tid": 35568, "ts": 8006664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8006837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476710", "tid": 35568, "ts": 8006965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8007137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475ae0", "tid": 35568, "ts": 8007265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8007437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475050", "tid": 35568, "ts": 8007564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8007738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474280", "tid": 35568, "ts": 8007866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476a50", "tid": 35568, "ts": 8008167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475bb0", "tid": 35568, "ts": 8008466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad473f40", "tid": 35568, "ts": 8008765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8008939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475c80", "tid": 35568, "ts": 8009067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8009239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad474760", "tid": 35568, "ts": 8009400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8009573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476e60", "tid": 35568, "ts": 8009702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8009874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad476f30", "tid": 35568, "ts": 8010002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8010174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad475120", "tid": 35568, "ts": 8010301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8010472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478040", "tid": 35568, "ts": 8010601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8010774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a4d0", "tid": 35568, "ts": 8010902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8011074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4771a0", "tid": 35568, "ts": 8011202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8011375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479220", "tid": 35568, "ts": 8011502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8011675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477b60", "tid": 35568, "ts": 8011865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477dd0", "tid": 35568, "ts": 8012166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479d80", "tid": 35568, "ts": 8012466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479080", "tid": 35568, "ts": 8012767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8012940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478d40", "tid": 35568, "ts": 8013067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8013239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479970", "tid": 35568, "ts": 8013366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8013538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477d00", "tid": 35568, "ts": 8013665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8013838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4775b0", "tid": 35568, "ts": 8014010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8014183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a0c0", "tid": 35568, "ts": 8014310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8014483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479cb0", "tid": 35568, "ts": 8014611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8014783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478450", "tid": 35568, "ts": 8014911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8015084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478110", "tid": 35568, "ts": 8015210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8015382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479490", "tid": 35568, "ts": 8015509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8015681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477ea0", "tid": 35568, "ts": 8015864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479e50", "tid": 35568, "ts": 8016164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478ee0", "tid": 35568, "ts": 8016462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478a00", "tid": 35568, "ts": 8016761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8016933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477820", "tid": 35568, "ts": 8017060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8017232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478ad0", "tid": 35568, "ts": 8017359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8017531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4774e0", "tid": 35568, "ts": 8017658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8017829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a190", "tid": 35568, "ts": 8017956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8018130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4798a0", "tid": 35568, "ts": 8018257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8018430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479f20", "tid": 35568, "ts": 8018556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8018729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4781e0", "tid": 35568, "ts": 8018856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8019028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479700", "tid": 35568, "ts": 8019155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8019384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478790", "tid": 35568, "ts": 8019539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8019716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a260", "tid": 35568, "ts": 8019879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479ff0", "tid": 35568, "ts": 8020178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477270", "tid": 35568, "ts": 8020477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479a40", "tid": 35568, "ts": 8020776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8020948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479630", "tid": 35568, "ts": 8021075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8021248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477f70", "tid": 35568, "ts": 8021376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8021549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4782b0", "tid": 35568, "ts": 8021675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8021847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a400", "tid": 35568, "ts": 8021973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8022145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4797d0", "tid": 35568, "ts": 8022271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8022443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477410", "tid": 35568, "ts": 8022570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8022742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478ba0", "tid": 35568, "ts": 8022870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478380", "tid": 35568, "ts": 8023169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477750", "tid": 35568, "ts": 8023467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a330", "tid": 35568, "ts": 8023766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8023939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478c70", "tid": 35568, "ts": 8024066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8024237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479be0", "tid": 35568, "ts": 8024364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8024536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479b10", "tid": 35568, "ts": 8024663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8024836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477680", "tid": 35568, "ts": 8024963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8025135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477340", "tid": 35568, "ts": 8025263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8025435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4778f0", "tid": 35568, "ts": 8025562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8025735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4779c0", "tid": 35568, "ts": 8025862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477a90", "tid": 35568, "ts": 8026185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad477c30", "tid": 35568, "ts": 8026484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4785f0", "tid": 35568, "ts": 8026785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8026957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478520", "tid": 35568, "ts": 8027084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8027256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479560", "tid": 35568, "ts": 8027383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8027554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4786c0", "tid": 35568, "ts": 8027681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8027854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478860", "tid": 35568, "ts": 8027980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8028152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478e10", "tid": 35568, "ts": 8028279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8028453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad479150", "tid": 35568, "ts": 8028580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8028751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478930", "tid": 35568, "ts": 8028879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad478fb0", "tid": 35568, "ts": 8029178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4792f0", "tid": 35568, "ts": 8029477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4793c0", "tid": 35568, "ts": 8029776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8029948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c480", "tid": 35568, "ts": 8030076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8030249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d8d0", "tid": 35568, "ts": 8030377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8030549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c2e0", "tid": 35568, "ts": 8030676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8030848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cb00", "tid": 35568, "ts": 8030975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8031147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47af60", "tid": 35568, "ts": 8031274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8031445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a9b0", "tid": 35568, "ts": 8031572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8031745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cca0", "tid": 35568, "ts": 8031871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c6f0", "tid": 35568, "ts": 8032171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ae90", "tid": 35568, "ts": 8032470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cbd0", "tid": 35568, "ts": 8032769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8032942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ca30", "tid": 35568, "ts": 8033069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8033241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a5a0", "tid": 35568, "ts": 8033368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8033541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c3b0", "tid": 35568, "ts": 8033668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8033839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b780", "tid": 35568, "ts": 8033967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8034140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b370", "tid": 35568, "ts": 8034267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8034440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a670", "tid": 35568, "ts": 8034567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8034738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b1d0", "tid": 35568, "ts": 8034930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8035102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b030", "tid": 35568, "ts": 8035230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8035403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d0b0", "tid": 35568, "ts": 8035530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8035703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b2a0", "tid": 35568, "ts": 8035830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c210", "tid": 35568, "ts": 8036129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bac0", "tid": 35568, "ts": 8036428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ac20", "tid": 35568, "ts": 8036726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8036899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bed0", "tid": 35568, "ts": 8037026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8037198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cd70", "tid": 35568, "ts": 8037324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8037496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b440", "tid": 35568, "ts": 8037622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8037795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b6b0", "tid": 35568, "ts": 8037922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b9f0", "tid": 35568, "ts": 8038223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bfa0", "tid": 35568, "ts": 8038523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d320", "tid": 35568, "ts": 8038823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8038994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c960", "tid": 35568, "ts": 8039122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8039294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a740", "tid": 35568, "ts": 8039422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8039594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ce40", "tid": 35568, "ts": 8039721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8039893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a810", "tid": 35568, "ts": 8040020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8040192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cf10", "tid": 35568, "ts": 8040320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8040492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47a8e0", "tid": 35568, "ts": 8040619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8040793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47aa80", "tid": 35568, "ts": 8040920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c620", "tid": 35568, "ts": 8041221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b100", "tid": 35568, "ts": 8041519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b510", "tid": 35568, "ts": 8041818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8041990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c550", "tid": 35568, "ts": 8042117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8042289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bb90", "tid": 35568, "ts": 8042416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8042588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47cfe0", "tid": 35568, "ts": 8042715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8042888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ab50", "tid": 35568, "ts": 8043015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8043186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d180", "tid": 35568, "ts": 8043313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8043485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c7c0", "tid": 35568, "ts": 8043613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8043784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47acf0", "tid": 35568, "ts": 8043911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d250", "tid": 35568, "ts": 8044212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b850", "tid": 35568, "ts": 8044513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b5e0", "tid": 35568, "ts": 8044812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8044986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47b920", "tid": 35568, "ts": 8045113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8045285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47adc0", "tid": 35568, "ts": 8045413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8045585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d3f0", "tid": 35568, "ts": 8045713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8045886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bc60", "tid": 35568, "ts": 8046012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8046184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47bd30", "tid": 35568, "ts": 8046312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8046484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47be00", "tid": 35568, "ts": 8046611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8046783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c070", "tid": 35568, "ts": 8046910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8047126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c140", "tid": 35568, "ts": 8047254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8047427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47c890", "tid": 35568, "ts": 8047555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8047728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d4c0", "tid": 35568, "ts": 8047855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d590", "tid": 35568, "ts": 8048154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d660", "tid": 35568, "ts": 8048454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d730", "tid": 35568, "ts": 8048752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8048925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d800", "tid": 35568, "ts": 8049052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8049225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e840", "tid": 35568, "ts": 8049351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8049524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4804b0", "tid": 35568, "ts": 8049651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8049824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480c00", "tid": 35568, "ts": 8049952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8050124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47eb80", "tid": 35568, "ts": 8050251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8050432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ff00", "tid": 35568, "ts": 8050561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8050733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f060", "tid": 35568, "ts": 8050861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fbc0", "tid": 35568, "ts": 8051160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ef90", "tid": 35568, "ts": 8051460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4803e0", "tid": 35568, "ts": 8051760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8051931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e020", "tid": 35568, "ts": 8052058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8052231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47d9a0", "tid": 35568, "ts": 8052358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8052529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e0f0", "tid": 35568, "ts": 8052656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8052829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480720", "tid": 35568, "ts": 8052956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8053127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480650", "tid": 35568, "ts": 8053254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8053427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f950", "tid": 35568, "ts": 8053554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8053726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47edf0", "tid": 35568, "ts": 8053853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f7b0", "tid": 35568, "ts": 8054153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e290", "tid": 35568, "ts": 8054451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480310", "tid": 35568, "ts": 8054752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8054924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e770", "tid": 35568, "ts": 8055051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8055223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47eec0", "tid": 35568, "ts": 8055351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8055525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480170", "tid": 35568, "ts": 8055651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8055824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e430", "tid": 35568, "ts": 8055950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8056123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fa20", "tid": 35568, "ts": 8056250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8056422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ffd0", "tid": 35568, "ts": 8056549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8056721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f3a0", "tid": 35568, "ts": 8056849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f130", "tid": 35568, "ts": 8057149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ddb0", "tid": 35568, "ts": 8057502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e5d0", "tid": 35568, "ts": 8057809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8057983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f200", "tid": 35568, "ts": 8058109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8058283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e6a0", "tid": 35568, "ts": 8058410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8058582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47df50", "tid": 35568, "ts": 8058709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8058882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fc90", "tid": 35568, "ts": 8059009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8059182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47de80", "tid": 35568, "ts": 8059310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8059481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e1c0", "tid": 35568, "ts": 8059609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8059783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47faf0", "tid": 35568, "ts": 8059910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47dce0", "tid": 35568, "ts": 8060209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f2d0", "tid": 35568, "ts": 8060509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47da70", "tid": 35568, "ts": 8060808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8060980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480240", "tid": 35568, "ts": 8061109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8061281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f470", "tid": 35568, "ts": 8061408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8061581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480580", "tid": 35568, "ts": 8061708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8061881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480a60", "tid": 35568, "ts": 8062009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8062180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f540", "tid": 35568, "ts": 8062307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8062479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4807f0", "tid": 35568, "ts": 8062606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8062779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f610", "tid": 35568, "ts": 8062906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fd60", "tid": 35568, "ts": 8063205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4808c0", "tid": 35568, "ts": 8063503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e500", "tid": 35568, "ts": 8063802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8063975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47fe30", "tid": 35568, "ts": 8064101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8064273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4800a0", "tid": 35568, "ts": 8064400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8064573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480990", "tid": 35568, "ts": 8064700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8064873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480b30", "tid": 35568, "ts": 8065001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8065174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480cd0", "tid": 35568, "ts": 8065301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8065473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47db40", "tid": 35568, "ts": 8065600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8065773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47dc10", "tid": 35568, "ts": 8065900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8066122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f880", "tid": 35568, "ts": 8066262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8066435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e360", "tid": 35568, "ts": 8066562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8066733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47f6e0", "tid": 35568, "ts": 8066861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e910", "tid": 35568, "ts": 8067160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47e9e0", "tid": 35568, "ts": 8067459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47eab0", "tid": 35568, "ts": 8067759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8067932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ec50", "tid": 35568, "ts": 8068058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8068231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad47ed20", "tid": 35568, "ts": 8068358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8068530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481de0", "tid": 35568, "ts": 8068657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8068830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4837e0", "tid": 35568, "ts": 8068957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8069129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480da0", "tid": 35568, "ts": 8069257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8069429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481010", "tid": 35568, "ts": 8069557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8069729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483710", "tid": 35568, "ts": 8069856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481830", "tid": 35568, "ts": 8070156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482ef0", "tid": 35568, "ts": 8070455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481eb0", "tid": 35568, "ts": 8070756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8070929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4826d0", "tid": 35568, "ts": 8071056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8071228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481900", "tid": 35568, "ts": 8071355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8071527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483300", "tid": 35568, "ts": 8071654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8071828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482460", "tid": 35568, "ts": 8071955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8072126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482fc0", "tid": 35568, "ts": 8072253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8072426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482c80", "tid": 35568, "ts": 8072553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8072725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483090", "tid": 35568, "ts": 8072852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481aa0", "tid": 35568, "ts": 8073151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481d10", "tid": 35568, "ts": 8073452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4822c0", "tid": 35568, "ts": 8073751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8073924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4810e0", "tid": 35568, "ts": 8074052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8074225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4827a0", "tid": 35568, "ts": 8074351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8074525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483230", "tid": 35568, "ts": 8074652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8074824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483f30", "tid": 35568, "ts": 8074951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8075123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482ae0", "tid": 35568, "ts": 8075251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8075422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480e70", "tid": 35568, "ts": 8075549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8075722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481280", "tid": 35568, "ts": 8075849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481350", "tid": 35568, "ts": 8076147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4833d0", "tid": 35568, "ts": 8076446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4811b0", "tid": 35568, "ts": 8076747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8076960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad480f40", "tid": 35568, "ts": 8077089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8077261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4819d0", "tid": 35568, "ts": 8077388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8077561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481420", "tid": 35568, "ts": 8077688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8077861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483980", "tid": 35568, "ts": 8077988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8078161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483160", "tid": 35568, "ts": 8078289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8078462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481b70", "tid": 35568, "ts": 8078590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8078762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4814f0", "tid": 35568, "ts": 8078952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8079125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483cc0", "tid": 35568, "ts": 8079252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8079425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481c40", "tid": 35568, "ts": 8079553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8079725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4834a0", "tid": 35568, "ts": 8079852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4838b0", "tid": 35568, "ts": 8080199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483570", "tid": 35568, "ts": 8080500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482390", "tid": 35568, "ts": 8080800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8080972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483e60", "tid": 35568, "ts": 8081099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8081271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4821f0", "tid": 35568, "ts": 8081399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8081570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483640", "tid": 35568, "ts": 8081742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8081980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483a50", "tid": 35568, "ts": 8082108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8082280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484000", "tid": 35568, "ts": 8082408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8082579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4840d0", "tid": 35568, "ts": 8082707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8082880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4815c0", "tid": 35568, "ts": 8083007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8083178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483d90", "tid": 35568, "ts": 8083306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8083477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481690", "tid": 35568, "ts": 8083605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8083776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483b20", "tid": 35568, "ts": 8083903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8084077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481f80", "tid": 35568, "ts": 8084204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8084376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482050", "tid": 35568, "ts": 8084561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8084733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad483bf0", "tid": 35568, "ts": 8084860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482120", "tid": 35568, "ts": 8085159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482530", "tid": 35568, "ts": 8085459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad481760", "tid": 35568, "ts": 8085757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8085929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482870", "tid": 35568, "ts": 8086056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8086227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482600", "tid": 35568, "ts": 8086355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8086528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482940", "tid": 35568, "ts": 8086655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8086827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482a10", "tid": 35568, "ts": 8086954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8087126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482bb0", "tid": 35568, "ts": 8087254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8087425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482d50", "tid": 35568, "ts": 8087552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8087724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad482e20", "tid": 35568, "ts": 8087852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484ea0", "tid": 35568, "ts": 8088151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487330", "tid": 35568, "ts": 8088450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485450", "tid": 35568, "ts": 8088749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8088921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485d40", "tid": 35568, "ts": 8089048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8089221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486ff0", "tid": 35568, "ts": 8089348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8089520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484750", "tid": 35568, "ts": 8089647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8089818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485380", "tid": 35568, "ts": 8089946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8090118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485790", "tid": 35568, "ts": 8090245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8090417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486080", "tid": 35568, "ts": 8090544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8090715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484680", "tid": 35568, "ts": 8090842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484820", "tid": 35568, "ts": 8091140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485520", "tid": 35568, "ts": 8091440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485040", "tid": 35568, "ts": 8091741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8091912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485ad0", "tid": 35568, "ts": 8092039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8092211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4870c0", "tid": 35568, "ts": 8092337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8092510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4848f0", "tid": 35568, "ts": 8092636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8092808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486f20", "tid": 35568, "ts": 8092934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8093107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486220", "tid": 35568, "ts": 8093233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8093406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484b60", "tid": 35568, "ts": 8093534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8093707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4862f0", "tid": 35568, "ts": 8093835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8094006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484c30", "tid": 35568, "ts": 8094133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8094304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486700", "tid": 35568, "ts": 8094431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8094721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487190", "tid": 35568, "ts": 8094848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4863c0", "tid": 35568, "ts": 8095146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4855f0", "tid": 35568, "ts": 8095446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484f70", "tid": 35568, "ts": 8095745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8095917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485110", "tid": 35568, "ts": 8096044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8096218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4867d0", "tid": 35568, "ts": 8096345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8096519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484270", "tid": 35568, "ts": 8096646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8096819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487260", "tid": 35568, "ts": 8096946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8097118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486150", "tid": 35568, "ts": 8097246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8097532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487400", "tid": 35568, "ts": 8097664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8097838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4851e0", "tid": 35568, "ts": 8097967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8098140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486490", "tid": 35568, "ts": 8098267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8098441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4856c0", "tid": 35568, "ts": 8098633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8098806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4852b0", "tid": 35568, "ts": 8098934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8099107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4868a0", "tid": 35568, "ts": 8099235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8099408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484d00", "tid": 35568, "ts": 8099535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8099706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4874d0", "tid": 35568, "ts": 8099834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4841a0", "tid": 35568, "ts": 8100134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486e50", "tid": 35568, "ts": 8100435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485c70", "tid": 35568, "ts": 8100735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8100908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484340", "tid": 35568, "ts": 8101035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8101207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484410", "tid": 35568, "ts": 8101334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8101506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485ba0", "tid": 35568, "ts": 8101634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8101805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486560", "tid": 35568, "ts": 8101932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8102104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4844e0", "tid": 35568, "ts": 8102231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8102403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485860", "tid": 35568, "ts": 8102531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8102703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484dd0", "tid": 35568, "ts": 8102830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486630", "tid": 35568, "ts": 8103128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4845b0", "tid": 35568, "ts": 8103428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485930", "tid": 35568, "ts": 8103728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8103900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485a00", "tid": 35568, "ts": 8104027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8104199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485e10", "tid": 35568, "ts": 8104326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8104498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4849c0", "tid": 35568, "ts": 8104625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8104798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485ee0", "tid": 35568, "ts": 8104925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad484a90", "tid": 35568, "ts": 8105224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad485fb0", "tid": 35568, "ts": 8105523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486970", "tid": 35568, "ts": 8105822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8105994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486a40", "tid": 35568, "ts": 8106121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8106293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486b10", "tid": 35568, "ts": 8106421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8106593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486be0", "tid": 35568, "ts": 8106720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8106891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486cb0", "tid": 35568, "ts": 8107019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8107192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad486d80", "tid": 35568, "ts": 8107319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8107491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489b00", "tid": 35568, "ts": 8107618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8107790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4889f0", "tid": 35568, "ts": 8107917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488030", "tid": 35568, "ts": 8108216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488510", "tid": 35568, "ts": 8108514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488440", "tid": 35568, "ts": 8108814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8108985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489550", "tid": 35568, "ts": 8109112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8109286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487f60", "tid": 35568, "ts": 8109413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8109585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489f10", "tid": 35568, "ts": 8109712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8109883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487810", "tid": 35568, "ts": 8110010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8110181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489bd0", "tid": 35568, "ts": 8110308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8110480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487c20", "tid": 35568, "ts": 8110607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8110779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a250", "tid": 35568, "ts": 8110906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4879b0", "tid": 35568, "ts": 8111206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487b50", "tid": 35568, "ts": 8111505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487670", "tid": 35568, "ts": 8111805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8111977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a3f0", "tid": 35568, "ts": 8112105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8112277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487cf0", "tid": 35568, "ts": 8112404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8112576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489140", "tid": 35568, "ts": 8112705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8112877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487a80", "tid": 35568, "ts": 8113041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8113213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4885e0", "tid": 35568, "ts": 8113342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8113555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489620", "tid": 35568, "ts": 8113684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8113856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487dc0", "tid": 35568, "ts": 8113984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8114156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488100", "tid": 35568, "ts": 8114282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8114455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a0b0", "tid": 35568, "ts": 8114582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8114755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489070", "tid": 35568, "ts": 8114882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489ca0", "tid": 35568, "ts": 8115182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488ed0", "tid": 35568, "ts": 8115483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487e90", "tid": 35568, "ts": 8115784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8115957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488d30", "tid": 35568, "ts": 8116084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8116257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4896f0", "tid": 35568, "ts": 8116385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8116557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488fa0", "tid": 35568, "ts": 8116684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8116856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a4c0", "tid": 35568, "ts": 8116984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8117157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4886b0", "tid": 35568, "ts": 8117284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8117455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489210", "tid": 35568, "ts": 8117583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8117756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4881d0", "tid": 35568, "ts": 8117883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a180", "tid": 35568, "ts": 8118181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488920", "tid": 35568, "ts": 8118480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4892e0", "tid": 35568, "ts": 8118812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8118986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489890", "tid": 35568, "ts": 8119113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8119285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a800", "tid": 35568, "ts": 8119412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8119585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489480", "tid": 35568, "ts": 8119713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8119885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a320", "tid": 35568, "ts": 8120012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8120184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4893b0", "tid": 35568, "ts": 8120310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8120483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a8d0", "tid": 35568, "ts": 8120610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8120783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488780", "tid": 35568, "ts": 8120910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4897c0", "tid": 35568, "ts": 8121209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489d70", "tid": 35568, "ts": 8121507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489960", "tid": 35568, "ts": 8121805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8121977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad487740", "tid": 35568, "ts": 8122104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8122277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489a30", "tid": 35568, "ts": 8122403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8122576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4882a0", "tid": 35568, "ts": 8122703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8122876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a590", "tid": 35568, "ts": 8123004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8123176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489e40", "tid": 35568, "ts": 8123304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8123476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a660", "tid": 35568, "ts": 8123602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8123774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488ac0", "tid": 35568, "ts": 8123902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a730", "tid": 35568, "ts": 8124202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488850", "tid": 35568, "ts": 8124500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488c60", "tid": 35568, "ts": 8124800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8124972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488b90", "tid": 35568, "ts": 8125099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8125271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488e00", "tid": 35568, "ts": 8125399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8125571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad489fe0", "tid": 35568, "ts": 8125698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8125871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad488370", "tid": 35568, "ts": 8125999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8126171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4875a0", "tid": 35568, "ts": 8126298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8126469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4878e0", "tid": 35568, "ts": 8126596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8126769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d580", "tid": 35568, "ts": 8126896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bc50", "tid": 35568, "ts": 8127195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ca20", "tid": 35568, "ts": 8127495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c3a0", "tid": 35568, "ts": 8127794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8127966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b770", "tid": 35568, "ts": 8128094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8128265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b910", "tid": 35568, "ts": 8128393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8128632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d0a0", "tid": 35568, "ts": 8128899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8129142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b9e0", "tid": 35568, "ts": 8129320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8129553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b840", "tid": 35568, "ts": 8129767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8129939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bab0", "tid": 35568, "ts": 8130067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8130239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b5d0", "tid": 35568, "ts": 8130367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8130540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48aa70", "tid": 35568, "ts": 8130668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8130841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d650", "tid": 35568, "ts": 8130969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8131141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b290", "tid": 35568, "ts": 8131269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8131441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ce30", "tid": 35568, "ts": 8131569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8131741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bd20", "tid": 35568, "ts": 8131869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132041, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b430", "tid": 35568, "ts": 8132169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d4b0", "tid": 35568, "ts": 8132468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c6e0", "tid": 35568, "ts": 8132771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8132944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bb80", "tid": 35568, "ts": 8133071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8133243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48caf0", "tid": 35568, "ts": 8133370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8133542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cfd0", "tid": 35568, "ts": 8133670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8133842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48dcd0", "tid": 35568, "ts": 8133969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8134141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b6a0", "tid": 35568, "ts": 8134269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8134440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ac10", "tid": 35568, "ts": 8134568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8134739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b500", "tid": 35568, "ts": 8134867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cbc0", "tid": 35568, "ts": 8135165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ace0", "tid": 35568, "ts": 8135467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cc90", "tid": 35568, "ts": 8135769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8135942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bdf0", "tid": 35568, "ts": 8136070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8136242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c540", "tid": 35568, "ts": 8136370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8136542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48db30", "tid": 35568, "ts": 8136670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8136842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d310", "tid": 35568, "ts": 8136970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8137267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48af50", "tid": 35568, "ts": 8137432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8137605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bec0", "tid": 35568, "ts": 8137733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8137905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b360", "tid": 35568, "ts": 8138032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8138204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d7f0", "tid": 35568, "ts": 8138331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8138503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48bf90", "tid": 35568, "ts": 8138631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8138803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d720", "tid": 35568, "ts": 8138930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8139103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b020", "tid": 35568, "ts": 8139230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8139403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d8c0", "tid": 35568, "ts": 8139530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8139702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d990", "tid": 35568, "ts": 8139830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d170", "tid": 35568, "ts": 8140129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cf00", "tid": 35568, "ts": 8140430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c060", "tid": 35568, "ts": 8140730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8140902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d3e0", "tid": 35568, "ts": 8141030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8141202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48da60", "tid": 35568, "ts": 8141329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8141502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c130", "tid": 35568, "ts": 8141630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8141802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c200", "tid": 35568, "ts": 8141930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8142103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48dc00", "tid": 35568, "ts": 8142231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8142404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48d240", "tid": 35568, "ts": 8142531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8142705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48a9a0", "tid": 35568, "ts": 8142832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ab40", "tid": 35568, "ts": 8143132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48adb0", "tid": 35568, "ts": 8143431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ae80", "tid": 35568, "ts": 8143731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8143902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b0f0", "tid": 35568, "ts": 8144030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8144240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c2d0", "tid": 35568, "ts": 8144369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8144543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c470", "tid": 35568, "ts": 8144670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8144842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48b1c0", "tid": 35568, "ts": 8144969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8145142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48cd60", "tid": 35568, "ts": 8145269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8145442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c610", "tid": 35568, "ts": 8145571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8145745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c7b0", "tid": 35568, "ts": 8145872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c880", "tid": 35568, "ts": 8146173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48c950", "tid": 35568, "ts": 8146473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f6d0", "tid": 35568, "ts": 8146772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8146945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fae0", "tid": 35568, "ts": 8147117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8147289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f870", "tid": 35568, "ts": 8147416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8147590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e1b0", "tid": 35568, "ts": 8147718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8147890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e280", "tid": 35568, "ts": 8148017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8148189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4903d0", "tid": 35568, "ts": 8148317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8148531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ffc0", "tid": 35568, "ts": 8148660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8148832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fef0", "tid": 35568, "ts": 8148959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8149132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e760", "tid": 35568, "ts": 8149259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8149430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e0e0", "tid": 35568, "ts": 8149557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8149730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f390", "tid": 35568, "ts": 8149857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e830", "tid": 35568, "ts": 8150158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fc80", "tid": 35568, "ts": 8150459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e350", "tid": 35568, "ts": 8150758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8150930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e010", "tid": 35568, "ts": 8151058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8151230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490a50", "tid": 35568, "ts": 8151382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8151554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e900", "tid": 35568, "ts": 8151682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8151855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e420", "tid": 35568, "ts": 8151983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8152154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490710", "tid": 35568, "ts": 8152283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8152455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490090", "tid": 35568, "ts": 8152583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8152815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490160", "tid": 35568, "ts": 8152943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8153116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490230", "tid": 35568, "ts": 8153244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8153416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e4f0", "tid": 35568, "ts": 8153543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8153716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490e60", "tid": 35568, "ts": 8153902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e5c0", "tid": 35568, "ts": 8154202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48de70", "tid": 35568, "ts": 8154503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fa10", "tid": 35568, "ts": 8154802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8154977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e9d0", "tid": 35568, "ts": 8155105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8155277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490b20", "tid": 35568, "ts": 8155404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8155577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48e690", "tid": 35568, "ts": 8155704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8155877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f460", "tid": 35568, "ts": 8156004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8156176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490570", "tid": 35568, "ts": 8156304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8156476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48eaa0", "tid": 35568, "ts": 8156603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8156777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48eb70", "tid": 35568, "ts": 8156905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48dda0", "tid": 35568, "ts": 8157205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490300", "tid": 35568, "ts": 8157505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4904a0", "tid": 35568, "ts": 8157806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8157979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4907e0", "tid": 35568, "ts": 8158106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8158279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ede0", "tid": 35568, "ts": 8158406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8158579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490640", "tid": 35568, "ts": 8158707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8158879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ec40", "tid": 35568, "ts": 8159007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8159179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490f30", "tid": 35568, "ts": 8159305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8159476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad4908b0", "tid": 35568, "ts": 8159603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8159777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ed10", "tid": 35568, "ts": 8159982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8160156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48eeb0", "tid": 35568, "ts": 8160285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8160457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48ef80", "tid": 35568, "ts": 8160585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8160757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490980", "tid": 35568, "ts": 8160885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490bf0", "tid": 35568, "ts": 8161185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f050", "tid": 35568, "ts": 8161485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f7a0", "tid": 35568, "ts": 8161784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8161956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f120", "tid": 35568, "ts": 8162084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8162256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f600", "tid": 35568, "ts": 8162384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8162557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f1f0", "tid": 35568, "ts": 8162684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8162856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f2c0", "tid": 35568, "ts": 8162984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8163157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f530", "tid": 35568, "ts": 8163285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8163457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48df40", "tid": 35568, "ts": 8163585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8163757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48f940", "tid": 35568, "ts": 8163885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490cc0", "tid": 35568, "ts": 8164185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fbb0", "tid": 35568, "ts": 8164485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fd50", "tid": 35568, "ts": 8164786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8164958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad490d90", "tid": 35568, "ts": 8165085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8165258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ad48fe20", "tid": 35568, "ts": 8165386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8165558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54b20", "tid": 35568, "ts": 8165751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8165927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb559c0", "tid": 35568, "ts": 8166055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8166228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55b60", "tid": 35568, "ts": 8166355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8166527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56860", "tid": 35568, "ts": 8166655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8166827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb561e0", "tid": 35568, "ts": 8166954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8167126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53530", "tid": 35568, "ts": 8167253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8167425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55a90", "tid": 35568, "ts": 8167553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8167726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54570", "tid": 35568, "ts": 8167853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55c30", "tid": 35568, "ts": 8168153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56110", "tid": 35568, "ts": 8168453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55270", "tid": 35568, "ts": 8168753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8168925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55d00", "tid": 35568, "ts": 8169052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8169225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53600", "tid": 35568, "ts": 8169353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8169524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56790", "tid": 35568, "ts": 8169653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8169826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56380", "tid": 35568, "ts": 8169954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8170125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53ae0", "tid": 35568, "ts": 8170253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8170425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb547e0", "tid": 35568, "ts": 8170553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8170726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb536d0", "tid": 35568, "ts": 8170853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54640", "tid": 35568, "ts": 8171154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54710", "tid": 35568, "ts": 8171453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54160", "tid": 35568, "ts": 8171753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8171924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb562b0", "tid": 35568, "ts": 8172083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8172255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55750", "tid": 35568, "ts": 8172383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8172556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53ef0", "tid": 35568, "ts": 8172685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8172857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56040", "tid": 35568, "ts": 8172985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8173159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54d90", "tid": 35568, "ts": 8173287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8173460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53bb0", "tid": 35568, "ts": 8173588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8173761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb537a0", "tid": 35568, "ts": 8173889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54bf0", "tid": 35568, "ts": 8174190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb548b0", "tid": 35568, "ts": 8174491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53940", "tid": 35568, "ts": 8174793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8174965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53c80", "tid": 35568, "ts": 8175093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8175265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53fc0", "tid": 35568, "ts": 8175392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8175628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55680", "tid": 35568, "ts": 8175866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8176151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54980", "tid": 35568, "ts": 8176360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8176533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55410", "tid": 35568, "ts": 8176661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8176834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56450", "tid": 35568, "ts": 8176962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8177134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55dd0", "tid": 35568, "ts": 8177262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8177434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54a50", "tid": 35568, "ts": 8177563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8177735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54cc0", "tid": 35568, "ts": 8177863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56520", "tid": 35568, "ts": 8178164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53870", "tid": 35568, "ts": 8178463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55000", "tid": 35568, "ts": 8178763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8178936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54e60", "tid": 35568, "ts": 8179065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8179239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb565f0", "tid": 35568, "ts": 8179367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8179540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb544a0", "tid": 35568, "ts": 8179667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8179840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54f30", "tid": 35568, "ts": 8179968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8180139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54090", "tid": 35568, "ts": 8180267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8180438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53d50", "tid": 35568, "ts": 8180608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8180783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb566c0", "tid": 35568, "ts": 8180912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54300", "tid": 35568, "ts": 8181212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53a10", "tid": 35568, "ts": 8181512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb551a0", "tid": 35568, "ts": 8181811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8181983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb550d0", "tid": 35568, "ts": 8182110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8182282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53e20", "tid": 35568, "ts": 8182410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8182582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55340", "tid": 35568, "ts": 8182710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8182882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb554e0", "tid": 35568, "ts": 8183009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8183182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb558f0", "tid": 35568, "ts": 8183309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8183481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb54230", "tid": 35568, "ts": 8183609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8183781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb555b0", "tid": 35568, "ts": 8183908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb543d0", "tid": 35568, "ts": 8184207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55820", "tid": 35568, "ts": 8184507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55ea0", "tid": 35568, "ts": 8184808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8184980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb55f70", "tid": 35568, "ts": 8185108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8185280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57cb0", "tid": 35568, "ts": 8185408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8185580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57560", "tid": 35568, "ts": 8185708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8185880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56a00", "tid": 35568, "ts": 8186069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8186242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56ee0", "tid": 35568, "ts": 8186370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8186542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb595e0", "tid": 35568, "ts": 8186670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8186843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56ad0", "tid": 35568, "ts": 8186971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8187142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb596b0", "tid": 35568, "ts": 8187270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8187442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57490", "tid": 35568, "ts": 8187570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8187743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58b50", "tid": 35568, "ts": 8187870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb577d0", "tid": 35568, "ts": 8188172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57be0", "tid": 35568, "ts": 8188471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59780", "tid": 35568, "ts": 8188771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8188943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59b90", "tid": 35568, "ts": 8189071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8189244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb588e0", "tid": 35568, "ts": 8189371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8189543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57970", "tid": 35568, "ts": 8189671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8189842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59850", "tid": 35568, "ts": 8189970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8190141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb578a0", "tid": 35568, "ts": 8190268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8190441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57a40", "tid": 35568, "ts": 8190568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8190741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58dc0", "tid": 35568, "ts": 8190868, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8191055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56930", "tid": 35568, "ts": 8191291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8191492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58cf0", "tid": 35568, "ts": 8191620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8191793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb592a0", "tid": 35568, "ts": 8191921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56ba0", "tid": 35568, "ts": 8192222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56fb0", "tid": 35568, "ts": 8192522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57150", "tid": 35568, "ts": 8192823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8192995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57700", "tid": 35568, "ts": 8193123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8193297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59370", "tid": 35568, "ts": 8193425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8193597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57d80", "tid": 35568, "ts": 8193725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8193896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56c70", "tid": 35568, "ts": 8194024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8194198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57e50", "tid": 35568, "ts": 8194325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8194499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56d40", "tid": 35568, "ts": 8194650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8194824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58c20", "tid": 35568, "ts": 8194952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8195125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57f20", "tid": 35568, "ts": 8195254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8195426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59440", "tid": 35568, "ts": 8195555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8195727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb56e10", "tid": 35568, "ts": 8195856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb580c0", "tid": 35568, "ts": 8196155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57630", "tid": 35568, "ts": 8196455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59ac0", "tid": 35568, "ts": 8196755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8196927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57ff0", "tid": 35568, "ts": 8197055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8197227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58190", "tid": 35568, "ts": 8197355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8197528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb589b0", "tid": 35568, "ts": 8197657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8197829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57080", "tid": 35568, "ts": 8197956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8198129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59920", "tid": 35568, "ts": 8198256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8198428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb584d0", "tid": 35568, "ts": 8198555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8198728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb585a0", "tid": 35568, "ts": 8198855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58260", "tid": 35568, "ts": 8199155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58330", "tid": 35568, "ts": 8199455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57220", "tid": 35568, "ts": 8199755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8199926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb572f0", "tid": 35568, "ts": 8200054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8200226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb57b10", "tid": 35568, "ts": 8200354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8200525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58e90", "tid": 35568, "ts": 8200653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8200826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58400", "tid": 35568, "ts": 8200953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8201126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb599f0", "tid": 35568, "ts": 8201253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8201426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58670", "tid": 35568, "ts": 8201553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8201725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59c60", "tid": 35568, "ts": 8201852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58740", "tid": 35568, "ts": 8202151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58f60", "tid": 35568, "ts": 8202451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58810", "tid": 35568, "ts": 8202751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8202924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb573c0", "tid": 35568, "ts": 8203051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8203223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb58a80", "tid": 35568, "ts": 8203350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8203522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59030", "tid": 35568, "ts": 8203650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8203823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59100", "tid": 35568, "ts": 8203951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8204124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb591d0", "tid": 35568, "ts": 8204252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8204425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59510", "tid": 35568, "ts": 8204553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8204725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c1c0", "tid": 35568, "ts": 8204852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c430", "tid": 35568, "ts": 8205151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b320", "tid": 35568, "ts": 8205451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c290", "tid": 35568, "ts": 8205751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8205924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5aca0", "tid": 35568, "ts": 8206052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8206223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c020", "tid": 35568, "ts": 8206351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8206523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ae40", "tid": 35568, "ts": 8206651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8206923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cd20", "tid": 35568, "ts": 8207076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8207276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59fa0", "tid": 35568, "ts": 8207403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8207577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ab00", "tid": 35568, "ts": 8207705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8207878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c0f0", "tid": 35568, "ts": 8208006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8208179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5be80", "tid": 35568, "ts": 8208307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8208479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5af10", "tid": 35568, "ts": 8208607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8208779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c500", "tid": 35568, "ts": 8208907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c360", "tid": 35568, "ts": 8209207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c840", "tid": 35568, "ts": 8209507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a960", "tid": 35568, "ts": 8209807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8209980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a620", "tid": 35568, "ts": 8210107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8210280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cdf0", "tid": 35568, "ts": 8210408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8210581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c5d0", "tid": 35568, "ts": 8210708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8210881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c6a0", "tid": 35568, "ts": 8211009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8211182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a3b0", "tid": 35568, "ts": 8211310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8211481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c770", "tid": 35568, "ts": 8211609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8211782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5afe0", "tid": 35568, "ts": 8211909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ad70", "tid": 35568, "ts": 8212208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5abd0", "tid": 35568, "ts": 8212509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c910", "tid": 35568, "ts": 8212808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8212981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ba70", "tid": 35568, "ts": 8213109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8213281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cf90", "tid": 35568, "ts": 8213408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8213581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5aa30", "tid": 35568, "ts": 8213708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8213882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a480", "tid": 35568, "ts": 8214057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8214231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59d30", "tid": 35568, "ts": 8214359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8214533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b0b0", "tid": 35568, "ts": 8214662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8214834, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b250", "tid": 35568, "ts": 8214963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8215135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a210", "tid": 35568, "ts": 8215263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8215435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a6f0", "tid": 35568, "ts": 8215563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8215735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b180", "tid": 35568, "ts": 8215862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b3f0", "tid": 35568, "ts": 8216162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5c9e0", "tid": 35568, "ts": 8216461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a550", "tid": 35568, "ts": 8216762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8216935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cab0", "tid": 35568, "ts": 8217063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8217235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d060", "tid": 35568, "ts": 8217363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8217536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cb80", "tid": 35568, "ts": 8217664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8217837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a7c0", "tid": 35568, "ts": 8217965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8218137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bc10", "tid": 35568, "ts": 8218307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8218480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cc50", "tid": 35568, "ts": 8218607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8218780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a890", "tid": 35568, "ts": 8218908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8219079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b4c0", "tid": 35568, "ts": 8219207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8219380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b590", "tid": 35568, "ts": 8219507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8219680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5cec0", "tid": 35568, "ts": 8219807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b660", "tid": 35568, "ts": 8220151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b730", "tid": 35568, "ts": 8220452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b800", "tid": 35568, "ts": 8220749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8220923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b8d0", "tid": 35568, "ts": 8221051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8221222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5b9a0", "tid": 35568, "ts": 8221350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8221522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59e00", "tid": 35568, "ts": 8221650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8221821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bb40", "tid": 35568, "ts": 8221949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8222122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a070", "tid": 35568, "ts": 8222250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8222508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bce0", "tid": 35568, "ts": 8222636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8222809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb59ed0", "tid": 35568, "ts": 8222936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8223108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bdb0", "tid": 35568, "ts": 8223292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8223465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5bf50", "tid": 35568, "ts": 8223594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8223766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a140", "tid": 35568, "ts": 8223895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5a2e0", "tid": 35568, "ts": 8224194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dd60", "tid": 35568, "ts": 8224495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e170", "tid": 35568, "ts": 8224795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8224966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5feb0", "tid": 35568, "ts": 8225094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8225266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ecd0", "tid": 35568, "ts": 8225393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8225565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d540", "tid": 35568, "ts": 8225693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8225865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5daf0", "tid": 35568, "ts": 8225993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8226189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f690", "tid": 35568, "ts": 8226317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8226490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d130", "tid": 35568, "ts": 8226618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8226791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f4f0", "tid": 35568, "ts": 8226920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f350", "tid": 35568, "ts": 8227220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ff80", "tid": 35568, "ts": 8227520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e0a0", "tid": 35568, "ts": 8227820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8227993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5df00", "tid": 35568, "ts": 8228121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8228296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5eb30", "tid": 35568, "ts": 8228423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8228595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f5c0", "tid": 35568, "ts": 8228723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8228895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d7b0", "tid": 35568, "ts": 8229022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8229195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60390", "tid": 35568, "ts": 8229355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8229528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d6e0", "tid": 35568, "ts": 8229656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8229828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d200", "tid": 35568, "ts": 8229956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8230128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fde0", "tid": 35568, "ts": 8230255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8230426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e3e0", "tid": 35568, "ts": 8230554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8230726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5de30", "tid": 35568, "ts": 8230854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb602c0", "tid": 35568, "ts": 8231154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f760", "tid": 35568, "ts": 8231454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d610", "tid": 35568, "ts": 8231754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8231926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60460", "tid": 35568, "ts": 8232053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8232225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f830", "tid": 35568, "ts": 8232352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8232524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5faa0", "tid": 35568, "ts": 8232652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8232824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d2d0", "tid": 35568, "ts": 8232951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8233124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d880", "tid": 35568, "ts": 8233251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8233424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e4b0", "tid": 35568, "ts": 8233552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8233725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f900", "tid": 35568, "ts": 8233853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f9d0", "tid": 35568, "ts": 8234154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f420", "tid": 35568, "ts": 8234455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dfd0", "tid": 35568, "ts": 8234753, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8234926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d950", "tid": 35568, "ts": 8235053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8235226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5da20", "tid": 35568, "ts": 8235354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8235526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fb70", "tid": 35568, "ts": 8235654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8235827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fc40", "tid": 35568, "ts": 8235955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8236127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5fd10", "tid": 35568, "ts": 8236256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8236428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e580", "tid": 35568, "ts": 8236556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8236729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5eda0", "tid": 35568, "ts": 8236857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e240", "tid": 35568, "ts": 8237158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60050", "tid": 35568, "ts": 8237458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e310", "tid": 35568, "ts": 8237758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8237976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e7f0", "tid": 35568, "ts": 8238170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8238417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e650", "tid": 35568, "ts": 8238583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8238858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e720", "tid": 35568, "ts": 8239064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8239235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e8c0", "tid": 35568, "ts": 8239364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8239537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5e990", "tid": 35568, "ts": 8239665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8239837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60120", "tid": 35568, "ts": 8239965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8240138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ea60", "tid": 35568, "ts": 8240266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8240437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb601f0", "tid": 35568, "ts": 8240564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8240737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f280", "tid": 35568, "ts": 8240864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d3a0", "tid": 35568, "ts": 8241165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ec00", "tid": 35568, "ts": 8241465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5d470", "tid": 35568, "ts": 8241764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8241938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ee70", "tid": 35568, "ts": 8242065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8242237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dbc0", "tid": 35568, "ts": 8242364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8242536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5dc90", "tid": 35568, "ts": 8242663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8242835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5ef40", "tid": 35568, "ts": 8242962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8243135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f010", "tid": 35568, "ts": 8243264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8243436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f0e0", "tid": 35568, "ts": 8243564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8243736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb5f1b0", "tid": 35568, "ts": 8243864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb620d0", "tid": 35568, "ts": 8244164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61230", "tid": 35568, "ts": 8244465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60c80", "tid": 35568, "ts": 8244765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8244938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62d00", "tid": 35568, "ts": 8245065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8245238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb614a0", "tid": 35568, "ts": 8245366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8245538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61a50", "tid": 35568, "ts": 8245666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8245839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61cc0", "tid": 35568, "ts": 8245967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8246139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61300", "tid": 35568, "ts": 8246266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8246438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb631e0", "tid": 35568, "ts": 8246565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8246738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60530", "tid": 35568, "ts": 8246866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60600", "tid": 35568, "ts": 8247167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb624e0", "tid": 35568, "ts": 8247509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60940", "tid": 35568, "ts": 8247810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8247983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb636c0", "tid": 35568, "ts": 8248111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8248284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb618b0", "tid": 35568, "ts": 8248411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8248584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62a90", "tid": 35568, "ts": 8248712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8248885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61570", "tid": 35568, "ts": 8249012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8249184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61b20", "tid": 35568, "ts": 8249311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8249485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61bf0", "tid": 35568, "ts": 8249613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8249785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60a10", "tid": 35568, "ts": 8249913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb613d0", "tid": 35568, "ts": 8250214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61640", "tid": 35568, "ts": 8250515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63520", "tid": 35568, "ts": 8250813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8250987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60ef0", "tid": 35568, "ts": 8251115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8251288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb607a0", "tid": 35568, "ts": 8251415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8251587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61710", "tid": 35568, "ts": 8251715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8251887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60ae0", "tid": 35568, "ts": 8252014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8252186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60bb0", "tid": 35568, "ts": 8252314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8252486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61f30", "tid": 35568, "ts": 8252613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8252787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb621a0", "tid": 35568, "ts": 8252915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8253088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62270", "tid": 35568, "ts": 8253215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8253387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60fc0", "tid": 35568, "ts": 8253515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8253728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62dd0", "tid": 35568, "ts": 8253857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb629c0", "tid": 35568, "ts": 8254156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb617e0", "tid": 35568, "ts": 8254458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61980", "tid": 35568, "ts": 8254759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8254932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61d90", "tid": 35568, "ts": 8255061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8255234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62ea0", "tid": 35568, "ts": 8255362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8255534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62f70", "tid": 35568, "ts": 8255662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8255835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60d50", "tid": 35568, "ts": 8255962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8256135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60e20", "tid": 35568, "ts": 8256262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8256435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62b60", "tid": 35568, "ts": 8256563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8256736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63380", "tid": 35568, "ts": 8256864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb635f0", "tid": 35568, "ts": 8257164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61e60", "tid": 35568, "ts": 8257464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62000", "tid": 35568, "ts": 8257765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8257939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63790", "tid": 35568, "ts": 8258067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8258239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62340", "tid": 35568, "ts": 8258367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8258538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63040", "tid": 35568, "ts": 8258666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8258838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62410", "tid": 35568, "ts": 8258965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8259138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61090", "tid": 35568, "ts": 8259265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8259438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62c30", "tid": 35568, "ts": 8259565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8259737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb625b0", "tid": 35568, "ts": 8259865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62680", "tid": 35568, "ts": 8260164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62750", "tid": 35568, "ts": 8260463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb628f0", "tid": 35568, "ts": 8260764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8260936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb62820", "tid": 35568, "ts": 8261064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8261236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63110", "tid": 35568, "ts": 8261364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8261536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb61160", "tid": 35568, "ts": 8261664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8261836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb632b0", "tid": 35568, "ts": 8261964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8262136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63450", "tid": 35568, "ts": 8262263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8262437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63860", "tid": 35568, "ts": 8262564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8262736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb606d0", "tid": 35568, "ts": 8262864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb60870", "tid": 35568, "ts": 8263163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63ba0", "tid": 35568, "ts": 8263464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66c60", "tid": 35568, "ts": 8263765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8263939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb643c0", "tid": 35568, "ts": 8264067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8264240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65330", "tid": 35568, "ts": 8264367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8264539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66510", "tid": 35568, "ts": 8264666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8264839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb665e0", "tid": 35568, "ts": 8264967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8265139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64cb0", "tid": 35568, "ts": 8265267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8265439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65cf0", "tid": 35568, "ts": 8265566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8265738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64a40", "tid": 35568, "ts": 8265866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63a00", "tid": 35568, "ts": 8266166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb666b0", "tid": 35568, "ts": 8266466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65260", "tid": 35568, "ts": 8266765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8266937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65f60", "tid": 35568, "ts": 8267066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8267239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb662a0", "tid": 35568, "ts": 8267366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8267538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66780", "tid": 35568, "ts": 8267666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8267839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63930", "tid": 35568, "ts": 8267967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8268138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63ad0", "tid": 35568, "ts": 8268265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8268438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66920", "tid": 35568, "ts": 8268565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8268738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63c70", "tid": 35568, "ts": 8268865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8269038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66100", "tid": 35568, "ts": 8269200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8269415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65dc0", "tid": 35568, "ts": 8269543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8269717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64be0", "tid": 35568, "ts": 8269844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66850", "tid": 35568, "ts": 8270143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64b10", "tid": 35568, "ts": 8270443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66b90", "tid": 35568, "ts": 8270743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8270915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64150", "tid": 35568, "ts": 8271043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8271214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb669f0", "tid": 35568, "ts": 8271342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8271513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66ac0", "tid": 35568, "ts": 8271640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8271812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63d40", "tid": 35568, "ts": 8271940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8272113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66370", "tid": 35568, "ts": 8272241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8272414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63e10", "tid": 35568, "ts": 8272541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8272714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63ee0", "tid": 35568, "ts": 8272842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb63fb0", "tid": 35568, "ts": 8273206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb654d0", "tid": 35568, "ts": 8273508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66440", "tid": 35568, "ts": 8273807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8273979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64080", "tid": 35568, "ts": 8274108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8274280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64d80", "tid": 35568, "ts": 8274408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8274581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64630", "tid": 35568, "ts": 8274709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8274882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64e50", "tid": 35568, "ts": 8275010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8275183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64220", "tid": 35568, "ts": 8275310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8275483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65e90", "tid": 35568, "ts": 8275610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8275782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb642f0", "tid": 35568, "ts": 8275909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64490", "tid": 35568, "ts": 8276208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb661d0", "tid": 35568, "ts": 8276509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb650c0", "tid": 35568, "ts": 8276810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8276983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65740", "tid": 35568, "ts": 8277111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8277282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65400", "tid": 35568, "ts": 8277411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8277583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64f20", "tid": 35568, "ts": 8277710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8277881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64560", "tid": 35568, "ts": 8278008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8278180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64700", "tid": 35568, "ts": 8278307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8278479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb647d0", "tid": 35568, "ts": 8278606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8278779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65190", "tid": 35568, "ts": 8278907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb655a0", "tid": 35568, "ts": 8279207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb648a0", "tid": 35568, "ts": 8279508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64970", "tid": 35568, "ts": 8279809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8279980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66030", "tid": 35568, "ts": 8280108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8280281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb64ff0", "tid": 35568, "ts": 8280408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8280623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65670", "tid": 35568, "ts": 8280758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8280930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65810", "tid": 35568, "ts": 8281058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8281231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb658e0", "tid": 35568, "ts": 8281359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8281531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb659b0", "tid": 35568, "ts": 8281659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8281832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65a80", "tid": 35568, "ts": 8281959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8282132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65b50", "tid": 35568, "ts": 8282260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8282433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb65c20", "tid": 35568, "ts": 8282560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8282732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67fe0", "tid": 35568, "ts": 8282859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb699e0", "tid": 35568, "ts": 8283160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67f10", "tid": 35568, "ts": 8283459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68f50", "tid": 35568, "ts": 8283758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8283930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb672e0", "tid": 35568, "ts": 8284057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8284230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66e00", "tid": 35568, "ts": 8284358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8284531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69840", "tid": 35568, "ts": 8284659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8284878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb677c0", "tid": 35568, "ts": 8285032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8285205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb680b0", "tid": 35568, "ts": 8285333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8285505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68320", "tid": 35568, "ts": 8285633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8285805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67210", "tid": 35568, "ts": 8285933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8286105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69df0", "tid": 35568, "ts": 8286233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8286405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69ec0", "tid": 35568, "ts": 8286533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8286706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68b40", "tid": 35568, "ts": 8286833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67b00", "tid": 35568, "ts": 8287133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69ab0", "tid": 35568, "ts": 8287433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a060", "tid": 35568, "ts": 8287735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8287907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67140", "tid": 35568, "ts": 8288035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8288208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68180", "tid": 35568, "ts": 8288336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8288508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67a30", "tid": 35568, "ts": 8288636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8288809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69430", "tid": 35568, "ts": 8288936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8289108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69910", "tid": 35568, "ts": 8289235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8289408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb673b0", "tid": 35568, "ts": 8289537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8289708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68250", "tid": 35568, "ts": 8289836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69500", "tid": 35568, "ts": 8290199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb688d0", "tid": 35568, "ts": 8290499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb689a0", "tid": 35568, "ts": 8290798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8290971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69f90", "tid": 35568, "ts": 8291099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8291314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb683f0", "tid": 35568, "ts": 8291443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8291615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69020", "tid": 35568, "ts": 8291743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8291915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb691c0", "tid": 35568, "ts": 8292043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8292215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66ed0", "tid": 35568, "ts": 8292398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8292572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69770", "tid": 35568, "ts": 8292701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8292874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69b80", "tid": 35568, "ts": 8293002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8293175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69290", "tid": 35568, "ts": 8293303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8293475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68a70", "tid": 35568, "ts": 8293603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8293774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69360", "tid": 35568, "ts": 8293902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb695d0", "tid": 35568, "ts": 8294202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68e80", "tid": 35568, "ts": 8294500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67bd0", "tid": 35568, "ts": 8294825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8294996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69c50", "tid": 35568, "ts": 8295124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8295297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68c10", "tid": 35568, "ts": 8295424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8295597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67ca0", "tid": 35568, "ts": 8295725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8295897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb684c0", "tid": 35568, "ts": 8296024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8296262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb696a0", "tid": 35568, "ts": 8296393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8296570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb69d20", "tid": 35568, "ts": 8296699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8296880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66d30", "tid": 35568, "ts": 8297019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8297191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68ce0", "tid": 35568, "ts": 8297319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8297491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb66fa0", "tid": 35568, "ts": 8297619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8297793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68800", "tid": 35568, "ts": 8297921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68590", "tid": 35568, "ts": 8298221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67480", "tid": 35568, "ts": 8298520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67070", "tid": 35568, "ts": 8298820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8298992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68660", "tid": 35568, "ts": 8299120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8299292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67d70", "tid": 35568, "ts": 8299420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8299593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67550", "tid": 35568, "ts": 8299721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8299892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67620", "tid": 35568, "ts": 8300020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8300192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb676f0", "tid": 35568, "ts": 8300319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8300559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67890", "tid": 35568, "ts": 8300687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8300860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67e40", "tid": 35568, "ts": 8300987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8301159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb690f0", "tid": 35568, "ts": 8301286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8301459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68730", "tid": 35568, "ts": 8301586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8301760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb67960", "tid": 35568, "ts": 8301888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb68db0", "tid": 35568, "ts": 8302187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c4f0", "tid": 35568, "ts": 8302486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b240", "tid": 35568, "ts": 8302785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8302958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a7b0", "tid": 35568, "ts": 8303086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8303258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b7f0", "tid": 35568, "ts": 8303385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8303557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b580", "tid": 35568, "ts": 8303685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8303857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bb30", "tid": 35568, "ts": 8303984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8304156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b310", "tid": 35568, "ts": 8304284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8304457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c5c0", "tid": 35568, "ts": 8304584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8304757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cd10", "tid": 35568, "ts": 8304884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b4b0", "tid": 35568, "ts": 8305184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a3a0", "tid": 35568, "ts": 8305483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ac90", "tid": 35568, "ts": 8305781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8305953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b3e0", "tid": 35568, "ts": 8306080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8306252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d1f0", "tid": 35568, "ts": 8306380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8306552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6afd0", "tid": 35568, "ts": 8306680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8306852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6af00", "tid": 35568, "ts": 8306980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8307150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b650", "tid": 35568, "ts": 8307278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8307450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b170", "tid": 35568, "ts": 8307578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8307750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c690", "tid": 35568, "ts": 8307879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d460", "tid": 35568, "ts": 8308178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b720", "tid": 35568, "ts": 8308478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c760", "tid": 35568, "ts": 8308778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8308950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b0a0", "tid": 35568, "ts": 8309078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8309250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ad60", "tid": 35568, "ts": 8309378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8309549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c830", "tid": 35568, "ts": 8309678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8309850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b8c0", "tid": 35568, "ts": 8309977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8310149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6b990", "tid": 35568, "ts": 8310276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8310448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a470", "tid": 35568, "ts": 8310575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8310746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a610", "tid": 35568, "ts": 8310875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c010", "tid": 35568, "ts": 8311175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a130", "tid": 35568, "ts": 8311475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a540", "tid": 35568, "ts": 8311775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8311948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ae30", "tid": 35568, "ts": 8312075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8312247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ba60", "tid": 35568, "ts": 8312375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8312547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bc00", "tid": 35568, "ts": 8312676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8312847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a6e0", "tid": 35568, "ts": 8312975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8313148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bcd0", "tid": 35568, "ts": 8313276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8313448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c900", "tid": 35568, "ts": 8313576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8313748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cb70", "tid": 35568, "ts": 8313918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c9d0", "tid": 35568, "ts": 8314220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bda0", "tid": 35568, "ts": 8314519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6caa0", "tid": 35568, "ts": 8314819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8314990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6aaf0", "tid": 35568, "ts": 8315118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8315289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d120", "tid": 35568, "ts": 8315416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8315587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cc40", "tid": 35568, "ts": 8315715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8315888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6be70", "tid": 35568, "ts": 8316016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8316262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6bf40", "tid": 35568, "ts": 8316417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8316590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c0e0", "tid": 35568, "ts": 8316720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8316891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6abc0", "tid": 35568, "ts": 8317020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8317192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cde0", "tid": 35568, "ts": 8317319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8317492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c1b0", "tid": 35568, "ts": 8317620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8317792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ceb0", "tid": 35568, "ts": 8317920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c280", "tid": 35568, "ts": 8318222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c350", "tid": 35568, "ts": 8318522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6c420", "tid": 35568, "ts": 8318823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8318996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d2c0", "tid": 35568, "ts": 8319124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8319296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6cf80", "tid": 35568, "ts": 8319425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8319596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d050", "tid": 35568, "ts": 8319724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8319896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a880", "tid": 35568, "ts": 8320024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8320196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d390", "tid": 35568, "ts": 8320324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8320496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a200", "tid": 35568, "ts": 8320623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8320796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a2d0", "tid": 35568, "ts": 8320923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6a950", "tid": 35568, "ts": 8321223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6aa20", "tid": 35568, "ts": 8321523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70790", "tid": 35568, "ts": 8321822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8321994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d600", "tid": 35568, "ts": 8322122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8322294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f9c0", "tid": 35568, "ts": 8322422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8322594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f410", "tid": 35568, "ts": 8322722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8322895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70040", "tid": 35568, "ts": 8323024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8323195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70110", "tid": 35568, "ts": 8323323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8323494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fb60", "tid": 35568, "ts": 8323622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8323794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d6d0", "tid": 35568, "ts": 8323922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fea0", "tid": 35568, "ts": 8324222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fd00", "tid": 35568, "ts": 8324521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f820", "tid": 35568, "ts": 8324821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8324994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e7e0", "tid": 35568, "ts": 8325122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8325293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6da10", "tid": 35568, "ts": 8325420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8325592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e4a0", "tid": 35568, "ts": 8325721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8325893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70450", "tid": 35568, "ts": 8326020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8326193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d7a0", "tid": 35568, "ts": 8326321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8326493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e090", "tid": 35568, "ts": 8326620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8326793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e3d0", "tid": 35568, "ts": 8326920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb705f0", "tid": 35568, "ts": 8327221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f000", "tid": 35568, "ts": 8327520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f4e0", "tid": 35568, "ts": 8327820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8327993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e710", "tid": 35568, "ts": 8328120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8328291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb701e0", "tid": 35568, "ts": 8328419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8328591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e300", "tid": 35568, "ts": 8328718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8328892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f8f0", "tid": 35568, "ts": 8329019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8329191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb702b0", "tid": 35568, "ts": 8329318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8329490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f5b0", "tid": 35568, "ts": 8329617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8329789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e980", "tid": 35568, "ts": 8329917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb706c0", "tid": 35568, "ts": 8330218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dae0", "tid": 35568, "ts": 8330519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e160", "tid": 35568, "ts": 8330819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8330991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fc30", "tid": 35568, "ts": 8331118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8331291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f0d0", "tid": 35568, "ts": 8331419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8331591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70380", "tid": 35568, "ts": 8331752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dbb0", "tid": 35568, "ts": 8332142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f340", "tid": 35568, "ts": 8332448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ef30", "tid": 35568, "ts": 8332748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8332922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e8b0", "tid": 35568, "ts": 8333050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8333223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6def0", "tid": 35568, "ts": 8333351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8333526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dfc0", "tid": 35568, "ts": 8333654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8333827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e640", "tid": 35568, "ts": 8333954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8334127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ea50", "tid": 35568, "ts": 8334254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8334426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dc80", "tid": 35568, "ts": 8334555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8334728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6dd50", "tid": 35568, "ts": 8334856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6de20", "tid": 35568, "ts": 8335155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f1a0", "tid": 35568, "ts": 8335456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fa90", "tid": 35568, "ts": 8335757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8335929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f680", "tid": 35568, "ts": 8336057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8336229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6fdd0", "tid": 35568, "ts": 8336357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8336529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6eb20", "tid": 35568, "ts": 8336724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8336913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f270", "tid": 35568, "ts": 8337041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8337214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ff70", "tid": 35568, "ts": 8337341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8337514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ebf0", "tid": 35568, "ts": 8337641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8337814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e230", "tid": 35568, "ts": 8337942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8338115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6f750", "tid": 35568, "ts": 8338242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8338415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70520", "tid": 35568, "ts": 8338543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8338715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70860", "tid": 35568, "ts": 8338843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6e570", "tid": 35568, "ts": 8339179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d530", "tid": 35568, "ts": 8339480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ecc0", "tid": 35568, "ts": 8339780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8339953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ed90", "tid": 35568, "ts": 8340080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8340252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d870", "tid": 35568, "ts": 8340380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8340553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6d940", "tid": 35568, "ts": 8340681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8340854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb6ee60", "tid": 35568, "ts": 8340983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8341155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70d40", "tid": 35568, "ts": 8341282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8341456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72c20", "tid": 35568, "ts": 8341583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8341755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72cf0", "tid": 35568, "ts": 8341883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb729b0", "tid": 35568, "ts": 8342182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71700", "tid": 35568, "ts": 8342482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb731d0", "tid": 35568, "ts": 8342782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8342954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71e50", "tid": 35568, "ts": 8343082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8343253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72f60", "tid": 35568, "ts": 8343381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8343553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70a00", "tid": 35568, "ts": 8343680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8343852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73510", "tid": 35568, "ts": 8343980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8344152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb718a0", "tid": 35568, "ts": 8344307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8344479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb725a0", "tid": 35568, "ts": 8344606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8344778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71cb0", "tid": 35568, "ts": 8344905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8345078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72a80", "tid": 35568, "ts": 8345205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8345377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71be0", "tid": 35568, "ts": 8345505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8345751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72dc0", "tid": 35568, "ts": 8345886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8346058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71970", "tid": 35568, "ts": 8346186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8346412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73850", "tid": 35568, "ts": 8346540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8346712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72740", "tid": 35568, "ts": 8346840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8347011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72e90", "tid": 35568, "ts": 8347139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8347474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71d80", "tid": 35568, "ts": 8347682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8347932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70e10", "tid": 35568, "ts": 8348083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8348345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73ac0", "tid": 35568, "ts": 8348473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8348645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72330", "tid": 35568, "ts": 8348772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8348944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73920", "tid": 35568, "ts": 8349072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8349243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71a40", "tid": 35568, "ts": 8349371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8349543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb728e0", "tid": 35568, "ts": 8349671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8349843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71ff0", "tid": 35568, "ts": 8349970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8350142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73030", "tid": 35568, "ts": 8350271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8350444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73b90", "tid": 35568, "ts": 8350572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8350744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb717d0", "tid": 35568, "ts": 8350872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71080", "tid": 35568, "ts": 8351172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71150", "tid": 35568, "ts": 8351473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71f20", "tid": 35568, "ts": 8351772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8351944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73100", "tid": 35568, "ts": 8352071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8352243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70ad0", "tid": 35568, "ts": 8352371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8352542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70fb0", "tid": 35568, "ts": 8352670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8352843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb720c0", "tid": 35568, "ts": 8352971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8353142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72190", "tid": 35568, "ts": 8353270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8353441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73440", "tid": 35568, "ts": 8353569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8353741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71b10", "tid": 35568, "ts": 8353870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70ee0", "tid": 35568, "ts": 8354170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72b50", "tid": 35568, "ts": 8354469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb732a0", "tid": 35568, "ts": 8354767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8354938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73370", "tid": 35568, "ts": 8355066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8355238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71220", "tid": 35568, "ts": 8355366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8355540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72260", "tid": 35568, "ts": 8355668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8355841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72400", "tid": 35568, "ts": 8355998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8356169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb735e0", "tid": 35568, "ts": 8356297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8356470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71630", "tid": 35568, "ts": 8356599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8356771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb724d0", "tid": 35568, "ts": 8356899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72810", "tid": 35568, "ts": 8357200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb736b0", "tid": 35568, "ts": 8357500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71560", "tid": 35568, "ts": 8357800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8357972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73780", "tid": 35568, "ts": 8358101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8358272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb72670", "tid": 35568, "ts": 8358399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8358571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb712f0", "tid": 35568, "ts": 8358699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8358871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb739f0", "tid": 35568, "ts": 8358998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8359170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73c60", "tid": 35568, "ts": 8359298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8359470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70930", "tid": 35568, "ts": 8359598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8359771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70ba0", "tid": 35568, "ts": 8359899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8360073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb70c70", "tid": 35568, "ts": 8360201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8360374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb713c0", "tid": 35568, "ts": 8360564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8360737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb71490", "tid": 35568, "ts": 8360865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb742e0", "tid": 35568, "ts": 8361166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77060", "tid": 35568, "ts": 8361466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76f90", "tid": 35568, "ts": 8361823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8361995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75320", "tid": 35568, "ts": 8362124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8362298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb747c0", "tid": 35568, "ts": 8362426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8362599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74960", "tid": 35568, "ts": 8362728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8362987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76ec0", "tid": 35568, "ts": 8363118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8363292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76770", "tid": 35568, "ts": 8363419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8363591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb746f0", "tid": 35568, "ts": 8363718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8363890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76d20", "tid": 35568, "ts": 8364018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8364189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74d70", "tid": 35568, "ts": 8364317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8364490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb753f0", "tid": 35568, "ts": 8364618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8364789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb750b0", "tid": 35568, "ts": 8364916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75250", "tid": 35568, "ts": 8365216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76020", "tid": 35568, "ts": 8365516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73d30", "tid": 35568, "ts": 8365816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8365988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb761c0", "tid": 35568, "ts": 8366115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8366290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73ed0", "tid": 35568, "ts": 8366417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8366590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76b80", "tid": 35568, "ts": 8366718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8366890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb760f0", "tid": 35568, "ts": 8367017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8367189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75180", "tid": 35568, "ts": 8367317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8367488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75730", "tid": 35568, "ts": 8367615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8367788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76df0", "tid": 35568, "ts": 8367916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76910", "tid": 35568, "ts": 8368218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74a30", "tid": 35568, "ts": 8368517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73e00", "tid": 35568, "ts": 8368816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8368988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76c50", "tid": 35568, "ts": 8369116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8369287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb754c0", "tid": 35568, "ts": 8369415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8369587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76290", "tid": 35568, "ts": 8369715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8369888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74e40", "tid": 35568, "ts": 8370016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8370188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb73fa0", "tid": 35568, "ts": 8370315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8370487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74140", "tid": 35568, "ts": 8370615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8370787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb758d0", "tid": 35568, "ts": 8370915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76840", "tid": 35568, "ts": 8371216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75f50", "tid": 35568, "ts": 8371515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb769e0", "tid": 35568, "ts": 8371814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8371987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75660", "tid": 35568, "ts": 8372114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8372286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74890", "tid": 35568, "ts": 8372414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8372586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76500", "tid": 35568, "ts": 8372713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8372885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75590", "tid": 35568, "ts": 8373013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8373185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76360", "tid": 35568, "ts": 8373313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8373486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76ab0", "tid": 35568, "ts": 8373614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8373785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75800", "tid": 35568, "ts": 8373912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb759a0", "tid": 35568, "ts": 8374211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75a70", "tid": 35568, "ts": 8374510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75db0", "tid": 35568, "ts": 8374811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8374984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74b00", "tid": 35568, "ts": 8375112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8375285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74210", "tid": 35568, "ts": 8375412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8375584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb76430", "tid": 35568, "ts": 8375711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8375885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75b40", "tid": 35568, "ts": 8376012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8376184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb765d0", "tid": 35568, "ts": 8376312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8376483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb766a0", "tid": 35568, "ts": 8376611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8376783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74070", "tid": 35568, "ts": 8376911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb743b0", "tid": 35568, "ts": 8377211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74480", "tid": 35568, "ts": 8377511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74550", "tid": 35568, "ts": 8377810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8377983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74620", "tid": 35568, "ts": 8378110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8378282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74bd0", "tid": 35568, "ts": 8378409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8378662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74ca0", "tid": 35568, "ts": 8378849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75c10", "tid": 35568, "ts": 8379156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74f10", "tid": 35568, "ts": 8379458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75ce0", "tid": 35568, "ts": 8379760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8379933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb74fe0", "tid": 35568, "ts": 8380062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8380235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb75e80", "tid": 35568, "ts": 8380363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8380535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79760", "tid": 35568, "ts": 8380664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8380835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79900", "tid": 35568, "ts": 8381006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8381178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb772d0", "tid": 35568, "ts": 8381306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8381480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a2c0", "tid": 35568, "ts": 8381608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8381780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a390", "tid": 35568, "ts": 8381908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79010", "tid": 35568, "ts": 8382208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb799d0", "tid": 35568, "ts": 8382508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb787f0", "tid": 35568, "ts": 8382809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8382981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79350", "tid": 35568, "ts": 8383108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8383281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78240", "tid": 35568, "ts": 8383409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8383582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb773a0", "tid": 35568, "ts": 8383710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8383882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb783e0", "tid": 35568, "ts": 8384009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8384182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78f40", "tid": 35568, "ts": 8384309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8384482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78990", "tid": 35568, "ts": 8384609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8384780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb788c0", "tid": 35568, "ts": 8384907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79420", "tid": 35568, "ts": 8385208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78a60", "tid": 35568, "ts": 8385507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb795c0", "tid": 35568, "ts": 8385807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8385980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79c40", "tid": 35568, "ts": 8386107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8386279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78310", "tid": 35568, "ts": 8386407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8386579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a460", "tid": 35568, "ts": 8386707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8386879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77610", "tid": 35568, "ts": 8387007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8387179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb784b0", "tid": 35568, "ts": 8387306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8387479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb776e0", "tid": 35568, "ts": 8387607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8387780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78b30", "tid": 35568, "ts": 8387907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb790e0", "tid": 35568, "ts": 8388206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77130", "tid": 35568, "ts": 8388506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77200", "tid": 35568, "ts": 8388805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8388977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78c00", "tid": 35568, "ts": 8389105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8389279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77bc0", "tid": 35568, "ts": 8389407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8389578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78da0", "tid": 35568, "ts": 8389706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8389878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78580", "tid": 35568, "ts": 8390006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8390179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77470", "tid": 35568, "ts": 8390306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8390480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77fd0", "tid": 35568, "ts": 8390608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8390781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77540", "tid": 35568, "ts": 8390908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78cd0", "tid": 35568, "ts": 8391208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb794f0", "tid": 35568, "ts": 8391509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79b70", "tid": 35568, "ts": 8391808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8391980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79830", "tid": 35568, "ts": 8392108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8392282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78650", "tid": 35568, "ts": 8392409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8392581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb777b0", "tid": 35568, "ts": 8392708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8392881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79de0", "tid": 35568, "ts": 8393009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8393181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79d10", "tid": 35568, "ts": 8393309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8393481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78e70", "tid": 35568, "ts": 8393609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8393781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb791b0", "tid": 35568, "ts": 8393909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8394082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78720", "tid": 35568, "ts": 8394218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8394390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79280", "tid": 35568, "ts": 8394519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8394715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79690", "tid": 35568, "ts": 8394843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79eb0", "tid": 35568, "ts": 8395142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79aa0", "tid": 35568, "ts": 8395443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb79f80", "tid": 35568, "ts": 8395743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8395915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77880", "tid": 35568, "ts": 8396044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8396216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a050", "tid": 35568, "ts": 8396343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8396517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a120", "tid": 35568, "ts": 8396644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8396816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77950", "tid": 35568, "ts": 8396944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8397116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a1f0", "tid": 35568, "ts": 8397244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8397417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77a20", "tid": 35568, "ts": 8397545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8397716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77af0", "tid": 35568, "ts": 8397844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77c90", "tid": 35568, "ts": 8398144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77d60", "tid": 35568, "ts": 8398445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77e30", "tid": 35568, "ts": 8398744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8398917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb77f00", "tid": 35568, "ts": 8399046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8399220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb780a0", "tid": 35568, "ts": 8399347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8399519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb78170", "tid": 35568, "ts": 8399648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8399820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d520", "tid": 35568, "ts": 8399947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8400121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a530", "tid": 35568, "ts": 8400249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8400420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c9c0", "tid": 35568, "ts": 8400549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8400722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a6d0", "tid": 35568, "ts": 8400849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c750", "tid": 35568, "ts": 8401149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ac80", "tid": 35568, "ts": 8401449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7aa10", "tid": 35568, "ts": 8401749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8401921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cdd0", "tid": 35568, "ts": 8402048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8402220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ba50", "tid": 35568, "ts": 8402349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8402522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c820", "tid": 35568, "ts": 8402650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8402823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d5f0", "tid": 35568, "ts": 8402951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8403124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c5b0", "tid": 35568, "ts": 8403252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8403424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b160", "tid": 35568, "ts": 8403552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8403725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b7e0", "tid": 35568, "ts": 8403853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b3d0", "tid": 35568, "ts": 8404154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b4a0", "tid": 35568, "ts": 8404455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c1a0", "tid": 35568, "ts": 8404755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8404928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bbf0", "tid": 35568, "ts": 8405055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8405227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ca90", "tid": 35568, "ts": 8405355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8405527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d040", "tid": 35568, "ts": 8405654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8405827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ad50", "tid": 35568, "ts": 8405955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8406127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b8b0", "tid": 35568, "ts": 8406255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8406427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7aef0", "tid": 35568, "ts": 8406556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8406728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cd00", "tid": 35568, "ts": 8406856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bcc0", "tid": 35568, "ts": 8407157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7afc0", "tid": 35568, "ts": 8407458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cea0", "tid": 35568, "ts": 8407759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8407932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7aae0", "tid": 35568, "ts": 8408060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8408233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b640", "tid": 35568, "ts": 8408360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8408534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d1e0", "tid": 35568, "ts": 8408661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8408833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cf70", "tid": 35568, "ts": 8408961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8409134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c680", "tid": 35568, "ts": 8409262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8409434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b230", "tid": 35568, "ts": 8409562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8409734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b570", "tid": 35568, "ts": 8409871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bb20", "tid": 35568, "ts": 8410171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d860", "tid": 35568, "ts": 8410472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b300", "tid": 35568, "ts": 8410771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8410944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d6c0", "tid": 35568, "ts": 8411072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8411245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b710", "tid": 35568, "ts": 8411373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8411546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b980", "tid": 35568, "ts": 8411673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8411846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c410", "tid": 35568, "ts": 8411973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8412146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a600", "tid": 35568, "ts": 8412274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8412446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a940", "tid": 35568, "ts": 8412574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8412746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bd90", "tid": 35568, "ts": 8412874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7be60", "tid": 35568, "ts": 8413174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7bf30", "tid": 35568, "ts": 8413475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d110", "tid": 35568, "ts": 8413775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8413990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c000", "tid": 35568, "ts": 8414119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8414292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c0d0", "tid": 35568, "ts": 8414421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8414593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c4e0", "tid": 35568, "ts": 8414721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8414893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c270", "tid": 35568, "ts": 8415022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8415194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d2b0", "tid": 35568, "ts": 8415322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8415495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c340", "tid": 35568, "ts": 8415623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8415794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7c8f0", "tid": 35568, "ts": 8415922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cb60", "tid": 35568, "ts": 8416223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7cc30", "tid": 35568, "ts": 8416524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d380", "tid": 35568, "ts": 8416824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8416998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ae20", "tid": 35568, "ts": 8417126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8417298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d450", "tid": 35568, "ts": 8417427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8417599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d790", "tid": 35568, "ts": 8417727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8417898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a7a0", "tid": 35568, "ts": 8418026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8418200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7a870", "tid": 35568, "ts": 8418327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8418500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7abb0", "tid": 35568, "ts": 8418628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8418801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7b090", "tid": 35568, "ts": 8418929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8419102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f260", "tid": 35568, "ts": 8419386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8419704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e3c0", "tid": 35568, "ts": 8419833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb801d0", "tid": 35568, "ts": 8420134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7eb10", "tid": 35568, "ts": 8420433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f670", "tid": 35568, "ts": 8420733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8420905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f0c0", "tid": 35568, "ts": 8421033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8421206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f810", "tid": 35568, "ts": 8421334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8421508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7eff0", "tid": 35568, "ts": 8421636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8421809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ed80", "tid": 35568, "ts": 8421937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8422110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ee50", "tid": 35568, "ts": 8422238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8422411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb809f0", "tid": 35568, "ts": 8422539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8422711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f9b0", "tid": 35568, "ts": 8422839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e970", "tid": 35568, "ts": 8423140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f330", "tid": 35568, "ts": 8423440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb805e0", "tid": 35568, "ts": 8423741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8423914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80920", "tid": 35568, "ts": 8424042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8424215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80c60", "tid": 35568, "ts": 8424344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8424517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dd40", "tid": 35568, "ts": 8424644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8424817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e490", "tid": 35568, "ts": 8424945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8425119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ff60", "tid": 35568, "ts": 8425247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8425441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ebe0", "tid": 35568, "ts": 8425582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8425755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f5a0", "tid": 35568, "ts": 8425883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ef20", "tid": 35568, "ts": 8426210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e560", "tid": 35568, "ts": 8426512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f190", "tid": 35568, "ts": 8426812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8426985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fb50", "tid": 35568, "ts": 8427113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8427285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f400", "tid": 35568, "ts": 8427413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8427586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fdc0", "tid": 35568, "ts": 8427713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8427886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f4d0", "tid": 35568, "ts": 8428014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8428188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7de10", "tid": 35568, "ts": 8428316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8428488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ecb0", "tid": 35568, "ts": 8428617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8428790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80510", "tid": 35568, "ts": 8428918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f740", "tid": 35568, "ts": 8429219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e080", "tid": 35568, "ts": 8429522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7ea40", "tid": 35568, "ts": 8429821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8429994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e150", "tid": 35568, "ts": 8430122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8430295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7f8e0", "tid": 35568, "ts": 8430423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8430595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fa80", "tid": 35568, "ts": 8430786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8430959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fc20", "tid": 35568, "ts": 8431088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8431261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fcf0", "tid": 35568, "ts": 8431390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8431562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7fe90", "tid": 35568, "ts": 8431691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8431864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80030", "tid": 35568, "ts": 8431992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8432165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80440", "tid": 35568, "ts": 8432293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8432466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80100", "tid": 35568, "ts": 8432594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8432767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb806b0", "tid": 35568, "ts": 8432895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb802a0", "tid": 35568, "ts": 8433196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80780", "tid": 35568, "ts": 8433497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80b90", "tid": 35568, "ts": 8433799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8433973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e630", "tid": 35568, "ts": 8434101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8434315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dee0", "tid": 35568, "ts": 8434444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8434617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80370", "tid": 35568, "ts": 8434744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8434916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dba0", "tid": 35568, "ts": 8435046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8435218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80850", "tid": 35568, "ts": 8435346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8435517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80ac0", "tid": 35568, "ts": 8435646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8435819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7d930", "tid": 35568, "ts": 8435948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8436119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7da00", "tid": 35568, "ts": 8436247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8436419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dad0", "tid": 35568, "ts": 8436546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8436719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e2f0", "tid": 35568, "ts": 8436847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dc70", "tid": 35568, "ts": 8437148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7dfb0", "tid": 35568, "ts": 8437448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e220", "tid": 35568, "ts": 8437749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8437921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e700", "tid": 35568, "ts": 8438050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8438223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e7d0", "tid": 35568, "ts": 8438351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8438524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb7e8a0", "tid": 35568, "ts": 8438652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8438825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb836a0", "tid": 35568, "ts": 8438953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8439126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83df0", "tid": 35568, "ts": 8439255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8439427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82e80", "tid": 35568, "ts": 8439556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8439729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb835d0", "tid": 35568, "ts": 8439857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83770", "tid": 35568, "ts": 8440157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81f10", "tid": 35568, "ts": 8440458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83d20", "tid": 35568, "ts": 8440759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8440932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81d70", "tid": 35568, "ts": 8441091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8441285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83360", "tid": 35568, "ts": 8441413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8441586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81fe0", "tid": 35568, "ts": 8441714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8441886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82180", "tid": 35568, "ts": 8442014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8442187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81e40", "tid": 35568, "ts": 8442316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8442488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb828d0", "tid": 35568, "ts": 8442615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8442789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82f50", "tid": 35568, "ts": 8442917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81bd0", "tid": 35568, "ts": 8443218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82db0", "tid": 35568, "ts": 8443519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82b40", "tid": 35568, "ts": 8443819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8443991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82730", "tid": 35568, "ts": 8444120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8444293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83020", "tid": 35568, "ts": 8444421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8444593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb823f0", "tid": 35568, "ts": 8444722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8444895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb820b0", "tid": 35568, "ts": 8445023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8445197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83c50", "tid": 35568, "ts": 8445325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8445497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82250", "tid": 35568, "ts": 8445625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8445797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb831c0", "tid": 35568, "ts": 8445924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb824c0", "tid": 35568, "ts": 8446226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82ce0", "tid": 35568, "ts": 8446526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82590", "tid": 35568, "ts": 8446826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8446998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82320", "tid": 35568, "ts": 8447126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8447297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82660", "tid": 35568, "ts": 8447528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8447702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb812e0", "tid": 35568, "ts": 8447831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81070", "tid": 35568, "ts": 8448130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84060", "tid": 35568, "ts": 8448429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81140", "tid": 35568, "ts": 8448729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8448902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81890", "tid": 35568, "ts": 8449030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8449204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83840", "tid": 35568, "ts": 8449426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8449616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81550", "tid": 35568, "ts": 8449744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8449917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82800", "tid": 35568, "ts": 8450045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8450218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb830f0", "tid": 35568, "ts": 8450346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8450519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83290", "tid": 35568, "ts": 8450646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8450820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83910", "tid": 35568, "ts": 8450948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8451121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83430", "tid": 35568, "ts": 8451249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8451421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83ec0", "tid": 35568, "ts": 8451549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8451722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83500", "tid": 35568, "ts": 8451850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80d30", "tid": 35568, "ts": 8452152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81ca0", "tid": 35568, "ts": 8452454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb839e0", "tid": 35568, "ts": 8452756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8452928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81480", "tid": 35568, "ts": 8453057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8453229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb829a0", "tid": 35568, "ts": 8453357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8453529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83ab0", "tid": 35568, "ts": 8453657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8453829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82a70", "tid": 35568, "ts": 8453956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8454129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83b80", "tid": 35568, "ts": 8454257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8454429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81210", "tid": 35568, "ts": 8454557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8454730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb83f90", "tid": 35568, "ts": 8454858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80e00", "tid": 35568, "ts": 8455159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80ed0", "tid": 35568, "ts": 8455459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb82c10", "tid": 35568, "ts": 8455759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8455930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb816f0", "tid": 35568, "ts": 8456058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8456230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb80fa0", "tid": 35568, "ts": 8456358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8456531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb813b0", "tid": 35568, "ts": 8456701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8456970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81620", "tid": 35568, "ts": 8457181, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8457378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb817c0", "tid": 35568, "ts": 8457579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8457863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81960", "tid": 35568, "ts": 8457992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8458163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81a30", "tid": 35568, "ts": 8458291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8458464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb81b00", "tid": 35568, "ts": 8458592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8458763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb853e0", "tid": 35568, "ts": 8458891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84540", "tid": 35568, "ts": 8459191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84610", "tid": 35568, "ts": 8459491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86b70", "tid": 35568, "ts": 8459791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8459962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85b30", "tid": 35568, "ts": 8460090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8460262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb861b0", "tid": 35568, "ts": 8460391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8460564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb865c0", "tid": 35568, "ts": 8460692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8460865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85f40", "tid": 35568, "ts": 8460993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8461165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86900", "tid": 35568, "ts": 8461294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8461466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87390", "tid": 35568, "ts": 8461594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8461765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87460", "tid": 35568, "ts": 8461893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86350", "tid": 35568, "ts": 8462194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb846e0", "tid": 35568, "ts": 8462494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb869d0", "tid": 35568, "ts": 8462793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8462965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86690", "tid": 35568, "ts": 8463093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8463266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86c40", "tid": 35568, "ts": 8463394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8463566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb872c0", "tid": 35568, "ts": 8463694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8463866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86d10", "tid": 35568, "ts": 8463994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8464167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86760", "tid": 35568, "ts": 8464295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8464467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84130", "tid": 35568, "ts": 8464595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8464767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84f00", "tid": 35568, "ts": 8464894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87050", "tid": 35568, "ts": 8465194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85650", "tid": 35568, "ts": 8465495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb854b0", "tid": 35568, "ts": 8465796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8465969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84880", "tid": 35568, "ts": 8466097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8466269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85990", "tid": 35568, "ts": 8466397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8466569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86aa0", "tid": 35568, "ts": 8466697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8466869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb847b0", "tid": 35568, "ts": 8466997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8467168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86de0", "tid": 35568, "ts": 8467297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8467469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86eb0", "tid": 35568, "ts": 8467598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8467770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86f80", "tid": 35568, "ts": 8467898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84950", "tid": 35568, "ts": 8468198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84a20", "tid": 35568, "ts": 8468500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84470", "tid": 35568, "ts": 8468801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8468972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87120", "tid": 35568, "ts": 8469100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8469272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86830", "tid": 35568, "ts": 8469400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8469571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84fd0", "tid": 35568, "ts": 8469699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8469872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84af0", "tid": 35568, "ts": 8470000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8470171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84bc0", "tid": 35568, "ts": 8470300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8470472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb850a0", "tid": 35568, "ts": 8470600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8470772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85170", "tid": 35568, "ts": 8470900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb871f0", "tid": 35568, "ts": 8471200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86010", "tid": 35568, "ts": 8471500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84c90", "tid": 35568, "ts": 8471800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8471972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84d60", "tid": 35568, "ts": 8472101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8472286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85240", "tid": 35568, "ts": 8472458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8472630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85310", "tid": 35568, "ts": 8472759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8472932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85da0", "tid": 35568, "ts": 8473061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8473234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84200", "tid": 35568, "ts": 8473362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8473535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85580", "tid": 35568, "ts": 8473663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8473836, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb842d0", "tid": 35568, "ts": 8473964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8474136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb843a0", "tid": 35568, "ts": 8474265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8474437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb84e30", "tid": 35568, "ts": 8474566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8474739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85cd0", "tid": 35568, "ts": 8474867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85720", "tid": 35568, "ts": 8475167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86280", "tid": 35568, "ts": 8475467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb857f0", "tid": 35568, "ts": 8475768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8475941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb858c0", "tid": 35568, "ts": 8476069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8476240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85a60", "tid": 35568, "ts": 8476369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8476541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85c00", "tid": 35568, "ts": 8476670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8476841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb85e70", "tid": 35568, "ts": 8476970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8477144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb860e0", "tid": 35568, "ts": 8477272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8477444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb86420", "tid": 35568, "ts": 8477573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8477745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb864f0", "tid": 35568, "ts": 8477873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88a50", "tid": 35568, "ts": 8478174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87fc0", "tid": 35568, "ts": 8478474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89680", "tid": 35568, "ts": 8478775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8478949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87870", "tid": 35568, "ts": 8479077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8479250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88230", "tid": 35568, "ts": 8479378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8479550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a380", "tid": 35568, "ts": 8479678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8479850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb895b0", "tid": 35568, "ts": 8479979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8480151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb887e0", "tid": 35568, "ts": 8480280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8480452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87940", "tid": 35568, "ts": 8480581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8480752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb891a0", "tid": 35568, "ts": 8480881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8481097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87530", "tid": 35568, "ts": 8481226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8481398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89f70", "tid": 35568, "ts": 8481552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8481724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a520", "tid": 35568, "ts": 8481853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb883d0", "tid": 35568, "ts": 8482156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87d50", "tid": 35568, "ts": 8482457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88640", "tid": 35568, "ts": 8482757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8482930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb877a0", "tid": 35568, "ts": 8483057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8483230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88710", "tid": 35568, "ts": 8483357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8483531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89270", "tid": 35568, "ts": 8483659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8483831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87bb0", "tid": 35568, "ts": 8483960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8484133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb888b0", "tid": 35568, "ts": 8484260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8484432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88160", "tid": 35568, "ts": 8484561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8484734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89dd0", "tid": 35568, "ts": 8484863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88300", "tid": 35568, "ts": 8485163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88980", "tid": 35568, "ts": 8485462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88b20", "tid": 35568, "ts": 8485762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8485933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87c80", "tid": 35568, "ts": 8486061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8486234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88bf0", "tid": 35568, "ts": 8486362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8486534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88090", "tid": 35568, "ts": 8486662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8486835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89340", "tid": 35568, "ts": 8486963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8487136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89ea0", "tid": 35568, "ts": 8487264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8487436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88cc0", "tid": 35568, "ts": 8487563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8487734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87a10", "tid": 35568, "ts": 8487862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88d90", "tid": 35568, "ts": 8488224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89750", "tid": 35568, "ts": 8488524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a790", "tid": 35568, "ts": 8488825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8488997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88e60", "tid": 35568, "ts": 8489126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8489298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb890d0", "tid": 35568, "ts": 8489426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8489598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb884a0", "tid": 35568, "ts": 8489725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8489899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb899c0", "tid": 35568, "ts": 8490027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8490199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a450", "tid": 35568, "ts": 8490328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8490501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88570", "tid": 35568, "ts": 8490629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8490802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a040", "tid": 35568, "ts": 8490930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8491102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89410", "tid": 35568, "ts": 8491230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8491403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87e20", "tid": 35568, "ts": 8491531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8491704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb88f30", "tid": 35568, "ts": 8491832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a5f0", "tid": 35568, "ts": 8492134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb898f0", "tid": 35568, "ts": 8492434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a110", "tid": 35568, "ts": 8492735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8492908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a6c0", "tid": 35568, "ts": 8493037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8493209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a860", "tid": 35568, "ts": 8493337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8493509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89000", "tid": 35568, "ts": 8493637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8493811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb894e0", "tid": 35568, "ts": 8493939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8494112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89a90", "tid": 35568, "ts": 8494239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8494411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87600", "tid": 35568, "ts": 8494563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8494737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb876d0", "tid": 35568, "ts": 8494865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87ae0", "tid": 35568, "ts": 8495167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a1e0", "tid": 35568, "ts": 8495467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89820", "tid": 35568, "ts": 8495768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8495941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89b60", "tid": 35568, "ts": 8496070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8496243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb87ef0", "tid": 35568, "ts": 8496371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8496544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89c30", "tid": 35568, "ts": 8496673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8496845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb89d00", "tid": 35568, "ts": 8496973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8497146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a2b0", "tid": 35568, "ts": 8497275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8497446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8db90", "tid": 35568, "ts": 8497575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8497749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d5e0", "tid": 35568, "ts": 8497877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d9f0", "tid": 35568, "ts": 8498177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8be50", "tid": 35568, "ts": 8498477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bd80", "tid": 35568, "ts": 8498777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8498949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c190", "tid": 35568, "ts": 8499078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8499250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ad40", "tid": 35568, "ts": 8499379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8499552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bf20", "tid": 35568, "ts": 8499680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8499852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d850", "tid": 35568, "ts": 8500038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8500211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d100", "tid": 35568, "ts": 8500340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8500513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c5a0", "tid": 35568, "ts": 8500642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8500815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b2f0", "tid": 35568, "ts": 8500944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8501117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bff0", "tid": 35568, "ts": 8501308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8501481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c8e0", "tid": 35568, "ts": 8501609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8501782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dc60", "tid": 35568, "ts": 8501911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d6b0", "tid": 35568, "ts": 8502212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d370", "tid": 35568, "ts": 8502513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c0c0", "tid": 35568, "ts": 8502815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8502987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d780", "tid": 35568, "ts": 8503116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8503289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d440", "tid": 35568, "ts": 8503417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8503688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dac0", "tid": 35568, "ts": 8503822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8503995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b7d0", "tid": 35568, "ts": 8504124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8504297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d1d0", "tid": 35568, "ts": 8504427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8504600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d920", "tid": 35568, "ts": 8504729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8504901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c260", "tid": 35568, "ts": 8505028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8505202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ba40", "tid": 35568, "ts": 8505330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8505503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8a930", "tid": 35568, "ts": 8505631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8505846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c330", "tid": 35568, "ts": 8505975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8506147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c810", "tid": 35568, "ts": 8506276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8506450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ac70", "tid": 35568, "ts": 8506578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8506750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c670", "tid": 35568, "ts": 8506879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ccf0", "tid": 35568, "ts": 8507180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c9b0", "tid": 35568, "ts": 8507480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c740", "tid": 35568, "ts": 8507781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8507953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d2a0", "tid": 35568, "ts": 8508080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8508253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ca80", "tid": 35568, "ts": 8508381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8508553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d510", "tid": 35568, "ts": 8508680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8508855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aa00", "tid": 35568, "ts": 8508982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8509155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aad0", "tid": 35568, "ts": 8509283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8509456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b490", "tid": 35568, "ts": 8509584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8509757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ae10", "tid": 35568, "ts": 8509885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bb10", "tid": 35568, "ts": 8510185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c400", "tid": 35568, "ts": 8510486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cb50", "tid": 35568, "ts": 8510786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8510959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8c4d0", "tid": 35568, "ts": 8511087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8511260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aba0", "tid": 35568, "ts": 8511387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8511560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8aee0", "tid": 35568, "ts": 8511688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8511861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8afb0", "tid": 35568, "ts": 8511989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8512162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cc20", "tid": 35568, "ts": 8512290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8512462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b080", "tid": 35568, "ts": 8512590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8512762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b150", "tid": 35568, "ts": 8512889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b220", "tid": 35568, "ts": 8513192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b3c0", "tid": 35568, "ts": 8513492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8d030", "tid": 35568, "ts": 8513794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8513967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cdc0", "tid": 35568, "ts": 8514095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8514268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ce90", "tid": 35568, "ts": 8514439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8514612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8cf60", "tid": 35568, "ts": 8514740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8514912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b560", "tid": 35568, "ts": 8515040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8515212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b630", "tid": 35568, "ts": 8515340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8515512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b700", "tid": 35568, "ts": 8515640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8515813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b8a0", "tid": 35568, "ts": 8515941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8516114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8b970", "tid": 35568, "ts": 8516242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8516414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bbe0", "tid": 35568, "ts": 8516542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8516715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8bcb0", "tid": 35568, "ts": 8516842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e2e0", "tid": 35568, "ts": 8517143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ea30", "tid": 35568, "ts": 8517443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb900f0", "tid": 35568, "ts": 8517743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8517915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f320", "tid": 35568, "ts": 8518042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8518215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f250", "tid": 35568, "ts": 8518343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8518515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f0b0", "tid": 35568, "ts": 8518642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8518814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f180", "tid": 35568, "ts": 8518943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8519115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fdb0", "tid": 35568, "ts": 8519319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8519504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ebd0", "tid": 35568, "ts": 8519632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8519804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f730", "tid": 35568, "ts": 8519932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8520105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e550", "tid": 35568, "ts": 8520233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8520405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e3b0", "tid": 35568, "ts": 8520533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8520705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f3f0", "tid": 35568, "ts": 8520833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f4c0", "tid": 35568, "ts": 8521133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f8d0", "tid": 35568, "ts": 8521434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8eca0", "tid": 35568, "ts": 8521735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8521908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e140", "tid": 35568, "ts": 8522036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8522209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90020", "tid": 35568, "ts": 8522337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8522511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dfa0", "tid": 35568, "ts": 8522639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8522811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90b80", "tid": 35568, "ts": 8522940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8523113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8eb00", "tid": 35568, "ts": 8523241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8523415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e070", "tid": 35568, "ts": 8523543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8523715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e620", "tid": 35568, "ts": 8523843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90d20", "tid": 35568, "ts": 8524143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fc10", "tid": 35568, "ts": 8524442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f9a0", "tid": 35568, "ts": 8524742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8524914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90360", "tid": 35568, "ts": 8525042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8525217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ed70", "tid": 35568, "ts": 8525345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8525518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fe80", "tid": 35568, "ts": 8525645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8525819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb909e0", "tid": 35568, "ts": 8525948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8526121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ff50", "tid": 35568, "ts": 8526248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8526420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f590", "tid": 35568, "ts": 8526547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8526720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e210", "tid": 35568, "ts": 8526849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90df0", "tid": 35568, "ts": 8527149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fa70", "tid": 35568, "ts": 8527449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90c50", "tid": 35568, "ts": 8527750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8527922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e6f0", "tid": 35568, "ts": 8528050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8528222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e480", "tid": 35568, "ts": 8528350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8528522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e7c0", "tid": 35568, "ts": 8528650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8528822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f660", "tid": 35568, "ts": 8528950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8529122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ee40", "tid": 35568, "ts": 8529250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8529422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e890", "tid": 35568, "ts": 8529550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8529724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8f800", "tid": 35568, "ts": 8529852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90430", "tid": 35568, "ts": 8530152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8e960", "tid": 35568, "ts": 8530453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fce0", "tid": 35568, "ts": 8530755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8530927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb905d0", "tid": 35568, "ts": 8531057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8531229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb901c0", "tid": 35568, "ts": 8531358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8531531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90ec0", "tid": 35568, "ts": 8531659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8531831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8dd30", "tid": 35568, "ts": 8531959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8532132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ef10", "tid": 35568, "ts": 8532260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8532434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90500", "tid": 35568, "ts": 8532562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8532735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8fb40", "tid": 35568, "ts": 8532862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90290", "tid": 35568, "ts": 8533163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb906a0", "tid": 35568, "ts": 8533463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90770", "tid": 35568, "ts": 8533763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8533935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90840", "tid": 35568, "ts": 8534064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8534235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8efe0", "tid": 35568, "ts": 8534364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8534536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90910", "tid": 35568, "ts": 8534730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8534943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb90ab0", "tid": 35568, "ts": 8535073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8535244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8de00", "tid": 35568, "ts": 8535372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8535544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb8ded0", "tid": 35568, "ts": 8535672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8535844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52de0", "tid": 35568, "ts": 8535973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8536144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51c00", "tid": 35568, "ts": 8536272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8536444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53120", "tid": 35568, "ts": 8536572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8536744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50470", "tid": 35568, "ts": 8536872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb531f0", "tid": 35568, "ts": 8537173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb510a0", "tid": 35568, "ts": 8537474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51cd0", "tid": 35568, "ts": 8537775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8537948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50130", "tid": 35568, "ts": 8538077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8538250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51b30", "tid": 35568, "ts": 8538377, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8538549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb525c0", "tid": 35568, "ts": 8538677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8538849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52aa0", "tid": 35568, "ts": 8538977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8539150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51720", "tid": 35568, "ts": 8539320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8539492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51580", "tid": 35568, "ts": 8539620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8539793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb532c0", "tid": 35568, "ts": 8539921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51650", "tid": 35568, "ts": 8540221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52900", "tid": 35568, "ts": 8540521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52b70", "tid": 35568, "ts": 8540821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8540994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb506e0", "tid": 35568, "ts": 8541122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8541295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52eb0", "tid": 35568, "ts": 8541423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8541596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52830", "tid": 35568, "ts": 8541724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8541896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51240", "tid": 35568, "ts": 8542024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8542195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50fd0", "tid": 35568, "ts": 8542323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8542496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb529d0", "tid": 35568, "ts": 8542624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8542796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51170", "tid": 35568, "ts": 8542924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50f00", "tid": 35568, "ts": 8543224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51f40", "tid": 35568, "ts": 8543525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51e70", "tid": 35568, "ts": 8543823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8543995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51da0", "tid": 35568, "ts": 8544123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8544295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50200", "tid": 35568, "ts": 8544424, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8544596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52010", "tid": 35568, "ts": 8544724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8544896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52690", "tid": 35568, "ts": 8545024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8545197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51310", "tid": 35568, "ts": 8545325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8545497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb502d0", "tid": 35568, "ts": 8545625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8545797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb517f0", "tid": 35568, "ts": 8545925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50880", "tid": 35568, "ts": 8546226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53390", "tid": 35568, "ts": 8546526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb518c0", "tid": 35568, "ts": 8546826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8546999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52280", "tid": 35568, "ts": 8547127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8547298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50950", "tid": 35568, "ts": 8547466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8547641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51990", "tid": 35568, "ts": 8547769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8547942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb51a60", "tid": 35568, "ts": 8548072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8548245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb513e0", "tid": 35568, "ts": 8548373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8548545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb514b0", "tid": 35568, "ts": 8548672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8548845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52f80", "tid": 35568, "ts": 8548973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8549145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb520e0", "tid": 35568, "ts": 8549273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8549445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50540", "tid": 35568, "ts": 8549572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8549744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb521b0", "tid": 35568, "ts": 8549873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52350", "tid": 35568, "ts": 8550172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52420", "tid": 35568, "ts": 8550510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52c40", "tid": 35568, "ts": 8550811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8550984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52d10", "tid": 35568, "ts": 8551112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8551285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb52760", "tid": 35568, "ts": 8551413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8551587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53460", "tid": 35568, "ts": 8551715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8551888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb507b0", "tid": 35568, "ts": 8552016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8552189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb524f0", "tid": 35568, "ts": 8552317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8552489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb53050", "tid": 35568, "ts": 8552617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8552791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb503a0", "tid": 35568, "ts": 8552919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50a20", "tid": 35568, "ts": 8553219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50610", "tid": 35568, "ts": 8553519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50af0", "tid": 35568, "ts": 8553821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8553993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50bc0", "tid": 35568, "ts": 8554121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8554294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50c90", "tid": 35568, "ts": 8554422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8554596, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50d60", "tid": 35568, "ts": 8554724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8554898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234adb50e30", "tid": 35568, "ts": 8555026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8555198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231170", "tid": 35568, "ts": 8555390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8555565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231240", "tid": 35568, "ts": 8555694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8555867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232f80", "tid": 35568, "ts": 8555995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8556168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2321b0", "tid": 35568, "ts": 8556295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8556468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231720", "tid": 35568, "ts": 8556596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8556768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2325c0", "tid": 35568, "ts": 8556896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2314b0", "tid": 35568, "ts": 8557196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231cd0", "tid": 35568, "ts": 8557496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230950", "tid": 35568, "ts": 8557797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8557969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230bc0", "tid": 35568, "ts": 8558097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8558269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233050", "tid": 35568, "ts": 8558397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8558569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230f00", "tid": 35568, "ts": 8558696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8558868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231f40", "tid": 35568, "ts": 8558997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8559168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231310", "tid": 35568, "ts": 8559320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8559494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231e70", "tid": 35568, "ts": 8559623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8559796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2317f0", "tid": 35568, "ts": 8559924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232010", "tid": 35568, "ts": 8560224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2329d0", "tid": 35568, "ts": 8560523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230fd0", "tid": 35568, "ts": 8560823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8560997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2318c0", "tid": 35568, "ts": 8561124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8561296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2313e0", "tid": 35568, "ts": 8561425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8561597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232de0", "tid": 35568, "ts": 8561725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8561897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231580", "tid": 35568, "ts": 8562024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8562197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231650", "tid": 35568, "ts": 8562325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8562497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2320e0", "tid": 35568, "ts": 8562625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8562796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231990", "tid": 35568, "ts": 8562924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232280", "tid": 35568, "ts": 8563224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232d10", "tid": 35568, "ts": 8563525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230200", "tid": 35568, "ts": 8563826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8563999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2310a0", "tid": 35568, "ts": 8564126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8564299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230540", "tid": 35568, "ts": 8564426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8564599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233120", "tid": 35568, "ts": 8564727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8564899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2332c0", "tid": 35568, "ts": 8565026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8565200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230d60", "tid": 35568, "ts": 8565328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8565499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232350", "tid": 35568, "ts": 8565627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8565799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232420", "tid": 35568, "ts": 8565928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8566212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230e30", "tid": 35568, "ts": 8566456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8566724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232900", "tid": 35568, "ts": 8566865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8567127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231a60", "tid": 35568, "ts": 8567350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8567521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233460", "tid": 35568, "ts": 8567649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8567822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232eb0", "tid": 35568, "ts": 8567950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8568122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2324f0", "tid": 35568, "ts": 8568250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8568422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233390", "tid": 35568, "ts": 8568550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8568722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231b30", "tid": 35568, "ts": 8568849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231c00", "tid": 35568, "ts": 8569151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232690", "tid": 35568, "ts": 8569508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2331f0", "tid": 35568, "ts": 8569810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8569982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230130", "tid": 35568, "ts": 8570110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8570283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae231da0", "tid": 35568, "ts": 8570411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8570584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230af0", "tid": 35568, "ts": 8570712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8570886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230610", "tid": 35568, "ts": 8571014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8571187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232760", "tid": 35568, "ts": 8571314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8571487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232830", "tid": 35568, "ts": 8571614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8571787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232aa0", "tid": 35568, "ts": 8571914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232b70", "tid": 35568, "ts": 8572215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae232c40", "tid": 35568, "ts": 8572515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2302d0", "tid": 35568, "ts": 8572815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8572988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2303a0", "tid": 35568, "ts": 8573116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8573288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230470", "tid": 35568, "ts": 8573415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8573587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2306e0", "tid": 35568, "ts": 8573715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8573888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2307b0", "tid": 35568, "ts": 8574016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8574188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230880", "tid": 35568, "ts": 8574316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8574490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230a20", "tid": 35568, "ts": 8574618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8574792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae230c90", "tid": 35568, "ts": 8574920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2366c0", "tid": 35568, "ts": 8575221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2355b0", "tid": 35568, "ts": 8575523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233bb0", "tid": 35568, "ts": 8575823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8575996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2336d0", "tid": 35568, "ts": 8576124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8576297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233940", "tid": 35568, "ts": 8576426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8576599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235820", "tid": 35568, "ts": 8576727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8576899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236790", "tid": 35568, "ts": 8577027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8577243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233a10", "tid": 35568, "ts": 8577372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8577545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235340", "tid": 35568, "ts": 8577673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8577845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2343d0", "tid": 35568, "ts": 8577973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8578146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233ef0", "tid": 35568, "ts": 8578274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8578448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234b20", "tid": 35568, "ts": 8578576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8578749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234090", "tid": 35568, "ts": 8578878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2365f0", "tid": 35568, "ts": 8579178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233c80", "tid": 35568, "ts": 8579480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236860", "tid": 35568, "ts": 8579780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8579953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234570", "tid": 35568, "ts": 8580081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8580254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234640", "tid": 35568, "ts": 8580382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8580554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2358f0", "tid": 35568, "ts": 8580682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8580854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235b60", "tid": 35568, "ts": 8580982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8581154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234bf0", "tid": 35568, "ts": 8581328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8581501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2361e0", "tid": 35568, "ts": 8581628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8581890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235c30", "tid": 35568, "ts": 8582022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8582197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234710", "tid": 35568, "ts": 8582326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8582499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235680", "tid": 35568, "ts": 8582628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8582801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233ae0", "tid": 35568, "ts": 8582930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8583102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235ea0", "tid": 35568, "ts": 8583230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8583402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235270", "tid": 35568, "ts": 8583531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8583703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235750", "tid": 35568, "ts": 8583831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2359c0", "tid": 35568, "ts": 8584132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234f30", "tid": 35568, "ts": 8584434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235a90", "tid": 35568, "ts": 8584736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8584909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2347e0", "tid": 35568, "ts": 8585038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8585210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234a50", "tid": 35568, "ts": 8585337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8585509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234cc0", "tid": 35568, "ts": 8585638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8585811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2351a0", "tid": 35568, "ts": 8585939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8586111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233d50", "tid": 35568, "ts": 8586239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8586411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2350d0", "tid": 35568, "ts": 8586538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8586711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234160", "tid": 35568, "ts": 8586838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2348b0", "tid": 35568, "ts": 8587138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234980", "tid": 35568, "ts": 8587439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236040", "tid": 35568, "ts": 8587740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8587912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235d00", "tid": 35568, "ts": 8588039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8588211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2344a0", "tid": 35568, "ts": 8588339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8588511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233530", "tid": 35568, "ts": 8588639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8588810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235f70", "tid": 35568, "ts": 8588938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8589110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234d90", "tid": 35568, "ts": 8589238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8589411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2337a0", "tid": 35568, "ts": 8589539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8589711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233600", "tid": 35568, "ts": 8589839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234e60", "tid": 35568, "ts": 8590183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235000", "tid": 35568, "ts": 8590484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235410", "tid": 35568, "ts": 8590785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8590958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2354e0", "tid": 35568, "ts": 8591084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8591257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233fc0", "tid": 35568, "ts": 8591384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8591556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233870", "tid": 35568, "ts": 8591684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8591857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236110", "tid": 35568, "ts": 8591984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8592156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae235dd0", "tid": 35568, "ts": 8592283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8592455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2362b0", "tid": 35568, "ts": 8592583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8592755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae233e20", "tid": 35568, "ts": 8592883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236380", "tid": 35568, "ts": 8593182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236450", "tid": 35568, "ts": 8593481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236520", "tid": 35568, "ts": 8593781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8593953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234230", "tid": 35568, "ts": 8594080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8594253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae234300", "tid": 35568, "ts": 8594382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8594577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239780", "tid": 35568, "ts": 8594705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8594878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236ee0", "tid": 35568, "ts": 8595006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8595179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236d40", "tid": 35568, "ts": 8595307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8595479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236c70", "tid": 35568, "ts": 8595608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8595780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239370", "tid": 35568, "ts": 8595908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239850", "tid": 35568, "ts": 8596209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2395e0", "tid": 35568, "ts": 8596509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236e10", "tid": 35568, "ts": 8596809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8596982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237560", "tid": 35568, "ts": 8597110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8597323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239920", "tid": 35568, "ts": 8597502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8597676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239440", "tid": 35568, "ts": 8597804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8597977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238330", "tid": 35568, "ts": 8598105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8598278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2377d0", "tid": 35568, "ts": 8598406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8598578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237150", "tid": 35568, "ts": 8598707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8598879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238740", "tid": 35568, "ts": 8599008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8599180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239100", "tid": 35568, "ts": 8599309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8599481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2373c0", "tid": 35568, "ts": 8599609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8599781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2399f0", "tid": 35568, "ts": 8599910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239510", "tid": 35568, "ts": 8600210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237970", "tid": 35568, "ts": 8600511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236ba0", "tid": 35568, "ts": 8600812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8600984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238e90", "tid": 35568, "ts": 8601112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8601284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238670", "tid": 35568, "ts": 8601412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8601585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237be0", "tid": 35568, "ts": 8601712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8601883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2396b0", "tid": 35568, "ts": 8602012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8602185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236fb0", "tid": 35568, "ts": 8602313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8602485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237e50", "tid": 35568, "ts": 8602612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8602783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238810", "tid": 35568, "ts": 8602911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237080", "tid": 35568, "ts": 8603210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237ff0", "tid": 35568, "ts": 8603511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237700", "tid": 35568, "ts": 8603811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8603986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2372f0", "tid": 35568, "ts": 8604114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8604286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237220", "tid": 35568, "ts": 8604414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8604585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2380c0", "tid": 35568, "ts": 8604714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8604887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238190", "tid": 35568, "ts": 8605014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8605187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238f60", "tid": 35568, "ts": 8605314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8605487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238a80", "tid": 35568, "ts": 8605615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8605787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2391d0", "tid": 35568, "ts": 8605914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239ac0", "tid": 35568, "ts": 8606213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239b90", "tid": 35568, "ts": 8606513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237f20", "tid": 35568, "ts": 8606813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8606984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237490", "tid": 35568, "ts": 8607111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8607283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237630", "tid": 35568, "ts": 8607411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8607584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239c60", "tid": 35568, "ts": 8607711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8607882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2378a0", "tid": 35568, "ts": 8608010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8608183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238260", "tid": 35568, "ts": 8608311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8608482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237a40", "tid": 35568, "ts": 8608610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8608783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236930", "tid": 35568, "ts": 8608911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2388e0", "tid": 35568, "ts": 8609212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237b10", "tid": 35568, "ts": 8609512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236a00", "tid": 35568, "ts": 8609813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8609985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238400", "tid": 35568, "ts": 8610113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8610285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238b50", "tid": 35568, "ts": 8610412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8610585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2384d0", "tid": 35568, "ts": 8610713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8610884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2389b0", "tid": 35568, "ts": 8611012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8611185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae236ad0", "tid": 35568, "ts": 8611313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8611485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237d80", "tid": 35568, "ts": 8611613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8611785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238dc0", "tid": 35568, "ts": 8611940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8612113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae237cb0", "tid": 35568, "ts": 8612242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8612414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2385a0", "tid": 35568, "ts": 8612542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8612714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238c20", "tid": 35568, "ts": 8612843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8613191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae238cf0", "tid": 35568, "ts": 8613325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8613504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239030", "tid": 35568, "ts": 8613635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8613817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2392a0", "tid": 35568, "ts": 8613957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8614130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b800", "tid": 35568, "ts": 8614259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8614432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cb80", "tid": 35568, "ts": 8614602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8614774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23afe0", "tid": 35568, "ts": 8614904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8615077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c500", "tid": 35568, "ts": 8615206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8615378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ae40", "tid": 35568, "ts": 8615507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8615710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c910", "tid": 35568, "ts": 8615930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8616153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ab00", "tid": 35568, "ts": 8616282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8616455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a140", "tid": 35568, "ts": 8616583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8616758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c290", "tid": 35568, "ts": 8616886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a210", "tid": 35568, "ts": 8617186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c430", "tid": 35568, "ts": 8617487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a960", "tid": 35568, "ts": 8617789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8617960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c5d0", "tid": 35568, "ts": 8618088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8618261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23aa30", "tid": 35568, "ts": 8618389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8618561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23abd0", "tid": 35568, "ts": 8618689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8618863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23aca0", "tid": 35568, "ts": 8618991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8619163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a480", "tid": 35568, "ts": 8619291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8619463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cd20", "tid": 35568, "ts": 8619592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8619765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b3f0", "tid": 35568, "ts": 8619893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a6f0", "tid": 35568, "ts": 8620193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bce0", "tid": 35568, "ts": 8620493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c770", "tid": 35568, "ts": 8620793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8620965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bdb0", "tid": 35568, "ts": 8621093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8621266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23be80", "tid": 35568, "ts": 8621394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8621568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ad70", "tid": 35568, "ts": 8621695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8621868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c6a0", "tid": 35568, "ts": 8621996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8622169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cec0", "tid": 35568, "ts": 8622364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8622538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c840", "tid": 35568, "ts": 8622666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8622839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a3b0", "tid": 35568, "ts": 8622967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8623141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bb40", "tid": 35568, "ts": 8623269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8623444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cc50", "tid": 35568, "ts": 8623573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8623747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c360", "tid": 35568, "ts": 8623875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bf50", "tid": 35568, "ts": 8624177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b590", "tid": 35568, "ts": 8624478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a550", "tid": 35568, "ts": 8624779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8624951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b0b0", "tid": 35568, "ts": 8625079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8625252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c9e0", "tid": 35568, "ts": 8625380, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8625553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c0f0", "tid": 35568, "ts": 8625681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8625854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b320", "tid": 35568, "ts": 8625982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8626167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cab0", "tid": 35568, "ts": 8626306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8626479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c020", "tid": 35568, "ts": 8626607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8626780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23af10", "tid": 35568, "ts": 8626908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23c1c0", "tid": 35568, "ts": 8627207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cdf0", "tid": 35568, "ts": 8627509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23cf90", "tid": 35568, "ts": 8627809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8627981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b8d0", "tid": 35568, "ts": 8628109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8628281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d060", "tid": 35568, "ts": 8628409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8628656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239d30", "tid": 35568, "ts": 8628789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8628962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b180", "tid": 35568, "ts": 8629092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8629265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239e00", "tid": 35568, "ts": 8629394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8629566, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23bc10", "tid": 35568, "ts": 8629694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8629867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239ed0", "tid": 35568, "ts": 8629995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8630168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae239fa0", "tid": 35568, "ts": 8630296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8630469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a070", "tid": 35568, "ts": 8630597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8630770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b250", "tid": 35568, "ts": 8630898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b4c0", "tid": 35568, "ts": 8631199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a2e0", "tid": 35568, "ts": 8631499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b9a0", "tid": 35568, "ts": 8631799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8631971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a620", "tid": 35568, "ts": 8632098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8632271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a7c0", "tid": 35568, "ts": 8632399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8632571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23a890", "tid": 35568, "ts": 8632701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8632874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b660", "tid": 35568, "ts": 8633002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8633174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23b730", "tid": 35568, "ts": 8633303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8633475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ba70", "tid": 35568, "ts": 8633603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8633776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e7f0", "tid": 35568, "ts": 8633904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f760", "tid": 35568, "ts": 8634205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23feb0", "tid": 35568, "ts": 8634506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f900", "tid": 35568, "ts": 8634807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8634979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240120", "tid": 35568, "ts": 8635107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8635279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2402c0", "tid": 35568, "ts": 8635407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8635580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f010", "tid": 35568, "ts": 8635707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8635881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e720", "tid": 35568, "ts": 8636009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8636181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240460", "tid": 35568, "ts": 8636310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8636482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e310", "tid": 35568, "ts": 8636609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8636782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e170", "tid": 35568, "ts": 8636909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d3a0", "tid": 35568, "ts": 8637210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e650", "tid": 35568, "ts": 8637511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240390", "tid": 35568, "ts": 8637813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8637986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e240", "tid": 35568, "ts": 8638114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8638286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ef40", "tid": 35568, "ts": 8638415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8638587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e3e0", "tid": 35568, "ts": 8638782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8638956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dfd0", "tid": 35568, "ts": 8639085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8639258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d950", "tid": 35568, "ts": 8639386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8639559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fb70", "tid": 35568, "ts": 8639688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8639861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240050", "tid": 35568, "ts": 8639989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8640161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e8c0", "tid": 35568, "ts": 8640289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8640461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f0e0", "tid": 35568, "ts": 8640589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8640762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fc40", "tid": 35568, "ts": 8640890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d540", "tid": 35568, "ts": 8641189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f830", "tid": 35568, "ts": 8641490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f1b0", "tid": 35568, "ts": 8641792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8641965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e990", "tid": 35568, "ts": 8642093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8642265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d130", "tid": 35568, "ts": 8642393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8642567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d200", "tid": 35568, "ts": 8642695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8642867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dbc0", "tid": 35568, "ts": 8642996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8643170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23daf0", "tid": 35568, "ts": 8643299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8643471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d7b0", "tid": 35568, "ts": 8643600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8643773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23da20", "tid": 35568, "ts": 8643901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8644074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f5c0", "tid": 35568, "ts": 8644244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8644417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dd60", "tid": 35568, "ts": 8644545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8644718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23eb30", "tid": 35568, "ts": 8644846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d880", "tid": 35568, "ts": 8645147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fd10", "tid": 35568, "ts": 8645446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ff80", "tid": 35568, "ts": 8645746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8645918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ec00", "tid": 35568, "ts": 8646046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8646218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23dc90", "tid": 35568, "ts": 8646347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8646519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d2d0", "tid": 35568, "ts": 8646662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8646835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e4b0", "tid": 35568, "ts": 8646964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8647137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f9d0", "tid": 35568, "ts": 8647266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8647438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23de30", "tid": 35568, "ts": 8647566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8647738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d6e0", "tid": 35568, "ts": 8647867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8648098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23fde0", "tid": 35568, "ts": 8648234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8648407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e580", "tid": 35568, "ts": 8648535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8648761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ecd0", "tid": 35568, "ts": 8648891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d470", "tid": 35568, "ts": 8649192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23df00", "tid": 35568, "ts": 8649493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ee70", "tid": 35568, "ts": 8649792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8649965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23faa0", "tid": 35568, "ts": 8650093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8650267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23ea60", "tid": 35568, "ts": 8650395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8650567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23d610", "tid": 35568, "ts": 8650695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8650867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f280", "tid": 35568, "ts": 8650996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8651169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23eda0", "tid": 35568, "ts": 8651297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8651468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f350", "tid": 35568, "ts": 8651596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8651769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23e0a0", "tid": 35568, "ts": 8651898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f420", "tid": 35568, "ts": 8652200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f4f0", "tid": 35568, "ts": 8652500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae23f690", "tid": 35568, "ts": 8652800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8652973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2401f0", "tid": 35568, "ts": 8653102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8653274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242b60", "tid": 35568, "ts": 8653402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8653574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241b20", "tid": 35568, "ts": 8653702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8653874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242750", "tid": 35568, "ts": 8654003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8654175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243450", "tid": 35568, "ts": 8654303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8654476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2407a0", "tid": 35568, "ts": 8654604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8654776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2417e0", "tid": 35568, "ts": 8654904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242f70", "tid": 35568, "ts": 8655204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241570", "tid": 35568, "ts": 8655505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655677, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242c30", "tid": 35568, "ts": 8655805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8655977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240870", "tid": 35568, "ts": 8656105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8656277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2428f0", "tid": 35568, "ts": 8656405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8656577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2429c0", "tid": 35568, "ts": 8656706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8656877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2424e0", "tid": 35568, "ts": 8657006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8657178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242ea0", "tid": 35568, "ts": 8657307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8657478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241160", "tid": 35568, "ts": 8657606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8657779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2436c0", "tid": 35568, "ts": 8657907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2425b0", "tid": 35568, "ts": 8658207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242680", "tid": 35568, "ts": 8658507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240bb0", "tid": 35568, "ts": 8658808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8658981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240c80", "tid": 35568, "ts": 8659108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8659280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241bf0", "tid": 35568, "ts": 8659408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8659581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243520", "tid": 35568, "ts": 8659709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8659959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241f30", "tid": 35568, "ts": 8660098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8660272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241cc0", "tid": 35568, "ts": 8660400, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8660572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2435f0", "tid": 35568, "ts": 8660701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8660873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2413d0", "tid": 35568, "ts": 8661001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8661172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240d50", "tid": 35568, "ts": 8661300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8661472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242d00", "tid": 35568, "ts": 8661601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8661773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243040", "tid": 35568, "ts": 8661901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243110", "tid": 35568, "ts": 8662201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2418b0", "tid": 35568, "ts": 8662501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240a10", "tid": 35568, "ts": 8662802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8662975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242000", "tid": 35568, "ts": 8663104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8663276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241d90", "tid": 35568, "ts": 8663403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8663576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2432b0", "tid": 35568, "ts": 8663704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8663876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241300", "tid": 35568, "ts": 8664005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8664177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241980", "tid": 35568, "ts": 8664305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8664478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242820", "tid": 35568, "ts": 8664607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8664779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240e20", "tid": 35568, "ts": 8664907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242a90", "tid": 35568, "ts": 8665207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2414a0", "tid": 35568, "ts": 8665508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241e60", "tid": 35568, "ts": 8665808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8665981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240ef0", "tid": 35568, "ts": 8666108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8666281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240fc0", "tid": 35568, "ts": 8666409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8666581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242dd0", "tid": 35568, "ts": 8666709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8666881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241090", "tid": 35568, "ts": 8667009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8667180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2431e0", "tid": 35568, "ts": 8667308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8667480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241640", "tid": 35568, "ts": 8667608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8667781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243380", "tid": 35568, "ts": 8667909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243790", "tid": 35568, "ts": 8668209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243860", "tid": 35568, "ts": 8668509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668682, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240530", "tid": 35568, "ts": 8668810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8668982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241230", "tid": 35568, "ts": 8669109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8669282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241710", "tid": 35568, "ts": 8669410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8669581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240600", "tid": 35568, "ts": 8669734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8669909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2420d0", "tid": 35568, "ts": 8670037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8670210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae241a50", "tid": 35568, "ts": 8670337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8670509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2421a0", "tid": 35568, "ts": 8670637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8670809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242270", "tid": 35568, "ts": 8670936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8671109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2406d0", "tid": 35568, "ts": 8671237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8671410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240940", "tid": 35568, "ts": 8671539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8671711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242340", "tid": 35568, "ts": 8671840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae242410", "tid": 35568, "ts": 8672140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae240ae0", "tid": 35568, "ts": 8672441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245740", "tid": 35568, "ts": 8672743, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8672916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2462a0", "tid": 35568, "ts": 8673044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8673218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245190", "tid": 35568, "ts": 8673347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8673519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246780", "tid": 35568, "ts": 8673647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8673820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246ac0", "tid": 35568, "ts": 8673947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8674119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244b10", "tid": 35568, "ts": 8674248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8674420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2458e0", "tid": 35568, "ts": 8674548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8674721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245e90", "tid": 35568, "ts": 8674848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8675021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245810", "tid": 35568, "ts": 8675149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8675320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245400", "tid": 35568, "ts": 8675547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8675857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243930", "tid": 35568, "ts": 8676050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8676284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245330", "tid": 35568, "ts": 8676492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8676707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246b90", "tid": 35568, "ts": 8676836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244630", "tid": 35568, "ts": 8677136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244490", "tid": 35568, "ts": 8677436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244ff0", "tid": 35568, "ts": 8677736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8677909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246920", "tid": 35568, "ts": 8678037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8678209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246c60", "tid": 35568, "ts": 8678337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8678510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243fb0", "tid": 35568, "ts": 8678638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8678811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245f60", "tid": 35568, "ts": 8678940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8679111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246370", "tid": 35568, "ts": 8679240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8679413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244d80", "tid": 35568, "ts": 8679543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8679715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2454d0", "tid": 35568, "ts": 8679843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244220", "tid": 35568, "ts": 8680145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2466b0", "tid": 35568, "ts": 8680444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246440", "tid": 35568, "ts": 8680745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8680916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245a80", "tid": 35568, "ts": 8681044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8681217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244970", "tid": 35568, "ts": 8681345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8681517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2450c0", "tid": 35568, "ts": 8681695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8681868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244080", "tid": 35568, "ts": 8681997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8682170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244150", "tid": 35568, "ts": 8682298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8682472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244f20", "tid": 35568, "ts": 8682600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8682772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246100", "tid": 35568, "ts": 8682901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2455a0", "tid": 35568, "ts": 8683201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243ee0", "tid": 35568, "ts": 8683501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246510", "tid": 35568, "ts": 8683802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8683973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244560", "tid": 35568, "ts": 8684101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8684274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243a00", "tid": 35568, "ts": 8684402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8684574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245260", "tid": 35568, "ts": 8684701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8684873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2442f0", "tid": 35568, "ts": 8685001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8685173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2443c0", "tid": 35568, "ts": 8685301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8685474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246850", "tid": 35568, "ts": 8685602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8685774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243ad0", "tid": 35568, "ts": 8685902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245670", "tid": 35568, "ts": 8686203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2459b0", "tid": 35568, "ts": 8686503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244a40", "tid": 35568, "ts": 8686804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8686976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245b50", "tid": 35568, "ts": 8687106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8687278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2469f0", "tid": 35568, "ts": 8687406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8687578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245c20", "tid": 35568, "ts": 8687706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8687878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244700", "tid": 35568, "ts": 8688006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8688179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2447d0", "tid": 35568, "ts": 8688308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8688481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243ba0", "tid": 35568, "ts": 8688608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8688780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243c70", "tid": 35568, "ts": 8688908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245cf0", "tid": 35568, "ts": 8689209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae245dc0", "tid": 35568, "ts": 8689508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246030", "tid": 35568, "ts": 8689808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8689980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2448a0", "tid": 35568, "ts": 8690109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8690281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2465e0", "tid": 35568, "ts": 8690410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8690582, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244be0", "tid": 35568, "ts": 8690710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8690883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2461d0", "tid": 35568, "ts": 8691035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8691225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244cb0", "tid": 35568, "ts": 8691354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8691527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243d40", "tid": 35568, "ts": 8691656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8691829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae244e50", "tid": 35568, "ts": 8691957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8692129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae243e10", "tid": 35568, "ts": 8692259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8692431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2473b0", "tid": 35568, "ts": 8692560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8692732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2483f0", "tid": 35568, "ts": 8692861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2499e0", "tid": 35568, "ts": 8693162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248f50", "tid": 35568, "ts": 8693463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249c50", "tid": 35568, "ts": 8693765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8693936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247b00", "tid": 35568, "ts": 8694064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8694237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249430", "tid": 35568, "ts": 8694366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8694538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249840", "tid": 35568, "ts": 8694689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8694861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2484c0", "tid": 35568, "ts": 8694989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8695161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249910", "tid": 35568, "ts": 8695288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8695461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249770", "tid": 35568, "ts": 8695590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8695763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249ec0", "tid": 35568, "ts": 8695891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247480", "tid": 35568, "ts": 8696192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247ca0", "tid": 35568, "ts": 8696492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2489a0", "tid": 35568, "ts": 8696793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8696966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249500", "tid": 35568, "ts": 8697094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8697266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249ab0", "tid": 35568, "ts": 8697395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8697568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247550", "tid": 35568, "ts": 8697696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8697868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248a70", "tid": 35568, "ts": 8697996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8698168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247890", "tid": 35568, "ts": 8698296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8698468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249d20", "tid": 35568, "ts": 8698597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8698769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249df0", "tid": 35568, "ts": 8698897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247620", "tid": 35568, "ts": 8699197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249f90", "tid": 35568, "ts": 8699499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246e00", "tid": 35568, "ts": 8699799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8699972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247bd0", "tid": 35568, "ts": 8700164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8700337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a060", "tid": 35568, "ts": 8700471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8700644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248180", "tid": 35568, "ts": 8700773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8700946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247070", "tid": 35568, "ts": 8701074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8701247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248250", "tid": 35568, "ts": 8701376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8701548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247d70", "tid": 35568, "ts": 8701677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8701849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248320", "tid": 35568, "ts": 8701977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8702151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248ce0", "tid": 35568, "ts": 8702280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8702453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248590", "tid": 35568, "ts": 8702582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8702754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248db0", "tid": 35568, "ts": 8702882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2495d0", "tid": 35568, "ts": 8703183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248b40", "tid": 35568, "ts": 8703483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2496a0", "tid": 35568, "ts": 8703782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8703955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249b80", "tid": 35568, "ts": 8704083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8704256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248c10", "tid": 35568, "ts": 8704384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8704556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246d30", "tid": 35568, "ts": 8704685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8704858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246ed0", "tid": 35568, "ts": 8704986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8705160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2477c0", "tid": 35568, "ts": 8705288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8705462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247210", "tid": 35568, "ts": 8705591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8705762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2476f0", "tid": 35568, "ts": 8705891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8706063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2472e0", "tid": 35568, "ts": 8706191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8706364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248660", "tid": 35568, "ts": 8706492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8706712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247960", "tid": 35568, "ts": 8706877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8707123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247e40", "tid": 35568, "ts": 8707252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8707425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae246fa0", "tid": 35568, "ts": 8707553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8707724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247a30", "tid": 35568, "ts": 8707852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8708023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247140", "tid": 35568, "ts": 8708279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8708508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247f10", "tid": 35568, "ts": 8708680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8708930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae247fe0", "tid": 35568, "ts": 8709086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8709258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2480b0", "tid": 35568, "ts": 8709386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8709558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248730", "tid": 35568, "ts": 8709686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8709858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248e80", "tid": 35568, "ts": 8710082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8710255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae248800", "tid": 35568, "ts": 8710383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8710555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2488d0", "tid": 35568, "ts": 8710683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8710856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249020", "tid": 35568, "ts": 8710984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8711157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2490f0", "tid": 35568, "ts": 8711286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8711458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2491c0", "tid": 35568, "ts": 8711587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8711760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249290", "tid": 35568, "ts": 8711888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae249360", "tid": 35568, "ts": 8712190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b990", "tid": 35568, "ts": 8712493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a950", "tid": 35568, "ts": 8712795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8712967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cde0", "tid": 35568, "ts": 8713207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8713380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bc00", "tid": 35568, "ts": 8713508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8713681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c1b0", "tid": 35568, "ts": 8713810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8713984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a130", "tid": 35568, "ts": 8714112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8714284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bcd0", "tid": 35568, "ts": 8714412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8714585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c280", "tid": 35568, "ts": 8714713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8714886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c830", "tid": 35568, "ts": 8715015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8715187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cf80", "tid": 35568, "ts": 8715314, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8715549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bda0", "tid": 35568, "ts": 8715685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8715858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a200", "tid": 35568, "ts": 8715986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8716159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a2d0", "tid": 35568, "ts": 8716287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8716460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b580", "tid": 35568, "ts": 8716589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8716762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ac90", "tid": 35568, "ts": 8716890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cd10", "tid": 35568, "ts": 8717221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b240", "tid": 35568, "ts": 8717520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24af00", "tid": 35568, "ts": 8717822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8717994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b650", "tid": 35568, "ts": 8718122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8718294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ba60", "tid": 35568, "ts": 8718423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8718595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b720", "tid": 35568, "ts": 8718723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8718895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a3a0", "tid": 35568, "ts": 8719023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8719226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cb70", "tid": 35568, "ts": 8719414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8719647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24be70", "tid": 35568, "ts": 8719838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8720081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a470", "tid": 35568, "ts": 8720257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8720519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bf40", "tid": 35568, "ts": 8720710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8720954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c900", "tid": 35568, "ts": 8721128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8721480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24afd0", "tid": 35568, "ts": 8721670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8721937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d050", "tid": 35568, "ts": 8722066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8722343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c010", "tid": 35568, "ts": 8722606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8722840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24aaf0", "tid": 35568, "ts": 8723030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8723205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24aa20", "tid": 35568, "ts": 8723334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8723506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ceb0", "tid": 35568, "ts": 8723634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8723806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c350", "tid": 35568, "ts": 8723935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8724107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c760", "tid": 35568, "ts": 8724236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8724409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c0e0", "tid": 35568, "ts": 8724537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8724710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b3e0", "tid": 35568, "ts": 8724838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24bb30", "tid": 35568, "ts": 8725139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d120", "tid": 35568, "ts": 8725439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b4b0", "tid": 35568, "ts": 8725740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8725913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ae30", "tid": 35568, "ts": 8726041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8726214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c420", "tid": 35568, "ts": 8726342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8726515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24abc0", "tid": 35568, "ts": 8726644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8726817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c4f0", "tid": 35568, "ts": 8726945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8727118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d1f0", "tid": 35568, "ts": 8727246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8727418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c5c0", "tid": 35568, "ts": 8727546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8727718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b7f0", "tid": 35568, "ts": 8727847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d2c0", "tid": 35568, "ts": 8728147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b0a0", "tid": 35568, "ts": 8728448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c690", "tid": 35568, "ts": 8728748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8728921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24c9d0", "tid": 35568, "ts": 8729048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8729221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d390", "tid": 35568, "ts": 8729348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8729520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ad60", "tid": 35568, "ts": 8729648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8729819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b170", "tid": 35568, "ts": 8729947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8730119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b310", "tid": 35568, "ts": 8730246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8730419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24b8c0", "tid": 35568, "ts": 8730547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8730719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24caa0", "tid": 35568, "ts": 8730847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24cc40", "tid": 35568, "ts": 8731147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d460", "tid": 35568, "ts": 8731447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a540", "tid": 35568, "ts": 8731746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8731919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a610", "tid": 35568, "ts": 8732047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8732219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a6e0", "tid": 35568, "ts": 8732348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8732520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a7b0", "tid": 35568, "ts": 8732648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8732821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24a880", "tid": 35568, "ts": 8732951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8733124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f0d0", "tid": 35568, "ts": 8733253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8733426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fdd0", "tid": 35568, "ts": 8733555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8733727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250380", "tid": 35568, "ts": 8733856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ff70", "tid": 35568, "ts": 8734157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e980", "tid": 35568, "ts": 8734458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f1a0", "tid": 35568, "ts": 8734758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8734930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d6d0", "tid": 35568, "ts": 8735059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8735232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f9c0", "tid": 35568, "ts": 8735360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8735532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e7e0", "tid": 35568, "ts": 8735660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8735833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24eb20", "tid": 35568, "ts": 8735961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8736134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250520", "tid": 35568, "ts": 8736262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8736436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fa90", "tid": 35568, "ts": 8736564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8736736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ef30", "tid": 35568, "ts": 8736864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8737036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fb60", "tid": 35568, "ts": 8737165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8737336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fc30", "tid": 35568, "ts": 8737465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8737638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250040", "tid": 35568, "ts": 8737765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dd50", "tid": 35568, "ts": 8738179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2501e0", "tid": 35568, "ts": 8738484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dbb0", "tid": 35568, "ts": 8738787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8738959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e8b0", "tid": 35568, "ts": 8739088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8739259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ebf0", "tid": 35568, "ts": 8739388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8739561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fd00", "tid": 35568, "ts": 8739689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8739861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ee60", "tid": 35568, "ts": 8739990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8740163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dfc0", "tid": 35568, "ts": 8740292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8740465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f5b0", "tid": 35568, "ts": 8740593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8740765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24fea0", "tid": 35568, "ts": 8740894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e570", "tid": 35568, "ts": 8741194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250450", "tid": 35568, "ts": 8741495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d940", "tid": 35568, "ts": 8741796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8741969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ed90", "tid": 35568, "ts": 8742097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8742270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250790", "tid": 35568, "ts": 8742397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8742570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f4e0", "tid": 35568, "ts": 8742699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8742871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f410", "tid": 35568, "ts": 8742999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8743171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ecc0", "tid": 35568, "ts": 8743300, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8743474, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250860", "tid": 35568, "ts": 8743602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8743774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f680", "tid": 35568, "ts": 8743901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e710", "tid": 35568, "ts": 8744201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2502b0", "tid": 35568, "ts": 8744501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f000", "tid": 35568, "ts": 8744801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8744974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d530", "tid": 35568, "ts": 8745103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8745276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f750", "tid": 35568, "ts": 8745404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8745577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250110", "tid": 35568, "ts": 8745705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8745877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e640", "tid": 35568, "ts": 8746005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8746178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f270", "tid": 35568, "ts": 8746306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8746478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f820", "tid": 35568, "ts": 8746606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8746778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2505f0", "tid": 35568, "ts": 8746906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2506c0", "tid": 35568, "ts": 8747207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f340", "tid": 35568, "ts": 8747508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24f8f0", "tid": 35568, "ts": 8747808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8747982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d600", "tid": 35568, "ts": 8748111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8748282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d7a0", "tid": 35568, "ts": 8748410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8748583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24d870", "tid": 35568, "ts": 8748711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8748884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24da10", "tid": 35568, "ts": 8749011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8749184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dae0", "tid": 35568, "ts": 8749313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8749485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e090", "tid": 35568, "ts": 8749613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8749785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24dc80", "tid": 35568, "ts": 8749970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8750145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24de20", "tid": 35568, "ts": 8750273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8750445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24def0", "tid": 35568, "ts": 8750573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8750746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e160", "tid": 35568, "ts": 8750874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e230", "tid": 35568, "ts": 8751176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e300", "tid": 35568, "ts": 8751477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e3d0", "tid": 35568, "ts": 8751778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8751951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24e4a0", "tid": 35568, "ts": 8752079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8752253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae24ea50", "tid": 35568, "ts": 8752381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8752554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2512f0", "tid": 35568, "ts": 8752682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8752854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2520c0", "tid": 35568, "ts": 8752983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8753156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252f60", "tid": 35568, "ts": 8753284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8753456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252260", "tid": 35568, "ts": 8753652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8753824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251e50", "tid": 35568, "ts": 8753952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8754124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252400", "tid": 35568, "ts": 8754252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8754425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253b90", "tid": 35568, "ts": 8754554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8754726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250a00", "tid": 35568, "ts": 8754854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253c60", "tid": 35568, "ts": 8755154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251ff0", "tid": 35568, "ts": 8755454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250930", "tid": 35568, "ts": 8755755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8755927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253100", "tid": 35568, "ts": 8756056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8756227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252190", "tid": 35568, "ts": 8756356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8756528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2524d0", "tid": 35568, "ts": 8756656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8756827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252dc0", "tid": 35568, "ts": 8756955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8757127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252330", "tid": 35568, "ts": 8757255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8757427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250ad0", "tid": 35568, "ts": 8757555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8757729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2536b0", "tid": 35568, "ts": 8757857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250ee0", "tid": 35568, "ts": 8758157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251700", "tid": 35568, "ts": 8758457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2518a0", "tid": 35568, "ts": 8758758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8758931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2517d0", "tid": 35568, "ts": 8759059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8759231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251d80", "tid": 35568, "ts": 8759359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8759530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2525a0", "tid": 35568, "ts": 8759658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8759830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252670", "tid": 35568, "ts": 8759959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8760129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2529b0", "tid": 35568, "ts": 8760258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8760431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252740", "tid": 35568, "ts": 8760559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8760732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2528e0", "tid": 35568, "ts": 8760860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253780", "tid": 35568, "ts": 8761162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253850", "tid": 35568, "ts": 8761462, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761635, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250d40", "tid": 35568, "ts": 8761763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8761936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253370", "tid": 35568, "ts": 8762064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8762237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251150", "tid": 35568, "ts": 8762366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8762538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251220", "tid": 35568, "ts": 8762666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8762839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250fb0", "tid": 35568, "ts": 8762966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8763140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251970", "tid": 35568, "ts": 8763268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8763440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251560", "tid": 35568, "ts": 8763569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8763741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253030", "tid": 35568, "ts": 8763869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251080", "tid": 35568, "ts": 8764170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253920", "tid": 35568, "ts": 8764471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251a40", "tid": 35568, "ts": 8764771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8764944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251f20", "tid": 35568, "ts": 8765072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8765244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252810", "tid": 35568, "ts": 8765372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8765545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250e10", "tid": 35568, "ts": 8765673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8765845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2513c0", "tid": 35568, "ts": 8765974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8766147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251b10", "tid": 35568, "ts": 8766275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8766446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251be0", "tid": 35568, "ts": 8766574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8766747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253ac0", "tid": 35568, "ts": 8766875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251490", "tid": 35568, "ts": 8767174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252a80", "tid": 35568, "ts": 8767475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252b50", "tid": 35568, "ts": 8767775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8767948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250ba0", "tid": 35568, "ts": 8768076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8768247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2531d0", "tid": 35568, "ts": 8768375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8768547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251630", "tid": 35568, "ts": 8768675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8768847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252e90", "tid": 35568, "ts": 8768975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8769197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae250c70", "tid": 35568, "ts": 8769389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8769562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae251cb0", "tid": 35568, "ts": 8769690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8769864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252c20", "tid": 35568, "ts": 8769993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8770165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae252cf0", "tid": 35568, "ts": 8770294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8770466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2532a0", "tid": 35568, "ts": 8770594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8770767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253440", "tid": 35568, "ts": 8770896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253510", "tid": 35568, "ts": 8771198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2535e0", "tid": 35568, "ts": 8771498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2539f0", "tid": 35568, "ts": 8771801, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8771974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2543b0", "tid": 35568, "ts": 8772102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8772275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254890", "tid": 35568, "ts": 8772404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8772576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256910", "tid": 35568, "ts": 8772704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8772877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254e40", "tid": 35568, "ts": 8773005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8773179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254620", "tid": 35568, "ts": 8773307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8773478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255250", "tid": 35568, "ts": 8773607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8773779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2561c0", "tid": 35568, "ts": 8773907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254d70", "tid": 35568, "ts": 8774208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254a30", "tid": 35568, "ts": 8774507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254ca0", "tid": 35568, "ts": 8774810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8774982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254960", "tid": 35568, "ts": 8775110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8775283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254b00", "tid": 35568, "ts": 8775411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8775583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2558d0", "tid": 35568, "ts": 8775712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8775884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255db0", "tid": 35568, "ts": 8776013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8776184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256430", "tid": 35568, "ts": 8776312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8776485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254bd0", "tid": 35568, "ts": 8776613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8776784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2569e0", "tid": 35568, "ts": 8776912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254f10", "tid": 35568, "ts": 8777214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254210", "tid": 35568, "ts": 8777515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254fe0", "tid": 35568, "ts": 8777815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8777987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256ab0", "tid": 35568, "ts": 8778115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8778288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255a70", "tid": 35568, "ts": 8778416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8778589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2550b0", "tid": 35568, "ts": 8778800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8778972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2560f0", "tid": 35568, "ts": 8779101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8779273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255b40", "tid": 35568, "ts": 8779402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8779574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253d30", "tid": 35568, "ts": 8779702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8779874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256b80", "tid": 35568, "ts": 8780002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8780175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256c50", "tid": 35568, "ts": 8780303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8780476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255180", "tid": 35568, "ts": 8780603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8780776, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255320", "tid": 35568, "ts": 8780904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8781076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255c10", "tid": 35568, "ts": 8781204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8781376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255e80", "tid": 35568, "ts": 8781535, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8781708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255f50", "tid": 35568, "ts": 8781838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256020", "tid": 35568, "ts": 8782139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256d20", "tid": 35568, "ts": 8782440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256770", "tid": 35568, "ts": 8782741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8782913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256f90", "tid": 35568, "ts": 8783042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8783262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254140", "tid": 35568, "ts": 8783391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8783564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256500", "tid": 35568, "ts": 8783692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8783865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2565d0", "tid": 35568, "ts": 8783993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8784166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2553f0", "tid": 35568, "ts": 8784294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8784467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256290", "tid": 35568, "ts": 8784595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8784807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255730", "tid": 35568, "ts": 8784975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8785185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2546f0", "tid": 35568, "ts": 8785353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8785588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254480", "tid": 35568, "ts": 8785749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8785947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2554c0", "tid": 35568, "ts": 8786098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8786294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2542e0", "tid": 35568, "ts": 8786493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8786667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255590", "tid": 35568, "ts": 8786818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8787057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2547c0", "tid": 35568, "ts": 8787237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8787437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255660", "tid": 35568, "ts": 8787566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8787739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255800", "tid": 35568, "ts": 8787867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257060", "tid": 35568, "ts": 8788169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae255ce0", "tid": 35568, "ts": 8788494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253e00", "tid": 35568, "ts": 8788797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8788970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256df0", "tid": 35568, "ts": 8789100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8789273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256360", "tid": 35568, "ts": 8789404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8789578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256ec0", "tid": 35568, "ts": 8789707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8789880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2566a0", "tid": 35568, "ts": 8790010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8790182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2559a0", "tid": 35568, "ts": 8790311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8790485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae256840", "tid": 35568, "ts": 8790614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8790788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253ed0", "tid": 35568, "ts": 8790917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae253fa0", "tid": 35568, "ts": 8791220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254070", "tid": 35568, "ts": 8791522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae254550", "tid": 35568, "ts": 8791826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8791999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a390", "tid": 35568, "ts": 8792129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8792304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257950", "tid": 35568, "ts": 8792434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8792607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257130", "tid": 35568, "ts": 8792737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8792911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258650", "tid": 35568, "ts": 8793040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8793213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258310", "tid": 35568, "ts": 8793343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8793594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257d60", "tid": 35568, "ts": 8793726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8793900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259760", "tid": 35568, "ts": 8794053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8794226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257200", "tid": 35568, "ts": 8794356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8794551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258c00", "tid": 35568, "ts": 8794695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8794879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2591b0", "tid": 35568, "ts": 8795009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8795225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257a20", "tid": 35568, "ts": 8795379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8795575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2576e0", "tid": 35568, "ts": 8795704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8795877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258720", "tid": 35568, "ts": 8796006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8796177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2587f0", "tid": 35568, "ts": 8796306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8796477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257af0", "tid": 35568, "ts": 8796608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8796781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258240", "tid": 35568, "ts": 8796910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259280", "tid": 35568, "ts": 8797211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a2c0", "tid": 35568, "ts": 8797511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259830", "tid": 35568, "ts": 8797811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8797984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258cd0", "tid": 35568, "ts": 8798113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8798285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2595c0", "tid": 35568, "ts": 8798414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8798588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257c90", "tid": 35568, "ts": 8798717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8798889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258e70", "tid": 35568, "ts": 8799118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8799292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2583e0", "tid": 35568, "ts": 8799421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8799592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2588c0", "tid": 35568, "ts": 8799721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8799892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2590e0", "tid": 35568, "ts": 8800021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8800194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259350", "tid": 35568, "ts": 8800323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8800598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2572d0", "tid": 35568, "ts": 8800728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8800901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259b70", "tid": 35568, "ts": 8801080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8801269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257bc0", "tid": 35568, "ts": 8801434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8801606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2573a0", "tid": 35568, "ts": 8801738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8801969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257e30", "tid": 35568, "ts": 8802102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8802274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257470", "tid": 35568, "ts": 8802404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8802603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257f00", "tid": 35568, "ts": 8802732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8802906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259d10", "tid": 35568, "ts": 8803034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8803207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258da0", "tid": 35568, "ts": 8803336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8803509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a460", "tid": 35568, "ts": 8803637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8803810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258990", "tid": 35568, "ts": 8803939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8804112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258a60", "tid": 35568, "ts": 8804240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8804413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258b30", "tid": 35568, "ts": 8804541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8804713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257540", "tid": 35568, "ts": 8804841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259de0", "tid": 35568, "ts": 8805143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2594f0", "tid": 35568, "ts": 8805445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258f40", "tid": 35568, "ts": 8805748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8805921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257fd0", "tid": 35568, "ts": 8806050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8806222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257610", "tid": 35568, "ts": 8806351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8806523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2580a0", "tid": 35568, "ts": 8806651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8806824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a1f0", "tid": 35568, "ts": 8806952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8807124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259010", "tid": 35568, "ts": 8807253, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8807426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258170", "tid": 35568, "ts": 8807555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8807728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259420", "tid": 35568, "ts": 8807858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2577b0", "tid": 35568, "ts": 8808161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259690", "tid": 35568, "ts": 8808461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259900", "tid": 35568, "ts": 8808761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8808933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2599d0", "tid": 35568, "ts": 8809062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8809235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a120", "tid": 35568, "ts": 8809365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8809537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259eb0", "tid": 35568, "ts": 8809666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8809838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a050", "tid": 35568, "ts": 8809967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8810139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259aa0", "tid": 35568, "ts": 8810268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8810442, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2584b0", "tid": 35568, "ts": 8810571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8810745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259c40", "tid": 35568, "ts": 8810874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae259f80", "tid": 35568, "ts": 8811176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae257880", "tid": 35568, "ts": 8811477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae258580", "tid": 35568, "ts": 8811779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8811951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ba50", "tid": 35568, "ts": 8812080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8812252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bb20", "tid": 35568, "ts": 8812382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8812554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b980", "tid": 35568, "ts": 8812683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8812856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25aa10", "tid": 35568, "ts": 8812985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8813158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bbf0", "tid": 35568, "ts": 8813286, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8813459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ac80", "tid": 35568, "ts": 8813588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8813761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d450", "tid": 35568, "ts": 8813889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8814062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25aef0", "tid": 35568, "ts": 8814228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8814401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b090", "tid": 35568, "ts": 8814530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8814703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cd00", "tid": 35568, "ts": 8814831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c340", "tid": 35568, "ts": 8815133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d860", "tid": 35568, "ts": 8815435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c410", "tid": 35568, "ts": 8815734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8815907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a6d0", "tid": 35568, "ts": 8816152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8816415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cdd0", "tid": 35568, "ts": 8816547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8816721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25abb0", "tid": 35568, "ts": 8816850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c680", "tid": 35568, "ts": 8817153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a600", "tid": 35568, "ts": 8817455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25afc0", "tid": 35568, "ts": 8817803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8817977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25aae0", "tid": 35568, "ts": 8818106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8818277, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c000", "tid": 35568, "ts": 8818406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8818580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a870", "tid": 35568, "ts": 8818708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8818880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b230", "tid": 35568, "ts": 8819009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8819180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b4a0", "tid": 35568, "ts": 8819309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8819481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b160", "tid": 35568, "ts": 8819611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8819782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bcc0", "tid": 35568, "ts": 8819911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c270", "tid": 35568, "ts": 8820213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b570", "tid": 35568, "ts": 8820515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bd90", "tid": 35568, "ts": 8820817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8820989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25be60", "tid": 35568, "ts": 8821117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8821290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cc30", "tid": 35568, "ts": 8821418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8821592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ae20", "tid": 35568, "ts": 8821720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8821893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d110", "tid": 35568, "ts": 8822022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8822194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b300", "tid": 35568, "ts": 8822323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8822495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b3d0", "tid": 35568, "ts": 8822624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8822797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cea0", "tid": 35568, "ts": 8822925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8823097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d5f0", "tid": 35568, "ts": 8823226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8823398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25bf30", "tid": 35568, "ts": 8823526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8823699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c4e0", "tid": 35568, "ts": 8823828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b640", "tid": 35568, "ts": 8824129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c0d0", "tid": 35568, "ts": 8824431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cf70", "tid": 35568, "ts": 8824732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8824904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a530", "tid": 35568, "ts": 8825033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8825207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d2b0", "tid": 35568, "ts": 8825335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8825507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d520", "tid": 35568, "ts": 8825635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8825808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a940", "tid": 35568, "ts": 8825936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8826108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25a7a0", "tid": 35568, "ts": 8826259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8826431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d1e0", "tid": 35568, "ts": 8826560, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8826733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d040", "tid": 35568, "ts": 8826862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d380", "tid": 35568, "ts": 8827163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c1a0", "tid": 35568, "ts": 8827465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d6c0", "tid": 35568, "ts": 8827767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8827939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b8b0", "tid": 35568, "ts": 8828067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8828241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c5b0", "tid": 35568, "ts": 8828369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8828541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ad50", "tid": 35568, "ts": 8828670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8828843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c750", "tid": 35568, "ts": 8828972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8829144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ca90", "tid": 35568, "ts": 8829272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8829445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d790", "tid": 35568, "ts": 8829575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8829748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b710", "tid": 35568, "ts": 8829876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25b7e0", "tid": 35568, "ts": 8830177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c820", "tid": 35568, "ts": 8830478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c8f0", "tid": 35568, "ts": 8830779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8830952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25c9c0", "tid": 35568, "ts": 8831081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8831253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25cb60", "tid": 35568, "ts": 8831381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8831553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260920", "tid": 35568, "ts": 8831740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8831969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ed80", "tid": 35568, "ts": 8832099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8832272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f5a0", "tid": 35568, "ts": 8832402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8832576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f670", "tid": 35568, "ts": 8832706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8832878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2606b0", "tid": 35568, "ts": 8833008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8833209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fb50", "tid": 35568, "ts": 8833339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8833513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f260", "tid": 35568, "ts": 8833643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8833817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e970", "tid": 35568, "ts": 8833949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8834122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ff60", "tid": 35568, "ts": 8834252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8834426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25da00", "tid": 35568, "ts": 8834555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8834727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fc20", "tid": 35568, "ts": 8834857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8835031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f330", "tid": 35568, "ts": 8835161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8835417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e560", "tid": 35568, "ts": 8835633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8835952, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e2f0", "tid": 35568, "ts": 8836169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8836456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25de10", "tid": 35568, "ts": 8836702, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8837035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f9b0", "tid": 35568, "ts": 8837208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8837524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fa80", "tid": 35568, "ts": 8837770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8838091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e7d0", "tid": 35568, "ts": 8838350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8838653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2602a0", "tid": 35568, "ts": 8838883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8839218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f740", "tid": 35568, "ts": 8839415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8839720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f810", "tid": 35568, "ts": 8839966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8840284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fdc0", "tid": 35568, "ts": 8840498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8840817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e8a0", "tid": 35568, "ts": 8841062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8841376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ebe0", "tid": 35568, "ts": 8841620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8841880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e150", "tid": 35568, "ts": 8842127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8842444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2605e0", "tid": 35568, "ts": 8842691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8843011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e220", "tid": 35568, "ts": 8843240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8843558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dee0", "tid": 35568, "ts": 8843803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8844139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260100", "tid": 35568, "ts": 8844353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8844685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dad0", "tid": 35568, "ts": 8844930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8845235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260440", "tid": 35568, "ts": 8845464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8845800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260370", "tid": 35568, "ts": 8846017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8846335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dba0", "tid": 35568, "ts": 8846581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8846869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e3c0", "tid": 35568, "ts": 8847115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8847412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ecb0", "tid": 35568, "ts": 8847627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8847960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e490", "tid": 35568, "ts": 8848205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8848447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ea40", "tid": 35568, "ts": 8848693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8848996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f8e0", "tid": 35568, "ts": 8849227, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8849400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fe90", "tid": 35568, "ts": 8849529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8849702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f0c0", "tid": 35568, "ts": 8849831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8850018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25eb10", "tid": 35568, "ts": 8850263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8850563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260030", "tid": 35568, "ts": 8850812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8851144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25fcf0", "tid": 35568, "ts": 8851361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8851696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2601d0", "tid": 35568, "ts": 8851940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8852258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dfb0", "tid": 35568, "ts": 8852387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8852560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e630", "tid": 35568, "ts": 8852775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8853064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ee50", "tid": 35568, "ts": 8853278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8853610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260510", "tid": 35568, "ts": 8853843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8854191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260b90", "tid": 35568, "ts": 8854434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8854708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25ef20", "tid": 35568, "ts": 8854940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8855113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260780", "tid": 35568, "ts": 8855327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8855574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260850", "tid": 35568, "ts": 8855819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8856122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2609f0", "tid": 35568, "ts": 8856322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8856657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f400", "tid": 35568, "ts": 8856904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8857252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260ac0", "tid": 35568, "ts": 8857467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8857727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25eff0", "tid": 35568, "ts": 8857957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8858290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260c60", "tid": 35568, "ts": 8858532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8858864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f190", "tid": 35568, "ts": 8859213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8859558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25d930", "tid": 35568, "ts": 8859807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8860140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dc70", "tid": 35568, "ts": 8860384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8860720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25f4d0", "tid": 35568, "ts": 8860965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8861314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e080", "tid": 35568, "ts": 8861530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8861789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25dd40", "tid": 35568, "ts": 8861977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8862181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae25e700", "tid": 35568, "ts": 8862427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8862771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262a70", "tid": 35568, "ts": 8863029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8863237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2624c0", "tid": 35568, "ts": 8863437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8863727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262660", "tid": 35568, "ts": 8863857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8864054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262250", "tid": 35568, "ts": 8864184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8864356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263c50", "tid": 35568, "ts": 8864485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8864657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261140", "tid": 35568, "ts": 8864870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262800", "tid": 35568, "ts": 8865173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261070", "tid": 35568, "ts": 8865475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261550", "tid": 35568, "ts": 8865776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8865949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263df0", "tid": 35568, "ts": 8866078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8866250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263430", "tid": 35568, "ts": 8866379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8866551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261620", "tid": 35568, "ts": 8866679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8866851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262320", "tid": 35568, "ts": 8866980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8867152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2616f0", "tid": 35568, "ts": 8867281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8867453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263ec0", "tid": 35568, "ts": 8867582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8867755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261ca0", "tid": 35568, "ts": 8867884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263500", "tid": 35568, "ts": 8868184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264060", "tid": 35568, "ts": 8868486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263290", "tid": 35568, "ts": 8868788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8868960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260ed0", "tid": 35568, "ts": 8869088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8869261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2628d0", "tid": 35568, "ts": 8869389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8869563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261210", "tid": 35568, "ts": 8869691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8869862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261f10", "tid": 35568, "ts": 8869992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8870164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2617c0", "tid": 35568, "ts": 8870293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8870465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263f90", "tid": 35568, "ts": 8870595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8870768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260fa0", "tid": 35568, "ts": 8870897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263360", "tid": 35568, "ts": 8871199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262b40", "tid": 35568, "ts": 8871501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262ce0", "tid": 35568, "ts": 8871803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8871976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262f50", "tid": 35568, "ts": 8872105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8872276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263ab0", "tid": 35568, "ts": 8872405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8872578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263910", "tid": 35568, "ts": 8872707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8872879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2623f0", "tid": 35568, "ts": 8873008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8873181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2635d0", "tid": 35568, "ts": 8873309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8873482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260d30", "tid": 35568, "ts": 8873610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8873783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262c10", "tid": 35568, "ts": 8873912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2636a0", "tid": 35568, "ts": 8874212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae260e00", "tid": 35568, "ts": 8874513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261fe0", "tid": 35568, "ts": 8874815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8874988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2631c0", "tid": 35568, "ts": 8875118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8875290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261960", "tid": 35568, "ts": 8875458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8875631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2612e0", "tid": 35568, "ts": 8875760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8875933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2629a0", "tid": 35568, "ts": 8876062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8876235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2613b0", "tid": 35568, "ts": 8876363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8876535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261a30", "tid": 35568, "ts": 8876664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8876837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2620b0", "tid": 35568, "ts": 8876965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8877136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262180", "tid": 35568, "ts": 8877265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8877440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263770", "tid": 35568, "ts": 8877568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8877782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261890", "tid": 35568, "ts": 8877912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8878084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261480", "tid": 35568, "ts": 8878213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8878385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263b80", "tid": 35568, "ts": 8878549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8878753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262590", "tid": 35568, "ts": 8878882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263840", "tid": 35568, "ts": 8879183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262db0", "tid": 35568, "ts": 8879484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2639e0", "tid": 35568, "ts": 8879784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8879957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261b00", "tid": 35568, "ts": 8880085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8880257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261bd0", "tid": 35568, "ts": 8880387, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8880559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263d20", "tid": 35568, "ts": 8880687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8880859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261d70", "tid": 35568, "ts": 8880988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8881160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae261e40", "tid": 35568, "ts": 8881289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8881462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262730", "tid": 35568, "ts": 8881590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8881763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae262e80", "tid": 35568, "ts": 8881891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae263020", "tid": 35568, "ts": 8882192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2630f0", "tid": 35568, "ts": 8882493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264540", "tid": 35568, "ts": 8882794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8882967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266eb0", "tid": 35568, "ts": 8883095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8883268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267050", "tid": 35568, "ts": 8883396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8883569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2642d0", "tid": 35568, "ts": 8883697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8883869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267120", "tid": 35568, "ts": 8883997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8884170, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264610", "tid": 35568, "ts": 8884298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8884471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264950", "tid": 35568, "ts": 8884599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8884772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264a20", "tid": 35568, "ts": 8884901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266de0", "tid": 35568, "ts": 8885201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266350", "tid": 35568, "ts": 8885502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2672c0", "tid": 35568, "ts": 8885803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8885975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2646e0", "tid": 35568, "ts": 8886104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8886276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267390", "tid": 35568, "ts": 8886405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8886578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264af0", "tid": 35568, "ts": 8886707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8886879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2647b0", "tid": 35568, "ts": 8887007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8887180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2671f0", "tid": 35568, "ts": 8887308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8887481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266690", "tid": 35568, "ts": 8887610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8887781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267460", "tid": 35568, "ts": 8887910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264e30", "tid": 35568, "ts": 8888209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266c40", "tid": 35568, "ts": 8888511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266d10", "tid": 35568, "ts": 8888811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8888984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2660e0", "tid": 35568, "ts": 8889113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8889286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266f80", "tid": 35568, "ts": 8889415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8889586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266830", "tid": 35568, "ts": 8889715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8889888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265170", "tid": 35568, "ts": 8890016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8890188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2653e0", "tid": 35568, "ts": 8890317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8890489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264130", "tid": 35568, "ts": 8890618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8890790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264200", "tid": 35568, "ts": 8890918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264fd0", "tid": 35568, "ts": 8891218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2654b0", "tid": 35568, "ts": 8891518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265580", "tid": 35568, "ts": 8891819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8891991, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2643a0", "tid": 35568, "ts": 8892119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8892291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264470", "tid": 35568, "ts": 8892420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8892592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264880", "tid": 35568, "ts": 8892720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8892892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266010", "tid": 35568, "ts": 8893020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8893192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264bc0", "tid": 35568, "ts": 8893321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8893493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266900", "tid": 35568, "ts": 8893635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8893808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234adea2bd0", "tid": 35568, "ts": 8893876, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 8894976, "pid": 35104, "args": { "Heap": { "SizeInBytes": 536870912, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x234ae265720", "tid": 35568, "ts": 8894991, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x234ae265720", "tid": 35568, "ts": 8895033, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 536870912, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264c90", "tid": 35568, "ts": 8895173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8895476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264d60", "tid": 35568, "ts": 8895620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8895795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2661b0", "tid": 35568, "ts": 8895924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8896111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266760", "tid": 35568, "ts": 8896240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8896414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2650a0", "tid": 35568, "ts": 8896543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8896717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266aa0", "tid": 35568, "ts": 8896847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae264f00", "tid": 35568, "ts": 8897149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265240", "tid": 35568, "ts": 8897451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266b70", "tid": 35568, "ts": 8897799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8897973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265310", "tid": 35568, "ts": 8898101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8898274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265650", "tid": 35568, "ts": 8898403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8898575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2657f0", "tid": 35568, "ts": 8898703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8898877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2658c0", "tid": 35568, "ts": 8899005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8899178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265990", "tid": 35568, "ts": 8899308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8899481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265a60", "tid": 35568, "ts": 8899672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8899846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265b30", "tid": 35568, "ts": 8899975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8900148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265c00", "tid": 35568, "ts": 8900277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8900449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265e70", "tid": 35568, "ts": 8900577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8900750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265cd0", "tid": 35568, "ts": 8900878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265da0", "tid": 35568, "ts": 8901180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae265f40", "tid": 35568, "ts": 8901481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266280", "tid": 35568, "ts": 8901782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8901954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae266420", "tid": 35568, "ts": 8902083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8902257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2664f0", "tid": 35568, "ts": 8902386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8902558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2665c0", "tid": 35568, "ts": 8902687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8902860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2688b0", "tid": 35568, "ts": 8902989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8903161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269b60", "tid": 35568, "ts": 8903290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8903461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268a50", "tid": 35568, "ts": 8903590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8903762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269ea0", "tid": 35568, "ts": 8903891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269750", "tid": 35568, "ts": 8904191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268090", "tid": 35568, "ts": 8904491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2699c0", "tid": 35568, "ts": 8904792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8904963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268160", "tid": 35568, "ts": 8905092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8905263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269c30", "tid": 35568, "ts": 8905392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8905565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268e60", "tid": 35568, "ts": 8905717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8905890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268f30", "tid": 35568, "ts": 8906019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8906191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267530", "tid": 35568, "ts": 8906320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8906493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269a90", "tid": 35568, "ts": 8906621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8906794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269dd0", "tid": 35568, "ts": 8906922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267fc0", "tid": 35568, "ts": 8907223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269f70", "tid": 35568, "ts": 8907524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269000", "tid": 35568, "ts": 8907826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8907997, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268230", "tid": 35568, "ts": 8908126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8908299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a040", "tid": 35568, "ts": 8908426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8908599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a450", "tid": 35568, "ts": 8908728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8908900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267940", "tid": 35568, "ts": 8909028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8909200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268bf0", "tid": 35568, "ts": 8909328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8909500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a520", "tid": 35568, "ts": 8909628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8909870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a380", "tid": 35568, "ts": 8910037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8910221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268980", "tid": 35568, "ts": 8910350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8910522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a110", "tid": 35568, "ts": 8910651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8910824, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268b20", "tid": 35568, "ts": 8910953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8911125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269d00", "tid": 35568, "ts": 8911254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8911427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a1e0", "tid": 35568, "ts": 8911555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8911728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a2b0", "tid": 35568, "ts": 8911857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912030, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268cc0", "tid": 35568, "ts": 8912159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2691a0", "tid": 35568, "ts": 8912460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a5f0", "tid": 35568, "ts": 8912761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8912934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268d90", "tid": 35568, "ts": 8913063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8913235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269270", "tid": 35568, "ts": 8913363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8913536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267600", "tid": 35568, "ts": 8913663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8913835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269340", "tid": 35568, "ts": 8913963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8914135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268300", "tid": 35568, "ts": 8914263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8914438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a6c0", "tid": 35568, "ts": 8914565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8914738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2690d0", "tid": 35568, "ts": 8914866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2683d0", "tid": 35568, "ts": 8915168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a790", "tid": 35568, "ts": 8915470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269410", "tid": 35568, "ts": 8915772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8915943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2687e0", "tid": 35568, "ts": 8916072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8916244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267ef0", "tid": 35568, "ts": 8916372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8916544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a860", "tid": 35568, "ts": 8916672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8916844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269820", "tid": 35568, "ts": 8916971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8917144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2676d0", "tid": 35568, "ts": 8917273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8917446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2684a0", "tid": 35568, "ts": 8917574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8917746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267c80", "tid": 35568, "ts": 8917874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2694e0", "tid": 35568, "ts": 8918175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2695b0", "tid": 35568, "ts": 8918475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae269680", "tid": 35568, "ts": 8918776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8918948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268710", "tid": 35568, "ts": 8919076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8919248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267d50", "tid": 35568, "ts": 8919376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8919549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2677a0", "tid": 35568, "ts": 8919678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8919850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267870", "tid": 35568, "ts": 8919979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8920150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267a10", "tid": 35568, "ts": 8920279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8920451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2698f0", "tid": 35568, "ts": 8920580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8920752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267ae0", "tid": 35568, "ts": 8920880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267bb0", "tid": 35568, "ts": 8921183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae267e20", "tid": 35568, "ts": 8921485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268570", "tid": 35568, "ts": 8921786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8921960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae268640", "tid": 35568, "ts": 8922087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8922260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d440", "tid": 35568, "ts": 8922388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8922560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b560", "tid": 35568, "ts": 8922688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8922860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dac0", "tid": 35568, "ts": 8922989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8923161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d030", "tid": 35568, "ts": 8923289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8923462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b700", "tid": 35568, "ts": 8923591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8923763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b630", "tid": 35568, "ts": 8923891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8924136, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cdc0", "tid": 35568, "ts": 8924270, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8924443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d2a0", "tid": 35568, "ts": 8924572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8924746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c400", "tid": 35568, "ts": 8924875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26db90", "tid": 35568, "ts": 8925177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dc60", "tid": 35568, "ts": 8925510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b150", "tid": 35568, "ts": 8925813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8925986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d5e0", "tid": 35568, "ts": 8926115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8926287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b8a0", "tid": 35568, "ts": 8926416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8926587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b7d0", "tid": 35568, "ts": 8926716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8926888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aad0", "tid": 35568, "ts": 8927016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8927190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ce90", "tid": 35568, "ts": 8927318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8927491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d100", "tid": 35568, "ts": 8927620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8927793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cc20", "tid": 35568, "ts": 8927922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aba0", "tid": 35568, "ts": 8928224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c5a0", "tid": 35568, "ts": 8928524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d510", "tid": 35568, "ts": 8928825, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8928998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b970", "tid": 35568, "ts": 8929126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8929298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b2f0", "tid": 35568, "ts": 8929426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8929598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cf60", "tid": 35568, "ts": 8929727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8929901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d1d0", "tid": 35568, "ts": 8930029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8930201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bbe0", "tid": 35568, "ts": 8930329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8930503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d370", "tid": 35568, "ts": 8930631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8930805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26a930", "tid": 35568, "ts": 8931031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8931204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aa00", "tid": 35568, "ts": 8931333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8931505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c9b0", "tid": 35568, "ts": 8931633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8931805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ba40", "tid": 35568, "ts": 8931935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8932109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bb10", "tid": 35568, "ts": 8932237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8932410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ac70", "tid": 35568, "ts": 8932538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8932710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bd80", "tid": 35568, "ts": 8932839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c670", "tid": 35568, "ts": 8933139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d9f0", "tid": 35568, "ts": 8933439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ad40", "tid": 35568, "ts": 8933739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8933911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ccf0", "tid": 35568, "ts": 8934039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8934211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d6b0", "tid": 35568, "ts": 8934339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8934511, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ae10", "tid": 35568, "ts": 8934640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8934813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26aee0", "tid": 35568, "ts": 8934942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8935113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c0c0", "tid": 35568, "ts": 8935243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8935416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d780", "tid": 35568, "ts": 8935545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8935716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bcb0", "tid": 35568, "ts": 8935844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26afb0", "tid": 35568, "ts": 8936146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ca80", "tid": 35568, "ts": 8936446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26cb50", "tid": 35568, "ts": 8936746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8936919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26be50", "tid": 35568, "ts": 8937047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8937219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bf20", "tid": 35568, "ts": 8937347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8937519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26bff0", "tid": 35568, "ts": 8937648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8937820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d850", "tid": 35568, "ts": 8937948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8938120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b080", "tid": 35568, "ts": 8938249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8938422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b220", "tid": 35568, "ts": 8938550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8938721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c740", "tid": 35568, "ts": 8938850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b3c0", "tid": 35568, "ts": 8939150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c190", "tid": 35568, "ts": 8939513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26d920", "tid": 35568, "ts": 8939814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8939987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26b490", "tid": 35568, "ts": 8940115, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8940287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c260", "tid": 35568, "ts": 8940416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8940589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c330", "tid": 35568, "ts": 8940717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8940890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c4d0", "tid": 35568, "ts": 8941068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8941283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c810", "tid": 35568, "ts": 8941415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8941589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26c8e0", "tid": 35568, "ts": 8941717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8941890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26eb00", "tid": 35568, "ts": 8942019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8942190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f3f0", "tid": 35568, "ts": 8942318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8942490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270290", "tid": 35568, "ts": 8942620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8942792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2706a0", "tid": 35568, "ts": 8942920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270770", "tid": 35568, "ts": 8943219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270360", "tid": 35568, "ts": 8943519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2709e0", "tid": 35568, "ts": 8943819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8943990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ebd0", "tid": 35568, "ts": 8944119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8944292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e210", "tid": 35568, "ts": 8944420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8944592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26de00", "tid": 35568, "ts": 8944721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8944893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270ab0", "tid": 35568, "ts": 8945022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8945194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e140", "tid": 35568, "ts": 8945322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8945494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270b80", "tid": 35568, "ts": 8945623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8945858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270840", "tid": 35568, "ts": 8945989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8946166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dd30", "tid": 35568, "ts": 8946295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8946476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2700f0", "tid": 35568, "ts": 8946615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8946789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ef10", "tid": 35568, "ts": 8946918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fb40", "tid": 35568, "ts": 8947219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fe80", "tid": 35568, "ts": 8947520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270430", "tid": 35568, "ts": 8947820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8947992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270c50", "tid": 35568, "ts": 8948121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8948295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ed70", "tid": 35568, "ts": 8948423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8948594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270910", "tid": 35568, "ts": 8948723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8948895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ded0", "tid": 35568, "ts": 8949023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8949195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26eca0", "tid": 35568, "ts": 8949325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8949497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f590", "tid": 35568, "ts": 8949626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8949799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270d20", "tid": 35568, "ts": 8949927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8950099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270df0", "tid": 35568, "ts": 8950228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8950441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e3b0", "tid": 35568, "ts": 8950570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8950742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270500", "tid": 35568, "ts": 8950870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f8d0", "tid": 35568, "ts": 8951170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26efe0", "tid": 35568, "ts": 8951471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ee40", "tid": 35568, "ts": 8951772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8951944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f660", "tid": 35568, "ts": 8952072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8952244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270ec0", "tid": 35568, "ts": 8952373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8952545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26dfa0", "tid": 35568, "ts": 8952674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8952847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fc10", "tid": 35568, "ts": 8952976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8953146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2705d0", "tid": 35568, "ts": 8953276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8953450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f800", "tid": 35568, "ts": 8953578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8953750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fce0", "tid": 35568, "ts": 8953878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f4c0", "tid": 35568, "ts": 8954179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e070", "tid": 35568, "ts": 8954480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e6f0", "tid": 35568, "ts": 8954782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8954955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e2e0", "tid": 35568, "ts": 8955083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8955255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f320", "tid": 35568, "ts": 8955384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8955555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e890", "tid": 35568, "ts": 8955684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8955856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e480", "tid": 35568, "ts": 8955986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8956159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e550", "tid": 35568, "ts": 8956287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8956459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e620", "tid": 35568, "ts": 8956589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8956800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f9a0", "tid": 35568, "ts": 8956928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8957100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f730", "tid": 35568, "ts": 8957228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8957400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e7c0", "tid": 35568, "ts": 8957529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8957701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26e960", "tid": 35568, "ts": 8957829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ea30", "tid": 35568, "ts": 8958130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f0b0", "tid": 35568, "ts": 8958430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f250", "tid": 35568, "ts": 8958731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8958903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fdb0", "tid": 35568, "ts": 8959032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8959204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26ff50", "tid": 35568, "ts": 8959333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8959505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26f180", "tid": 35568, "ts": 8959635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8959807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae26fa70", "tid": 35568, "ts": 8959935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8960107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae270020", "tid": 35568, "ts": 8960235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8960407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2701c0", "tid": 35568, "ts": 8960536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8960708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1280", "tid": 35568, "ts": 8960905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0990", "tid": 35568, "ts": 8961209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1900", "tid": 35568, "ts": 8961511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfbc0", "tid": 35568, "ts": 8961812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8961984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1690", "tid": 35568, "ts": 8962112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8962284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc19d0", "tid": 35568, "ts": 8962412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8962585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc07f0", "tid": 35568, "ts": 8962714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8962887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0720", "tid": 35568, "ts": 8963015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8963188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf610", "tid": 35568, "ts": 8963316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8963488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0c00", "tid": 35568, "ts": 8963617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8963789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0b30", "tid": 35568, "ts": 8963918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8964091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1aa0", "tid": 35568, "ts": 8964220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8964434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0a60", "tid": 35568, "ts": 8964564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8964736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1350", "tid": 35568, "ts": 8964865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1420", "tid": 35568, "ts": 8965166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc03e0", "tid": 35568, "ts": 8965466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2530", "tid": 35568, "ts": 8965767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8965940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2870", "tid": 35568, "ts": 8966069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8966240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0310", "tid": 35568, "ts": 8966369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8966541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1010", "tid": 35568, "ts": 8966670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8966842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0f40", "tid": 35568, "ts": 8966971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8967143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0cd0", "tid": 35568, "ts": 8967272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8967444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0da0", "tid": 35568, "ts": 8967572, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8967744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc21f0", "tid": 35568, "ts": 8967872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1c40", "tid": 35568, "ts": 8968173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1830", "tid": 35568, "ts": 8968474, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfa20", "tid": 35568, "ts": 8968775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8968947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1d10", "tid": 35568, "ts": 8969076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8969248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc22c0", "tid": 35568, "ts": 8969378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8969550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2120", "tid": 35568, "ts": 8969679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8969850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc14f0", "tid": 35568, "ts": 8969980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8970151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbff00", "tid": 35568, "ts": 8970280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8970452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0e70", "tid": 35568, "ts": 8970580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8970753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc10e0", "tid": 35568, "ts": 8970882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf540", "tid": 35568, "ts": 8971183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc15c0", "tid": 35568, "ts": 8971483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1760", "tid": 35568, "ts": 8971784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8971955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc11b0", "tid": 35568, "ts": 8972083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8972293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf6e0", "tid": 35568, "ts": 8972423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8972594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1b70", "tid": 35568, "ts": 8972722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8972895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1de0", "tid": 35568, "ts": 8973023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8973196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1eb0", "tid": 35568, "ts": 8973324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8973497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf7b0", "tid": 35568, "ts": 8973625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8973797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc1f80", "tid": 35568, "ts": 8973925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8974097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2050", "tid": 35568, "ts": 8974226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8974399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf880", "tid": 35568, "ts": 8974527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8974700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2390", "tid": 35568, "ts": 8974828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf950", "tid": 35568, "ts": 8975129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc26d0", "tid": 35568, "ts": 8975430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfc90", "tid": 35568, "ts": 8975731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8975902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2460", "tid": 35568, "ts": 8976031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8976203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2600", "tid": 35568, "ts": 8976332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8976505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc27a0", "tid": 35568, "ts": 8976633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8976804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfaf0", "tid": 35568, "ts": 8976932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8977104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfe30", "tid": 35568, "ts": 8977233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8977404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbfd60", "tid": 35568, "ts": 8977532, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8977704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbffd0", "tid": 35568, "ts": 8977832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc00a0", "tid": 35568, "ts": 8978135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0170", "tid": 35568, "ts": 8978435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc04b0", "tid": 35568, "ts": 8978737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8978908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0240", "tid": 35568, "ts": 8979037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8979209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0580", "tid": 35568, "ts": 8979338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8979510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc0650", "tid": 35568, "ts": 8979639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8979812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc08c0", "tid": 35568, "ts": 8979940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8980111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4000", "tid": 35568, "ts": 8980240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8980412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2bb0", "tid": 35568, "ts": 8980541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8980714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4f70", "tid": 35568, "ts": 8980842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4dd0", "tid": 35568, "ts": 8981141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2c80", "tid": 35568, "ts": 8981442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3980", "tid": 35568, "ts": 8981741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8981913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5520", "tid": 35568, "ts": 8982042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8982214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4ea0", "tid": 35568, "ts": 8982343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8982516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc52b0", "tid": 35568, "ts": 8982643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8982817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4410", "tid": 35568, "ts": 8982946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8983117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5040", "tid": 35568, "ts": 8983247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8983420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5450", "tid": 35568, "ts": 8983548, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8983721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc49c0", "tid": 35568, "ts": 8983850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2d50", "tid": 35568, "ts": 8984150, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5790", "tid": 35568, "ts": 8984451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2e20", "tid": 35568, "ts": 8984752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8984924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc56c0", "tid": 35568, "ts": 8985052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8985225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2ef0", "tid": 35568, "ts": 8985353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8985526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4a90", "tid": 35568, "ts": 8985655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8985828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5110", "tid": 35568, "ts": 8985957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8986128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc41a0", "tid": 35568, "ts": 8986257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8986429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc55f0", "tid": 35568, "ts": 8986620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8986793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2940", "tid": 35568, "ts": 8986921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8987094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5860", "tid": 35568, "ts": 8987223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8987395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4b60", "tid": 35568, "ts": 8987523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8987696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4c30", "tid": 35568, "ts": 8987824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2a10", "tid": 35568, "ts": 8988166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5930", "tid": 35568, "ts": 8988466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2ae0", "tid": 35568, "ts": 8988768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8988940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5380", "tid": 35568, "ts": 8989068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8989241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5a00", "tid": 35568, "ts": 8989369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8989542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5ad0", "tid": 35568, "ts": 8989671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8989842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc37e0", "tid": 35568, "ts": 8989971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8990144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc2fc0", "tid": 35568, "ts": 8990272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8990443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5ba0", "tid": 35568, "ts": 8990571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8990743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc51e0", "tid": 35568, "ts": 8990871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4d00", "tid": 35568, "ts": 8991172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3d90", "tid": 35568, "ts": 8991472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3f30", "tid": 35568, "ts": 8991798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8991971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5c70", "tid": 35568, "ts": 8992100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8992273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3a50", "tid": 35568, "ts": 8992401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8992574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3090", "tid": 35568, "ts": 8992703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8992876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3160", "tid": 35568, "ts": 8993004, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8993177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3b20", "tid": 35568, "ts": 8993305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8993478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3230", "tid": 35568, "ts": 8993606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8993778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3300", "tid": 35568, "ts": 8993907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8994078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3640", "tid": 35568, "ts": 8994207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8994379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3e60", "tid": 35568, "ts": 8994508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8994703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4340", "tid": 35568, "ts": 8994832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3bf0", "tid": 35568, "ts": 8995132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc40d0", "tid": 35568, "ts": 8995433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc33d0", "tid": 35568, "ts": 8995733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8995905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc34a0", "tid": 35568, "ts": 8996034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8996206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4270", "tid": 35568, "ts": 8996335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8996508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3570", "tid": 35568, "ts": 8996636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8996808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc45b0", "tid": 35568, "ts": 8996936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8997109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc44e0", "tid": 35568, "ts": 8997237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8997409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3710", "tid": 35568, "ts": 8997580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8997753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc38b0", "tid": 35568, "ts": 8997882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc3cc0", "tid": 35568, "ts": 8998183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4680", "tid": 35568, "ts": 8998483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4750", "tid": 35568, "ts": 8998784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8998957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc4820", "tid": 35568, "ts": 8999085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8999258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc48f0", "tid": 35568, "ts": 8999386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8999559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8440", "tid": 35568, "ts": 8999687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 8999858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8780", "tid": 35568, "ts": 9000042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9000215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7670", "tid": 35568, "ts": 9000344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9000516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc67d0", "tid": 35568, "ts": 9000644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9000816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7a80", "tid": 35568, "ts": 9000944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9001116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6a40", "tid": 35568, "ts": 9001246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9001417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6ff0", "tid": 35568, "ts": 9001545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9001717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9070", "tid": 35568, "ts": 9001845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8850", "tid": 35568, "ts": 9002146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7e90", "tid": 35568, "ts": 9002446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc70c0", "tid": 35568, "ts": 9002748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9002920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7b50", "tid": 35568, "ts": 9003049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9003220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6f20", "tid": 35568, "ts": 9003349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9003598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8030", "tid": 35568, "ts": 9003817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9004064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7330", "tid": 35568, "ts": 9004255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9004500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc79b0", "tid": 35568, "ts": 9004684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9004856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6080", "tid": 35568, "ts": 9004985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9005158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7c20", "tid": 35568, "ts": 9005287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9005461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7cf0", "tid": 35568, "ts": 9005589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9005761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc85e0", "tid": 35568, "ts": 9005890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5d40", "tid": 35568, "ts": 9006191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc86b0", "tid": 35568, "ts": 9006493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7190", "tid": 35568, "ts": 9006795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9006968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7740", "tid": 35568, "ts": 9007096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9007269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6700", "tid": 35568, "ts": 9007397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9007569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7dc0", "tid": 35568, "ts": 9007699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9007872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc82a0", "tid": 35568, "ts": 9008001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9008172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5ee0", "tid": 35568, "ts": 9008302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9008475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5e10", "tid": 35568, "ts": 9008605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9008778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8100", "tid": 35568, "ts": 9008907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6d80", "tid": 35568, "ts": 9009209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6150", "tid": 35568, "ts": 9009511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7f60", "tid": 35568, "ts": 9009812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9009984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8fa0", "tid": 35568, "ts": 9010113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9010287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6be0", "tid": 35568, "ts": 9010416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9010588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8d30", "tid": 35568, "ts": 9010717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9010889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc81d0", "tid": 35568, "ts": 9011018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9011190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8370", "tid": 35568, "ts": 9011318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9011491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8ed0", "tid": 35568, "ts": 9011619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9011792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc74d0", "tid": 35568, "ts": 9011920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8510", "tid": 35568, "ts": 9012222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8920", "tid": 35568, "ts": 9012523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc89f0", "tid": 35568, "ts": 9012824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9012996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8ac0", "tid": 35568, "ts": 9013125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9013297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8b90", "tid": 35568, "ts": 9013425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9013597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc75a0", "tid": 35568, "ts": 9013725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9013898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6220", "tid": 35568, "ts": 9014027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9014200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8c60", "tid": 35568, "ts": 9014329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9014501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc68a0", "tid": 35568, "ts": 9014630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9014803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc8e00", "tid": 35568, "ts": 9014931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9015103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc5fb0", "tid": 35568, "ts": 9015230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9015403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6970", "tid": 35568, "ts": 9015531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9015704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc62f0", "tid": 35568, "ts": 9015863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7260", "tid": 35568, "ts": 9016164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc63c0", "tid": 35568, "ts": 9016465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7810", "tid": 35568, "ts": 9016766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9016939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6490", "tid": 35568, "ts": 9017068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9017240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6560", "tid": 35568, "ts": 9017369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9017541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc78e0", "tid": 35568, "ts": 9017671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9017843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc7400", "tid": 35568, "ts": 9017972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9018145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6630", "tid": 35568, "ts": 9018274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9018446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6b10", "tid": 35568, "ts": 9018575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9018749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6cb0", "tid": 35568, "ts": 9018877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9019049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc6e50", "tid": 35568, "ts": 9019235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9019408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcae80", "tid": 35568, "ts": 9019537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9019709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9ca0", "tid": 35568, "ts": 9019837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca0b0", "tid": 35568, "ts": 9020138, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbec0", "tid": 35568, "ts": 9020439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca250", "tid": 35568, "ts": 9020741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9020913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc97c0", "tid": 35568, "ts": 9021043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9021215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca180", "tid": 35568, "ts": 9021344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9021516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb290", "tid": 35568, "ts": 9021644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9021858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca320", "tid": 35568, "ts": 9021989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9022162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbf90", "tid": 35568, "ts": 9022291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9022465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbb80", "tid": 35568, "ts": 9022594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9022768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbc50", "tid": 35568, "ts": 9022898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbdf0", "tid": 35568, "ts": 9023198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9550", "tid": 35568, "ts": 9023499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb1c0", "tid": 35568, "ts": 9023799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9023972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9480", "tid": 35568, "ts": 9024101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9024274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc060", "tid": 35568, "ts": 9024403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9024576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9620", "tid": 35568, "ts": 9024705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9024877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9890", "tid": 35568, "ts": 9025006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9025179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9140", "tid": 35568, "ts": 9025307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9025479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca730", "tid": 35568, "ts": 9025607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9025780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9f10", "tid": 35568, "ts": 9025909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9026082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb020", "tid": 35568, "ts": 9026210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9026408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca660", "tid": 35568, "ts": 9026538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9026710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb910", "tid": 35568, "ts": 9026839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcaf50", "tid": 35568, "ts": 9027141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc3a0", "tid": 35568, "ts": 9027442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb6a0", "tid": 35568, "ts": 9027744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9027916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca800", "tid": 35568, "ts": 9028045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9028217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9210", "tid": 35568, "ts": 9028346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9028519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcaa70", "tid": 35568, "ts": 9028647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9028820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc96f0", "tid": 35568, "ts": 9028949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9029121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca3f0", "tid": 35568, "ts": 9029250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9029421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9960", "tid": 35568, "ts": 9029549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9029722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc130", "tid": 35568, "ts": 9029851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb770", "tid": 35568, "ts": 9030153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca9a0", "tid": 35568, "ts": 9030454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcab40", "tid": 35568, "ts": 9030754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9030926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca4c0", "tid": 35568, "ts": 9031096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9031270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9b00", "tid": 35568, "ts": 9031399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9031572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcac10", "tid": 35568, "ts": 9031701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9031874, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc2d0", "tid": 35568, "ts": 9032003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9032176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9a30", "tid": 35568, "ts": 9032305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9032478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcace0", "tid": 35568, "ts": 9032607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9032779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb360", "tid": 35568, "ts": 9032908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbab0", "tid": 35568, "ts": 9033209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb5d0", "tid": 35568, "ts": 9033511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb500", "tid": 35568, "ts": 9033812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9033984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc200", "tid": 35568, "ts": 9034112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9034285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca590", "tid": 35568, "ts": 9034413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9034585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcbd20", "tid": 35568, "ts": 9034713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9034919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb0f0", "tid": 35568, "ts": 9035048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9035221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcadb0", "tid": 35568, "ts": 9035350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9035522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9fe0", "tid": 35568, "ts": 9035652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9035825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc470", "tid": 35568, "ts": 9035954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9036126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb840", "tid": 35568, "ts": 9036255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9036426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb430", "tid": 35568, "ts": 9036597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9036770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dca8d0", "tid": 35568, "ts": 9036899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcb9e0", "tid": 35568, "ts": 9037201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc92e0", "tid": 35568, "ts": 9037502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9bd0", "tid": 35568, "ts": 9037802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9037974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc93b0", "tid": 35568, "ts": 9038102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9038276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9d70", "tid": 35568, "ts": 9038405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9038577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dc9e40", "tid": 35568, "ts": 9038706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9038877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdf40", "tid": 35568, "ts": 9039006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9039178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf120", "tid": 35568, "ts": 9039307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9039480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce280", "tid": 35568, "ts": 9039609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9039781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd4b0", "tid": 35568, "ts": 9039910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf2c0", "tid": 35568, "ts": 9040211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dceeb0", "tid": 35568, "ts": 9040512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce830", "tid": 35568, "ts": 9040812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9040985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcede0", "tid": 35568, "ts": 9041114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9041285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccf00", "tid": 35568, "ts": 9041414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9041586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcde70", "tid": 35568, "ts": 9041715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9041887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf1f0", "tid": 35568, "ts": 9042017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9042189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccd60", "tid": 35568, "ts": 9042318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9042490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce1b0", "tid": 35568, "ts": 9042619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9042791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf530", "tid": 35568, "ts": 9042919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9043091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf870", "tid": 35568, "ts": 9403185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9403482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc7b0", "tid": 35568, "ts": 9403630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9403813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dced10", "tid": 35568, "ts": 9403950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9404131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccfd0", "tid": 35568, "ts": 9404266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9404447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc880", "tid": 35568, "ts": 9404591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9404766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd8c0", "tid": 35568, "ts": 9404896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdb30", "tid": 35568, "ts": 9405200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf6d0", "tid": 35568, "ts": 9405504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf7a0", "tid": 35568, "ts": 9405808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9405982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce5c0", "tid": 35568, "ts": 9406112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9406285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce690", "tid": 35568, "ts": 9406415, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9406587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd0a0", "tid": 35568, "ts": 9406717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9406889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc540", "tid": 35568, "ts": 9407019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9407191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce4f0", "tid": 35568, "ts": 9407322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9407495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcef80", "tid": 35568, "ts": 9407624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9407797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc950", "tid": 35568, "ts": 9407926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9408099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf050", "tid": 35568, "ts": 9408228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9408401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce420", "tid": 35568, "ts": 9408530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9408701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd170", "tid": 35568, "ts": 9408829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce0e0", "tid": 35568, "ts": 9409133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce760", "tid": 35568, "ts": 9409435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd990", "tid": 35568, "ts": 9409769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9409974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcc610", "tid": 35568, "ts": 9410103, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9410276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcca20", "tid": 35568, "ts": 9410406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9410579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccaf0", "tid": 35568, "ts": 9410708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9410881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dce900", "tid": 35568, "ts": 9411011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9411185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdc00", "tid": 35568, "ts": 9411316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9411491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dccbc0", "tid": 35568, "ts": 9411621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9411794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dceaa0", "tid": 35568, "ts": 9411923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9412096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf460", "tid": 35568, "ts": 9412226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9412399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd240", "tid": 35568, "ts": 9412528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9412702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd310", "tid": 35568, "ts": 9412832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd3e0", "tid": 35568, "ts": 9413133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd580", "tid": 35568, "ts": 9413435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcd650", "tid": 35568, "ts": 9413735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9413909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdcd0", "tid": 35568, "ts": 9414037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9414210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcdda0", "tid": 35568, "ts": 9414339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9414512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd07e0", "tid": 35568, "ts": 9414641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9414815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2790", "tid": 35568, "ts": 9414944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9415117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfae0", "tid": 35568, "ts": 9415246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9415419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1f70", "tid": 35568, "ts": 9415549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9415722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2930", "tid": 35568, "ts": 9415851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd18f0", "tid": 35568, "ts": 9416154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd15b0", "tid": 35568, "ts": 9416456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd11a0", "tid": 35568, "ts": 9416758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9416930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0160", "tid": 35568, "ts": 9417060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9417232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfc80", "tid": 35568, "ts": 9417362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9417536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd25f0", "tid": 35568, "ts": 9417665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9417839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0230", "tid": 35568, "ts": 9417970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9418144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfd50", "tid": 35568, "ts": 9418273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9418446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1000", "tid": 35568, "ts": 9418575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9418748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd10d0", "tid": 35568, "ts": 9418877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9419050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1ea0", "tid": 35568, "ts": 9419179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9419472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd03d0", "tid": 35568, "ts": 9419624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9419797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd04a0", "tid": 35568, "ts": 9419927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9420099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2a00", "tid": 35568, "ts": 9420228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9420400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd19c0", "tid": 35568, "ts": 9420529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9420703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd08b0", "tid": 35568, "ts": 9420831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2040", "tid": 35568, "ts": 9421135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1a90", "tid": 35568, "ts": 9421437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd22b0", "tid": 35568, "ts": 9421741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9421913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2ad0", "tid": 35568, "ts": 9422043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9422215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1750", "tid": 35568, "ts": 9422345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9422517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2ba0", "tid": 35568, "ts": 9422646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9422818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0300", "tid": 35568, "ts": 9422947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9423119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfe20", "tid": 35568, "ts": 9423249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9423421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0570", "tid": 35568, "ts": 9423550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9423722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2c70", "tid": 35568, "ts": 9423851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0b20", "tid": 35568, "ts": 9424153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0e60", "tid": 35568, "ts": 9424457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2860", "tid": 35568, "ts": 9424808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9424980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1680", "tid": 35568, "ts": 9425109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9425281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2450", "tid": 35568, "ts": 9425451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9425624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0090", "tid": 35568, "ts": 9425755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9425928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfa10", "tid": 35568, "ts": 9426058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9426229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1b60", "tid": 35568, "ts": 9426370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9426556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0980", "tid": 35568, "ts": 9426685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9426858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0640", "tid": 35568, "ts": 9426987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9427160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0bf0", "tid": 35568, "ts": 9427289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9427462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0cc0", "tid": 35568, "ts": 9427591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9427764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1c30", "tid": 35568, "ts": 9427894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9428066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1410", "tid": 35568, "ts": 9428195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9428369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0710", "tid": 35568, "ts": 9428525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9428699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfbb0", "tid": 35568, "ts": 9428828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcf940", "tid": 35568, "ts": 9429132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2110", "tid": 35568, "ts": 9429433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd21e0", "tid": 35568, "ts": 9429740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9429912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1270", "tid": 35568, "ts": 9430042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9430214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcfef0", "tid": 35568, "ts": 9430344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9430516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dcffc0", "tid": 35568, "ts": 9430645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9430819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0a50", "tid": 35568, "ts": 9430948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9431120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0d90", "tid": 35568, "ts": 9431249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9431421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd0f30", "tid": 35568, "ts": 9431550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9431723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2520", "tid": 35568, "ts": 9431852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1dd0", "tid": 35568, "ts": 9432152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2380", "tid": 35568, "ts": 9432455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1340", "tid": 35568, "ts": 9432755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9432926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd14e0", "tid": 35568, "ts": 9433057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9433228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1820", "tid": 35568, "ts": 9433357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9433530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd1d00", "tid": 35568, "ts": 9433659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9433831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd26c0", "tid": 35568, "ts": 9433960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9434133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3cb0", "tid": 35568, "ts": 9434269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9434441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3220", "tid": 35568, "ts": 9434570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9434742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5d30", "tid": 35568, "ts": 9434871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5b90", "tid": 35568, "ts": 9435172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4190", "tid": 35568, "ts": 9435472, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435644, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3560", "tid": 35568, "ts": 9435773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9435945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4400", "tid": 35568, "ts": 9436075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9436247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4b50", "tid": 35568, "ts": 9436376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9436548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd56b0", "tid": 35568, "ts": 9436678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9436849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4260", "tid": 35568, "ts": 9436979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9437151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5ed0", "tid": 35568, "ts": 9437280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9437453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4c20", "tid": 35568, "ts": 9437582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9437754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3f20", "tid": 35568, "ts": 9437884, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd37d0", "tid": 35568, "ts": 9438186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438359, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd48e0", "tid": 35568, "ts": 9438488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5e00", "tid": 35568, "ts": 9438792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9438965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd51d0", "tid": 35568, "ts": 9439094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9439267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2ee0", "tid": 35568, "ts": 9439396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9439569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3b10", "tid": 35568, "ts": 9439698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9439870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4330", "tid": 35568, "ts": 9439999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9440173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4810", "tid": 35568, "ts": 9440302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9440476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3150", "tid": 35568, "ts": 9440605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9440779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd32f0", "tid": 35568, "ts": 9440908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9441259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3ff0", "tid": 35568, "ts": 9441520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9441789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3490", "tid": 35568, "ts": 9441994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9442212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5fa0", "tid": 35568, "ts": 9442435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9442607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3700", "tid": 35568, "ts": 9442737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9442909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd38a0", "tid": 35568, "ts": 9443039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9443213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3630", "tid": 35568, "ts": 9443342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9443515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3970", "tid": 35568, "ts": 9443645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9443817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3080", "tid": 35568, "ts": 9443947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9444119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3a40", "tid": 35568, "ts": 9444248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9444421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2d40", "tid": 35568, "ts": 9444550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9444724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd33c0", "tid": 35568, "ts": 9444854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3be0", "tid": 35568, "ts": 9445156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd44d0", "tid": 35568, "ts": 9445459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3d80", "tid": 35568, "ts": 9445762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9445935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd3e50", "tid": 35568, "ts": 9446065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9446237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4cf0", "tid": 35568, "ts": 9446366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9446539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4dc0", "tid": 35568, "ts": 9446669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9446842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4e90", "tid": 35568, "ts": 9446971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9447144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4f60", "tid": 35568, "ts": 9447273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9447446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd45a0", "tid": 35568, "ts": 9447575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9447748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd40c0", "tid": 35568, "ts": 9447878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4670", "tid": 35568, "ts": 9448179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6070", "tid": 35568, "ts": 9448482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2e10", "tid": 35568, "ts": 9448784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9448958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5030", "tid": 35568, "ts": 9449087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9449259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5780", "tid": 35568, "ts": 9449388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9449561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4740", "tid": 35568, "ts": 9449689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9449862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5100", "tid": 35568, "ts": 9449991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9450163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd49b0", "tid": 35568, "ts": 9450293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9450466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd4a80", "tid": 35568, "ts": 9450594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9450767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd52a0", "tid": 35568, "ts": 9450897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5510", "tid": 35568, "ts": 9451198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5850", "tid": 35568, "ts": 9451501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd55e0", "tid": 35568, "ts": 9451803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9451975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5c60", "tid": 35568, "ts": 9452105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9452278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5370", "tid": 35568, "ts": 9452408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9452580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5440", "tid": 35568, "ts": 9452709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9452883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5920", "tid": 35568, "ts": 9453012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9453185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd59f0", "tid": 35568, "ts": 9453313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9453485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd5ac0", "tid": 35568, "ts": 9453614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9453810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd2fb0", "tid": 35568, "ts": 9453940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9454113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8020", "tid": 35568, "ts": 9454242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9454415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6620", "tid": 35568, "ts": 9454545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9454717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6960", "tid": 35568, "ts": 9454846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd86a0", "tid": 35568, "ts": 9455148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6140", "tid": 35568, "ts": 9455452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7590", "tid": 35568, "ts": 9455754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9455926, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7e80", "tid": 35568, "ts": 9456056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9456229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7660", "tid": 35568, "ts": 9456358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9456529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd85d0", "tid": 35568, "ts": 9456701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9456873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6f10", "tid": 35568, "ts": 9457002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9457175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6210", "tid": 35568, "ts": 9457305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9457478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8df0", "tid": 35568, "ts": 9457608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9457779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8360", "tid": 35568, "ts": 9457908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9458080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7ce0", "tid": 35568, "ts": 9458209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9458380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6a30", "tid": 35568, "ts": 9458527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9458700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8c50", "tid": 35568, "ts": 9458830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8910", "tid": 35568, "ts": 9459132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8500", "tid": 35568, "ts": 9459435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7730", "tid": 35568, "ts": 9459736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9459908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8430", "tid": 35568, "ts": 9460037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9460208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8ab0", "tid": 35568, "ts": 9460338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9460509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd62e0", "tid": 35568, "ts": 9460638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9460810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6890", "tid": 35568, "ts": 9460940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9461112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8d20", "tid": 35568, "ts": 9461241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9461413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd70b0", "tid": 35568, "ts": 9461543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9461715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd66f0", "tid": 35568, "ts": 9461844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8770", "tid": 35568, "ts": 9462144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9130", "tid": 35568, "ts": 9462445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7f50", "tid": 35568, "ts": 9462745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9462917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9470", "tid": 35568, "ts": 9463046, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9463219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd80f0", "tid": 35568, "ts": 9463347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9463519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6d70", "tid": 35568, "ts": 9463649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9463819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7800", "tid": 35568, "ts": 9463948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9464122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd73f0", "tid": 35568, "ts": 9464251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9464422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd81c0", "tid": 35568, "ts": 9464552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9464724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8b80", "tid": 35568, "ts": 9464854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7320", "tid": 35568, "ts": 9465155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd78d0", "tid": 35568, "ts": 9465456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6bd0", "tid": 35568, "ts": 9465758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9465930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8290", "tid": 35568, "ts": 9466059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9466231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8ec0", "tid": 35568, "ts": 9466360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9466532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8f90", "tid": 35568, "ts": 9466662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9466833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd63b0", "tid": 35568, "ts": 9466962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9467135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd79a0", "tid": 35568, "ts": 9467263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9467435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6480", "tid": 35568, "ts": 9467565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9467737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7a70", "tid": 35568, "ts": 9467865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468038, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9060", "tid": 35568, "ts": 9468167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468340, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd8840", "tid": 35568, "ts": 9468469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd89e0", "tid": 35568, "ts": 9468771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9468943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9200", "tid": 35568, "ts": 9469072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9469244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7db0", "tid": 35568, "ts": 9469373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9469546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd92d0", "tid": 35568, "ts": 9469674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9469846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6fe0", "tid": 35568, "ts": 9469975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9470147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7b40", "tid": 35568, "ts": 9470276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9470448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd93a0", "tid": 35568, "ts": 9470577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9470748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6550", "tid": 35568, "ts": 9470877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7c10", "tid": 35568, "ts": 9471179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd67c0", "tid": 35568, "ts": 9471481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6b00", "tid": 35568, "ts": 9471782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9471954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6ca0", "tid": 35568, "ts": 9472083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9472309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd6e40", "tid": 35568, "ts": 9472439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9472611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7180", "tid": 35568, "ts": 9472740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9472913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd7250", "tid": 35568, "ts": 9473042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9473216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd74c0", "tid": 35568, "ts": 9473344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9473518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda310", "tid": 35568, "ts": 9473647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9473820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc390", "tid": 35568, "ts": 9473949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9474122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc460", "tid": 35568, "ts": 9474251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9474423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc530", "tid": 35568, "ts": 9474552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9474723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9c90", "tid": 35568, "ts": 9474852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda3e0", "tid": 35568, "ts": 9475153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddab30", "tid": 35568, "ts": 9475455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda170", "tid": 35568, "ts": 9475757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9475929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddaa60", "tid": 35568, "ts": 9476059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9476231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9d60", "tid": 35568, "ts": 9476361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9476532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda4b0", "tid": 35568, "ts": 9476661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9476833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb830", "tid": 35568, "ts": 9476962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9477135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddac00", "tid": 35568, "ts": 9477264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9477437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbd10", "tid": 35568, "ts": 9477566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9477738, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc7a0", "tid": 35568, "ts": 9477867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddacd0", "tid": 35568, "ts": 9478171, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478344, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda580", "tid": 35568, "ts": 9478473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9950", "tid": 35568, "ts": 9478775, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9478948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9540", "tid": 35568, "ts": 9479076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9479249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda650", "tid": 35568, "ts": 9479378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9479550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda720", "tid": 35568, "ts": 9479679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9479851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc600", "tid": 35568, "ts": 9479980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9480153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb5c0", "tid": 35568, "ts": 9480282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9480455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb9d0", "tid": 35568, "ts": 9480584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9480756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb760", "tid": 35568, "ts": 9480885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481057, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb900", "tid": 35568, "ts": 9481187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc6d0", "tid": 35568, "ts": 9481489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481661, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbeb0", "tid": 35568, "ts": 9481791, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9481964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc870", "tid": 35568, "ts": 9482093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9482265, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbf80", "tid": 35568, "ts": 9482395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9482567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb350", "tid": 35568, "ts": 9482696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9482869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc050", "tid": 35568, "ts": 9482997, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9483169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9610", "tid": 35568, "ts": 9483299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9483471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9fd0", "tid": 35568, "ts": 9483600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9483772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd96e0", "tid": 35568, "ts": 9483901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddae70", "tid": 35568, "ts": 9484204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb4f0", "tid": 35568, "ts": 9484505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd97b0", "tid": 35568, "ts": 9484807, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9484978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb1b0", "tid": 35568, "ts": 9485107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9485278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9880", "tid": 35568, "ts": 9485408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9485581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb420", "tid": 35568, "ts": 9485710, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9485883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc120", "tid": 35568, "ts": 9486013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9486185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddada0", "tid": 35568, "ts": 9486327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9486500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9f00", "tid": 35568, "ts": 9486630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9486803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9a20", "tid": 35568, "ts": 9486933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9487105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbaa0", "tid": 35568, "ts": 9487235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9487408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddaf40", "tid": 35568, "ts": 9487537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9487711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb010", "tid": 35568, "ts": 9487880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc1f0", "tid": 35568, "ts": 9488184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb0e0", "tid": 35568, "ts": 9488484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb280", "tid": 35568, "ts": 9488786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9488959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddb690", "tid": 35568, "ts": 9489088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9489261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9af0", "tid": 35568, "ts": 9489391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9489563, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbde0", "tid": 35568, "ts": 9489693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9489866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbb70", "tid": 35568, "ts": 9489995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9490166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9bc0", "tid": 35568, "ts": 9490295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9490467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dd9e30", "tid": 35568, "ts": 9490596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9490768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc2c0", "tid": 35568, "ts": 9490897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda0a0", "tid": 35568, "ts": 9491200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda240", "tid": 35568, "ts": 9491501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda7f0", "tid": 35568, "ts": 9491826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9491998, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddbc40", "tid": 35568, "ts": 9492127, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9492300, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda8c0", "tid": 35568, "ts": 9492428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9492600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dda990", "tid": 35568, "ts": 9492728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9492900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd3d0", "tid": 35568, "ts": 9493029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9493203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde9c0", "tid": 35568, "ts": 9493331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9493504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddce20", "tid": 35568, "ts": 9493632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9493805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddea90", "tid": 35568, "ts": 9493934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9494107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde820", "tid": 35568, "ts": 9494236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9494408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd160", "tid": 35568, "ts": 9494549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9494733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf110", "tid": 35568, "ts": 9494862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfa00", "tid": 35568, "ts": 9495163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf930", "tid": 35568, "ts": 9495465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf790", "tid": 35568, "ts": 9495766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9495938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde4e0", "tid": 35568, "ts": 9496067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9496239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde750", "tid": 35568, "ts": 9496368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9496541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dded00", "tid": 35568, "ts": 9496669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9496842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcae0", "tid": 35568, "ts": 9496971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9497142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde0d0", "tid": 35568, "ts": 9497272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9497444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde680", "tid": 35568, "ts": 9497573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9497744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf450", "tid": 35568, "ts": 9497873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddbf0", "tid": 35568, "ts": 9498176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd090", "tid": 35568, "ts": 9498476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd4a0", "tid": 35568, "ts": 9498777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9498950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfad0", "tid": 35568, "ts": 9499083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9499254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddedd0", "tid": 35568, "ts": 9499384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9499557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcc80", "tid": 35568, "ts": 9499687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9499860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcef0", "tid": 35568, "ts": 9499989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9500161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde8f0", "tid": 35568, "ts": 9500291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9500464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde5b0", "tid": 35568, "ts": 9500593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9500765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddeea0", "tid": 35568, "ts": 9500894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf380", "tid": 35568, "ts": 9501196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf860", "tid": 35568, "ts": 9501498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddeb60", "tid": 35568, "ts": 9501799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9501971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddd90", "tid": 35568, "ts": 9502100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9502273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd230", "tid": 35568, "ts": 9502403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9502575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf520", "tid": 35568, "ts": 9502704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9502876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddec30", "tid": 35568, "ts": 9503005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9503178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf1e0", "tid": 35568, "ts": 9503307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9503516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddde60", "tid": 35568, "ts": 9503700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9503925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddef70", "tid": 35568, "ts": 9504055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9504226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf040", "tid": 35568, "ts": 9504356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9504528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd570", "tid": 35568, "ts": 9504658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9504831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf2b0", "tid": 35568, "ts": 9504960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9505132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd300", "tid": 35568, "ts": 9505261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9505433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf5f0", "tid": 35568, "ts": 9505562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9505735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddca10", "tid": 35568, "ts": 9505864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfba0", "tid": 35568, "ts": 9506167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddf6c0", "tid": 35568, "ts": 9506467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfc70", "tid": 35568, "ts": 9506770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9506942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddc940", "tid": 35568, "ts": 9507071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9507244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcbb0", "tid": 35568, "ts": 9507373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9507546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd640", "tid": 35568, "ts": 9507675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9507847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcd50", "tid": 35568, "ts": 9507976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9508150, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde410", "tid": 35568, "ts": 9508278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9508450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddcfc0", "tid": 35568, "ts": 9508578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9508751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddb20", "tid": 35568, "ts": 9508881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd710", "tid": 35568, "ts": 9509183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd7e0", "tid": 35568, "ts": 9509484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd8b0", "tid": 35568, "ts": 9509788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9509961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddd980", "tid": 35568, "ts": 9510091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9510263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddcc0", "tid": 35568, "ts": 9510392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9510564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddda50", "tid": 35568, "ts": 9510693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9510865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dddf30", "tid": 35568, "ts": 9510994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9511166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde000", "tid": 35568, "ts": 9511295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9511467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde1a0", "tid": 35568, "ts": 9511596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9511769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde270", "tid": 35568, "ts": 9511898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dde340", "tid": 35568, "ts": 9512199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de18e0", "tid": 35568, "ts": 9512501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2030", "tid": 35568, "ts": 9512803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9512976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0970", "tid": 35568, "ts": 9513104, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9513278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfd40", "tid": 35568, "ts": 9513406, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9513578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1dc0", "tid": 35568, "ts": 9513707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9513880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0cb0", "tid": 35568, "ts": 9514009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9514181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de07d0", "tid": 35568, "ts": 9514309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9514481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1330", "tid": 35568, "ts": 9514611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9514783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1400", "tid": 35568, "ts": 9514912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2d30", "tid": 35568, "ts": 9515214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de15a0", "tid": 35568, "ts": 9515516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2100", "tid": 35568, "ts": 9515817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9515990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0a40", "tid": 35568, "ts": 9516119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9516293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de21d0", "tid": 35568, "ts": 9516422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9516595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0560", "tid": 35568, "ts": 9516725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9516898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0700", "tid": 35568, "ts": 9517028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9517200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de19b0", "tid": 35568, "ts": 9517343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9517516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de22a0", "tid": 35568, "ts": 9517645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9517818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de03c0", "tid": 35568, "ts": 9517948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9518121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0be0", "tid": 35568, "ts": 9518251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9518424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0d80", "tid": 35568, "ts": 9518553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9518726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de25e0", "tid": 35568, "ts": 9518855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de26b0", "tid": 35568, "ts": 9519165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2e00", "tid": 35568, "ts": 9519466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2b90", "tid": 35568, "ts": 9519768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9519940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2780", "tid": 35568, "ts": 9520069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9520242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2850", "tid": 35568, "ts": 9520371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9520544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfee0", "tid": 35568, "ts": 9520673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9520845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2ed0", "tid": 35568, "ts": 9520974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9521146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0080", "tid": 35568, "ts": 9521275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9521447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2370", "tid": 35568, "ts": 9521583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9521757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1260", "tid": 35568, "ts": 9521887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0150", "tid": 35568, "ts": 9522187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0ff0", "tid": 35568, "ts": 9522490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0630", "tid": 35568, "ts": 9522792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9522966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2fa0", "tid": 35568, "ts": 9523094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9523267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1e90", "tid": 35568, "ts": 9523396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9523569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1190", "tid": 35568, "ts": 9523698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9523871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0e50", "tid": 35568, "ts": 9524001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9524174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1f60", "tid": 35568, "ts": 9524303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9524476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2c60", "tid": 35568, "ts": 9524605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9524799, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2920", "tid": 35568, "ts": 9524945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9525118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2440", "tid": 35568, "ts": 9525247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9525421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1cf0", "tid": 35568, "ts": 9525551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9525724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1670", "tid": 35568, "ts": 9525853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2510", "tid": 35568, "ts": 9526155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de29f0", "tid": 35568, "ts": 9526456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de08a0", "tid": 35568, "ts": 9526759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9526931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0490", "tid": 35568, "ts": 9527061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9527235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3070", "tid": 35568, "ts": 9527365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9527537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1740", "tid": 35568, "ts": 9527666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9527839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de2ac0", "tid": 35568, "ts": 9527968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9528140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddfe10", "tid": 35568, "ts": 9528268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9528439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0f20", "tid": 35568, "ts": 9528568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9528742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0b10", "tid": 35568, "ts": 9528871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9529043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de14d0", "tid": 35568, "ts": 9529173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9529345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ddffb0", "tid": 35568, "ts": 9529475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9529734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1a80", "tid": 35568, "ts": 9529892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de0220", "tid": 35568, "ts": 9530194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de02f0", "tid": 35568, "ts": 9530496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de10c0", "tid": 35568, "ts": 9530797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9530969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1b50", "tid": 35568, "ts": 9531098, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9531270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1810", "tid": 35568, "ts": 9531399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9531572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de1c20", "tid": 35568, "ts": 9531701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9531873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de48d0", "tid": 35568, "ts": 9532002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9532175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3890", "tid": 35568, "ts": 9532304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9532476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3550", "tid": 35568, "ts": 9532604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9532777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3bd0", "tid": 35568, "ts": 9532906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4ce0", "tid": 35568, "ts": 9533207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5430", "tid": 35568, "ts": 9533508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4db0", "tid": 35568, "ts": 9533810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9533983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de49a0", "tid": 35568, "ts": 9534112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9534285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de59e0", "tid": 35568, "ts": 9534414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9534587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de36f0", "tid": 35568, "ts": 9534754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9534962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4e80", "tid": 35568, "ts": 9535093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9535266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6130", "tid": 35568, "ts": 9535396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9535568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de50f0", "tid": 35568, "ts": 9535698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9535872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de43f0", "tid": 35568, "ts": 9536001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9536174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3960", "tid": 35568, "ts": 9536303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9536476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6200", "tid": 35568, "ts": 9536605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9536777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de62d0", "tid": 35568, "ts": 9536906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4320", "tid": 35568, "ts": 9537208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4f50", "tid": 35568, "ts": 9537511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4a70", "tid": 35568, "ts": 9537812, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9537985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de51c0", "tid": 35568, "ts": 9538114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9538288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5020", "tid": 35568, "ts": 9538417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9538590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5290", "tid": 35568, "ts": 9538719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9538891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de32e0", "tid": 35568, "ts": 9539021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9539194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5500", "tid": 35568, "ts": 9539323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9539496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de55d0", "tid": 35568, "ts": 9539624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9539796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de63a0", "tid": 35568, "ts": 9539926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9540099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5360", "tid": 35568, "ts": 9540228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9540400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3a30", "tid": 35568, "ts": 9540529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9540701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de56a0", "tid": 35568, "ts": 9540830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5770", "tid": 35568, "ts": 9541132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3b00", "tid": 35568, "ts": 9541434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5840", "tid": 35568, "ts": 9541735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9541907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3ca0", "tid": 35568, "ts": 9542036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9542207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5ab0", "tid": 35568, "ts": 9542337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9542510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5910", "tid": 35568, "ts": 9542639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9542812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de44c0", "tid": 35568, "ts": 9542942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9543114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5b80", "tid": 35568, "ts": 9543243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9543415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3d70", "tid": 35568, "ts": 9543546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9543718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5c50", "tid": 35568, "ts": 9543847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3e40", "tid": 35568, "ts": 9544148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4590", "tid": 35568, "ts": 9544450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544622, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5df0", "tid": 35568, "ts": 9544751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9544925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5ec0", "tid": 35568, "ts": 9545054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9545226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3f10", "tid": 35568, "ts": 9545356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9545528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3fe0", "tid": 35568, "ts": 9545657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9545828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3210", "tid": 35568, "ts": 9545958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9546131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5d20", "tid": 35568, "ts": 9546260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9546433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4660", "tid": 35568, "ts": 9546563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9546735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de5f90", "tid": 35568, "ts": 9546864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6060", "tid": 35568, "ts": 9547166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4b40", "tid": 35568, "ts": 9547465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de40b0", "tid": 35568, "ts": 9547767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9547940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3620", "tid": 35568, "ts": 9548070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9548242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de37c0", "tid": 35568, "ts": 9548371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9548544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6470", "tid": 35568, "ts": 9548673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9548845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3140", "tid": 35568, "ts": 9548975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9549147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de33b0", "tid": 35568, "ts": 9549275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9549447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de3480", "tid": 35568, "ts": 9549576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9549748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4180", "tid": 35568, "ts": 9549878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9550051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4250", "tid": 35568, "ts": 9550179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9550383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4730", "tid": 35568, "ts": 9550614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9550864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4800", "tid": 35568, "ts": 9551044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9551321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de4c10", "tid": 35568, "ts": 9551510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9551685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9460", "tid": 35568, "ts": 9551814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9551986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8eb0", "tid": 35568, "ts": 9552116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9552289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9870", "tid": 35568, "ts": 9552418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9552590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7da0", "tid": 35568, "ts": 9552719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9552892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7a60", "tid": 35568, "ts": 9553020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9553193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6fd0", "tid": 35568, "ts": 9553322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9553495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de80e0", "tid": 35568, "ts": 9553624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9553797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9600", "tid": 35568, "ts": 9553928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9554100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9530", "tid": 35568, "ts": 9554229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9554402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de81b0", "tid": 35568, "ts": 9554531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9554704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8830", "tid": 35568, "ts": 9554833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7310", "tid": 35568, "ts": 9555135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9390", "tid": 35568, "ts": 9555438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8350", "tid": 35568, "ts": 9555741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9555913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6bc0", "tid": 35568, "ts": 9556042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9556215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de96d0", "tid": 35568, "ts": 9556344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9556518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de85c0", "tid": 35568, "ts": 9556647, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9556819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8f80", "tid": 35568, "ts": 9556948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9557121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de89d0", "tid": 35568, "ts": 9557251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9557424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8280", "tid": 35568, "ts": 9557584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9557758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8690", "tid": 35568, "ts": 9557893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9120", "tid": 35568, "ts": 9558195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8420", "tid": 35568, "ts": 9558497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de97a0", "tid": 35568, "ts": 9558823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9558996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de84f0", "tid": 35568, "ts": 9559125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9559297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de67b0", "tid": 35568, "ts": 9559426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9559599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6540", "tid": 35568, "ts": 9559727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9559899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7720", "tid": 35568, "ts": 9560028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9560200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6610", "tid": 35568, "ts": 9560329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9560502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de77f0", "tid": 35568, "ts": 9560631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9560804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8760", "tid": 35568, "ts": 9560933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9561106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6a20", "tid": 35568, "ts": 9561235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9561408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7e70", "tid": 35568, "ts": 9561538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9561711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8900", "tid": 35568, "ts": 9561840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de66e0", "tid": 35568, "ts": 9562141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7f40", "tid": 35568, "ts": 9562443, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8010", "tid": 35568, "ts": 9562745, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9562918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6880", "tid": 35568, "ts": 9563047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9563219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6950", "tid": 35568, "ts": 9563348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9563520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8de0", "tid": 35568, "ts": 9563650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9563821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9050", "tid": 35568, "ts": 9563949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9564122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6d60", "tid": 35568, "ts": 9564251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9564423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de70a0", "tid": 35568, "ts": 9564552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9564725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de91f0", "tid": 35568, "ts": 9564854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8aa0", "tid": 35568, "ts": 9565156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7b30", "tid": 35568, "ts": 9565457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6e30", "tid": 35568, "ts": 9565757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9565930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de92c0", "tid": 35568, "ts": 9566121, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9566294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8b70", "tid": 35568, "ts": 9566422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9566594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6af0", "tid": 35568, "ts": 9566723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9566896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8c40", "tid": 35568, "ts": 9567025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9567197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7990", "tid": 35568, "ts": 9567326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9567498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de8d10", "tid": 35568, "ts": 9567627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9567800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de74b0", "tid": 35568, "ts": 9567929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9568101, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6c90", "tid": 35568, "ts": 9568230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9568402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de6f00", "tid": 35568, "ts": 9568534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9568707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7170", "tid": 35568, "ts": 9568836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7240", "tid": 35568, "ts": 9569137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7c00", "tid": 35568, "ts": 9569438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de73e0", "tid": 35568, "ts": 9569740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9569913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7580", "tid": 35568, "ts": 9570042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9570216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de78c0", "tid": 35568, "ts": 9570344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9570518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7650", "tid": 35568, "ts": 9570646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9570819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de7cd0", "tid": 35568, "ts": 9570948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9571120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debd00", "tid": 35568, "ts": 9571249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9571422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9c80", "tid": 35568, "ts": 9571551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9571723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea570", "tid": 35568, "ts": 9571853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deacc0", "tid": 35568, "ts": 9572155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb750", "tid": 35568, "ts": 9572457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debc30", "tid": 35568, "ts": 9572759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9572930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb680", "tid": 35568, "ts": 9573059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9573232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea7e0", "tid": 35568, "ts": 9573361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9573534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deae60", "tid": 35568, "ts": 9573663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9573835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb0d0", "tid": 35568, "ts": 9573964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9574137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea8b0", "tid": 35568, "ts": 9574266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9574439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9e20", "tid": 35568, "ts": 9574568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9574741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec860", "tid": 35568, "ts": 9574871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb4e0", "tid": 35568, "ts": 9575172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea980", "tid": 35568, "ts": 9575476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb820", "tid": 35568, "ts": 9575777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9575949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea3d0", "tid": 35568, "ts": 9576078, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9576250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb8f0", "tid": 35568, "ts": 9576379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9576552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb1a0", "tid": 35568, "ts": 9576681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9576853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deaa50", "tid": 35568, "ts": 9576982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9577154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9ef0", "tid": 35568, "ts": 9577283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9577455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debf70", "tid": 35568, "ts": 9577584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9577757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deabf0", "tid": 35568, "ts": 9577886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578058, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb5b0", "tid": 35568, "ts": 9578188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb9c0", "tid": 35568, "ts": 9578491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debdd0", "tid": 35568, "ts": 9578792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9578965, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deba90", "tid": 35568, "ts": 9579095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9579267, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea4a0", "tid": 35568, "ts": 9579397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9579570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deab20", "tid": 35568, "ts": 9579699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9579872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec930", "tid": 35568, "ts": 9580001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9580173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debb60", "tid": 35568, "ts": 9580302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9580476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea640", "tid": 35568, "ts": 9580607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9580778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea710", "tid": 35568, "ts": 9580909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9581081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5debea0", "tid": 35568, "ts": 9581211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9581384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb270", "tid": 35568, "ts": 9581513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9581722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb340", "tid": 35568, "ts": 9581852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dead90", "tid": 35568, "ts": 9582154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582327, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec040", "tid": 35568, "ts": 9582457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deaf30", "tid": 35568, "ts": 9582758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9582930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb410", "tid": 35568, "ts": 9583059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9583231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec110", "tid": 35568, "ts": 9583360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9583534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec1e0", "tid": 35568, "ts": 9583664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9583837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec2b0", "tid": 35568, "ts": 9583966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9584139, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deb000", "tid": 35568, "ts": 9584268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9584441, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec380", "tid": 35568, "ts": 9584570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9584742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9940", "tid": 35568, "ts": 9584872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec450", "tid": 35568, "ts": 9585174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9fc0", "tid": 35568, "ts": 9585475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea090", "tid": 35568, "ts": 9585777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9585948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea160", "tid": 35568, "ts": 9586077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9586249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec520", "tid": 35568, "ts": 9586378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9586549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec5f0", "tid": 35568, "ts": 9586678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9586850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9ae0", "tid": 35568, "ts": 9586980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9587152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec6c0", "tid": 35568, "ts": 9587282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9587454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dec790", "tid": 35568, "ts": 9587584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9587756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deca00", "tid": 35568, "ts": 9587886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decad0", "tid": 35568, "ts": 9588187, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decba0", "tid": 35568, "ts": 9588489, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea230", "tid": 35568, "ts": 9588790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9588962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decc70", "tid": 35568, "ts": 9589092, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9589264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9a10", "tid": 35568, "ts": 9589393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9589565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9bb0", "tid": 35568, "ts": 9589695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9589867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5de9d50", "tid": 35568, "ts": 9589996, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9590169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dea300", "tid": 35568, "ts": 9590298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9590472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee810", "tid": 35568, "ts": 9590601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9590774, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee8e0", "tid": 35568, "ts": 9590903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9591076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedff0", "tid": 35568, "ts": 9591205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9591377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deee90", "tid": 35568, "ts": 9591506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9591678, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def030", "tid": 35568, "ts": 9591827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee260", "tid": 35568, "ts": 9592129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dede50", "tid": 35568, "ts": 9592431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592603, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee330", "tid": 35568, "ts": 9592732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9592904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedf20", "tid": 35568, "ts": 9593033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9593205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded2f0", "tid": 35568, "ts": 9593334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9593506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded080", "tid": 35568, "ts": 9593635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9593807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decee0", "tid": 35568, "ts": 9593936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9594108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def100", "tid": 35568, "ts": 9594237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9594408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded630", "tid": 35568, "ts": 9594537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9594733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded700", "tid": 35568, "ts": 9594862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deedc0", "tid": 35568, "ts": 9595164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deecf0", "tid": 35568, "ts": 9595465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deeb50", "tid": 35568, "ts": 9595766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9595938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee9b0", "tid": 35568, "ts": 9596067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9596258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded150", "tid": 35568, "ts": 9596407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9596580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded970", "tid": 35568, "ts": 9596709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9596882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0070", "tid": 35568, "ts": 9597011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9597185, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee0c0", "tid": 35568, "ts": 9597409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9597584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded560", "tid": 35568, "ts": 9597715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9597887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded3c0", "tid": 35568, "ts": 9598017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9598189, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee190", "tid": 35568, "ts": 9598319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9598492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def440", "tid": 35568, "ts": 9598621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9598794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deea80", "tid": 35568, "ts": 9598923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9599096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded220", "tid": 35568, "ts": 9599225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9599398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee400", "tid": 35568, "ts": 9599528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9599701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def1d0", "tid": 35568, "ts": 9599831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee670", "tid": 35568, "ts": 9600133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded490", "tid": 35568, "ts": 9600434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deffa0", "tid": 35568, "ts": 9600737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9600909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee5a0", "tid": 35568, "ts": 9601040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9601213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedcb0", "tid": 35568, "ts": 9601343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9601515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def2a0", "tid": 35568, "ts": 9601644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9601817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deef60", "tid": 35568, "ts": 9601946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9602117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defd30", "tid": 35568, "ts": 9602247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9602419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deec20", "tid": 35568, "ts": 9602549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9602723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defe00", "tid": 35568, "ts": 9602853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def370", "tid": 35568, "ts": 9603156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee4d0", "tid": 35568, "ts": 9603458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dee740", "tid": 35568, "ts": 9603760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9603934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def510", "tid": 35568, "ts": 9604063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9604235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def5e0", "tid": 35568, "ts": 9604364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9604537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defed0", "tid": 35568, "ts": 9604666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9604839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def9f0", "tid": 35568, "ts": 9604969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9605141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded7d0", "tid": 35568, "ts": 9605271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9605444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def6b0", "tid": 35568, "ts": 9605573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9605745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5ded8a0", "tid": 35568, "ts": 9605874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def780", "tid": 35568, "ts": 9606176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def850", "tid": 35568, "ts": 9606478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5def920", "tid": 35568, "ts": 9606779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9606951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defac0", "tid": 35568, "ts": 9607081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9607254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5deda40", "tid": 35568, "ts": 9607384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9607557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defb90", "tid": 35568, "ts": 9607686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9607859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedb10", "tid": 35568, "ts": 9607988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9608160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5defc60", "tid": 35568, "ts": 9608289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9608461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedd80", "tid": 35568, "ts": 9608590, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9608763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decd40", "tid": 35568, "ts": 9608899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609072, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dece10", "tid": 35568, "ts": 9609201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5decfb0", "tid": 35568, "ts": 9609502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dedbe0", "tid": 35568, "ts": 9609805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9609977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1660", "tid": 35568, "ts": 9610107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9610280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1590", "tid": 35568, "ts": 9610410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9610583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1800", "tid": 35568, "ts": 9610712, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9610885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2f90", "tid": 35568, "ts": 9611014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9611188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1730", "tid": 35568, "ts": 9611317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9611489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df03b0", "tid": 35568, "ts": 9611619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9611791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df10b0", "tid": 35568, "ts": 9611920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9612092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3470", "tid": 35568, "ts": 9612221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9612394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1320", "tid": 35568, "ts": 9612523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9612696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df21c0", "tid": 35568, "ts": 9612833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df13f0", "tid": 35568, "ts": 9613135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613307, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2290", "tid": 35568, "ts": 9613436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0bd0", "tid": 35568, "ts": 9613738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9613911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df14c0", "tid": 35568, "ts": 9614040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9614212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0e40", "tid": 35568, "ts": 9614341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9614539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1180", "tid": 35568, "ts": 9614668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9614841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2ab0", "tid": 35568, "ts": 9614971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9615143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df18d0", "tid": 35568, "ts": 9615273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9615445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0f10", "tid": 35568, "ts": 9615574, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9615746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0890", "tid": 35568, "ts": 9615875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3060", "tid": 35568, "ts": 9616177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1ce0", "tid": 35568, "ts": 9616480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616653, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2770", "tid": 35568, "ts": 9616782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9616954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df29e0", "tid": 35568, "ts": 9617084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9617256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2360", "tid": 35568, "ts": 9617385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9617557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1250", "tid": 35568, "ts": 9617686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9617858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df32d0", "tid": 35568, "ts": 9617987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9618160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2df0", "tid": 35568, "ts": 9618289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9618461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0b00", "tid": 35568, "ts": 9618591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9618764, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2430", "tid": 35568, "ts": 9618893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0fe0", "tid": 35568, "ts": 9619194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0550", "tid": 35568, "ts": 9619498, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1e80", "tid": 35568, "ts": 9619799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9619972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df19a0", "tid": 35568, "ts": 9620101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9620274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0210", "tid": 35568, "ts": 9620403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9620575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df02e0", "tid": 35568, "ts": 9620705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9620878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2020", "tid": 35568, "ts": 9621008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9621180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0960", "tid": 35568, "ts": 9621309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9621482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2840", "tid": 35568, "ts": 9621612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9621785, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df07c0", "tid": 35568, "ts": 9621914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9622086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1c10", "tid": 35568, "ts": 9622216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9622388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0d70", "tid": 35568, "ts": 9622519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9622691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0480", "tid": 35568, "ts": 9622821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df25d0", "tid": 35568, "ts": 9623135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623311, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0a30", "tid": 35568, "ts": 9623442, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1a70", "tid": 35568, "ts": 9623763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9623935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df26a0", "tid": 35568, "ts": 9624065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9624237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1b40", "tid": 35568, "ts": 9624367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9624539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2910", "tid": 35568, "ts": 9624669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9624841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1db0", "tid": 35568, "ts": 9624971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9625162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df1f50", "tid": 35568, "ts": 9625292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9625464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3200", "tid": 35568, "ts": 9625593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9625766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0620", "tid": 35568, "ts": 9625894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9626067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df06f0", "tid": 35568, "ts": 9626196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9626368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df20f0", "tid": 35568, "ts": 9626524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9626697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2500", "tid": 35568, "ts": 9626827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0ca0", "tid": 35568, "ts": 9627129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3130", "tid": 35568, "ts": 9627430, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2b80", "tid": 35568, "ts": 9627733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9627906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2c50", "tid": 35568, "ts": 9628034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9628206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df0140", "tid": 35568, "ts": 9628336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9628573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df33a0", "tid": 35568, "ts": 9628703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9628875, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2d20", "tid": 35568, "ts": 9629005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9629178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df2ec0", "tid": 35568, "ts": 9629308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9629479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3fd0", "tid": 35568, "ts": 9629608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9629780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5420", "tid": 35568, "ts": 9629909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5690", "tid": 35568, "ts": 9630210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3e30", "tid": 35568, "ts": 9630513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3bc0", "tid": 35568, "ts": 9630816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9630990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df36e0", "tid": 35568, "ts": 9631119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9631291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5830", "tid": 35568, "ts": 9631420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9631594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3c90", "tid": 35568, "ts": 9631723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9631895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4cd0", "tid": 35568, "ts": 9632024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9632196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df62c0", "tid": 35568, "ts": 9632326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9632498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3540", "tid": 35568, "ts": 9632627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9632800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3d60", "tid": 35568, "ts": 9632930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9633102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df43e0", "tid": 35568, "ts": 9633233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9633404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df44b0", "tid": 35568, "ts": 9633534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9633706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5900", "tid": 35568, "ts": 9633835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6870", "tid": 35568, "ts": 9634136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df48c0", "tid": 35568, "ts": 9634437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6390", "tid": 35568, "ts": 9634738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9634911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6530", "tid": 35568, "ts": 9635040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9635213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df54f0", "tid": 35568, "ts": 9635342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9635514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3a20", "tid": 35568, "ts": 9635644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9635817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3f00", "tid": 35568, "ts": 9635946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9636118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3950", "tid": 35568, "ts": 9636247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9636420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3880", "tid": 35568, "ts": 9636550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9636723, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3610", "tid": 35568, "ts": 9636853, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4170", "tid": 35568, "ts": 9637156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df59d0", "tid": 35568, "ts": 9637461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df50e0", "tid": 35568, "ts": 9637764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9637935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4310", "tid": 35568, "ts": 9638065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9638237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4720", "tid": 35568, "ts": 9638367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9638540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6460", "tid": 35568, "ts": 9638669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9638842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df51b0", "tid": 35568, "ts": 9638971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9639143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df40a0", "tid": 35568, "ts": 9639273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9639446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5eb0", "tid": 35568, "ts": 9639575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9639747, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6600", "tid": 35568, "ts": 9639877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640049, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df66d0", "tid": 35568, "ts": 9640179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4da0", "tid": 35568, "ts": 9640479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4580", "tid": 35568, "ts": 9640782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9640954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5aa0", "tid": 35568, "ts": 9641083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9641256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df3af0", "tid": 35568, "ts": 9641385, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9641557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4240", "tid": 35568, "ts": 9641686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9641858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4650", "tid": 35568, "ts": 9641988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9642160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df47f0", "tid": 35568, "ts": 9642289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9642462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4a60", "tid": 35568, "ts": 9642591, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9642763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4990", "tid": 35568, "ts": 9642892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df55c0", "tid": 35568, "ts": 9643194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4b30", "tid": 35568, "ts": 9643497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643671, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5350", "tid": 35568, "ts": 9643800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9643973, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4c00", "tid": 35568, "ts": 9644169, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9644396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5f80", "tid": 35568, "ts": 9644529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9644702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df37b0", "tid": 35568, "ts": 9644833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5b70", "tid": 35568, "ts": 9645136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4e70", "tid": 35568, "ts": 9645439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df4f40", "tid": 35568, "ts": 9645742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9645914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5760", "tid": 35568, "ts": 9646045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9646218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5010", "tid": 35568, "ts": 9646348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9646520, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5280", "tid": 35568, "ts": 9646650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9646823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5c40", "tid": 35568, "ts": 9646953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9647126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5d10", "tid": 35568, "ts": 9647255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9647429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df5de0", "tid": 35568, "ts": 9647559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9647731, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6050", "tid": 35568, "ts": 9647861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648034, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6120", "tid": 35568, "ts": 9648163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df61f0", "tid": 35568, "ts": 9648467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df67a0", "tid": 35568, "ts": 9648768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9648941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9c70", "tid": 35568, "ts": 9649071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9649244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df73d0", "tid": 35568, "ts": 9649373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9649545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6c80", "tid": 35568, "ts": 9649675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9649847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df74a0", "tid": 35568, "ts": 9649976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9650148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6d50", "tid": 35568, "ts": 9650278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9650451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6e20", "tid": 35568, "ts": 9650580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9650754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9790", "tid": 35568, "ts": 9650883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df88f0", "tid": 35568, "ts": 9651185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df89c0", "tid": 35568, "ts": 9651487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9ba0", "tid": 35568, "ts": 9651788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9651960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9520", "tid": 35568, "ts": 9652090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9652262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df91e0", "tid": 35568, "ts": 9652392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9652564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8a90", "tid": 35568, "ts": 9652694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9652865, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8b60", "tid": 35568, "ts": 9652994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9653167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9930", "tid": 35568, "ts": 9653297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9653470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7090", "tid": 35568, "ts": 9653600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9653773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7230", "tid": 35568, "ts": 9653902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6ef0", "tid": 35568, "ts": 9654205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6a10", "tid": 35568, "ts": 9654506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9ad0", "tid": 35568, "ts": 9654809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9654981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7f30", "tid": 35568, "ts": 9655112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9655284, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8dd0", "tid": 35568, "ts": 9655413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9655586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6940", "tid": 35568, "ts": 9655716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9655890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df95f0", "tid": 35568, "ts": 9656020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9656193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7b20", "tid": 35568, "ts": 9656323, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9656496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7e60", "tid": 35568, "ts": 9656625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9656797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7570", "tid": 35568, "ts": 9656927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9657100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8000", "tid": 35568, "ts": 9657229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9657402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7640", "tid": 35568, "ts": 9657533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9657706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8c30", "tid": 35568, "ts": 9657835, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8ea0", "tid": 35568, "ts": 9658136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7710", "tid": 35568, "ts": 9658460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8750", "tid": 35568, "ts": 9658761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9658933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8d00", "tid": 35568, "ts": 9659062, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9659235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8f70", "tid": 35568, "ts": 9659364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9659538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9040", "tid": 35568, "ts": 9659667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9659958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df96c0", "tid": 35568, "ts": 9660128, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9660377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df77e0", "tid": 35568, "ts": 9660568, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9660807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9110", "tid": 35568, "ts": 9660937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9661110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df78b0", "tid": 35568, "ts": 9661239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9661412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6fc0", "tid": 35568, "ts": 9661541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9661715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6ae0", "tid": 35568, "ts": 9661844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df92b0", "tid": 35568, "ts": 9662146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df84e0", "tid": 35568, "ts": 9662448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7980", "tid": 35568, "ts": 9662750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9662922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7a50", "tid": 35568, "ts": 9663052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9663225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df80d0", "tid": 35568, "ts": 9663354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9663526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7bf0", "tid": 35568, "ts": 9663655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9663828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7cc0", "tid": 35568, "ts": 9663958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9664131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7d90", "tid": 35568, "ts": 9664261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9664432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df6bb0", "tid": 35568, "ts": 9664561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9664734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7160", "tid": 35568, "ts": 9664864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df7300", "tid": 35568, "ts": 9665167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9380", "tid": 35568, "ts": 9665469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df81a0", "tid": 35568, "ts": 9665770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9665942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9450", "tid": 35568, "ts": 9666072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9666243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8270", "tid": 35568, "ts": 9666373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9666547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8340", "tid": 35568, "ts": 9666676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9666849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8410", "tid": 35568, "ts": 9666979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9667152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df85b0", "tid": 35568, "ts": 9667281, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9667453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8680", "tid": 35568, "ts": 9667582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9667772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9860", "tid": 35568, "ts": 9667904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df8820", "tid": 35568, "ts": 9668206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9a00", "tid": 35568, "ts": 9668508, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc920", "tid": 35568, "ts": 9668810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9668982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfaff0", "tid": 35568, "ts": 9669112, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9669285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcac0", "tid": 35568, "ts": 9669414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9669586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb740", "tid": 35568, "ts": 9669717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9669889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9d40", "tid": 35568, "ts": 9670018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9670191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc9f0", "tid": 35568, "ts": 9670321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9670495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcc60", "tid": 35568, "ts": 9670625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9670797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfacb0", "tid": 35568, "ts": 9670926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9671100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc5e0", "tid": 35568, "ts": 9671229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9671401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb0c0", "tid": 35568, "ts": 9671531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9671703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc1d0", "tid": 35568, "ts": 9671833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfce00", "tid": 35568, "ts": 9672134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb330", "tid": 35568, "ts": 9672435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcb90", "tid": 35568, "ts": 9672736, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9672909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfcd30", "tid": 35568, "ts": 9673038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9673211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfaf20", "tid": 35568, "ts": 9673341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9673514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfba80", "tid": 35568, "ts": 9673643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9673816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbc20", "tid": 35568, "ts": 9673946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9674118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbb50", "tid": 35568, "ts": 9674248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9674420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbcf0", "tid": 35568, "ts": 9674549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9674722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb810", "tid": 35568, "ts": 9674852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbdc0", "tid": 35568, "ts": 9675155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfab10", "tid": 35568, "ts": 9675490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675663, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfced0", "tid": 35568, "ts": 9675793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9675964, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbe90", "tid": 35568, "ts": 9676094, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9676266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc370", "tid": 35568, "ts": 9676396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9676569, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9e10", "tid": 35568, "ts": 9676698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9676871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfbf60", "tid": 35568, "ts": 9677000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9677173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfabe0", "tid": 35568, "ts": 9677302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9677476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa7d0", "tid": 35568, "ts": 9677605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9677777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9ee0", "tid": 35568, "ts": 9677907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc030", "tid": 35568, "ts": 9678209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc100", "tid": 35568, "ts": 9678512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb260", "tid": 35568, "ts": 9678814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9678986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc2a0", "tid": 35568, "ts": 9679116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9679289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa150", "tid": 35568, "ts": 9679418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9679592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfae50", "tid": 35568, "ts": 9679723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9679896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb190", "tid": 35568, "ts": 9680026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9680198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb9b0", "tid": 35568, "ts": 9680329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9680501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb400", "tid": 35568, "ts": 9680631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9680804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc440", "tid": 35568, "ts": 9680933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9681105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb4d0", "tid": 35568, "ts": 9681235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9681408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfad80", "tid": 35568, "ts": 9681537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9681709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc780", "tid": 35568, "ts": 9681839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc850", "tid": 35568, "ts": 9682142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb5a0", "tid": 35568, "ts": 9682458, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682630, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc510", "tid": 35568, "ts": 9682761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9682935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa8a0", "tid": 35568, "ts": 9683065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9683237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb670", "tid": 35568, "ts": 9683367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9683539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5df9fb0", "tid": 35568, "ts": 9683668, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9683840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa080", "tid": 35568, "ts": 9683969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9684142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfaa40", "tid": 35568, "ts": 9684272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9684444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa220", "tid": 35568, "ts": 9684573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9684746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa2f0", "tid": 35568, "ts": 9684876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfc6b0", "tid": 35568, "ts": 9685178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685351, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa970", "tid": 35568, "ts": 9685481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfb8e0", "tid": 35568, "ts": 9685782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9685955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa3c0", "tid": 35568, "ts": 9686084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9686257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa490", "tid": 35568, "ts": 9686386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9686559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa560", "tid": 35568, "ts": 9686688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9686860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa630", "tid": 35568, "ts": 9686990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9687164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dfa700", "tid": 35568, "ts": 9687294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9687466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd180", "tid": 35568, "ts": 9687596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9687768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbeab0", "tid": 35568, "ts": 9687898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbeec0", "tid": 35568, "ts": 9688201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcfe0", "tid": 35568, "ts": 9688503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe500", "tid": 35568, "ts": 9688806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9688979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd800", "tid": 35568, "ts": 9689109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9689282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbec50", "tid": 35568, "ts": 9689412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9689586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd320", "tid": 35568, "ts": 9689716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9689888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc2e0", "tid": 35568, "ts": 9690018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9690191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc480", "tid": 35568, "ts": 9690320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9690493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbde80", "tid": 35568, "ts": 9690622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9690794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd3f0", "tid": 35568, "ts": 9690923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9691163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe1c0", "tid": 35568, "ts": 9691294, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9691466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe6a0", "tid": 35568, "ts": 9691596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9691768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbedf0", "tid": 35568, "ts": 9691897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692088, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc3b0", "tid": 35568, "ts": 9692218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbef90", "tid": 35568, "ts": 9692520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc550", "tid": 35568, "ts": 9692823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9692995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf130", "tid": 35568, "ts": 9693124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9693296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe770", "tid": 35568, "ts": 9693426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9693598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc6f0", "tid": 35568, "ts": 9693727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9693900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcd70", "tid": 35568, "ts": 9694029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9694201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc620", "tid": 35568, "ts": 9694331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9694504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf200", "tid": 35568, "ts": 9694656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9694830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcf10", "tid": 35568, "ts": 9694959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9695131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd4c0", "tid": 35568, "ts": 9695260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9695433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdf50", "tid": 35568, "ts": 9695563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9695735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf2d0", "tid": 35568, "ts": 9695863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe020", "tid": 35568, "ts": 9696172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd0b0", "tid": 35568, "ts": 9696475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbeb80", "tid": 35568, "ts": 9696777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9696951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf060", "tid": 35568, "ts": 9697080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9697253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd250", "tid": 35568, "ts": 9697383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9697557, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe5d0", "tid": 35568, "ts": 9697687, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9697859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe9e0", "tid": 35568, "ts": 9697989, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9698160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd590", "tid": 35568, "ts": 9698290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9698464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe840", "tid": 35568, "ts": 9698594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9698766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe910", "tid": 35568, "ts": 9698896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd660", "tid": 35568, "ts": 9699198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe360", "tid": 35568, "ts": 9699501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdc10", "tid": 35568, "ts": 9699802, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9699975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd730", "tid": 35568, "ts": 9700105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9700278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf470", "tid": 35568, "ts": 9700407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9700579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc7c0", "tid": 35568, "ts": 9700709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9700881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbf3a0", "tid": 35568, "ts": 9701010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9701183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd8d0", "tid": 35568, "ts": 9701312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9701485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe430", "tid": 35568, "ts": 9701613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9701787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe0f0", "tid": 35568, "ts": 9701916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc140", "tid": 35568, "ts": 9702218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702390, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbd9a0", "tid": 35568, "ts": 9702520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc210", "tid": 35568, "ts": 9702823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9702996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbda70", "tid": 35568, "ts": 9703126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9703299, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdce0", "tid": 35568, "ts": 9703429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9703602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc890", "tid": 35568, "ts": 9703732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9703904, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbc960", "tid": 35568, "ts": 9704034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9704207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbca30", "tid": 35568, "ts": 9704337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9704509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbe290", "tid": 35568, "ts": 9704640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9704812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcb00", "tid": 35568, "ts": 9704942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9705114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbed20", "tid": 35568, "ts": 9705244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9705417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbdb40", "tid": 35568, "ts": 9705547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9705720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcbd0", "tid": 35568, "ts": 9705850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbcca0", "tid": 35568, "ts": 9706151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbddb0", "tid": 35568, "ts": 9706466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234e5dbce40", "tid": 35568, "ts": 9706782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9706956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7660", "tid": 35568, "ts": 9707086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9707260, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7800", "tid": 35568, "ts": 9707389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9707562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7a70", "tid": 35568, "ts": 9707691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9707863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a6140", "tid": 35568, "ts": 9707992, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9708166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a7f50", "tid": 35568, "ts": 9708296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9708469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8770", "tid": 35568, "ts": 9708599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9708771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8020", "tid": 35568, "ts": 9708901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a8360", "tid": 35568, "ts": 9709203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709376, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a9130", "tid": 35568, "ts": 9709506, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4a92d0", "tid": 35568, "ts": 9709808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9709981, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234bf4abeb0", "tid": 35568, "ts": 9710110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9710283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae2669d0", "tid": 35568, "ts": 9710413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9710586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234acd67550", "tid": 35568, "ts": 9710716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9710889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129410", "tid": 35568, "ts": 9711032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9711206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128230", "tid": 35568, "ts": 9711335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9711509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1284a0", "tid": 35568, "ts": 9711639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9711812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127ef0", "tid": 35568, "ts": 9711942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9712115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129270", "tid": 35568, "ts": 9712244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9712418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a860", "tid": 35568, "ts": 9712547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9712720, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1276d0", "tid": 35568, "ts": 9712850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713022, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a6c0", "tid": 35568, "ts": 9713152, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713325, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128b20", "tid": 35568, "ts": 9713454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1294e0", "tid": 35568, "ts": 9713756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9713929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128e60", "tid": 35568, "ts": 9714059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9714231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129d00", "tid": 35568, "ts": 9714360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9714533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1290d0", "tid": 35568, "ts": 9714662, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9714833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129dd0", "tid": 35568, "ts": 9714963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9715135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1288b0", "tid": 35568, "ts": 9715265, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9715437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129340", "tid": 35568, "ts": 9715567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9715741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a380", "tid": 35568, "ts": 9715871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1295b0", "tid": 35568, "ts": 9716172, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128980", "tid": 35568, "ts": 9716475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716648, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129750", "tid": 35568, "ts": 9716778, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9716950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128300", "tid": 35568, "ts": 9717081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9717253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129ea0", "tid": 35568, "ts": 9717383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9717556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128a50", "tid": 35568, "ts": 9717686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9717858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128bf0", "tid": 35568, "ts": 9718005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9718177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129680", "tid": 35568, "ts": 9718307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9718480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1283d0", "tid": 35568, "ts": 9718610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9718783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127d50", "tid": 35568, "ts": 9718914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129f70", "tid": 35568, "ts": 9719216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129820", "tid": 35568, "ts": 9719519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1298f0", "tid": 35568, "ts": 9719821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9719994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127e20", "tid": 35568, "ts": 9720124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9720297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128cc0", "tid": 35568, "ts": 9720428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9720601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1299c0", "tid": 35568, "ts": 9720731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9720905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129a90", "tid": 35568, "ts": 9721034, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9721206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128570", "tid": 35568, "ts": 9721336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9721508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128d90", "tid": 35568, "ts": 9721639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9721812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a040", "tid": 35568, "ts": 9721958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9722131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1291a0", "tid": 35568, "ts": 9722329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9722503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128640", "tid": 35568, "ts": 9722633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9722805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129b60", "tid": 35568, "ts": 9722935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9723108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129c30", "tid": 35568, "ts": 9723238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9723411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a110", "tid": 35568, "ts": 9723541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9723713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127bb0", "tid": 35568, "ts": 9723842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a790", "tid": 35568, "ts": 9724144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a1e0", "tid": 35568, "ts": 9724447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128160", "tid": 35568, "ts": 9724750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9724961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a450", "tid": 35568, "ts": 9725191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9725364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128710", "tid": 35568, "ts": 9725514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9725686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127fc0", "tid": 35568, "ts": 9725816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9725988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1287e0", "tid": 35568, "ts": 9726118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9726291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128f30", "tid": 35568, "ts": 9726421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9726595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127a10", "tid": 35568, "ts": 9726725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9726897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae129000", "tid": 35568, "ts": 9727027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9727200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a2b0", "tid": 35568, "ts": 9727329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9727502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a520", "tid": 35568, "ts": 9727632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9727804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127530", "tid": 35568, "ts": 9727934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9728106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a5f0", "tid": 35568, "ts": 9728235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9728408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127600", "tid": 35568, "ts": 9728537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9728708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1277a0", "tid": 35568, "ts": 9728836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae128090", "tid": 35568, "ts": 9729139, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729312, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127870", "tid": 35568, "ts": 9729441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127940", "tid": 35568, "ts": 9729744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9729917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127ae0", "tid": 35568, "ts": 9730047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9730219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127c80", "tid": 35568, "ts": 9730349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9730521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bb10", "tid": 35568, "ts": 9730650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9730823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ac70", "tid": 35568, "ts": 9730953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9731125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cc20", "tid": 35568, "ts": 9731255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9731428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bcb0", "tid": 35568, "ts": 9731558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9731730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c9b0", "tid": 35568, "ts": 9731859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dc60", "tid": 35568, "ts": 9732161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b2f0", "tid": 35568, "ts": 9732464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d780", "tid": 35568, "ts": 9732766, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9732940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ad40", "tid": 35568, "ts": 9733070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9733242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d850", "tid": 35568, "ts": 9733371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9733545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d100", "tid": 35568, "ts": 9733674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9733848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c400", "tid": 35568, "ts": 9733977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9734149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b490", "tid": 35568, "ts": 9734279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9734451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d030", "tid": 35568, "ts": 9734581, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9734753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ccf0", "tid": 35568, "ts": 9734882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c4d0", "tid": 35568, "ts": 9735184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b3c0", "tid": 35568, "ts": 9735487, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12db90", "tid": 35568, "ts": 9735789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9735961, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cf60", "tid": 35568, "ts": 9736091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9736263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ce90", "tid": 35568, "ts": 9736394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9736567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c5a0", "tid": 35568, "ts": 9736697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9736870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b560", "tid": 35568, "ts": 9737000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9737173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cdc0", "tid": 35568, "ts": 9737302, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9737475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b220", "tid": 35568, "ts": 9737605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9737778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bbe0", "tid": 35568, "ts": 9738025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9738201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d1d0", "tid": 35568, "ts": 9738332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9738505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aee0", "tid": 35568, "ts": 9738635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9738809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b630", "tid": 35568, "ts": 9738938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9739112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d920", "tid": 35568, "ts": 9739241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9739431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ae10", "tid": 35568, "ts": 9739561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9739734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bd80", "tid": 35568, "ts": 9739863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d440", "tid": 35568, "ts": 9740166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c740", "tid": 35568, "ts": 9740468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c810", "tid": 35568, "ts": 9740770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9740943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b700", "tid": 35568, "ts": 9741073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9741245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b7d0", "tid": 35568, "ts": 9741375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9741548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12be50", "tid": 35568, "ts": 9741677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9741850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12a930", "tid": 35568, "ts": 9741979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9742153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d9f0", "tid": 35568, "ts": 9742282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9742455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dac0", "tid": 35568, "ts": 9742584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9742757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c8e0", "tid": 35568, "ts": 9742887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d6b0", "tid": 35568, "ts": 9743190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aa00", "tid": 35568, "ts": 9743491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c0c0", "tid": 35568, "ts": 9743794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9743967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d370", "tid": 35568, "ts": 9744097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9744270, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aad0", "tid": 35568, "ts": 9744399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9744572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12aba0", "tid": 35568, "ts": 9744700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9744872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12afb0", "tid": 35568, "ts": 9745002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9745174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b8a0", "tid": 35568, "ts": 9745303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9745475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b970", "tid": 35568, "ts": 9745604, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9745775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d2a0", "tid": 35568, "ts": 9745905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bf20", "tid": 35568, "ts": 9746206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b080", "tid": 35568, "ts": 9746509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12b150", "tid": 35568, "ts": 9746810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9746982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ba40", "tid": 35568, "ts": 9747111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9747285, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12bff0", "tid": 35568, "ts": 9747414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9747586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ca80", "tid": 35568, "ts": 9747715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9747888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c190", "tid": 35568, "ts": 9748017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9748188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c260", "tid": 35568, "ts": 9748318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9748490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c330", "tid": 35568, "ts": 9748619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9748792, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12cb50", "tid": 35568, "ts": 9748922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12c670", "tid": 35568, "ts": 9749223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d510", "tid": 35568, "ts": 9749524, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749695, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12d5e0", "tid": 35568, "ts": 9749824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9749995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ee40", "tid": 35568, "ts": 9750124, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9750297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f730", "tid": 35568, "ts": 9750427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9750599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e960", "tid": 35568, "ts": 9750730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9750901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130ab0", "tid": 35568, "ts": 9751031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9751205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f800", "tid": 35568, "ts": 9751334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9751508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130290", "tid": 35568, "ts": 9751637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9751810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e2e0", "tid": 35568, "ts": 9751939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9752111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130b80", "tid": 35568, "ts": 9752241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9752413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fdb0", "tid": 35568, "ts": 9752543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9752716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ea30", "tid": 35568, "ts": 9752846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9753018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131060", "tid": 35568, "ts": 9753148, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9753321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ded0", "tid": 35568, "ts": 9753496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9753767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f4c0", "tid": 35568, "ts": 9753901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f8d0", "tid": 35568, "ts": 9754205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12eca0", "tid": 35568, "ts": 9754507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f9a0", "tid": 35568, "ts": 9754811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9754984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fce0", "tid": 35568, "ts": 9755113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9755286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e070", "tid": 35568, "ts": 9755416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9755587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ebd0", "tid": 35568, "ts": 9755717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9755891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ed70", "tid": 35568, "ts": 9756020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9756194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e140", "tid": 35568, "ts": 9756324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9756497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130360", "tid": 35568, "ts": 9756627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9756800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130430", "tid": 35568, "ts": 9756929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9757102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dd30", "tid": 35568, "ts": 9757232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9757403, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fb40", "tid": 35568, "ts": 9757533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9757707, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12eb00", "tid": 35568, "ts": 9757837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1300f0", "tid": 35568, "ts": 9758137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ef10", "tid": 35568, "ts": 9758438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f0b0", "tid": 35568, "ts": 9758760, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9758935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12efe0", "tid": 35568, "ts": 9759065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9759237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e480", "tid": 35568, "ts": 9759367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9759539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130f90", "tid": 35568, "ts": 9759669, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9759841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f590", "tid": 35568, "ts": 9759970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9760142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f180", "tid": 35568, "ts": 9760271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9760443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fe80", "tid": 35568, "ts": 9760573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9760745, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12dfa0", "tid": 35568, "ts": 9760876, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761048, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e210", "tid": 35568, "ts": 9761178, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f660", "tid": 35568, "ts": 9761479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130500", "tid": 35568, "ts": 9761781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9761954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12ff50", "tid": 35568, "ts": 9762084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9762257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1301c0", "tid": 35568, "ts": 9762386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9762558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f250", "tid": 35568, "ts": 9762688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9762860, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1306a0", "tid": 35568, "ts": 9762990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9763162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f320", "tid": 35568, "ts": 9763291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9763464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1305d0", "tid": 35568, "ts": 9763594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9763766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e7c0", "tid": 35568, "ts": 9763895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130770", "tid": 35568, "ts": 9764196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12f3f0", "tid": 35568, "ts": 9764497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764670, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fa70", "tid": 35568, "ts": 9764799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9764971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130840", "tid": 35568, "ts": 9765100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9765273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12fc10", "tid": 35568, "ts": 9765403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9765575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e550", "tid": 35568, "ts": 9765704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9765877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130020", "tid": 35568, "ts": 9766007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9766180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130910", "tid": 35568, "ts": 9766309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9766481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1309e0", "tid": 35568, "ts": 9766610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9766784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130c50", "tid": 35568, "ts": 9766913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130d20", "tid": 35568, "ts": 9767217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130df0", "tid": 35568, "ts": 9767518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae130ec0", "tid": 35568, "ts": 9767821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9767993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12de00", "tid": 35568, "ts": 9768122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9768294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e3b0", "tid": 35568, "ts": 9768423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9768595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e620", "tid": 35568, "ts": 9768725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9768897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e6f0", "tid": 35568, "ts": 9769028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9769357, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae12e890", "tid": 35568, "ts": 9769565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9769786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134120", "tid": 35568, "ts": 9770009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9770182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131200", "tid": 35568, "ts": 9770313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9770486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133eb0", "tid": 35568, "ts": 9770617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9770789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1324b0", "tid": 35568, "ts": 9770920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9771093, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1342c0", "tid": 35568, "ts": 9771223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9771396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134390", "tid": 35568, "ts": 9771526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9771699, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131fd0", "tid": 35568, "ts": 9771830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131130", "tid": 35568, "ts": 9772132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131af0", "tid": 35568, "ts": 9772434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131c90", "tid": 35568, "ts": 9772738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9772912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132f40", "tid": 35568, "ts": 9773041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9773213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132a60", "tid": 35568, "ts": 9773343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9773516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133900", "tid": 35568, "ts": 9773646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9773820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132240", "tid": 35568, "ts": 9773950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9774122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133830", "tid": 35568, "ts": 9774252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9774424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132cd0", "tid": 35568, "ts": 9774554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9774727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1339d0", "tid": 35568, "ts": 9774857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132b30", "tid": 35568, "ts": 9775160, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133d10", "tid": 35568, "ts": 9775464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132580", "tid": 35568, "ts": 9775767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9775940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1334f0", "tid": 35568, "ts": 9776070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9776243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133f80", "tid": 35568, "ts": 9776435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9776608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131950", "tid": 35568, "ts": 9776738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9776911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133aa0", "tid": 35568, "ts": 9777042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9777215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131a20", "tid": 35568, "ts": 9777344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9777516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132170", "tid": 35568, "ts": 9777646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9777819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133b70", "tid": 35568, "ts": 9777948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9778121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133420", "tid": 35568, "ts": 9778251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9778424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132c00", "tid": 35568, "ts": 9778553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9778725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1323e0", "tid": 35568, "ts": 9778855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133690", "tid": 35568, "ts": 9779156, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133c40", "tid": 35568, "ts": 9779460, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131e30", "tid": 35568, "ts": 9779762, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9779934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1320a0", "tid": 35568, "ts": 9780063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9780236, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133760", "tid": 35568, "ts": 9780365, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9780537, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131d60", "tid": 35568, "ts": 9780667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9780840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133de0", "tid": 35568, "ts": 9780971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9781144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131540", "tid": 35568, "ts": 9781274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9781446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134050", "tid": 35568, "ts": 9781575, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9781746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132da0", "tid": 35568, "ts": 9781877, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132310", "tid": 35568, "ts": 9782179, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132e70", "tid": 35568, "ts": 9782481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132650", "tid": 35568, "ts": 9782784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9782957, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132720", "tid": 35568, "ts": 9783087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9783259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131f00", "tid": 35568, "ts": 9783389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9783561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133010", "tid": 35568, "ts": 9783757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9783929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1327f0", "tid": 35568, "ts": 9784059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9784231, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1341f0", "tid": 35568, "ts": 9784361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9784534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1328c0", "tid": 35568, "ts": 9784663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9784931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae132990", "tid": 35568, "ts": 9785061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9785233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1330e0", "tid": 35568, "ts": 9785363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9785536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134460", "tid": 35568, "ts": 9785665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9785837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131880", "tid": 35568, "ts": 9785967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9786140, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1331b0", "tid": 35568, "ts": 9786269, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9786440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133280", "tid": 35568, "ts": 9786569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9786741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1335c0", "tid": 35568, "ts": 9786870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae133350", "tid": 35568, "ts": 9787173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787345, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1312d0", "tid": 35568, "ts": 9787475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787646, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1313a0", "tid": 35568, "ts": 9787776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9787949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131470", "tid": 35568, "ts": 9788079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9788251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131610", "tid": 35568, "ts": 9788381, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9788555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1316e0", "tid": 35568, "ts": 9788685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9788858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1317b0", "tid": 35568, "ts": 9788987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9789159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae131bc0", "tid": 35568, "ts": 9789289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9789462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1346d0", "tid": 35568, "ts": 9789592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9789765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136b60", "tid": 35568, "ts": 9789894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1369c0", "tid": 35568, "ts": 9790198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135e60", "tid": 35568, "ts": 9790500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136410", "tid": 35568, "ts": 9790804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9790976, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1360d0", "tid": 35568, "ts": 9791105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9791278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136340", "tid": 35568, "ts": 9791408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9791580, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1365b0", "tid": 35568, "ts": 9791711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9791884, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1358b0", "tid": 35568, "ts": 9792014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9792186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1372b0", "tid": 35568, "ts": 9792316, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9792489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134600", "tid": 35568, "ts": 9792638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9792811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137520", "tid": 35568, "ts": 9792940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9793113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1354a0", "tid": 35568, "ts": 9793242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9793414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1368f0", "tid": 35568, "ts": 9793544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9793716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1364e0", "tid": 35568, "ts": 9793846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135230", "tid": 35568, "ts": 9794149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1375f0", "tid": 35568, "ts": 9794452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134d50", "tid": 35568, "ts": 9794777, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9794950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136ea0", "tid": 35568, "ts": 9795079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9795252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134530", "tid": 35568, "ts": 9795382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9795553, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135160", "tid": 35568, "ts": 9795682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9795854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136680", "tid": 35568, "ts": 9795983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9796156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136820", "tid": 35568, "ts": 9796285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9796459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136a90", "tid": 35568, "ts": 9796589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9796760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135570", "tid": 35568, "ts": 9796890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136750", "tid": 35568, "ts": 9797192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137380", "tid": 35568, "ts": 9797495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1353d0", "tid": 35568, "ts": 9797798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9797969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1361a0", "tid": 35568, "ts": 9798099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9798272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136c30", "tid": 35568, "ts": 9798401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9798573, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135710", "tid": 35568, "ts": 9798703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9798876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135a50", "tid": 35568, "ts": 9799005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9799177, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1376c0", "tid": 35568, "ts": 9799306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9799479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137450", "tid": 35568, "ts": 9799608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9799780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137790", "tid": 35568, "ts": 9799910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9800084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137860", "tid": 35568, "ts": 9800214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9800490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134e20", "tid": 35568, "ts": 9800757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9801055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136d00", "tid": 35568, "ts": 9801274, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9801473, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135980", "tid": 35568, "ts": 9801652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9801833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136dd0", "tid": 35568, "ts": 9801970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9802213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1347a0", "tid": 35568, "ts": 9802349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9802543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134870", "tid": 35568, "ts": 9802683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9802927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134940", "tid": 35568, "ts": 9803073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9803259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136f70", "tid": 35568, "ts": 9803483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9803714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1357e0", "tid": 35568, "ts": 9803859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137040", "tid": 35568, "ts": 9804165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134ae0", "tid": 35568, "ts": 9804469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135300", "tid": 35568, "ts": 9804798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9804971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134a10", "tid": 35568, "ts": 9805102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9805278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134bb0", "tid": 35568, "ts": 9805410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9805584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134c80", "tid": 35568, "ts": 9805715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9805891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134ef0", "tid": 35568, "ts": 9806024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9806200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135640", "tid": 35568, "ts": 9806331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9806508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae134fc0", "tid": 35568, "ts": 9806639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9806815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135090", "tid": 35568, "ts": 9806947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9807122, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137110", "tid": 35568, "ts": 9807254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9807428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1371e0", "tid": 35568, "ts": 9807561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9807737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135b20", "tid": 35568, "ts": 9807869, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135bf0", "tid": 35568, "ts": 9808177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135cc0", "tid": 35568, "ts": 9808485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135d90", "tid": 35568, "ts": 9808794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9808970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae135f30", "tid": 35568, "ts": 9809101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9809276, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136270", "tid": 35568, "ts": 9809407, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9809584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae136000", "tid": 35568, "ts": 9809715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9809915, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138be0", "tid": 35568, "ts": 9810045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9810219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139cf0", "tid": 35568, "ts": 9810350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9810523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a1d0", "tid": 35568, "ts": 9810653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9810826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a920", "tid": 35568, "ts": 9811002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9811199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1398e0", "tid": 35568, "ts": 9811353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9811525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137ba0", "tid": 35568, "ts": 9811655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9811828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139330", "tid": 35568, "ts": 9811959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9812182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138cb0", "tid": 35568, "ts": 9812313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9812486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a510", "tid": 35568, "ts": 9812617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9812788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138d80", "tid": 35568, "ts": 9812918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9813092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138a40", "tid": 35568, "ts": 9813223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9813397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138700", "tid": 35568, "ts": 9813527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9813700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138490", "tid": 35568, "ts": 9813831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814004, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1395a0", "tid": 35568, "ts": 9814134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139c20", "tid": 35568, "ts": 9814437, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a2a0", "tid": 35568, "ts": 9814740, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9814913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1390c0", "tid": 35568, "ts": 9815044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9815217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a6b0", "tid": 35568, "ts": 9815346, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9815519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1387d0", "tid": 35568, "ts": 9815649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9815823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137930", "tid": 35568, "ts": 9816005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9816194, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138e50", "tid": 35568, "ts": 9816325, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9816497, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139400", "tid": 35568, "ts": 9816627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9816800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138970", "tid": 35568, "ts": 9816931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9817103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1399b0", "tid": 35568, "ts": 9817234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9817406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139dc0", "tid": 35568, "ts": 9817536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9817708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138080", "tid": 35568, "ts": 9817838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ab90", "tid": 35568, "ts": 9818141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a030", "tid": 35568, "ts": 9818469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138ff0", "tid": 35568, "ts": 9818774, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9818947, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139190", "tid": 35568, "ts": 9819077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9819250, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a5e0", "tid": 35568, "ts": 9819379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9819551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139b50", "tid": 35568, "ts": 9819681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9819854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a370", "tid": 35568, "ts": 9819983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9820155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139260", "tid": 35568, "ts": 9820285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9820458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139a80", "tid": 35568, "ts": 9820588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9820762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139e90", "tid": 35568, "ts": 9820892, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139670", "tid": 35568, "ts": 9821195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139f60", "tid": 35568, "ts": 9821496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137d40", "tid": 35568, "ts": 9821798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9821970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138f20", "tid": 35568, "ts": 9822100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9822272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a100", "tid": 35568, "ts": 9822403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9822576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1382f0", "tid": 35568, "ts": 9822706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9822878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1394d0", "tid": 35568, "ts": 9823009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9823181, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137a00", "tid": 35568, "ts": 9823311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9823484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1388a0", "tid": 35568, "ts": 9823614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9823787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139740", "tid": 35568, "ts": 9823918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824090, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae139810", "tid": 35568, "ts": 9824220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824393, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138b10", "tid": 35568, "ts": 9824523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138560", "tid": 35568, "ts": 9824826, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9824999, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ac60", "tid": 35568, "ts": 9825129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9825301, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137c70", "tid": 35568, "ts": 9825431, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9825604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137ad0", "tid": 35568, "ts": 9825734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9825907, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a440", "tid": 35568, "ts": 9826036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9826209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13aac0", "tid": 35568, "ts": 9826338, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9826535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a780", "tid": 35568, "ts": 9826665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9826837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a9f0", "tid": 35568, "ts": 9827007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9827179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13a850", "tid": 35568, "ts": 9827311, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9827482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137e10", "tid": 35568, "ts": 9827612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9827784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137ee0", "tid": 35568, "ts": 9827915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae137fb0", "tid": 35568, "ts": 9828216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138150", "tid": 35568, "ts": 9828518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138220", "tid": 35568, "ts": 9828819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9828990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1383c0", "tid": 35568, "ts": 9829119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9829293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae138630", "tid": 35568, "ts": 9829422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9829594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bf10", "tid": 35568, "ts": 9829724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9829897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d6a0", "tid": 35568, "ts": 9830026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9830199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13df90", "tid": 35568, "ts": 9830329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9830500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d360", "tid": 35568, "ts": 9830629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9830801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d290", "tid": 35568, "ts": 9830931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9831103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cc10", "tid": 35568, "ts": 9831232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9831404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c660", "tid": 35568, "ts": 9831533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9831771, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b960", "tid": 35568, "ts": 9831902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d5d0", "tid": 35568, "ts": 9832205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cdb0", "tid": 35568, "ts": 9832507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13db80", "tid": 35568, "ts": 9832810, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9832983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dc50", "tid": 35568, "ts": 9833113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9833287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cb40", "tid": 35568, "ts": 9833416, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9833588, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b3b0", "tid": 35568, "ts": 9833718, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9833889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ad30", "tid": 35568, "ts": 9834018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9834191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ba30", "tid": 35568, "ts": 9834321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9834492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b070", "tid": 35568, "ts": 9834622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9834794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e060", "tid": 35568, "ts": 9834924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9835095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d500", "tid": 35568, "ts": 9835224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9835397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dd20", "tid": 35568, "ts": 9835526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9835697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13afa0", "tid": 35568, "ts": 9835828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b890", "tid": 35568, "ts": 9836129, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d840", "tid": 35568, "ts": 9836432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d430", "tid": 35568, "ts": 9836734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9836906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b2e0", "tid": 35568, "ts": 9837036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9837209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b620", "tid": 35568, "ts": 9837339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9837512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ddf0", "tid": 35568, "ts": 9837641, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9837813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bca0", "tid": 35568, "ts": 9837943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9838115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dec0", "tid": 35568, "ts": 9838245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9838418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b6f0", "tid": 35568, "ts": 9838547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9838719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c0b0", "tid": 35568, "ts": 9838850, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ae00", "tid": 35568, "ts": 9839151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13aed0", "tid": 35568, "ts": 9839453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d770", "tid": 35568, "ts": 9839755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9839928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b140", "tid": 35568, "ts": 9840058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9840230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b210", "tid": 35568, "ts": 9840361, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9840535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b480", "tid": 35568, "ts": 9840665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9840837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b550", "tid": 35568, "ts": 9840966, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9841138, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13b7c0", "tid": 35568, "ts": 9841267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9841440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ce80", "tid": 35568, "ts": 9841571, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9841744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d910", "tid": 35568, "ts": 9841874, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bb00", "tid": 35568, "ts": 9842176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d9e0", "tid": 35568, "ts": 9842478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bbd0", "tid": 35568, "ts": 9842780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9842953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bd70", "tid": 35568, "ts": 9843083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9843256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d020", "tid": 35568, "ts": 9843386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9843558, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13dab0", "tid": 35568, "ts": 9843688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9843861, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13be40", "tid": 35568, "ts": 9843991, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9844163, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13bfe0", "tid": 35568, "ts": 9844293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9844466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cf50", "tid": 35568, "ts": 9844596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9844768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c180", "tid": 35568, "ts": 9844898, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845071, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c250", "tid": 35568, "ts": 9845201, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845374, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d0f0", "tid": 35568, "ts": 9845504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c320", "tid": 35568, "ts": 9845806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9845978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c3f0", "tid": 35568, "ts": 9846107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9846280, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c4c0", "tid": 35568, "ts": 9846410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9846581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c590", "tid": 35568, "ts": 9846770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9846945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c730", "tid": 35568, "ts": 9847075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9847314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c800", "tid": 35568, "ts": 9847444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9847617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c8d0", "tid": 35568, "ts": 9847747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9847919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13c9a0", "tid": 35568, "ts": 9848049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9848221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ca70", "tid": 35568, "ts": 9848351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9848523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13cce0", "tid": 35568, "ts": 9848653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9848825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13d1c0", "tid": 35568, "ts": 9848984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9849226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ff40", "tid": 35568, "ts": 9849362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9849536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140010", "tid": 35568, "ts": 9849666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9849839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e880", "tid": 35568, "ts": 9849969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9850141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e540", "tid": 35568, "ts": 9850271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9850444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1412c0", "tid": 35568, "ts": 9850573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9850746, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141390", "tid": 35568, "ts": 9850875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fcd0", "tid": 35568, "ts": 9851176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ee30", "tid": 35568, "ts": 9851479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f3e0", "tid": 35568, "ts": 9851780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9851951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140690", "tid": 35568, "ts": 9852081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9852253, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1400e0", "tid": 35568, "ts": 9852383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9852555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140900", "tid": 35568, "ts": 9852685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9852857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140280", "tid": 35568, "ts": 9852986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9853159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1401b0", "tid": 35568, "ts": 9853289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9853462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141460", "tid": 35568, "ts": 9853592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9853765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f4b0", "tid": 35568, "ts": 9853895, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1405c0", "tid": 35568, "ts": 9854198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e130", "tid": 35568, "ts": 9854501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e7b0", "tid": 35568, "ts": 9854804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9854977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e200", "tid": 35568, "ts": 9855106, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9855279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ef00", "tid": 35568, "ts": 9855409, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9855581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140760", "tid": 35568, "ts": 9855711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9855883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e2d0", "tid": 35568, "ts": 9856012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9856183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ed60", "tid": 35568, "ts": 9856312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9856485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141050", "tid": 35568, "ts": 9856615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9856786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140f80", "tid": 35568, "ts": 9856916, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e3a0", "tid": 35568, "ts": 9857217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1404f0", "tid": 35568, "ts": 9857519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857691, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1409d0", "tid": 35568, "ts": 9857820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9857993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f8c0", "tid": 35568, "ts": 9858122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9858295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140d10", "tid": 35568, "ts": 9858426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9858597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140350", "tid": 35568, "ts": 9858727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9858899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140aa0", "tid": 35568, "ts": 9859028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9859200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140420", "tid": 35568, "ts": 9859330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9859502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e470", "tid": 35568, "ts": 9859631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9859804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fda0", "tid": 35568, "ts": 9859933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9860106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140eb0", "tid": 35568, "ts": 9860236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9860448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140830", "tid": 35568, "ts": 9860585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9860758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140b70", "tid": 35568, "ts": 9860887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140c40", "tid": 35568, "ts": 9861189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f0a0", "tid": 35568, "ts": 9861492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861666, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e610", "tid": 35568, "ts": 9861795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9861967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae140de0", "tid": 35568, "ts": 9862097, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9862268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f650", "tid": 35568, "ts": 9862398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9862570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141120", "tid": 35568, "ts": 9862699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9862990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13efd0", "tid": 35568, "ts": 9863167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9863413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f990", "tid": 35568, "ts": 9863545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9863718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1411f0", "tid": 35568, "ts": 9863848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e6e0", "tid": 35568, "ts": 9864151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13e950", "tid": 35568, "ts": 9864454, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ea20", "tid": 35568, "ts": 9864756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9864929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fe70", "tid": 35568, "ts": 9865058, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9865230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13eaf0", "tid": 35568, "ts": 9865360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9865534, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ebc0", "tid": 35568, "ts": 9865663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9865835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f240", "tid": 35568, "ts": 9865965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9866137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13ec90", "tid": 35568, "ts": 9866267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9866440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f170", "tid": 35568, "ts": 9866570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9866743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f310", "tid": 35568, "ts": 9866873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f580", "tid": 35568, "ts": 9867176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f720", "tid": 35568, "ts": 9867477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13f7f0", "tid": 35568, "ts": 9867779, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9867951, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fa60", "tid": 35568, "ts": 9868081, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9868254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fb30", "tid": 35568, "ts": 9868383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9868555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae13fc00", "tid": 35568, "ts": 9868686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9868859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144450", "tid": 35568, "ts": 9868990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9869162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144520", "tid": 35568, "ts": 9869292, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9869464, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142160", "tid": 35568, "ts": 9869594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9869767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142a50", "tid": 35568, "ts": 9869897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9870070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141530", "tid": 35568, "ts": 9870199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9870372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1435b0", "tid": 35568, "ts": 9870502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9870673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141c80", "tid": 35568, "ts": 9870829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142b20", "tid": 35568, "ts": 9871132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1438f0", "tid": 35568, "ts": 9871436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141600", "tid": 35568, "ts": 9871739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9871911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1430d0", "tid": 35568, "ts": 9872040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9872211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144040", "tid": 35568, "ts": 9872403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9872575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143340", "tid": 35568, "ts": 9872705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9872877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141d50", "tid": 35568, "ts": 9873007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9873180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144380", "tid": 35568, "ts": 9873310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9873482, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1417a0", "tid": 35568, "ts": 9873612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9873783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141870", "tid": 35568, "ts": 9873913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1441e0", "tid": 35568, "ts": 9874215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143680", "tid": 35568, "ts": 9874516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1424a0", "tid": 35568, "ts": 9874818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9874990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142570", "tid": 35568, "ts": 9875120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9875292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141940", "tid": 35568, "ts": 9875422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9875594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1434e0", "tid": 35568, "ts": 9875724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9875896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141e20", "tid": 35568, "ts": 9876027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9876199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144110", "tid": 35568, "ts": 9876328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9876501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142cc0", "tid": 35568, "ts": 9876631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9876803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1427e0", "tid": 35568, "ts": 9876932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9877105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142230", "tid": 35568, "ts": 9877235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9877408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143820", "tid": 35568, "ts": 9877537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9877709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142e60", "tid": 35568, "ts": 9877838, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9878011, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143b60", "tid": 35568, "ts": 9878141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9878313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142300", "tid": 35568, "ts": 9878482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9878765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1423d0", "tid": 35568, "ts": 9878964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9879172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143410", "tid": 35568, "ts": 9879395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9879583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142640", "tid": 35568, "ts": 9879714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9879887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143750", "tid": 35568, "ts": 9880018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9880191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141a10", "tid": 35568, "ts": 9880321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9880493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142710", "tid": 35568, "ts": 9880673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9880846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141ef0", "tid": 35568, "ts": 9880981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9881155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1428b0", "tid": 35568, "ts": 9881284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9881456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144790", "tid": 35568, "ts": 9881586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9881759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1442b0", "tid": 35568, "ts": 9881888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1445f0", "tid": 35568, "ts": 9882191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142980", "tid": 35568, "ts": 9882493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142bf0", "tid": 35568, "ts": 9882798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9882970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1446c0", "tid": 35568, "ts": 9883099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9883271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142d90", "tid": 35568, "ts": 9883402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9883575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142f30", "tid": 35568, "ts": 9883704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9883877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144860", "tid": 35568, "ts": 9884007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9884221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1439c0", "tid": 35568, "ts": 9884352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9884524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143000", "tid": 35568, "ts": 9884654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9884827, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143f70", "tid": 35568, "ts": 9884956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9885129, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1416d0", "tid": 35568, "ts": 9885258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9885430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143a90", "tid": 35568, "ts": 9885559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9885733, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141fc0", "tid": 35568, "ts": 9885862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141ae0", "tid": 35568, "ts": 9886165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1431a0", "tid": 35568, "ts": 9886467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae141bb0", "tid": 35568, "ts": 9886769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9886942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143c30", "tid": 35568, "ts": 9887071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9887243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143270", "tid": 35568, "ts": 9887372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9887545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143d00", "tid": 35568, "ts": 9887675, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9887847, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143dd0", "tid": 35568, "ts": 9887977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9888148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae143ea0", "tid": 35568, "ts": 9888278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9888451, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae142090", "tid": 35568, "ts": 9888580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9888753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145080", "tid": 35568, "ts": 9888883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146670", "tid": 35568, "ts": 9889185, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147ac0", "tid": 35568, "ts": 9889485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145560", "tid": 35568, "ts": 9889786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9889960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1460c0", "tid": 35568, "ts": 9890089, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9890262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146f60", "tid": 35568, "ts": 9890392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9890564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1472a0", "tid": 35568, "ts": 9890694, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9890866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147c60", "tid": 35568, "ts": 9890995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9891167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145cb0", "tid": 35568, "ts": 9891297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9891470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147850", "tid": 35568, "ts": 9891600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9891772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145f20", "tid": 35568, "ts": 9891901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892073, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145ff0", "tid": 35568, "ts": 9892203, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144ee0", "tid": 35568, "ts": 9892505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146a80", "tid": 35568, "ts": 9892808, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9892980, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145700", "tid": 35568, "ts": 9893110, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9893283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147510", "tid": 35568, "ts": 9893413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9893586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146e90", "tid": 35568, "ts": 9893716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9893888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147920", "tid": 35568, "ts": 9894018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9894202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145e50", "tid": 35568, "ts": 9894373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9894546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1468e0", "tid": 35568, "ts": 9894699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9894872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146740", "tid": 35568, "ts": 9895002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9895174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145490", "tid": 35568, "ts": 9895304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9895476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1475e0", "tid": 35568, "ts": 9895605, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9895778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146190", "tid": 35568, "ts": 9895907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145630", "tid": 35568, "ts": 9896209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147440", "tid": 35568, "ts": 9896511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146260", "tid": 35568, "ts": 9896814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9896987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144c70", "tid": 35568, "ts": 9897116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9897289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146c20", "tid": 35568, "ts": 9897420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9897593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144ad0", "tid": 35568, "ts": 9897723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9897895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145d80", "tid": 35568, "ts": 9898024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9898197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146cf0", "tid": 35568, "ts": 9898327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9898501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146330", "tid": 35568, "ts": 9898630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9898802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147370", "tid": 35568, "ts": 9898931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9899104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1469b0", "tid": 35568, "ts": 9899234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9899407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144d40", "tid": 35568, "ts": 9899536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9899711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146810", "tid": 35568, "ts": 9899840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147030", "tid": 35568, "ts": 9900143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144e10", "tid": 35568, "ts": 9900446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145be0", "tid": 35568, "ts": 9900748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9900920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147100", "tid": 35568, "ts": 9901050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9901223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146b50", "tid": 35568, "ts": 9901352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9901524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1471d0", "tid": 35568, "ts": 9901655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9901828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145220", "tid": 35568, "ts": 9901957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9902130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1458a0", "tid": 35568, "ts": 9902260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9902432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1452f0", "tid": 35568, "ts": 9902562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9902735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1476b0", "tid": 35568, "ts": 9902864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903036, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1479f0", "tid": 35568, "ts": 9903166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147780", "tid": 35568, "ts": 9903468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147b90", "tid": 35568, "ts": 9903770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9903944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144930", "tid": 35568, "ts": 9904072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9904245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146dc0", "tid": 35568, "ts": 9904374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9904547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae146400", "tid": 35568, "ts": 9904677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9904849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144a00", "tid": 35568, "ts": 9904979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9905151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144ba0", "tid": 35568, "ts": 9905330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9905503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1464d0", "tid": 35568, "ts": 9905634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9905806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae144fb0", "tid": 35568, "ts": 9905936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9906108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145150", "tid": 35568, "ts": 9906238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9906410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1453c0", "tid": 35568, "ts": 9906539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9906712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1465a0", "tid": 35568, "ts": 9906842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1457d0", "tid": 35568, "ts": 9907144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145970", "tid": 35568, "ts": 9907446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145a40", "tid": 35568, "ts": 9907748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9907921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae145b10", "tid": 35568, "ts": 9908050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9908223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148890", "tid": 35568, "ts": 9908352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9908524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147ed0", "tid": 35568, "ts": 9908653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9908826, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148a30", "tid": 35568, "ts": 9908956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9909128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149c10", "tid": 35568, "ts": 9909256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9909428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148fe0", "tid": 35568, "ts": 9909558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9909778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14af90", "tid": 35568, "ts": 9909908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148480", "tid": 35568, "ts": 9910209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149660", "tid": 35568, "ts": 9910512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1487c0", "tid": 35568, "ts": 9910814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9910986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148070", "tid": 35568, "ts": 9911116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9911288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148bd0", "tid": 35568, "ts": 9911417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9911589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1486f0", "tid": 35568, "ts": 9911719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9911891, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149320", "tid": 35568, "ts": 9912021, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9912192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a020", "tid": 35568, "ts": 9912322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9912494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148ca0", "tid": 35568, "ts": 9912624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9912796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148550", "tid": 35568, "ts": 9912926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9913099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148140", "tid": 35568, "ts": 9913228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9913401, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b060", "tid": 35568, "ts": 9913531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9913703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a0f0", "tid": 35568, "ts": 9913833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149730", "tid": 35568, "ts": 9914136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a6a0", "tid": 35568, "ts": 9914438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148e40", "tid": 35568, "ts": 9914739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9914911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148210", "tid": 35568, "ts": 9915041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9915212, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148620", "tid": 35568, "ts": 9915342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9915514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a500", "tid": 35568, "ts": 9915644, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9915817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a910", "tid": 35568, "ts": 9915946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9916118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147fa0", "tid": 35568, "ts": 9916247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9916419, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1482e0", "tid": 35568, "ts": 9916614, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9916787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1493f0", "tid": 35568, "ts": 9916918, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9917092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1494c0", "tid": 35568, "ts": 9917222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9917396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a5d0", "tid": 35568, "ts": 9917526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9917698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148f10", "tid": 35568, "ts": 9917829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a9e0", "tid": 35568, "ts": 9918133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1483b0", "tid": 35568, "ts": 9918436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ac50", "tid": 35568, "ts": 9918738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9918912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148960", "tid": 35568, "ts": 9919041, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9919214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ad20", "tid": 35568, "ts": 9919343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9919516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147e00", "tid": 35568, "ts": 9919646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9919818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14adf0", "tid": 35568, "ts": 9919947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9920120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148b00", "tid": 35568, "ts": 9920250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9920422, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ab80", "tid": 35568, "ts": 9920552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9920725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae148d70", "tid": 35568, "ts": 9920854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921026, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1490b0", "tid": 35568, "ts": 9921157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921328, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149180", "tid": 35568, "ts": 9921459, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921631, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14aab0", "tid": 35568, "ts": 9921761, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9921934, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14aec0", "tid": 35568, "ts": 9922065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9922237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a1c0", "tid": 35568, "ts": 9922367, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9922540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149250", "tid": 35568, "ts": 9922671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9922843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149590", "tid": 35568, "ts": 9922972, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9923145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a290", "tid": 35568, "ts": 9923275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9923448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149800", "tid": 35568, "ts": 9923578, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9923751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149ce0", "tid": 35568, "ts": 9923880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a770", "tid": 35568, "ts": 9924183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a360", "tid": 35568, "ts": 9924485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149e80", "tid": 35568, "ts": 9924787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9924959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1498d0", "tid": 35568, "ts": 9925088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9925262, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a840", "tid": 35568, "ts": 9925403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9925574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149f50", "tid": 35568, "ts": 9925704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9925877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1499a0", "tid": 35568, "ts": 9926006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9926179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149a70", "tid": 35568, "ts": 9926309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9926481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae147d30", "tid": 35568, "ts": 9926611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9926784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149b40", "tid": 35568, "ts": 9926914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9927087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14a430", "tid": 35568, "ts": 9927216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9927388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae149db0", "tid": 35568, "ts": 9927518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9927705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cda0", "tid": 35568, "ts": 9927842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d900", "tid": 35568, "ts": 9928144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d280", "tid": 35568, "ts": 9928446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c0a0", "tid": 35568, "ts": 9928749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9928921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b880", "tid": 35568, "ts": 9929075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9929247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c170", "tid": 35568, "ts": 9929378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9929551, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d4f0", "tid": 35568, "ts": 9929682, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9929855, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c990", "tid": 35568, "ts": 9929985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9930157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d760", "tid": 35568, "ts": 9930288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9930460, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cb30", "tid": 35568, "ts": 9930589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9930760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d420", "tid": 35568, "ts": 9930890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bbc0", "tid": 35568, "ts": 9931192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931364, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e390", "tid": 35568, "ts": 9931494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c3e0", "tid": 35568, "ts": 9931797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9931969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e050", "tid": 35568, "ts": 9932099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9932271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b200", "tid": 35568, "ts": 9932401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9932572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d830", "tid": 35568, "ts": 9932703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9932876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bc90", "tid": 35568, "ts": 9933006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9933178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c240", "tid": 35568, "ts": 9933308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9933481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b2d0", "tid": 35568, "ts": 9933610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9933783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c4b0", "tid": 35568, "ts": 9933914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14dd10", "tid": 35568, "ts": 9934215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c580", "tid": 35568, "ts": 9934519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e460", "tid": 35568, "ts": 9934822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9934994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d9d0", "tid": 35568, "ts": 9935188, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9935360, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bd60", "tid": 35568, "ts": 9935490, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9935662, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e120", "tid": 35568, "ts": 9935792, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9935966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c8c0", "tid": 35568, "ts": 9936095, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9936268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14daa0", "tid": 35568, "ts": 9936398, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9936570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ca60", "tid": 35568, "ts": 9936700, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9936872, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d5c0", "tid": 35568, "ts": 9937002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9937175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cc00", "tid": 35568, "ts": 9937305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9937476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14df80", "tid": 35568, "ts": 9937606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9937778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e1f0", "tid": 35568, "ts": 9937908, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938080, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c310", "tid": 35568, "ts": 9938209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c650", "tid": 35568, "ts": 9938511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c720", "tid": 35568, "ts": 9938813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9938986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d690", "tid": 35568, "ts": 9939116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9939288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b130", "tid": 35568, "ts": 9939417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9939589, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d0e0", "tid": 35568, "ts": 9939719, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9939890, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14c7f0", "tid": 35568, "ts": 9940020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9940192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ccd0", "tid": 35568, "ts": 9940321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9940495, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14deb0", "tid": 35568, "ts": 9940625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9940797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d1b0", "tid": 35568, "ts": 9940946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9941154, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bfd0", "tid": 35568, "ts": 9941284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9941456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ce70", "tid": 35568, "ts": 9941587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9941760, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d350", "tid": 35568, "ts": 9941890, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9942125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14db70", "tid": 35568, "ts": 9942259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9942435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14cf40", "tid": 35568, "ts": 9942567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9942748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14d010", "tid": 35568, "ts": 9942889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b610", "tid": 35568, "ts": 9943193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14dc40", "tid": 35568, "ts": 9943495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14dde0", "tid": 35568, "ts": 9943798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9943971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e2c0", "tid": 35568, "ts": 9944100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9944272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14be30", "tid": 35568, "ts": 9944403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9944575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b6e0", "tid": 35568, "ts": 9944705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9944878, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b950", "tid": 35568, "ts": 9945008, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9945180, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14bf00", "tid": 35568, "ts": 9945309, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9945481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b3a0", "tid": 35568, "ts": 9945611, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9945784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b470", "tid": 35568, "ts": 9945914, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b540", "tid": 35568, "ts": 9946217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14b7b0", "tid": 35568, "ts": 9946519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ba20", "tid": 35568, "ts": 9946822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9946994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14baf0", "tid": 35568, "ts": 9947123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9947296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fb20", "tid": 35568, "ts": 9947425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9947597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1508f0", "tid": 35568, "ts": 9947727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9947900, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f160", "tid": 35568, "ts": 9948030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9948201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fcc0", "tid": 35568, "ts": 9948331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9948504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f090", "tid": 35568, "ts": 9948634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9948806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150d00", "tid": 35568, "ts": 9948935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9949108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150410", "tid": 35568, "ts": 9949238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9949411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e600", "tid": 35568, "ts": 9949540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9949713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150b60", "tid": 35568, "ts": 9949842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ed50", "tid": 35568, "ts": 9950145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14efc0", "tid": 35568, "ts": 9950447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150f70", "tid": 35568, "ts": 9950750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9950921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150340", "tid": 35568, "ts": 9951051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9951224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1516c0", "tid": 35568, "ts": 9951354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9951526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1515f0", "tid": 35568, "ts": 9951656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9951829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150000", "tid": 35568, "ts": 9951958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9952130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ec80", "tid": 35568, "ts": 9952260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9952433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150dd0", "tid": 35568, "ts": 9952563, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9952736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150680", "tid": 35568, "ts": 9952866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e530", "tid": 35568, "ts": 9953168, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953341, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f230", "tid": 35568, "ts": 9953470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953642, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f300", "tid": 35568, "ts": 9953772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9953944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f570", "tid": 35568, "ts": 9954074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9954246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150820", "tid": 35568, "ts": 9954376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9954549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f7e0", "tid": 35568, "ts": 9954679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9954852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1501a0", "tid": 35568, "ts": 9954982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9955156, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f4a0", "tid": 35568, "ts": 9955285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9955499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f8b0", "tid": 35568, "ts": 9955629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9955802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ebb0", "tid": 35568, "ts": 9955932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9956104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f3d0", "tid": 35568, "ts": 9956234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9956406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1509c0", "tid": 35568, "ts": 9956537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9956832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150270", "tid": 35568, "ts": 9956962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9957182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e6d0", "tid": 35568, "ts": 9957369, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9957541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150c30", "tid": 35568, "ts": 9957671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9957844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1504e0", "tid": 35568, "ts": 9957973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9958146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1505b0", "tid": 35568, "ts": 9958276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9958449, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e940", "tid": 35568, "ts": 9958579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9958751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150a90", "tid": 35568, "ts": 9958881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151040", "tid": 35568, "ts": 9959182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151790", "tid": 35568, "ts": 9959484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f640", "tid": 35568, "ts": 9959786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9959959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ee20", "tid": 35568, "ts": 9960151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9960323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fd90", "tid": 35568, "ts": 9960452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9960625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fe60", "tid": 35568, "ts": 9960755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9960927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e870", "tid": 35568, "ts": 9961057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9961229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fbf0", "tid": 35568, "ts": 9961402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9961574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151860", "tid": 35568, "ts": 9961704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9961877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150ea0", "tid": 35568, "ts": 9962007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9962178, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f710", "tid": 35568, "ts": 9962307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9962480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae150750", "tid": 35568, "ts": 9962609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9962782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151110", "tid": 35568, "ts": 9962911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14f980", "tid": 35568, "ts": 9963213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1511e0", "tid": 35568, "ts": 9963515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1512b0", "tid": 35568, "ts": 9963818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9963990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14fa50", "tid": 35568, "ts": 9964119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9964291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14eae0", "tid": 35568, "ts": 9964421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9964593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ff30", "tid": 35568, "ts": 9964723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9964895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1500d0", "tid": 35568, "ts": 9965024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9965196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151380", "tid": 35568, "ts": 9965326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9965498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151450", "tid": 35568, "ts": 9965628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9965801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151520", "tid": 35568, "ts": 9965931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9966103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14e7a0", "tid": 35568, "ts": 9966233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9966404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14ea10", "tid": 35568, "ts": 9966534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9966706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae14eef0", "tid": 35568, "ts": 9966836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967007, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154440", "tid": 35568, "ts": 9967137, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153f60", "tid": 35568, "ts": 9967440, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967612, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152630", "tid": 35568, "ts": 9967742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9967914, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152560", "tid": 35568, "ts": 9968045, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9968218, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1549f0", "tid": 35568, "ts": 9968349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9968521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1546b0", "tid": 35568, "ts": 9968651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9968823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152be0", "tid": 35568, "ts": 9968953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9969126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153e90", "tid": 35568, "ts": 9969255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9969428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154ac0", "tid": 35568, "ts": 9969558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9969730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152700", "tid": 35568, "ts": 9969860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154510", "tid": 35568, "ts": 9970163, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1538e0", "tid": 35568, "ts": 9970466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152490", "tid": 35568, "ts": 9970768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9970941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154370", "tid": 35568, "ts": 9971070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9971242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154100", "tid": 35568, "ts": 9971372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9971544, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154780", "tid": 35568, "ts": 9971673, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9971846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152cb0", "tid": 35568, "ts": 9971977, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9972149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154920", "tid": 35568, "ts": 9972334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9972507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152f20", "tid": 35568, "ts": 9972636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9972808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154030", "tid": 35568, "ts": 9972938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9973111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1528a0", "tid": 35568, "ts": 9973242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9973414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153cf0", "tid": 35568, "ts": 9973543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9973715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1522f0", "tid": 35568, "ts": 9973845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154850", "tid": 35568, "ts": 9974147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152d80", "tid": 35568, "ts": 9974450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1541d0", "tid": 35568, "ts": 9974751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9974924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1542a0", "tid": 35568, "ts": 9975053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9975224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153330", "tid": 35568, "ts": 9975354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9975526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154b90", "tid": 35568, "ts": 9975657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9975829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1527d0", "tid": 35568, "ts": 9975959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9976131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152970", "tid": 35568, "ts": 9976261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9976431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154c60", "tid": 35568, "ts": 9976561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9976734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1545e0", "tid": 35568, "ts": 9976863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9977035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1523c0", "tid": 35568, "ts": 9977165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9977448, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151930", "tid": 35568, "ts": 9977603, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9977802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152a40", "tid": 35568, "ts": 9977932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9978106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153c20", "tid": 35568, "ts": 9978236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9978409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153670", "tid": 35568, "ts": 9978538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9978710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152ff0", "tid": 35568, "ts": 9978840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151a00", "tid": 35568, "ts": 9979143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151ad0", "tid": 35568, "ts": 9979444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151ba0", "tid": 35568, "ts": 9979747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9979919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153740", "tid": 35568, "ts": 9980049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9980222, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152b10", "tid": 35568, "ts": 9980352, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9980524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153dc0", "tid": 35568, "ts": 9980654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9980825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1539b0", "tid": 35568, "ts": 9980955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9981125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153260", "tid": 35568, "ts": 9981255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9981429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152e50", "tid": 35568, "ts": 9981559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9981732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1530c0", "tid": 35568, "ts": 9981862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153400", "tid": 35568, "ts": 9982164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153190", "tid": 35568, "ts": 9982467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151c70", "tid": 35568, "ts": 9982770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9982943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151d40", "tid": 35568, "ts": 9983073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9983245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153810", "tid": 35568, "ts": 9983375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9983548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1534d0", "tid": 35568, "ts": 9983678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9983850, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151e10", "tid": 35568, "ts": 9983979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9984153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151ee0", "tid": 35568, "ts": 9984282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9984455, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1535a0", "tid": 35568, "ts": 9984586, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9984758, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae151fb0", "tid": 35568, "ts": 9984888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152080", "tid": 35568, "ts": 9985191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153a80", "tid": 35568, "ts": 9985492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152150", "tid": 35568, "ts": 9985795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9985967, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae153b50", "tid": 35568, "ts": 9986154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9986326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae152220", "tid": 35568, "ts": 9986456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9986629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155ca0", "tid": 35568, "ts": 9986759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9986931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156e80", "tid": 35568, "ts": 9987061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9987234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155d70", "tid": 35568, "ts": 9987364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9987536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154fa0", "tid": 35568, "ts": 9987666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9987885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157360", "tid": 35568, "ts": 9988117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9988338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1575d0", "tid": 35568, "ts": 9988492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9988754, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1568d0", "tid": 35568, "ts": 9988922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9989095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157b80", "tid": 35568, "ts": 9989225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9989397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1552e0", "tid": 35568, "ts": 9989528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9989700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156c10", "tid": 35568, "ts": 9989830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157910", "tid": 35568, "ts": 9990131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1576a0", "tid": 35568, "ts": 9990434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990606, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158060", "tid": 35568, "ts": 9990735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9990909, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157f90", "tid": 35568, "ts": 9991038, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9991210, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157c50", "tid": 35568, "ts": 9991341, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9991513, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1569a0", "tid": 35568, "ts": 9991643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9991816, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157df0", "tid": 35568, "ts": 9991947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9992120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157430", "tid": 35568, "ts": 9992250, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9992423, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155480", "tid": 35568, "ts": 9992553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9992726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1570f0", "tid": 35568, "ts": 9992856, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156590", "tid": 35568, "ts": 9993159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157d20", "tid": 35568, "ts": 9993461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993634, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1560b0", "tid": 35568, "ts": 9993764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9993936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157020", "tid": 35568, "ts": 9994067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9994240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156a70", "tid": 35568, "ts": 9994370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9994542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155e40", "tid": 35568, "ts": 9994695, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9994867, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157500", "tid": 35568, "ts": 9994998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9995217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154d30", "tid": 35568, "ts": 9995349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9995522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155070", "tid": 35568, "ts": 9995653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9995825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157290", "tid": 35568, "ts": 9995954, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9996127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157770", "tid": 35568, "ts": 9996258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9996430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155140", "tid": 35568, "ts": 9996559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9996732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154e00", "tid": 35568, "ts": 9996863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae154ed0", "tid": 35568, "ts": 9997164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156b40", "tid": 35568, "ts": 9997466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156180", "tid": 35568, "ts": 9997769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9997943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155550", "tid": 35568, "ts": 9998072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9998245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1557c0", "tid": 35568, "ts": 9998375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9998548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156250", "tid": 35568, "ts": 9998678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9998851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155210", "tid": 35568, "ts": 9998982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9999155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157ec0", "tid": 35568, "ts": 9999285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9999458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1553b0", "tid": 35568, "ts": 9999588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 9999761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155960", "tid": 35568, "ts": 9999891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155620", "tid": 35568, "ts": 10000195, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1556f0", "tid": 35568, "ts": 10000497, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155890", "tid": 35568, "ts": 10000800, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10000972, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155a30", "tid": 35568, "ts": 10001102, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10001275, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155b00", "tid": 35568, "ts": 10001405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10001577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156f50", "tid": 35568, "ts": 10001707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10001880, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155bd0", "tid": 35568, "ts": 10002011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10002183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157ab0", "tid": 35568, "ts": 10002313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10002485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155f10", "tid": 35568, "ts": 10002615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10002788, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae157840", "tid": 35568, "ts": 10002919, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10003091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156ce0", "tid": 35568, "ts": 10003221, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10003394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae155fe0", "tid": 35568, "ts": 10003589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10003761, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156320", "tid": 35568, "ts": 10003891, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004064, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1563f0", "tid": 35568, "ts": 10004194, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004366, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1564c0", "tid": 35568, "ts": 10004496, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156660", "tid": 35568, "ts": 10004798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10004971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156730", "tid": 35568, "ts": 10005100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10005273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156800", "tid": 35568, "ts": 10005403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10005575, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1579e0", "tid": 35568, "ts": 10005705, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10005877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae156db0", "tid": 35568, "ts": 10006007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10006179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1571c0", "tid": 35568, "ts": 10006308, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10006481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a9d0", "tid": 35568, "ts": 10006612, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10006784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159720", "tid": 35568, "ts": 10006915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a280", "tid": 35568, "ts": 10007217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a690", "tid": 35568, "ts": 10007520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1598c0", "tid": 35568, "ts": 10007823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10007995, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a010", "tid": 35568, "ts": 10008125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10008298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a0e0", "tid": 35568, "ts": 10008428, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10008600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159a60", "tid": 35568, "ts": 10008729, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10008902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a350", "tid": 35568, "ts": 10009032, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10009205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1590a0", "tid": 35568, "ts": 10009335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10009506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b390", "tid": 35568, "ts": 10009636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10009810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1583a0", "tid": 35568, "ts": 10009940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10010114, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158470", "tid": 35568, "ts": 10010244, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10010417, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a760", "tid": 35568, "ts": 10010547, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10010719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158200", "tid": 35568, "ts": 10010848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a420", "tid": 35568, "ts": 10011151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158bc0", "tid": 35568, "ts": 10011453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b2c0", "tid": 35568, "ts": 10011757, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10011930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b460", "tid": 35568, "ts": 10012061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10012234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a830", "tid": 35568, "ts": 10012364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10012536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159b30", "tid": 35568, "ts": 10012667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10012839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15af80", "tid": 35568, "ts": 10012969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10013142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1582d0", "tid": 35568, "ts": 10013273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10013446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158880", "tid": 35568, "ts": 10013577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10013749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a4f0", "tid": 35568, "ts": 10013880, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014053, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ad10", "tid": 35568, "ts": 10014183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1594b0", "tid": 35568, "ts": 10014486, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014659, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158a20", "tid": 35568, "ts": 10014790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10014962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158c90", "tid": 35568, "ts": 10015119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10015292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158540", "tid": 35568, "ts": 10015422, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10015595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b1f0", "tid": 35568, "ts": 10015727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10015899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158610", "tid": 35568, "ts": 10016029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10016201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159580", "tid": 35568, "ts": 10016331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10016503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158130", "tid": 35568, "ts": 10016634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10016806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a900", "tid": 35568, "ts": 10016936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10017108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15aaa0", "tid": 35568, "ts": 10017237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10017410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a5c0", "tid": 35568, "ts": 10017541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10017713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158f00", "tid": 35568, "ts": 10017843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158d60", "tid": 35568, "ts": 10018146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ac40", "tid": 35568, "ts": 10018449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158af0", "tid": 35568, "ts": 10018751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10018924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b050", "tid": 35568, "ts": 10019076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10019287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ade0", "tid": 35568, "ts": 10019419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10019592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158e30", "tid": 35568, "ts": 10019721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10019894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1586e0", "tid": 35568, "ts": 10020024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10020196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159650", "tid": 35568, "ts": 10020326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10020499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1587b0", "tid": 35568, "ts": 10020629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10020802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158fd0", "tid": 35568, "ts": 10020932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10021105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ab70", "tid": 35568, "ts": 10021234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10021407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159990", "tid": 35568, "ts": 10021537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10021710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15aeb0", "tid": 35568, "ts": 10021840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b120", "tid": 35568, "ts": 10022142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae158950", "tid": 35568, "ts": 10022445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159170", "tid": 35568, "ts": 10022746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10022919, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159240", "tid": 35568, "ts": 10023049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10023221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15a1b0", "tid": 35568, "ts": 10023351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10023522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159310", "tid": 35568, "ts": 10023653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10023825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1593e0", "tid": 35568, "ts": 10023956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10024128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1597f0", "tid": 35568, "ts": 10024258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10024430, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159c00", "tid": 35568, "ts": 10024559, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10024732, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159cd0", "tid": 35568, "ts": 10024861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159da0", "tid": 35568, "ts": 10025164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025336, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159e70", "tid": 35568, "ts": 10025467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae159f40", "tid": 35568, "ts": 10025770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10025942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e860", "tid": 35568, "ts": 10026072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10026245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c4a0", "tid": 35568, "ts": 10026375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10026574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d0d0", "tid": 35568, "ts": 10026704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10026877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c980", "tid": 35568, "ts": 10027006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10027179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c7e0", "tid": 35568, "ts": 10027310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10027528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e380", "tid": 35568, "ts": 10027659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10027832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c8b0", "tid": 35568, "ts": 10027962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10028135, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d270", "tid": 35568, "ts": 10028264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10028437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e6c0", "tid": 35568, "ts": 10028610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10028783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bc80", "tid": 35568, "ts": 10028913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d1a0", "tid": 35568, "ts": 10029215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ca50", "tid": 35568, "ts": 10029518, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d5b0", "tid": 35568, "ts": 10029820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10029993, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d340", "tid": 35568, "ts": 10030123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10030296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c640", "tid": 35568, "ts": 10030426, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10030599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cb20", "tid": 35568, "ts": 10030728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10030901, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c710", "tid": 35568, "ts": 10031031, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10031203, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ddd0", "tid": 35568, "ts": 10031333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10031506, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b7a0", "tid": 35568, "ts": 10031636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10031809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15dd00", "tid": 35568, "ts": 10031938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10032110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e5f0", "tid": 35568, "ts": 10032240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10032412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b600", "tid": 35568, "ts": 10032542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10032714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b870", "tid": 35568, "ts": 10032844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e790", "tid": 35568, "ts": 10033146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15db60", "tid": 35568, "ts": 10033448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b940", "tid": 35568, "ts": 10033751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10033924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15be20", "tid": 35568, "ts": 10034054, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10034227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d410", "tid": 35568, "ts": 10034356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10034529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b530", "tid": 35568, "ts": 10034679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10034895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15b6d0", "tid": 35568, "ts": 10035025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10035197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d4e0", "tid": 35568, "ts": 10035327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10035500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e110", "tid": 35568, "ts": 10035630, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10035802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cbf0", "tid": 35568, "ts": 10035932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10036104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d8f0", "tid": 35568, "ts": 10036234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10036408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bd50", "tid": 35568, "ts": 10036537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10036709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c230", "tid": 35568, "ts": 10036839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ba10", "tid": 35568, "ts": 10037142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c160", "tid": 35568, "ts": 10037445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037616, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ccc0", "tid": 35568, "ts": 10037746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10037920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d680", "tid": 35568, "ts": 10038051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10038224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c300", "tid": 35568, "ts": 10038353, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10038525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15dea0", "tid": 35568, "ts": 10038655, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10038828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d750", "tid": 35568, "ts": 10038958, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10039130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d820", "tid": 35568, "ts": 10039259, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10039432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cd90", "tid": 35568, "ts": 10039562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10039734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e1e0", "tid": 35568, "ts": 10039889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040061, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15df70", "tid": 35568, "ts": 10040192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bae0", "tid": 35568, "ts": 10040493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ce60", "tid": 35568, "ts": 10040795, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10040968, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e040", "tid": 35568, "ts": 10041099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10041271, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bbb0", "tid": 35568, "ts": 10041401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10041574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15cf30", "tid": 35568, "ts": 10041703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10041876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e2b0", "tid": 35568, "ts": 10042047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10042220, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d9c0", "tid": 35568, "ts": 10042350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10042522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15d000", "tid": 35568, "ts": 10042651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10042823, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15da90", "tid": 35568, "ts": 10042952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10043125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15dc30", "tid": 35568, "ts": 10043255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10043427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bef0", "tid": 35568, "ts": 10043557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10043730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e450", "tid": 35568, "ts": 10043860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e520", "tid": 35568, "ts": 10044161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15bfc0", "tid": 35568, "ts": 10044463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c090", "tid": 35568, "ts": 10044765, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10044937, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c3d0", "tid": 35568, "ts": 10045067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10045240, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15c570", "tid": 35568, "ts": 10045370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10045542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161780", "tid": 35568, "ts": 10045672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10045845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1619f0", "tid": 35568, "ts": 10045974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10046147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f8a0", "tid": 35568, "ts": 10046277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10046450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1600c0", "tid": 35568, "ts": 10046579, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10046753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160e90", "tid": 35568, "ts": 10046882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10047054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160190", "tid": 35568, "ts": 10047183, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10047355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fff0", "tid": 35568, "ts": 10047485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10047657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160f60", "tid": 35568, "ts": 10047849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160260", "tid": 35568, "ts": 10048151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161100", "tid": 35568, "ts": 10048452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fcb0", "tid": 35568, "ts": 10048755, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10048927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f220", "tid": 35568, "ts": 10049057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10049229, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f970", "tid": 35568, "ts": 10049359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10049531, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160a80", "tid": 35568, "ts": 10049660, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10049832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161ac0", "tid": 35568, "ts": 10049961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10050134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15efb0", "tid": 35568, "ts": 10050264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10050505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161b90", "tid": 35568, "ts": 10050635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10050807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161370", "tid": 35568, "ts": 10050937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10051109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1605a0", "tid": 35568, "ts": 10051238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10051411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f490", "tid": 35568, "ts": 10051541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10051714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1615e0", "tid": 35568, "ts": 10051844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ea00", "tid": 35568, "ts": 10052146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160cf0", "tid": 35568, "ts": 10052448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ead0", "tid": 35568, "ts": 10052750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10052923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161850", "tid": 35568, "ts": 10053053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10053224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15eee0", "tid": 35568, "ts": 10053354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10053526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ff20", "tid": 35568, "ts": 10053657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10053829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161c60", "tid": 35568, "ts": 10053959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10054130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fa40", "tid": 35568, "ts": 10054260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10054432, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f080", "tid": 35568, "ts": 10054562, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10054734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160dc0", "tid": 35568, "ts": 10054864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10055037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160b50", "tid": 35568, "ts": 10055167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10055339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161920", "tid": 35568, "ts": 10055469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10055641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161030", "tid": 35568, "ts": 10055828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1611d0", "tid": 35568, "ts": 10056131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056303, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161440", "tid": 35568, "ts": 10056433, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15e930", "tid": 35568, "ts": 10056733, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10056906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161510", "tid": 35568, "ts": 10057035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10057206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15eba0", "tid": 35568, "ts": 10057336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10057508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f630", "tid": 35568, "ts": 10057637, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10057809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160670", "tid": 35568, "ts": 10057938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10058110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160740", "tid": 35568, "ts": 10058239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10058412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1616b0", "tid": 35568, "ts": 10058541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10058713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1612a0", "tid": 35568, "ts": 10058842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ec70", "tid": 35568, "ts": 10059143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160810", "tid": 35568, "ts": 10059445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ed40", "tid": 35568, "ts": 10059746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10059918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160330", "tid": 35568, "ts": 10060048, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10060221, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f150", "tid": 35568, "ts": 10060351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10060524, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1609b0", "tid": 35568, "ts": 10060654, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10060828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f560", "tid": 35568, "ts": 10060957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10061131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15ee10", "tid": 35568, "ts": 10061260, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10061434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f2f0", "tid": 35568, "ts": 10061564, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10061736, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f3c0", "tid": 35568, "ts": 10061866, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f700", "tid": 35568, "ts": 10062211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062385, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fd80", "tid": 35568, "ts": 10062515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160400", "tid": 35568, "ts": 10062816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10062989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae160c20", "tid": 35568, "ts": 10063118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10063291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15f7d0", "tid": 35568, "ts": 10063420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10063593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1604d0", "tid": 35568, "ts": 10063722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10063895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fb10", "tid": 35568, "ts": 10064024, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10064197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fbe0", "tid": 35568, "ts": 10064327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10064499, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae15fe50", "tid": 35568, "ts": 10064629, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10064802, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1608e0", "tid": 35568, "ts": 10064932, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10065105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163590", "tid": 35568, "ts": 10065235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10065408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162960", "tid": 35568, "ts": 10065538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10065711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161e00", "tid": 35568, "ts": 10065840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10066130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1646a0", "tid": 35568, "ts": 10066312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10066486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1649e0", "tid": 35568, "ts": 10066617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10066791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162fe0", "tid": 35568, "ts": 10066921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10067095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161ed0", "tid": 35568, "ts": 10067225, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10067399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161d30", "tid": 35568, "ts": 10067529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10067703, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164b80", "tid": 35568, "ts": 10067834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1645d0", "tid": 35568, "ts": 10068136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068308, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164ec0", "tid": 35568, "ts": 10068438, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162070", "tid": 35568, "ts": 10068741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10068913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164d20", "tid": 35568, "ts": 10069043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10069216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae161fa0", "tid": 35568, "ts": 10069345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10069519, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164c50", "tid": 35568, "ts": 10069648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10069821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162210", "tid": 35568, "ts": 10069950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10070124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162d70", "tid": 35568, "ts": 10070254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10070426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163660", "tid": 35568, "ts": 10070556, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10070730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162e40", "tid": 35568, "ts": 10070860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10071062, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162140", "tid": 35568, "ts": 10071217, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10071461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164020", "tid": 35568, "ts": 10071634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10071806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162f10", "tid": 35568, "ts": 10071936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10072109, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164910", "tid": 35568, "ts": 10072239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10072412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162550", "tid": 35568, "ts": 10072543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10072716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162620", "tid": 35568, "ts": 10072846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1622e0", "tid": 35568, "ts": 10073149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164ab0", "tid": 35568, "ts": 10073451, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164770", "tid": 35568, "ts": 10073754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10073928, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1630b0", "tid": 35568, "ts": 10074057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10074230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163320", "tid": 35568, "ts": 10074360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10074533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1623b0", "tid": 35568, "ts": 10074663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10074835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163730", "tid": 35568, "ts": 10074965, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10075137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162480", "tid": 35568, "ts": 10075268, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10075440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163250", "tid": 35568, "ts": 10075570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10075742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164430", "tid": 35568, "ts": 10075872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164840", "tid": 35568, "ts": 10076174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163f50", "tid": 35568, "ts": 10076477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162890", "tid": 35568, "ts": 10076780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10076953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164df0", "tid": 35568, "ts": 10077082, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10077254, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1626f0", "tid": 35568, "ts": 10077384, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10077556, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1641c0", "tid": 35568, "ts": 10077686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10077858, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163800", "tid": 35568, "ts": 10077987, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10078160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163c10", "tid": 35568, "ts": 10078291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10078463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1627c0", "tid": 35568, "ts": 10078593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10078766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1633f0", "tid": 35568, "ts": 10078896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162a30", "tid": 35568, "ts": 10079199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162b00", "tid": 35568, "ts": 10079503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162bd0", "tid": 35568, "ts": 10079804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10079977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163a70", "tid": 35568, "ts": 10080108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10080281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163b40", "tid": 35568, "ts": 10080411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10080583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae162ca0", "tid": 35568, "ts": 10080713, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10080885, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163e80", "tid": 35568, "ts": 10081015, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10081187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163180", "tid": 35568, "ts": 10081347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10081518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163db0", "tid": 35568, "ts": 10081772, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10081954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1634c0", "tid": 35568, "ts": 10082099, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10082272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1638d0", "tid": 35568, "ts": 10082404, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10082577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164500", "tid": 35568, "ts": 10082708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10082881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1639a0", "tid": 35568, "ts": 10083011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10083184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae163ce0", "tid": 35568, "ts": 10083357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10083669, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1640f0", "tid": 35568, "ts": 10083851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10084249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164290", "tid": 35568, "ts": 10084475, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10084809, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae164360", "tid": 35568, "ts": 10085075, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10085406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126010", "tid": 35568, "ts": 10085623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10085797, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124e30", "tid": 35568, "ts": 10085928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10086102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126900", "tid": 35568, "ts": 10086233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10086406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124610", "tid": 35568, "ts": 10086537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10086710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124f00", "tid": 35568, "ts": 10086870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124d60", "tid": 35568, "ts": 10087173, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125650", "tid": 35568, "ts": 10087478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124bc0", "tid": 35568, "ts": 10087780, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10087953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124fd0", "tid": 35568, "ts": 10088083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10088258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127050", "tid": 35568, "ts": 10088389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10088561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126c40", "tid": 35568, "ts": 10088692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10088866, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1260e0", "tid": 35568, "ts": 10088995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10089169, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124470", "tid": 35568, "ts": 10089299, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10089472, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124a20", "tid": 35568, "ts": 10089601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10089773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126830", "tid": 35568, "ts": 10089904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124c90", "tid": 35568, "ts": 10090208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1247b0", "tid": 35568, "ts": 10090510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1261b0", "tid": 35568, "ts": 10090814, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10090986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125a60", "tid": 35568, "ts": 10091116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10091288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1264f0", "tid": 35568, "ts": 10091418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10091590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125990", "tid": 35568, "ts": 10091720, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10091892, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1250a0", "tid": 35568, "ts": 10092022, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10092196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125170", "tid": 35568, "ts": 10092327, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10092501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1272c0", "tid": 35568, "ts": 10092631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10092804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1265c0", "tid": 35568, "ts": 10092934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10093108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127390", "tid": 35568, "ts": 10093238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10093411, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126d10", "tid": 35568, "ts": 10093541, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10093714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125240", "tid": 35568, "ts": 10093844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126de0", "tid": 35568, "ts": 10094147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094320, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125310", "tid": 35568, "ts": 10094450, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094624, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1253e0", "tid": 35568, "ts": 10094776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10094949, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1254b0", "tid": 35568, "ts": 10095079, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10095252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1243a0", "tid": 35568, "ts": 10095382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10095555, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125cd0", "tid": 35568, "ts": 10095686, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10095859, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124540", "tid": 35568, "ts": 10095988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10096161, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124af0", "tid": 35568, "ts": 10096291, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10096465, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125f40", "tid": 35568, "ts": 10096595, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10096768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125580", "tid": 35568, "ts": 10096950, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10097123, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1246e0", "tid": 35568, "ts": 10097315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10097571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125720", "tid": 35568, "ts": 10097746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10098032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127460", "tid": 35568, "ts": 10098229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10098402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126eb0", "tid": 35568, "ts": 10098582, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10098822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124880", "tid": 35568, "ts": 10099005, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10099273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126350", "tid": 35568, "ts": 10099405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10099577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae127120", "tid": 35568, "ts": 10099708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10099882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1257f0", "tid": 35568, "ts": 10100013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10100187, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124130", "tid": 35568, "ts": 10100317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10100490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1269d0", "tid": 35568, "ts": 10100622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10100795, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126280", "tid": 35568, "ts": 10100927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10101145, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124950", "tid": 35568, "ts": 10101279, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10101453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125b30", "tid": 35568, "ts": 10101583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10101755, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1258c0", "tid": 35568, "ts": 10101956, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10102199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125c00", "tid": 35568, "ts": 10102328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10102501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae124200", "tid": 35568, "ts": 10102631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10102804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126f80", "tid": 35568, "ts": 10102934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10103107, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1242d0", "tid": 35568, "ts": 10103238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10103409, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125da0", "tid": 35568, "ts": 10103540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10103713, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae125e70", "tid": 35568, "ts": 10103843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104014, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae1271f0", "tid": 35568, "ts": 10104144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126420", "tid": 35568, "ts": 10104447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126690", "tid": 35568, "ts": 10104752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10104925, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126760", "tid": 35568, "ts": 10105056, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10105228, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126aa0", "tid": 35568, "ts": 10105359, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10105532, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234ae126b70", "tid": 35568, "ts": 10105663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10105835, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03775b0", "tid": 35568, "ts": 10106030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10106205, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377dd0", "tid": 35568, "ts": 10106335, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10106507, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03779c0", "tid": 35568, "ts": 10106638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10106810, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377b60", "tid": 35568, "ts": 10106940, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10107113, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376090", "tid": 35568, "ts": 10107243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10107416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376d90", "tid": 35568, "ts": 10107546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10107719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375bb0", "tid": 35568, "ts": 10107849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03786c0", "tid": 35568, "ts": 10108151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108322, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376230", "tid": 35568, "ts": 10108453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108627, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03764a0", "tid": 35568, "ts": 10108758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10108930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03757a0", "tid": 35568, "ts": 10109060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10109233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03770d0", "tid": 35568, "ts": 10109363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10109536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376640", "tid": 35568, "ts": 10109665, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10109838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375ef0", "tid": 35568, "ts": 10109968, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10110141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376e60", "tid": 35568, "ts": 10110272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10110445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378450", "tid": 35568, "ts": 10110576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10110748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377410", "tid": 35568, "ts": 10110878, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111050, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378110", "tid": 35568, "ts": 10111180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111353, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375e20", "tid": 35568, "ts": 10111482, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376f30", "tid": 35568, "ts": 10111784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10111956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377270", "tid": 35568, "ts": 10112087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10112259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03771a0", "tid": 35568, "ts": 10112389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10112562, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03763d0", "tid": 35568, "ts": 10112693, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10112864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03781e0", "tid": 35568, "ts": 10112995, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10113168, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378790", "tid": 35568, "ts": 10113297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10113470, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376570", "tid": 35568, "ts": 10113601, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10113773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377000", "tid": 35568, "ts": 10113904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114077, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377340", "tid": 35568, "ts": 10114208, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114380, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03774e0", "tid": 35568, "ts": 10114511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03782b0", "tid": 35568, "ts": 10114813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10114986, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03756d0", "tid": 35568, "ts": 10115116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10115290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378380", "tid": 35568, "ts": 10115421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10115594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375fc0", "tid": 35568, "ts": 10115724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10115896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377680", "tid": 35568, "ts": 10116026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10116199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378860", "tid": 35568, "ts": 10116329, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10116503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377a90", "tid": 35568, "ts": 10116633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10116804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375530", "tid": 35568, "ts": 10116934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10117106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376300", "tid": 35568, "ts": 10117237, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10117408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377750", "tid": 35568, "ts": 10117540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10117833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376710", "tid": 35568, "ts": 10117964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10118171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378520", "tid": 35568, "ts": 10118317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10118490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375d50", "tid": 35568, "ts": 10118621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10118793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03785f0", "tid": 35568, "ts": 10118923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10119096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377c30", "tid": 35568, "ts": 10119271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10119514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377820", "tid": 35568, "ts": 10119643, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10119815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377d00", "tid": 35568, "ts": 10119946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10120119, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375600", "tid": 35568, "ts": 10120248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10120421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377ea0", "tid": 35568, "ts": 10120552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10120724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0377f70", "tid": 35568, "ts": 10120854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10121027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03778f0", "tid": 35568, "ts": 10121158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10121394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378040", "tid": 35568, "ts": 10121551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10121735, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375870", "tid": 35568, "ts": 10121865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10122097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375940", "tid": 35568, "ts": 10122242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10122416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375a10", "tid": 35568, "ts": 10122546, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10122719, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375ae0", "tid": 35568, "ts": 10122849, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0375c80", "tid": 35568, "ts": 10123153, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376160", "tid": 35568, "ts": 10123457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03767e0", "tid": 35568, "ts": 10123759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10123932, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03768b0", "tid": 35568, "ts": 10124063, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10124235, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376980", "tid": 35568, "ts": 10124366, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10124539, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376a50", "tid": 35568, "ts": 10124670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10124845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376b20", "tid": 35568, "ts": 10124978, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10125153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376bf0", "tid": 35568, "ts": 10125285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10125458, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0376cc0", "tid": 35568, "ts": 10125588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10125762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03792f0", "tid": 35568, "ts": 10125894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a0c0", "tid": 35568, "ts": 10126196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379ff0", "tid": 35568, "ts": 10126500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379490", "tid": 35568, "ts": 10126804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10126977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a260", "tid": 35568, "ts": 10127107, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10127281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a190", "tid": 35568, "ts": 10127411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10127585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037acf0", "tid": 35568, "ts": 10127782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10127956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378e10", "tid": 35568, "ts": 10128088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10128261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379700", "tid": 35568, "ts": 10128392, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10128565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b510", "tid": 35568, "ts": 10128696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10128871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a810", "tid": 35568, "ts": 10129002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10129175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bc60", "tid": 35568, "ts": 10129306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10129480, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379cb0", "tid": 35568, "ts": 10129610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10129783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378fb0", "tid": 35568, "ts": 10129913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10130087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bb90", "tid": 35568, "ts": 10130218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10130392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037af60", "tid": 35568, "ts": 10130523, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10130696, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379150", "tid": 35568, "ts": 10130827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b440", "tid": 35568, "ts": 10131130, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03797d0", "tid": 35568, "ts": 10131480, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131655, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b100", "tid": 35568, "ts": 10131786, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10131959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a330", "tid": 35568, "ts": 10132090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10132263, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378ad0", "tid": 35568, "ts": 10132393, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10132567, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b850", "tid": 35568, "ts": 10132697, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10132870, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378930", "tid": 35568, "ts": 10133001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10133175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03798a0", "tid": 35568, "ts": 10133305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10133478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037aa80", "tid": 35568, "ts": 10133609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10133783, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378a00", "tid": 35568, "ts": 10133913, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10134086, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b6b0", "tid": 35568, "ts": 10134216, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10134389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bac0", "tid": 35568, "ts": 10134520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10134694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379630", "tid": 35568, "ts": 10134839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135065, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378ee0", "tid": 35568, "ts": 10135196, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b780", "tid": 35568, "ts": 10135501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b1d0", "tid": 35568, "ts": 10135805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10135977, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a400", "tid": 35568, "ts": 10136109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10136282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379080", "tid": 35568, "ts": 10136412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10136585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379220", "tid": 35568, "ts": 10136716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10136887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379970", "tid": 35568, "ts": 10137018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10137191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b5e0", "tid": 35568, "ts": 10137322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10137496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378c70", "tid": 35568, "ts": 10137627, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10137800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379a40", "tid": 35568, "ts": 10137990, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10138164, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379f20", "tid": 35568, "ts": 10138295, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10138468, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037adc0", "tid": 35568, "ts": 10138598, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10138772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03793c0", "tid": 35568, "ts": 10138904, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b920", "tid": 35568, "ts": 10139209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b2a0", "tid": 35568, "ts": 10139513, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ae90", "tid": 35568, "ts": 10139815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10139988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379b10", "tid": 35568, "ts": 10140118, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10140290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b9f0", "tid": 35568, "ts": 10140421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10140595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a4d0", "tid": 35568, "ts": 10140725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10140898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a8e0", "tid": 35568, "ts": 10141030, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10141204, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378ba0", "tid": 35568, "ts": 10141334, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10141508, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ac20", "tid": 35568, "ts": 10141638, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10141811, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b370", "tid": 35568, "ts": 10141941, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10142115, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0378d40", "tid": 35568, "ts": 10142245, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10142418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379560", "tid": 35568, "ts": 10142549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10142722, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a9b0", "tid": 35568, "ts": 10142852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143025, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379be0", "tid": 35568, "ts": 10143155, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379d80", "tid": 35568, "ts": 10143457, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037b030", "tid": 35568, "ts": 10143759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10143933, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a5a0", "tid": 35568, "ts": 10144064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10144239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ab50", "tid": 35568, "ts": 10144372, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10144547, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0379e50", "tid": 35568, "ts": 10144678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10144851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a670", "tid": 35568, "ts": 10144982, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10145155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037a740", "tid": 35568, "ts": 10145285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10145459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d590", "tid": 35568, "ts": 10145589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10145762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e770", "tid": 35568, "ts": 10145893, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e500", "tid": 35568, "ts": 10146197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037db40", "tid": 35568, "ts": 10146500, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146673, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e020", "tid": 35568, "ts": 10146803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10146975, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c550", "tid": 35568, "ts": 10147105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10147279, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e5d0", "tid": 35568, "ts": 10147410, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10147583, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e6a0", "tid": 35568, "ts": 10147714, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10147887, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cf10", "tid": 35568, "ts": 10148018, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10148190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ca30", "tid": 35568, "ts": 10148320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10148493, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c3b0", "tid": 35568, "ts": 10148664, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10148843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d800", "tid": 35568, "ts": 10149014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10149211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e840", "tid": 35568, "ts": 10149342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10149515, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ef90", "tid": 35568, "ts": 10149646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10149820, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d8d0", "tid": 35568, "ts": 10150016, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10150188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c480", "tid": 35568, "ts": 10150319, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10150568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e910", "tid": 35568, "ts": 10150744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10150918, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e9e0", "tid": 35568, "ts": 10151050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10151225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f060", "tid": 35568, "ts": 10151356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10151530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037da70", "tid": 35568, "ts": 10151661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10151881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d4c0", "tid": 35568, "ts": 10152013, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10152186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d3f0", "tid": 35568, "ts": 10152317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10152490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c620", "tid": 35568, "ts": 10152621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10152793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bed0", "tid": 35568, "ts": 10152952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10153196, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037eab0", "tid": 35568, "ts": 10153354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10153527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037eb80", "tid": 35568, "ts": 10153659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10153832, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037dc10", "tid": 35568, "ts": 10153962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10154134, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ec50", "tid": 35568, "ts": 10154264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10154438, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e0f0", "tid": 35568, "ts": 10154569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10154742, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e1c0", "tid": 35568, "ts": 10154873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155045, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c960", "tid": 35568, "ts": 10155176, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cd70", "tid": 35568, "ts": 10155479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037dce0", "tid": 35568, "ts": 10155781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10155954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ed20", "tid": 35568, "ts": 10156084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10156256, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037edf0", "tid": 35568, "ts": 10156386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10156559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037eec0", "tid": 35568, "ts": 10156689, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10156862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bd30", "tid": 35568, "ts": 10156993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10157165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037de80", "tid": 35568, "ts": 10157296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10157469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c6f0", "tid": 35568, "ts": 10157599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10157773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cbd0", "tid": 35568, "ts": 10157903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158076, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d660", "tid": 35568, "ts": 10158207, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cb00", "tid": 35568, "ts": 10158512, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158685, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037be00", "tid": 35568, "ts": 10158815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10158987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cca0", "tid": 35568, "ts": 10159119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10159292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e290", "tid": 35568, "ts": 10159423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10159595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d320", "tid": 35568, "ts": 10159725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10159898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e360", "tid": 35568, "ts": 10160028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10160201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ce40", "tid": 35568, "ts": 10160331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10160504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037bfa0", "tid": 35568, "ts": 10160635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10160807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c070", "tid": 35568, "ts": 10160937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10161110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ddb0", "tid": 35568, "ts": 10161240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10161412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c140", "tid": 35568, "ts": 10161543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10161716, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c210", "tid": 35568, "ts": 10161845, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162018, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037cfe0", "tid": 35568, "ts": 10162149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162321, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d730", "tid": 35568, "ts": 10162452, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162625, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d9a0", "tid": 35568, "ts": 10162756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10162930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d180", "tid": 35568, "ts": 10163060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10163232, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c2e0", "tid": 35568, "ts": 10163362, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10163535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037df50", "tid": 35568, "ts": 10163666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10163839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d0b0", "tid": 35568, "ts": 10163969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10164143, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037e430", "tid": 35568, "ts": 10164273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10164446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c7c0", "tid": 35568, "ts": 10164577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10164751, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037d250", "tid": 35568, "ts": 10164881, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10165054, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037c890", "tid": 35568, "ts": 10165184, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10165356, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381b70", "tid": 35568, "ts": 10165528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10165701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380da0", "tid": 35568, "ts": 10165831, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381c40", "tid": 35568, "ts": 10166134, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381830", "tid": 35568, "ts": 10166436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166609, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03814f0", "tid": 35568, "ts": 10166739, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10166912, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f130", "tid": 35568, "ts": 10167042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10167215, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381eb0", "tid": 35568, "ts": 10167345, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10167518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381690", "tid": 35568, "ts": 10167649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10167821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03808c0", "tid": 35568, "ts": 10167952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10168125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380c00", "tid": 35568, "ts": 10168256, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10168428, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03811b0", "tid": 35568, "ts": 10168558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10168793, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f470", "tid": 35568, "ts": 10168923, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10169096, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03800a0", "tid": 35568, "ts": 10169226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10169398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381280", "tid": 35568, "ts": 10169530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10169704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03810e0", "tid": 35568, "ts": 10169833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03803e0", "tid": 35568, "ts": 10170136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380cd0", "tid": 35568, "ts": 10170439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170613, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03815c0", "tid": 35568, "ts": 10170744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10170916, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382390", "tid": 35568, "ts": 10171047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10171219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380f40", "tid": 35568, "ts": 10171350, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10171523, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380990", "tid": 35568, "ts": 10171653, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10171825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03819d0", "tid": 35568, "ts": 10171955, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10172128, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382120", "tid": 35568, "ts": 10172258, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10172431, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03804b0", "tid": 35568, "ts": 10172561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10172734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380240", "tid": 35568, "ts": 10172865, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173037, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380170", "tid": 35568, "ts": 10173167, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380a60", "tid": 35568, "ts": 10173469, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381f80", "tid": 35568, "ts": 10173773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10173987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f200", "tid": 35568, "ts": 10174117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10174292, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382050", "tid": 35568, "ts": 10174423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10174595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381760", "tid": 35568, "ts": 10174725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10174898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380580", "tid": 35568, "ts": 10175028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10175200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380e70", "tid": 35568, "ts": 10175331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10175503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381010", "tid": 35568, "ts": 10175633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10175807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381d10", "tid": 35568, "ts": 10175937, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10176110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f2d0", "tid": 35568, "ts": 10176240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10176412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380310", "tid": 35568, "ts": 10176543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10176717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380650", "tid": 35568, "ts": 10176847, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177021, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380720", "tid": 35568, "ts": 10177151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177324, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381350", "tid": 35568, "ts": 10177455, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177628, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0380b30", "tid": 35568, "ts": 10177758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10177930, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f7b0", "tid": 35568, "ts": 10178060, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10178233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381420", "tid": 35568, "ts": 10178363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10178536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381900", "tid": 35568, "ts": 10178667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10178839, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03807f0", "tid": 35568, "ts": 10178970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10179142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381aa0", "tid": 35568, "ts": 10179272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10179445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0381de0", "tid": 35568, "ts": 10179576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10179748, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03821f0", "tid": 35568, "ts": 10179879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180052, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03822c0", "tid": 35568, "ts": 10180182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180354, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382460", "tid": 35568, "ts": 10180484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180658, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f3a0", "tid": 35568, "ts": 10180788, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10180960, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f540", "tid": 35568, "ts": 10181091, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10181264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fbc0", "tid": 35568, "ts": 10181394, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10181568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f610", "tid": 35568, "ts": 10181698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10181871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f880", "tid": 35568, "ts": 10182001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10182174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f6e0", "tid": 35568, "ts": 10182304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10182476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037f950", "tid": 35568, "ts": 10182606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10182777, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fa20", "tid": 35568, "ts": 10182907, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10183079, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037faf0", "tid": 35568, "ts": 10183210, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10183383, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fc90", "tid": 35568, "ts": 10183538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10183712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fd60", "tid": 35568, "ts": 10183843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184016, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037fe30", "tid": 35568, "ts": 10184146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184389, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ff00", "tid": 35568, "ts": 10184520, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c037ffd0", "tid": 35568, "ts": 10184824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10184996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382ae0", "tid": 35568, "ts": 10185126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10185298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383d90", "tid": 35568, "ts": 10185429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10185601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384d00", "tid": 35568, "ts": 10185731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10185903, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383b20", "tid": 35568, "ts": 10186033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10186207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385380", "tid": 35568, "ts": 10186337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10186510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384820", "tid": 35568, "ts": 10186639, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10186813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385040", "tid": 35568, "ts": 10186943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10187117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03848f0", "tid": 35568, "ts": 10187247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10187420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03852b0", "tid": 35568, "ts": 10187552, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10187725, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385450", "tid": 35568, "ts": 10187855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383160", "tid": 35568, "ts": 10188159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384f70", "tid": 35568, "ts": 10188461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188632, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385520", "tid": 35568, "ts": 10188763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10188935, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383570", "tid": 35568, "ts": 10189066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10189238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03838b0", "tid": 35568, "ts": 10189368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10189541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03849c0", "tid": 35568, "ts": 10189671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10189843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03851e0", "tid": 35568, "ts": 10189973, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10190146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03840d0", "tid": 35568, "ts": 10190276, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10190450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03833d0", "tid": 35568, "ts": 10190580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10190752, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383e60", "tid": 35568, "ts": 10190882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191055, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382e20", "tid": 35568, "ts": 10191186, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191358, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385790", "tid": 35568, "ts": 10191488, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191660, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382ef0", "tid": 35568, "ts": 10191790, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10191962, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383f30", "tid": 35568, "ts": 10192093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10192266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383bf0", "tid": 35568, "ts": 10192396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10192568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384000", "tid": 35568, "ts": 10192698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10192871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03855f0", "tid": 35568, "ts": 10193002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10193174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384680", "tid": 35568, "ts": 10193305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10193477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382fc0", "tid": 35568, "ts": 10193608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10193782, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03841a0", "tid": 35568, "ts": 10193912, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10194084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385110", "tid": 35568, "ts": 10194215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10194387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385860", "tid": 35568, "ts": 10194517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10194714, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03856c0", "tid": 35568, "ts": 10194844, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383090", "tid": 35568, "ts": 10195147, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195319, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382530", "tid": 35568, "ts": 10195449, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382600", "tid": 35568, "ts": 10195754, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10195927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383cc0", "tid": 35568, "ts": 10196057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10196230, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03845b0", "tid": 35568, "ts": 10196360, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10196533, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383230", "tid": 35568, "ts": 10196663, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10196837, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03826d0", "tid": 35568, "ts": 10196967, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10197141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03827a0", "tid": 35568, "ts": 10197272, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10197444, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383300", "tid": 35568, "ts": 10197633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10197806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382c80", "tid": 35568, "ts": 10197938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10198110, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383980", "tid": 35568, "ts": 10198241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10198414, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384750", "tid": 35568, "ts": 10198545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10198717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383640", "tid": 35568, "ts": 10198888, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10199060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382bb0", "tid": 35568, "ts": 10199191, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10199363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382870", "tid": 35568, "ts": 10199495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10199667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382940", "tid": 35568, "ts": 10199797, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10200160, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382a10", "tid": 35568, "ts": 10200402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10200681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384a90", "tid": 35568, "ts": 10200863, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10201172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384b60", "tid": 35568, "ts": 10201303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10201475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383a50", "tid": 35568, "ts": 10201606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10201779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0382d50", "tid": 35568, "ts": 10201909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384270", "tid": 35568, "ts": 10202213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03834a0", "tid": 35568, "ts": 10202516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202689, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0383710", "tid": 35568, "ts": 10202819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10202992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03837e0", "tid": 35568, "ts": 10203122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10203294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384340", "tid": 35568, "ts": 10203425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10203600, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384410", "tid": 35568, "ts": 10203731, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10203905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03844e0", "tid": 35568, "ts": 10204035, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10204207, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384c30", "tid": 35568, "ts": 10204337, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10204510, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384dd0", "tid": 35568, "ts": 10204640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10204813, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0384ea0", "tid": 35568, "ts": 10204943, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10205116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386be0", "tid": 35568, "ts": 10205246, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10205420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385fb0", "tid": 35568, "ts": 10205549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10205721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386d80", "tid": 35568, "ts": 10205851, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206023, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386cb0", "tid": 35568, "ts": 10206151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03881d0", "tid": 35568, "ts": 10206505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388920", "tid": 35568, "ts": 10206815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10206988, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03862f0", "tid": 35568, "ts": 10207119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10207290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387810", "tid": 35568, "ts": 10207420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10207593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03868a0", "tid": 35568, "ts": 10207724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10207897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387740", "tid": 35568, "ts": 10208027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10208200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388850", "tid": 35568, "ts": 10208330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10208503, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388100", "tid": 35568, "ts": 10208633, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10208805, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385c70", "tid": 35568, "ts": 10208935, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10209108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385ad0", "tid": 35568, "ts": 10209239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10209410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386700", "tid": 35568, "ts": 10209540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10209712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388510", "tid": 35568, "ts": 10209843, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385d40", "tid": 35568, "ts": 10210146, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03863c0", "tid": 35568, "ts": 10210448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385ba0", "tid": 35568, "ts": 10210750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10210923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03875a0", "tid": 35568, "ts": 10211052, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10211224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387c20", "tid": 35568, "ts": 10211354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10211526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385a00", "tid": 35568, "ts": 10211656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10211829, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387670", "tid": 35568, "ts": 10211960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10212133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385ee0", "tid": 35568, "ts": 10212263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10212435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03882a0", "tid": 35568, "ts": 10212565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10212737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03885e0", "tid": 35568, "ts": 10212867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213039, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03878e0", "tid": 35568, "ts": 10213170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213343, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386f20", "tid": 35568, "ts": 10213473, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213645, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386490", "tid": 35568, "ts": 10213776, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10213950, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386970", "tid": 35568, "ts": 10214080, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10214252, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385e10", "tid": 35568, "ts": 10214383, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10214554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386a40", "tid": 35568, "ts": 10214684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10214856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386e50", "tid": 35568, "ts": 10214986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10215158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388440", "tid": 35568, "ts": 10215287, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10215484, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387cf0", "tid": 35568, "ts": 10215648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10215821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03879b0", "tid": 35568, "ts": 10215951, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10216124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386080", "tid": 35568, "ts": 10216254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10216425, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386220", "tid": 35568, "ts": 10216555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10216728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388b90", "tid": 35568, "ts": 10216858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387330", "tid": 35568, "ts": 10217161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388370", "tid": 35568, "ts": 10217465, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386630", "tid": 35568, "ts": 10217768, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10217941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387a80", "tid": 35568, "ts": 10218071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10218243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386150", "tid": 35568, "ts": 10218374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10218548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388ac0", "tid": 35568, "ts": 10218678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10218849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388030", "tid": 35568, "ts": 10218979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10219153, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387dc0", "tid": 35568, "ts": 10219284, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10219457, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03886b0", "tid": 35568, "ts": 10219587, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10219759, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387b50", "tid": 35568, "ts": 10219889, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220063, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387190", "tid": 35568, "ts": 10220193, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220365, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388780", "tid": 35568, "ts": 10220495, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220668, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03889f0", "tid": 35568, "ts": 10220798, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10220971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387f60", "tid": 35568, "ts": 10221101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10221274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387e90", "tid": 35568, "ts": 10221405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10221579, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388c60", "tid": 35568, "ts": 10221709, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10221882, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386560", "tid": 35568, "ts": 10222012, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10222184, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0385930", "tid": 35568, "ts": 10222315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10222488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03867d0", "tid": 35568, "ts": 10222618, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10222790, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387260", "tid": 35568, "ts": 10222921, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10223094, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386b10", "tid": 35568, "ts": 10223224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10223397, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0386ff0", "tid": 35568, "ts": 10223527, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10223700, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03870c0", "tid": 35568, "ts": 10223830, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224003, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0387400", "tid": 35568, "ts": 10224133, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224306, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03874d0", "tid": 35568, "ts": 10224436, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a590", "tid": 35568, "ts": 10224737, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10224910, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a3f0", "tid": 35568, "ts": 10225040, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10225213, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b840", "tid": 35568, "ts": 10225343, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10225516, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b0f0", "tid": 35568, "ts": 10225645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10225818, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a730", "tid": 35568, "ts": 10225947, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10226120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a800", "tid": 35568, "ts": 10226312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10226486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b5d0", "tid": 35568, "ts": 10226640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10226814, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bd20", "tid": 35568, "ts": 10226944, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10227118, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389550", "tid": 35568, "ts": 10227249, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10227421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b1c0", "tid": 35568, "ts": 10227551, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10227724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ab40", "tid": 35568, "ts": 10227854, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228028, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a320", "tid": 35568, "ts": 10228158, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228331, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389620", "tid": 35568, "ts": 10228461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b020", "tid": 35568, "ts": 10228763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10228936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038aa70", "tid": 35568, "ts": 10229066, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10229238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bf90", "tid": 35568, "ts": 10229368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10229540, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a8d0", "tid": 35568, "ts": 10229671, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10229844, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038af50", "tid": 35568, "ts": 10229974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10230147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a250", "tid": 35568, "ts": 10230277, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10230450, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b500", "tid": 35568, "ts": 10230580, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10230753, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389a30", "tid": 35568, "ts": 10230883, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10231056, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b6a0", "tid": 35568, "ts": 10231226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10231399, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389ca0", "tid": 35568, "ts": 10231529, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10231702, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389210", "tid": 35568, "ts": 10231833, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232005, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389b00", "tid": 35568, "ts": 10232135, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03896f0", "tid": 35568, "ts": 10232439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232610, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b770", "tid": 35568, "ts": 10232741, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10232955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03897c0", "tid": 35568, "ts": 10233093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10233266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389d70", "tid": 35568, "ts": 10233397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10233570, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c060", "tid": 35568, "ts": 10233701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10233873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389890", "tid": 35568, "ts": 10234003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10234176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b290", "tid": 35568, "ts": 10234306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10234478, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bab0", "tid": 35568, "ts": 10234608, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10234781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bec0", "tid": 35568, "ts": 10234911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235084, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ace0", "tid": 35568, "ts": 10235215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235387, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b360", "tid": 35568, "ts": 10235517, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235690, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bb80", "tid": 35568, "ts": 10235821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10235994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038adb0", "tid": 35568, "ts": 10236125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10236298, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b910", "tid": 35568, "ts": 10236429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10236602, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389fe0", "tid": 35568, "ts": 10236732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10236905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b9e0", "tid": 35568, "ts": 10237036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10237208, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a9a0", "tid": 35568, "ts": 10237339, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10237512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389960", "tid": 35568, "ts": 10237642, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10237815, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bc50", "tid": 35568, "ts": 10237945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10238117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389e40", "tid": 35568, "ts": 10238247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10238420, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ac10", "tid": 35568, "ts": 10238550, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10238724, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038bdf0", "tid": 35568, "ts": 10238855, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239027, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a0b0", "tid": 35568, "ts": 10239157, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239330, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ae80", "tid": 35568, "ts": 10239461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388d30", "tid": 35568, "ts": 10239764, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10239938, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038b430", "tid": 35568, "ts": 10240068, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10240241, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388e00", "tid": 35568, "ts": 10240371, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10240543, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388ed0", "tid": 35568, "ts": 10240674, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10240846, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a4c0", "tid": 35568, "ts": 10240976, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10241149, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0388fa0", "tid": 35568, "ts": 10241280, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10241452, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389f10", "tid": 35568, "ts": 10241583, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10241756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a660", "tid": 35568, "ts": 10241887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389070", "tid": 35568, "ts": 10242190, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242363, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389bd0", "tid": 35568, "ts": 10242493, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389140", "tid": 35568, "ts": 10242796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10242969, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038a180", "tid": 35568, "ts": 10243100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10243272, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03892e0", "tid": 35568, "ts": 10243402, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10243576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03893b0", "tid": 35568, "ts": 10243707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10243879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0389480", "tid": 35568, "ts": 10244009, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10244182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038caf0", "tid": 35568, "ts": 10244312, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10244485, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d3e0", "tid": 35568, "ts": 10244615, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10244787, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e5c0", "tid": 35568, "ts": 10244917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10245089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038da60", "tid": 35568, "ts": 10245219, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10245391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e900", "tid": 35568, "ts": 10245521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10245694, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038eaa0", "tid": 35568, "ts": 10245824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246042, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e420", "tid": 35568, "ts": 10246174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cc90", "tid": 35568, "ts": 10246476, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246649, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e010", "tid": 35568, "ts": 10246820, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10246992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ce30", "tid": 35568, "ts": 10247122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10247295, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c7b0", "tid": 35568, "ts": 10247425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10247598, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cd60", "tid": 35568, "ts": 10247728, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10247902, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d990", "tid": 35568, "ts": 10248033, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10248206, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d7f0", "tid": 35568, "ts": 10248336, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10248509, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ed10", "tid": 35568, "ts": 10248640, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10248812, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cbc0", "tid": 35568, "ts": 10248942, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10249116, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ef80", "tid": 35568, "ts": 10249247, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10249418, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038dda0", "tid": 35568, "ts": 10249549, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10249721, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038de70", "tid": 35568, "ts": 10249852, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250024, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c950", "tid": 35568, "ts": 10250154, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250326, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c6e0", "tid": 35568, "ts": 10250456, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250629, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ede0", "tid": 35568, "ts": 10250759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10250931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d0a0", "tid": 35568, "ts": 10251061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10251234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ca20", "tid": 35568, "ts": 10251363, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10251535, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038db30", "tid": 35568, "ts": 10251666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10251838, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d720", "tid": 35568, "ts": 10251969, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10252141, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038dc00", "tid": 35568, "ts": 10252271, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10252443, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ec40", "tid": 35568, "ts": 10252573, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10252744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e690", "tid": 35568, "ts": 10252875, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253047, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d4b0", "tid": 35568, "ts": 10253177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253350, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d580", "tid": 35568, "ts": 10253481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e9d0", "tid": 35568, "ts": 10253784, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10253956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038df40", "tid": 35568, "ts": 10254086, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10254258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c470", "tid": 35568, "ts": 10254388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10254560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e0e0", "tid": 35568, "ts": 10254690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10254863, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f050", "tid": 35568, "ts": 10254993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10255165, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cf00", "tid": 35568, "ts": 10255296, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10255467, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e1b0", "tid": 35568, "ts": 10255596, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10255769, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e280", "tid": 35568, "ts": 10255899, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f120", "tid": 35568, "ts": 10256200, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256373, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038cfd0", "tid": 35568, "ts": 10256504, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f1f0", "tid": 35568, "ts": 10256806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10256979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c880", "tid": 35568, "ts": 10257109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10257281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038eeb0", "tid": 35568, "ts": 10257411, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10257584, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d170", "tid": 35568, "ts": 10257715, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10257886, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d650", "tid": 35568, "ts": 10258017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10258188, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038eb70", "tid": 35568, "ts": 10258318, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10258491, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e760", "tid": 35568, "ts": 10258621, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10258794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038dcd0", "tid": 35568, "ts": 10258924, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10259097, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e350", "tid": 35568, "ts": 10259228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10259400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d240", "tid": 35568, "ts": 10259531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10259704, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f2c0", "tid": 35568, "ts": 10259834, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f390", "tid": 35568, "ts": 10260136, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260309, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f460", "tid": 35568, "ts": 10260439, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260611, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c130", "tid": 35568, "ts": 10260742, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10260913, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c200", "tid": 35568, "ts": 10261044, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10261216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d310", "tid": 35568, "ts": 10261347, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10261518, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038d8c0", "tid": 35568, "ts": 10261649, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10261822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c2d0", "tid": 35568, "ts": 10261952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10262127, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e4f0", "tid": 35568, "ts": 10262257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10262490, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c3a0", "tid": 35568, "ts": 10262622, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10262794, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c540", "tid": 35568, "ts": 10262925, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10263098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038e830", "tid": 35568, "ts": 10263228, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10263400, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038c610", "tid": 35568, "ts": 10263530, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10263767, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391ea0", "tid": 35568, "ts": 10263900, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10264078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390f30", "tid": 35568, "ts": 10264235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10264416, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03925f0", "tid": 35568, "ts": 10264558, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10264730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390d90", "tid": 35568, "ts": 10264861, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390640", "tid": 35568, "ts": 10265164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fd50", "tid": 35568, "ts": 10265467, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265640, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03910d0", "tid": 35568, "ts": 10265770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10265944, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390980", "tid": 35568, "ts": 10266074, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10266247, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391000", "tid": 35568, "ts": 10266420, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10266593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392040", "tid": 35568, "ts": 10266724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10266897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392790", "tid": 35568, "ts": 10267027, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10267200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391b60", "tid": 35568, "ts": 10267330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10267502, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f7a0", "tid": 35568, "ts": 10267688, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10267862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03908b0", "tid": 35568, "ts": 10267993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10268167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fbb0", "tid": 35568, "ts": 10268297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10268469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391d00", "tid": 35568, "ts": 10268600, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10268773, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03911a0", "tid": 35568, "ts": 10268903, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269075, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391270", "tid": 35568, "ts": 10269206, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269378, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f870", "tid": 35568, "ts": 10269509, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269681, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391820", "tid": 35568, "ts": 10269811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10269984, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391340", "tid": 35568, "ts": 10270114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10270286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391750", "tid": 35568, "ts": 10270417, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10270590, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390300", "tid": 35568, "ts": 10270721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10270893, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f6d0", "tid": 35568, "ts": 10271023, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10271195, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392380", "tid": 35568, "ts": 10271326, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10271498, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392110", "tid": 35568, "ts": 10271628, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10271801, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391680", "tid": 35568, "ts": 10271931, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10272105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391410", "tid": 35568, "ts": 10272236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10272408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03926c0", "tid": 35568, "ts": 10272538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10272710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390a50", "tid": 35568, "ts": 10272841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10273015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03903d0", "tid": 35568, "ts": 10273145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10273318, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392860", "tid": 35568, "ts": 10273448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10273620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390e60", "tid": 35568, "ts": 10274946, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10275126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03922b0", "tid": 35568, "ts": 10275262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10275436, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391f70", "tid": 35568, "ts": 10275566, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10275740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03914e0", "tid": 35568, "ts": 10275871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03904a0", "tid": 35568, "ts": 10276174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f530", "tid": 35568, "ts": 10276477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03919c0", "tid": 35568, "ts": 10276782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10276954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03915b0", "tid": 35568, "ts": 10277085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10277257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391dd0", "tid": 35568, "ts": 10277388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10277560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391a90", "tid": 35568, "ts": 10277691, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10277864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03918f0", "tid": 35568, "ts": 10278057, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10278289, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fe20", "tid": 35568, "ts": 10278425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10278599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390b20", "tid": 35568, "ts": 10278732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10278905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390710", "tid": 35568, "ts": 10279064, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10279237, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fef0", "tid": 35568, "ts": 10279370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10279545, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0391c30", "tid": 35568, "ts": 10279676, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10279849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03921e0", "tid": 35568, "ts": 10280007, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10280183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392450", "tid": 35568, "ts": 10280315, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10280488, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03907e0", "tid": 35568, "ts": 10280620, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10280796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f600", "tid": 35568, "ts": 10280928, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10281103, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392520", "tid": 35568, "ts": 10281234, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10281408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390230", "tid": 35568, "ts": 10281538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10281711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390bf0", "tid": 35568, "ts": 10281842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10282060, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390cc0", "tid": 35568, "ts": 10282192, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10282367, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038f940", "tid": 35568, "ts": 10282501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10282675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fae0", "tid": 35568, "ts": 10282821, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fa10", "tid": 35568, "ts": 10283142, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038fc80", "tid": 35568, "ts": 10283446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390160", "tid": 35568, "ts": 10283751, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10283927, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c038ffc0", "tid": 35568, "ts": 10284059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10284233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390090", "tid": 35568, "ts": 10284364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10284538, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0390570", "tid": 35568, "ts": 10284670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10284842, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395b90", "tid": 35568, "ts": 10284974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10285147, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393490", "tid": 35568, "ts": 10285278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10285453, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394670", "tid": 35568, "ts": 10285585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10285770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03944d0", "tid": 35568, "ts": 10285945, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10286117, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395850", "tid": 35568, "ts": 10286248, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10286421, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395370", "tid": 35568, "ts": 10286553, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10286726, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393a40", "tid": 35568, "ts": 10286858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03940c0", "tid": 35568, "ts": 10287162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287335, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03951d0", "tid": 35568, "ts": 10287466, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287638, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395440", "tid": 35568, "ts": 10287770, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10287943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393b10", "tid": 35568, "ts": 10288073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10288246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394190", "tid": 35568, "ts": 10288376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10288549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395510", "tid": 35568, "ts": 10288680, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10288854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394a80", "tid": 35568, "ts": 10288984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10289157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394b50", "tid": 35568, "ts": 10289289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10289462, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394330", "tid": 35568, "ts": 10289593, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10289766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393be0", "tid": 35568, "ts": 10289897, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290070, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394e90", "tid": 35568, "ts": 10290202, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290375, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393150", "tid": 35568, "ts": 10290505, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290679, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394810", "tid": 35568, "ts": 10290809, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10290982, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393700", "tid": 35568, "ts": 10291113, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10291286, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395100", "tid": 35568, "ts": 10291418, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10291591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393cb0", "tid": 35568, "ts": 10291721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10291894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394260", "tid": 35568, "ts": 10292025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10292197, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393d80", "tid": 35568, "ts": 10292328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10292501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393560", "tid": 35568, "ts": 10292632, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10292804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392ad0", "tid": 35568, "ts": 10292936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10293108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395920", "tid": 35568, "ts": 10293239, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10293412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392fb0", "tid": 35568, "ts": 10293543, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10293868, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393630", "tid": 35568, "ts": 10294002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10294176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392e10", "tid": 35568, "ts": 10294307, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10294481, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03937d0", "tid": 35568, "ts": 10294738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10294911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394400", "tid": 35568, "ts": 10295043, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10295217, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392ee0", "tid": 35568, "ts": 10295348, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10295522, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03948e0", "tid": 35568, "ts": 10295652, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10295825, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394740", "tid": 35568, "ts": 10295957, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10296130, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03932f0", "tid": 35568, "ts": 10296261, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10296433, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03945a0", "tid": 35568, "ts": 10296565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10296739, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03949b0", "tid": 35568, "ts": 10296870, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297043, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03933c0", "tid": 35568, "ts": 10297175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297348, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394c20", "tid": 35568, "ts": 10297479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393e50", "tid": 35568, "ts": 10297783, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10297956, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393f20", "tid": 35568, "ts": 10298087, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10298259, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03955e0", "tid": 35568, "ts": 10298390, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10298564, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393970", "tid": 35568, "ts": 10298696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10298869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394cf0", "tid": 35568, "ts": 10299000, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10299173, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03938a0", "tid": 35568, "ts": 10299303, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10299476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394dc0", "tid": 35568, "ts": 10299607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10299780, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392c70", "tid": 35568, "ts": 10299910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300085, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393ff0", "tid": 35568, "ts": 10300215, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300388, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0394f60", "tid": 35568, "ts": 10300519, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300692, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395030", "tid": 35568, "ts": 10300822, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10300994, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392ba0", "tid": 35568, "ts": 10301125, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10301297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395780", "tid": 35568, "ts": 10301427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10301623, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03952a0", "tid": 35568, "ts": 10301758, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10301931, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03956b0", "tid": 35568, "ts": 10302061, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10302234, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03959f0", "tid": 35568, "ts": 10302364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10302536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395ac0", "tid": 35568, "ts": 10302666, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10302840, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395c60", "tid": 35568, "ts": 10302970, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10303142, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392930", "tid": 35568, "ts": 10303273, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10303445, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392a00", "tid": 35568, "ts": 10303576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10303749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0392d40", "tid": 35568, "ts": 10303879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393080", "tid": 35568, "ts": 10304182, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304355, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0393220", "tid": 35568, "ts": 10304485, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304657, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397b40", "tid": 35568, "ts": 10304787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10304959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396ca0", "tid": 35568, "ts": 10305090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10305264, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397e80", "tid": 35568, "ts": 10305395, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10305568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395e00", "tid": 35568, "ts": 10305699, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10305871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397c10", "tid": 35568, "ts": 10306002, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10306175, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03966f0", "tid": 35568, "ts": 10306305, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10306479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03985d0", "tid": 35568, "ts": 10306610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10306784, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398d20", "tid": 35568, "ts": 10306915, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307087, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396210", "tid": 35568, "ts": 10307218, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307391, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396b00", "tid": 35568, "ts": 10307521, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307693, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397730", "tid": 35568, "ts": 10307824, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10307996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397ce0", "tid": 35568, "ts": 10308126, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10308297, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395ed0", "tid": 35568, "ts": 10308429, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10308601, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398840", "tid": 35568, "ts": 10308732, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10308905, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398f90", "tid": 35568, "ts": 10309036, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10309244, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03980f0", "tid": 35568, "ts": 10309388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10309675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396a30", "tid": 35568, "ts": 10309832, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10310100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397250", "tid": 35568, "ts": 10310232, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10310405, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397f50", "tid": 35568, "ts": 10310536, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10310708, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03967c0", "tid": 35568, "ts": 10310840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311013, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03974c0", "tid": 35568, "ts": 10311144, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398910", "tid": 35568, "ts": 10311448, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311621, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398430", "tid": 35568, "ts": 10311752, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10311924, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397db0", "tid": 35568, "ts": 10312055, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10312227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396890", "tid": 35568, "ts": 10312358, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10312530, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395fa0", "tid": 35568, "ts": 10312661, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10312833, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396960", "tid": 35568, "ts": 10312963, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10313137, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397660", "tid": 35568, "ts": 10313267, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10313440, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398c50", "tid": 35568, "ts": 10313570, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10313743, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396bd0", "tid": 35568, "ts": 10313873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314046, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397320", "tid": 35568, "ts": 10314177, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314349, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03973f0", "tid": 35568, "ts": 10314479, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314652, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397590", "tid": 35568, "ts": 10314782, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10314955, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396d70", "tid": 35568, "ts": 10315084, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10315257, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396e40", "tid": 35568, "ts": 10315388, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10315560, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398df0", "tid": 35568, "ts": 10315706, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10315879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397800", "tid": 35568, "ts": 10316010, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10316182, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398500", "tid": 35568, "ts": 10316313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10316486, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03989e0", "tid": 35568, "ts": 10316616, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10316789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398ec0", "tid": 35568, "ts": 10316920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10317092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396f10", "tid": 35568, "ts": 10317222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10317395, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398ab0", "tid": 35568, "ts": 10317525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10317698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03978d0", "tid": 35568, "ts": 10317829, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318001, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396550", "tid": 35568, "ts": 10318132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318305, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399060", "tid": 35568, "ts": 10318435, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318608, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03979a0", "tid": 35568, "ts": 10318767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10318940, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398770", "tid": 35568, "ts": 10319072, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10319245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396fe0", "tid": 35568, "ts": 10319375, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10319592, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398b80", "tid": 35568, "ts": 10319724, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10319897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397a70", "tid": 35568, "ts": 10320028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10320201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03986a0", "tid": 35568, "ts": 10320332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10320505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398020", "tid": 35568, "ts": 10320636, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10320808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03981c0", "tid": 35568, "ts": 10320939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10321111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03970b0", "tid": 35568, "ts": 10321241, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10321413, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396070", "tid": 35568, "ts": 10321544, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10321717, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0397180", "tid": 35568, "ts": 10321848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398290", "tid": 35568, "ts": 10322151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0398360", "tid": 35568, "ts": 10322453, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322626, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0395d30", "tid": 35568, "ts": 10322756, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10322929, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396140", "tid": 35568, "ts": 10323059, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10323233, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03962e0", "tid": 35568, "ts": 10323364, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10323536, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03963b0", "tid": 35568, "ts": 10323667, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10323841, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396620", "tid": 35568, "ts": 10323971, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10324144, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0396480", "tid": 35568, "ts": 10324275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10324446, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c2c0", "tid": 35568, "ts": 10324576, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10324750, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b4f0", "tid": 35568, "ts": 10325017, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10325190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a0a0", "tid": 35568, "ts": 10325321, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10325494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399130", "tid": 35568, "ts": 10325624, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10325796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039acd0", "tid": 35568, "ts": 10325927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10326100, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a580", "tid": 35568, "ts": 10326231, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10326404, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a240", "tid": 35568, "ts": 10326534, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10326706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a720", "tid": 35568, "ts": 10326837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a170", "tid": 35568, "ts": 10327141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327314, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399d60", "tid": 35568, "ts": 10327445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c1f0", "tid": 35568, "ts": 10327747, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10327920, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399e30", "tid": 35568, "ts": 10328050, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10328223, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039af40", "tid": 35568, "ts": 10328354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10328526, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b010", "tid": 35568, "ts": 10328657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10328830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ada0", "tid": 35568, "ts": 10328962, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10329133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c050", "tid": 35568, "ts": 10329266, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10329439, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a310", "tid": 35568, "ts": 10329569, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10329741, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a3e0", "tid": 35568, "ts": 10329872, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a4b0", "tid": 35568, "ts": 10330175, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330347, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a7f0", "tid": 35568, "ts": 10330478, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b0e0", "tid": 35568, "ts": 10330781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10330954, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399f00", "tid": 35568, "ts": 10331085, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10331258, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ae70", "tid": 35568, "ts": 10331389, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10331561, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b900", "tid": 35568, "ts": 10331692, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10331864, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a650", "tid": 35568, "ts": 10331994, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10332166, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399fd0", "tid": 35568, "ts": 10332298, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10332471, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a8c0", "tid": 35568, "ts": 10332602, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10332775, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b1b0", "tid": 35568, "ts": 10332905, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039a990", "tid": 35568, "ts": 10333209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333381, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039aa60", "tid": 35568, "ts": 10333511, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333684, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ab30", "tid": 35568, "ts": 10333815, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10333987, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ac00", "tid": 35568, "ts": 10334117, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10334290, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bd10", "tid": 35568, "ts": 10334421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10334594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b5c0", "tid": 35568, "ts": 10334725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10334897, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c390", "tid": 35568, "ts": 10335028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10335200, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b280", "tid": 35568, "ts": 10335374, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10335546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c460", "tid": 35568, "ts": 10335677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10335849, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c120", "tid": 35568, "ts": 10335980, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10336152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399c90", "tid": 35568, "ts": 10336283, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10336454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b350", "tid": 35568, "ts": 10336585, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10336757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b830", "tid": 35568, "ts": 10336887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b690", "tid": 35568, "ts": 10337189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b420", "tid": 35568, "ts": 10337492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337665, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399200", "tid": 35568, "ts": 10337796, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10337970, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03992d0", "tid": 35568, "ts": 10338100, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10338273, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b760", "tid": 35568, "ts": 10338403, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10338576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399a20", "tid": 35568, "ts": 10338707, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10338879, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039b9d0", "tid": 35568, "ts": 10339067, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10339239, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039beb0", "tid": 35568, "ts": 10339370, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10339542, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039baa0", "tid": 35568, "ts": 10339672, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10339845, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bb70", "tid": 35568, "ts": 10339975, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10340148, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399af0", "tid": 35568, "ts": 10340278, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10340501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03993a0", "tid": 35568, "ts": 10340648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10340822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bc40", "tid": 35568, "ts": 10340953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10341126, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bde0", "tid": 35568, "ts": 10341257, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10341429, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039bf80", "tid": 35568, "ts": 10341561, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10341734, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03996e0", "tid": 35568, "ts": 10341864, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399470", "tid": 35568, "ts": 10342166, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342339, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399bc0", "tid": 35568, "ts": 10342470, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399540", "tid": 35568, "ts": 10342773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10342946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399610", "tid": 35568, "ts": 10343076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10343249, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03997b0", "tid": 35568, "ts": 10343379, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10343552, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399880", "tid": 35568, "ts": 10343683, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10343854, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c0399950", "tid": 35568, "ts": 10343985, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10344158, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d8b0", "tid": 35568, "ts": 10344289, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10344461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c600", "tid": 35568, "ts": 10344592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10344765, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d230", "tid": 35568, "ts": 10344896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e750", "tid": 35568, "ts": 10345199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f380", "tid": 35568, "ts": 10345502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039df30", "tid": 35568, "ts": 10345805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10345979, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039da50", "tid": 35568, "ts": 10346111, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10346283, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e410", "tid": 35568, "ts": 10346414, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10346587, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039db20", "tid": 35568, "ts": 10346717, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10346889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039dcc0", "tid": 35568, "ts": 10347020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10347193, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d160", "tid": 35568, "ts": 10347324, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10347496, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ce20", "tid": 35568, "ts": 10347626, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10347800, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e5b0", "tid": 35568, "ts": 10347930, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10348104, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ca10", "tid": 35568, "ts": 10348235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10348407, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d300", "tid": 35568, "ts": 10348537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10348710, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f1e0", "tid": 35568, "ts": 10348840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f450", "tid": 35568, "ts": 10349143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f520", "tid": 35568, "ts": 10349446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e000", "tid": 35568, "ts": 10349749, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10349922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f110", "tid": 35568, "ts": 10350053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10350225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cef0", "tid": 35568, "ts": 10350355, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10350527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ef70", "tid": 35568, "ts": 10350658, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10350830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e0d0", "tid": 35568, "ts": 10350961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10351133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ed00", "tid": 35568, "ts": 10351263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10351434, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e1a0", "tid": 35568, "ts": 10351589, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10351762, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039edd0", "tid": 35568, "ts": 10351894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039dd90", "tid": 35568, "ts": 10352197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352370, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cfc0", "tid": 35568, "ts": 10352501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ea90", "tid": 35568, "ts": 10352805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10352978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e4e0", "tid": 35568, "ts": 10353109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10353282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d710", "tid": 35568, "ts": 10353413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10353586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e680", "tid": 35568, "ts": 10353716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10353889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d3d0", "tid": 35568, "ts": 10354019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10354191, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c6d0", "tid": 35568, "ts": 10354322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10354494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039eb60", "tid": 35568, "ts": 10354625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10354796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ec30", "tid": 35568, "ts": 10354927, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10355099, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f860", "tid": 35568, "ts": 10355230, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10355402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e270", "tid": 35568, "ts": 10355533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10355706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d570", "tid": 35568, "ts": 10355837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10356008, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f6c0", "tid": 35568, "ts": 10356224, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10356398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e8f0", "tid": 35568, "ts": 10356531, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10356705, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039eea0", "tid": 35568, "ts": 10356837, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357010, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f2b0", "tid": 35568, "ts": 10357141, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f040", "tid": 35568, "ts": 10357446, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357618, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c530", "tid": 35568, "ts": 10357748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10357921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cbb0", "tid": 35568, "ts": 10358053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10358225, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c7a0", "tid": 35568, "ts": 10358356, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10358528, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f5f0", "tid": 35568, "ts": 10358659, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10358831, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e340", "tid": 35568, "ts": 10358961, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10359133, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e820", "tid": 35568, "ts": 10359264, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10359437, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039e9c0", "tid": 35568, "ts": 10359567, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10359740, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c870", "tid": 35568, "ts": 10359871, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360044, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d640", "tid": 35568, "ts": 10360174, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360346, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f790", "tid": 35568, "ts": 10360477, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360650, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d090", "tid": 35568, "ts": 10360781, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10360953, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d4a0", "tid": 35568, "ts": 10361083, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10361255, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d7e0", "tid": 35568, "ts": 10361386, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10361559, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039d980", "tid": 35568, "ts": 10361690, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10361862, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039c940", "tid": 35568, "ts": 10361993, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10362167, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039dbf0", "tid": 35568, "ts": 10362297, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10362469, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cae0", "tid": 35568, "ts": 10362599, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10362772, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039de60", "tid": 35568, "ts": 10362902, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cc80", "tid": 35568, "ts": 10363204, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363377, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039cd50", "tid": 35568, "ts": 10363507, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363680, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0700", "tid": 35568, "ts": 10363811, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10363983, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a26b0", "tid": 35568, "ts": 10364114, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10364287, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a19b0", "tid": 35568, "ts": 10364481, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10364654, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a21d0", "tid": 35568, "ts": 10364785, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10364958, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2b90", "tid": 35568, "ts": 10365088, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10365261, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1670", "tid": 35568, "ts": 10365391, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10365565, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a15a0", "tid": 35568, "ts": 10365696, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10365869, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1e90", "tid": 35568, "ts": 10365999, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10366172, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0e50", "tid": 35568, "ts": 10366304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10366476, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2780", "tid": 35568, "ts": 10366607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10366779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1810", "tid": 35568, "ts": 10366910, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1740", "tid": 35568, "ts": 10367213, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1a80", "tid": 35568, "ts": 10367516, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fa00", "tid": 35568, "ts": 10367819, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10367992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2510", "tid": 35568, "ts": 10368123, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10368296, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fad0", "tid": 35568, "ts": 10368427, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10368599, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2c60", "tid": 35568, "ts": 10368730, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10368945, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0630", "tid": 35568, "ts": 10369076, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10369248, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039ffb0", "tid": 35568, "ts": 10369378, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10369550, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2920", "tid": 35568, "ts": 10369722, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10369895, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1f60", "tid": 35568, "ts": 10370025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10370199, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2030", "tid": 35568, "ts": 10370328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10370500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0080", "tid": 35568, "ts": 10370631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10370803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a25e0", "tid": 35568, "ts": 10370934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10371105, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0560", "tid": 35568, "ts": 10371235, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10371408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1400", "tid": 35568, "ts": 10371538, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10371778, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a29f0", "tid": 35568, "ts": 10371998, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10372171, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0cb0", "tid": 35568, "ts": 10372301, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10372475, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a18e0", "tid": 35568, "ts": 10372606, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10372779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a02f0", "tid": 35568, "ts": 10372909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039f930", "tid": 35568, "ts": 10373211, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1b50", "tid": 35568, "ts": 10373514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2ac0", "tid": 35568, "ts": 10373817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10373989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fba0", "tid": 35568, "ts": 10374120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10374293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2850", "tid": 35568, "ts": 10374423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10374595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2100", "tid": 35568, "ts": 10374726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10374899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2440", "tid": 35568, "ts": 10375029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10375201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fc70", "tid": 35568, "ts": 10375331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10375505, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1c20", "tid": 35568, "ts": 10375635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10375808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a22a0", "tid": 35568, "ts": 10375938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10376111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fd40", "tid": 35568, "ts": 10376242, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10376415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0b10", "tid": 35568, "ts": 10376545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10376718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fe10", "tid": 35568, "ts": 10376862, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377035, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1cf0", "tid": 35568, "ts": 10377165, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377338, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0be0", "tid": 35568, "ts": 10377468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377641, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2370", "tid": 35568, "ts": 10377771, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10377943, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0f20", "tid": 35568, "ts": 10378073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10378246, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1dc0", "tid": 35568, "ts": 10378376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10378548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c039fee0", "tid": 35568, "ts": 10378678, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10378851, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0150", "tid": 35568, "ts": 10378981, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10379152, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0a40", "tid": 35568, "ts": 10379282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10379454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a07d0", "tid": 35568, "ts": 10379584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10379756, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a08a0", "tid": 35568, "ts": 10379886, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0220", "tid": 35568, "ts": 10380189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380361, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a03c0", "tid": 35568, "ts": 10380491, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0970", "tid": 35568, "ts": 10380794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10380966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0490", "tid": 35568, "ts": 10381096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10381268, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0d80", "tid": 35568, "ts": 10381397, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10381571, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a0ff0", "tid": 35568, "ts": 10381701, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10381873, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a10c0", "tid": 35568, "ts": 10382003, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10382176, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1190", "tid": 35568, "ts": 10382306, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10382479, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1260", "tid": 35568, "ts": 10382609, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10382781, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a1330", "tid": 35568, "ts": 10382911, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a14d0", "tid": 35568, "ts": 10383214, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383386, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3fe0", "tid": 35568, "ts": 10383515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383688, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5770", "tid": 35568, "ts": 10383818, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10383992, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a36f0", "tid": 35568, "ts": 10384122, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10384294, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5500", "tid": 35568, "ts": 10384425, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10384597, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5ab0", "tid": 35568, "ts": 10384727, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10384899, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a50f0", "tid": 35568, "ts": 10385029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10385202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3960", "tid": 35568, "ts": 10385332, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10385504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5df0", "tid": 35568, "ts": 10385634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10385807, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5d20", "tid": 35568, "ts": 10385938, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10386111, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a40b0", "tid": 35568, "ts": 10386240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10386412, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a37c0", "tid": 35568, "ts": 10386542, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10386715, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a44c0", "tid": 35568, "ts": 10386846, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387019, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a55d0", "tid": 35568, "ts": 10387149, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387329, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5020", "tid": 35568, "ts": 10387461, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387633, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a51c0", "tid": 35568, "ts": 10387763, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10387936, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a56a0", "tid": 35568, "ts": 10388065, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10388238, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5f90", "tid": 35568, "ts": 10388368, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10388541, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2d30", "tid": 35568, "ts": 10388670, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10388843, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4800", "tid": 35568, "ts": 10388974, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10389146, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4590", "tid": 35568, "ts": 10389275, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10389447, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4f50", "tid": 35568, "ts": 10389577, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10389749, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a48d0", "tid": 35568, "ts": 10389879, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390051, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3890", "tid": 35568, "ts": 10390180, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390352, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4660", "tid": 35568, "ts": 10390483, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390656, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5840", "tid": 35568, "ts": 10390787, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10390959, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6060", "tid": 35568, "ts": 10391090, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10391310, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5430", "tid": 35568, "ts": 10391441, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10391614, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3a30", "tid": 35568, "ts": 10391744, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10391917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4c10", "tid": 35568, "ts": 10392047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10392219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5910", "tid": 35568, "ts": 10392349, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10392521, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2e00", "tid": 35568, "ts": 10392651, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10392822, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2ed0", "tid": 35568, "ts": 10392953, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10393124, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5b80", "tid": 35568, "ts": 10393254, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10393426, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4ce0", "tid": 35568, "ts": 10393555, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10393728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4db0", "tid": 35568, "ts": 10393858, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5ec0", "tid": 35568, "ts": 10394161, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394333, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3620", "tid": 35568, "ts": 10394463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394647, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4e80", "tid": 35568, "ts": 10394789, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10394963, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4730", "tid": 35568, "ts": 10395093, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10395266, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3f10", "tid": 35568, "ts": 10395396, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10395568, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4250", "tid": 35568, "ts": 10395698, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10395871, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a59e0", "tid": 35568, "ts": 10396001, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10396174, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5290", "tid": 35568, "ts": 10396304, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10396477, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3bd0", "tid": 35568, "ts": 10396607, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10396779, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a2fa0", "tid": 35568, "ts": 10396909, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397081, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4a70", "tid": 35568, "ts": 10397212, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397384, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a49a0", "tid": 35568, "ts": 10397515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397687, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5c50", "tid": 35568, "ts": 10397817, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10397990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a5360", "tid": 35568, "ts": 10398120, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10398293, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3070", "tid": 35568, "ts": 10398423, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10398595, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3b00", "tid": 35568, "ts": 10398725, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10398898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3140", "tid": 35568, "ts": 10399028, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10399201, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3e40", "tid": 35568, "ts": 10399331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10399504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4180", "tid": 35568, "ts": 10399634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10399806, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4320", "tid": 35568, "ts": 10399936, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10400108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a4b40", "tid": 35568, "ts": 10400238, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10400410, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3210", "tid": 35568, "ts": 10400540, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10400712, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a32e0", "tid": 35568, "ts": 10400842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a33b0", "tid": 35568, "ts": 10401145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401316, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a43f0", "tid": 35568, "ts": 10401447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401619, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3480", "tid": 35568, "ts": 10401750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10401922, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3ca0", "tid": 35568, "ts": 10402053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10402227, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3550", "tid": 35568, "ts": 10402401, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10402574, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a3d70", "tid": 35568, "ts": 10402704, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10402877, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6e30", "tid": 35568, "ts": 10403069, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10403242, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7240", "tid": 35568, "ts": 10403434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10403607, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8760", "tid": 35568, "ts": 10403738, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10403911, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7990", "tid": 35568, "ts": 10404042, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10404214, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8de0", "tid": 35568, "ts": 10404344, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10404517, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a62d0", "tid": 35568, "ts": 10404648, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10404821, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8d10", "tid": 35568, "ts": 10404952, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10405125, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a74b0", "tid": 35568, "ts": 10405255, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10405427, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8010", "tid": 35568, "ts": 10405557, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10405730, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7f40", "tid": 35568, "ts": 10405860, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406033, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7cd0", "tid": 35568, "ts": 10406164, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406337, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a91f0", "tid": 35568, "ts": 10406468, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406639, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9050", "tid": 35568, "ts": 10406769, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10406942, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8b70", "tid": 35568, "ts": 10407073, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10407245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8420", "tid": 35568, "ts": 10407376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10407548, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a84f0", "tid": 35568, "ts": 10407679, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10407852, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6d60", "tid": 35568, "ts": 10407983, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10408155, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8aa0", "tid": 35568, "ts": 10408285, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10408459, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6f00", "tid": 35568, "ts": 10408646, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10408819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9120", "tid": 35568, "ts": 10408949, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10409121, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8690", "tid": 35568, "ts": 10409251, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10409424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9390", "tid": 35568, "ts": 10409554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10409728, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8830", "tid": 35568, "ts": 10409859, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410032, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6130", "tid": 35568, "ts": 10410162, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410334, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8900", "tid": 35568, "ts": 10410464, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410637, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a78c0", "tid": 35568, "ts": 10410767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10410941, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6fd0", "tid": 35568, "ts": 10411071, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10411243, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a80e0", "tid": 35568, "ts": 10411373, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10411546, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a92c0", "tid": 35568, "ts": 10411677, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10411848, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6200", "tid": 35568, "ts": 10411979, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10412151, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a67b0", "tid": 35568, "ts": 10412282, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10412454, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a89d0", "tid": 35568, "ts": 10412584, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10412757, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6610", "tid": 35568, "ts": 10412887, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413059, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a70a0", "tid": 35568, "ts": 10413189, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413362, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7310", "tid": 35568, "ts": 10413492, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413664, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a63a0", "tid": 35568, "ts": 10413794, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10413966, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8c40", "tid": 35568, "ts": 10414096, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10414269, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6470", "tid": 35568, "ts": 10414399, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10414572, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7170", "tid": 35568, "ts": 10414703, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10414876, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6af0", "tid": 35568, "ts": 10415006, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10415179, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8eb0", "tid": 35568, "ts": 10415310, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10415483, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8f80", "tid": 35568, "ts": 10415613, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10415786, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7a60", "tid": 35568, "ts": 10415917, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10416091, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a73e0", "tid": 35568, "ts": 10416222, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10416394, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8350", "tid": 35568, "ts": 10416525, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10416698, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a85c0", "tid": 35568, "ts": 10416828, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417000, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a81b0", "tid": 35568, "ts": 10417131, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417302, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9460", "tid": 35568, "ts": 10417432, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417604, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6540", "tid": 35568, "ts": 10417734, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10417906, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a8280", "tid": 35568, "ts": 10418037, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10418209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6bc0", "tid": 35568, "ts": 10418340, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10418512, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a66e0", "tid": 35568, "ts": 10418759, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10419083, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6880", "tid": 35568, "ts": 10419376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10419576, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7da0", "tid": 35568, "ts": 10419882, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10420089, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6c90", "tid": 35568, "ts": 10420220, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10420392, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6950", "tid": 35568, "ts": 10420522, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10420768, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a6a20", "tid": 35568, "ts": 10420906, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421078, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7580", "tid": 35568, "ts": 10421209, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421382, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7650", "tid": 35568, "ts": 10421514, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421686, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7720", "tid": 35568, "ts": 10421816, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10421989, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7b30", "tid": 35568, "ts": 10422119, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10422291, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a77f0", "tid": 35568, "ts": 10422421, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10422593, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7c00", "tid": 35568, "ts": 10422723, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10422896, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a7e70", "tid": 35568, "ts": 10423026, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10423198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9530", "tid": 35568, "ts": 10423328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10423501, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa8b0", "tid": 35568, "ts": 10423631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10423804, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aae60", "tid": 35568, "ts": 10423933, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10424106, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac6c0", "tid": 35568, "ts": 10424236, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10424408, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac380", "tid": 35568, "ts": 10424539, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10424711, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aaa50", "tid": 35568, "ts": 10424841, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425015, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab270", "tid": 35568, "ts": 10425145, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425317, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab1a0", "tid": 35568, "ts": 10425447, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425620, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab340", "tid": 35568, "ts": 10425750, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10425923, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa4a0", "tid": 35568, "ts": 10426053, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10426226, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa980", "tid": 35568, "ts": 10426357, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10426529, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aaf30", "tid": 35568, "ts": 10426684, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10426856, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abc30", "tid": 35568, "ts": 10426986, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10427159, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aba90", "tid": 35568, "ts": 10427290, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10427463, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab0d0", "tid": 35568, "ts": 10427594, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10427766, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abb60", "tid": 35568, "ts": 10427896, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428069, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa7e0", "tid": 35568, "ts": 10428199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9ef0", "tid": 35568, "ts": 10428502, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428675, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abf70", "tid": 35568, "ts": 10428805, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10428978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abea0", "tid": 35568, "ts": 10429108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10429281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab410", "tid": 35568, "ts": 10429412, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10429585, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab4e0", "tid": 35568, "ts": 10429716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10429888, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aab20", "tid": 35568, "ts": 10430019, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10430190, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac040", "tid": 35568, "ts": 10430320, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10430492, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab5b0", "tid": 35568, "ts": 10430623, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10430796, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac790", "tid": 35568, "ts": 10430926, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10431098, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa570", "tid": 35568, "ts": 10431229, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10431402, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac860", "tid": 35568, "ts": 10431533, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10431706, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa640", "tid": 35568, "ts": 10431836, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432009, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9600", "tid": 35568, "ts": 10432140, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432313, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab680", "tid": 35568, "ts": 10432444, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432615, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab750", "tid": 35568, "ts": 10432746, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10432917, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac520", "tid": 35568, "ts": 10433047, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10433219, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abd00", "tid": 35568, "ts": 10433351, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10433525, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa230", "tid": 35568, "ts": 10433656, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10433828, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9940", "tid": 35568, "ts": 10433959, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10434132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab820", "tid": 35568, "ts": 10434330, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10434504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9e20", "tid": 35568, "ts": 10434634, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10434808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aad90", "tid": 35568, "ts": 10434939, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10435112, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac2b0", "tid": 35568, "ts": 10435243, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10435415, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a96d0", "tid": 35568, "ts": 10435545, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10435718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9ae0", "tid": 35568, "ts": 10435848, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436020, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac1e0", "tid": 35568, "ts": 10436151, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436323, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa300", "tid": 35568, "ts": 10436494, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436667, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aabf0", "tid": 35568, "ts": 10436799, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10436971, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa090", "tid": 35568, "ts": 10437101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10437274, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03abdd0", "tid": 35568, "ts": 10437405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10437577, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac450", "tid": 35568, "ts": 10437708, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10437881, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab000", "tid": 35568, "ts": 10438011, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10438183, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac110", "tid": 35568, "ts": 10438313, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10438487, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab8f0", "tid": 35568, "ts": 10438617, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10438789, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ab9c0", "tid": 35568, "ts": 10438920, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10439092, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac5f0", "tid": 35568, "ts": 10439223, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10439396, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9fc0", "tid": 35568, "ts": 10439526, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10439697, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a97a0", "tid": 35568, "ts": 10439827, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440002, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9870", "tid": 35568, "ts": 10440132, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440304, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9a10", "tid": 35568, "ts": 10440434, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440605, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9bb0", "tid": 35568, "ts": 10440735, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10440908, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9c80", "tid": 35568, "ts": 10441039, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10441211, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa160", "tid": 35568, "ts": 10441342, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10441514, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aacc0", "tid": 35568, "ts": 10441645, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10441817, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa710", "tid": 35568, "ts": 10441948, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10442120, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03a9d50", "tid": 35568, "ts": 10442252, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10442424, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aa3d0", "tid": 35568, "ts": 10442554, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10442727, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03afb90", "tid": 35568, "ts": 10442857, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443029, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ada40", "tid": 35568, "ts": 10443159, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443332, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af780", "tid": 35568, "ts": 10443463, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443636, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ade50", "tid": 35568, "ts": 10443767, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10443939, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af100", "tid": 35568, "ts": 10444070, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10444245, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae260", "tid": 35568, "ts": 10444376, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10444549, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad630", "tid": 35568, "ts": 10444681, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10444853, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad700", "tid": 35568, "ts": 10444984, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10445157, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03add80", "tid": 35568, "ts": 10445288, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10445461, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad7d0", "tid": 35568, "ts": 10445592, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10445763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aef60", "tid": 35568, "ts": 10445894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446066, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adf20", "tid": 35568, "ts": 10446197, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446369, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad8a0", "tid": 35568, "ts": 10446499, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446672, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af030", "tid": 35568, "ts": 10446803, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10446974, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af1d0", "tid": 35568, "ts": 10447105, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10447278, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03afc60", "tid": 35568, "ts": 10447408, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10447581, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af6b0", "tid": 35568, "ts": 10447711, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10447883, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aecf0", "tid": 35568, "ts": 10448014, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10448186, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad560", "tid": 35568, "ts": 10448317, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10448489, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad220", "tid": 35568, "ts": 10448619, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10448791, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae9b0", "tid": 35568, "ts": 10448922, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10449095, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af9f0", "tid": 35568, "ts": 10449226, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10449398, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acc70", "tid": 35568, "ts": 10449528, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10449701, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acd40", "tid": 35568, "ts": 10449885, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450068, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aea80", "tid": 35568, "ts": 10450199, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450372, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af2a0", "tid": 35568, "ts": 10450503, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450676, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae190", "tid": 35568, "ts": 10450806, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10450978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad970", "tid": 35568, "ts": 10451109, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10451282, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aee90", "tid": 35568, "ts": 10451413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10451586, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adbe0", "tid": 35568, "ts": 10451716, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10451889, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adb10", "tid": 35568, "ts": 10452020, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10452192, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aeb50", "tid": 35568, "ts": 10452322, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10452494, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae330", "tid": 35568, "ts": 10452625, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10452798, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adcb0", "tid": 35568, "ts": 10452929, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10453102, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03adff0", "tid": 35568, "ts": 10453233, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10453406, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae740", "tid": 35568, "ts": 10453537, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10453709, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad2f0", "tid": 35568, "ts": 10453840, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454012, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aec20", "tid": 35568, "ts": 10454143, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454315, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae0c0", "tid": 35568, "ts": 10454445, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454617, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ace10", "tid": 35568, "ts": 10454748, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10454921, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad3c0", "tid": 35568, "ts": 10455051, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10455224, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae400", "tid": 35568, "ts": 10455354, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10455527, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae4d0", "tid": 35568, "ts": 10455657, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10455830, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af370", "tid": 35568, "ts": 10455960, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10456132, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad490", "tid": 35568, "ts": 10456263, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10456435, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af440", "tid": 35568, "ts": 10456565, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10456737, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae5a0", "tid": 35568, "ts": 10456867, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457040, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae670", "tid": 35568, "ts": 10457170, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457342, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae810", "tid": 35568, "ts": 10457471, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457643, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ae8e0", "tid": 35568, "ts": 10457773, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10457946, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af510", "tid": 35568, "ts": 10458077, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10458251, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aedc0", "tid": 35568, "ts": 10458382, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10458554, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af5e0", "tid": 35568, "ts": 10458685, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10458857, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af850", "tid": 35568, "ts": 10458988, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10459162, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03af920", "tid": 35568, "ts": 10459293, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10459466, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03afac0", "tid": 35568, "ts": 10459597, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10459770, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ac930", "tid": 35568, "ts": 10459901, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460074, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acad0", "tid": 35568, "ts": 10460205, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460379, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03aca00", "tid": 35568, "ts": 10460510, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460683, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acba0", "tid": 35568, "ts": 10460813, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10460985, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acee0", "tid": 35568, "ts": 10461116, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10461288, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03acfb0", "tid": 35568, "ts": 10461419, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10461591, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad080", "tid": 35568, "ts": 10461721, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10461894, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03ad150", "tid": 35568, "ts": 10462025, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10462198, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0bd0", "tid": 35568, "ts": 10462328, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10462500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1a70", "tid": 35568, "ts": 10462631, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10462803, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b2b80", "tid": 35568, "ts": 10462934, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10463108, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b02e0", "tid": 35568, "ts": 10463240, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10463456, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b10b0", "tid": 35568, "ts": 10463588, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10463763, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1b40", "tid": 35568, "ts": 10463894, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464067, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03affa0", "tid": 35568, "ts": 10464198, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464371, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0f10", "tid": 35568, "ts": 10464501, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464674, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1660", "tid": 35568, "ts": 10464804, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10464978, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b13f0", "tid": 35568, "ts": 10465108, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10465281, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1180", "tid": 35568, "ts": 10465413, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10465594, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0b00", "tid": 35568, "ts": 10465726, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10465898, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b2290", "tid": 35568, "ts": 10466029, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10466202, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b0620", "tid": 35568, "ts": 10466333, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10466504, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 2816, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b1250", "tid": 35568, "ts": 10466635, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 10466808, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 256, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x234c03b03b0", "tid": 35568, "ts": 10466939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab310", "tid": 35568, "ts": 10467138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac9d0", "tid": 35568, "ts": 10467238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abf40", "tid": 35568, "ts": 10467328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac830", "tid": 35568, "ts": 10467415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac760", "tid": 35568, "ts": 10467502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac420", "tid": 35568, "ts": 10467590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abe70", "tid": 35568, "ts": 10467677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab0a0", "tid": 35568, "ts": 10467803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac0e0", "tid": 35568, "ts": 10467932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab580", "tid": 35568, "ts": 10468018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac010", "tid": 35568, "ts": 10468105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab8c0", "tid": 35568, "ts": 10468191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab720", "tid": 35568, "ts": 10468277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abcd0", "tid": 35568, "ts": 10468363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac5c0", "tid": 35568, "ts": 10468449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abb30", "tid": 35568, "ts": 10468536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac900", "tid": 35568, "ts": 10468622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab990", "tid": 35568, "ts": 10468708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acaa0", "tid": 35568, "ts": 10468795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818aceb0", "tid": 35568, "ts": 10468881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab7f0", "tid": 35568, "ts": 10468967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abc00", "tid": 35568, "ts": 10469053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acc40", "tid": 35568, "ts": 10469139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac690", "tid": 35568, "ts": 10469225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab240", "tid": 35568, "ts": 10469312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab4b0", "tid": 35568, "ts": 10469398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab3e0", "tid": 35568, "ts": 10469484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acf80", "tid": 35568, "ts": 10469570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acb70", "tid": 35568, "ts": 10469656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acde0", "tid": 35568, "ts": 10469741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818aba60", "tid": 35568, "ts": 10469826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab650", "tid": 35568, "ts": 10469912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac280", "tid": 35568, "ts": 10470000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e0f0", "tid": 35568, "ts": 10470128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157de80", "tid": 35568, "ts": 10470217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f3e0", "tid": 35568, "ts": 10470303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d804f0", "tid": 35568, "ts": 10470389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157dc10", "tid": 35568, "ts": 10470475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d800", "tid": 35568, "ts": 10470561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d590", "tid": 35568, "ts": 10470647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d730", "tid": 35568, "ts": 10470733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d3f0", "tid": 35568, "ts": 10470818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157df50", "tid": 35568, "ts": 10470904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d4c0", "tid": 35568, "ts": 10470990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157db40", "tid": 35568, "ts": 10471076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d0b0", "tid": 35568, "ts": 10471162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ec50", "tid": 35568, "ts": 10471247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e5d0", "tid": 35568, "ts": 10471333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d180", "tid": 35568, "ts": 10471419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ef90", "tid": 35568, "ts": 10471504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e910", "tid": 35568, "ts": 10471590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ed20", "tid": 35568, "ts": 10471675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e840", "tid": 35568, "ts": 10471761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eec0", "tid": 35568, "ts": 10471846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e9e0", "tid": 35568, "ts": 10471931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e430", "tid": 35568, "ts": 10472017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d250", "tid": 35568, "ts": 10472103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eab0", "tid": 35568, "ts": 10472188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e020", "tid": 35568, "ts": 10472273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157edf0", "tid": 35568, "ts": 10472359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d660", "tid": 35568, "ts": 10472444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157da70", "tid": 35568, "ts": 10472530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e290", "tid": 35568, "ts": 10472615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d320", "tid": 35568, "ts": 10472701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e500", "tid": 35568, "ts": 10472785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e6a0", "tid": 35568, "ts": 10472871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f580", "tid": 35568, "ts": 10472957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f4b0", "tid": 35568, "ts": 10473042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80d10", "tid": 35568, "ts": 10473128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869584b0", "tid": 35568, "ts": 10473213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959c40", "tid": 35568, "ts": 10473298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869580a0", "tid": 35568, "ts": 10473384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958240", "tid": 35568, "ts": 10473469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959900", "tid": 35568, "ts": 10473555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958310", "tid": 35568, "ts": 10473640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958da0", "tid": 35568, "ts": 10473726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959760", "tid": 35568, "ts": 10473811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869595c0", "tid": 35568, "ts": 10473896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958f40", "tid": 35568, "ts": 10473982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958e70", "tid": 35568, "ts": 10474067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958170", "tid": 35568, "ts": 10474152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959f80", "tid": 35568, "ts": 10474238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958580", "tid": 35568, "ts": 10474323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869587f0", "tid": 35568, "ts": 10474408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959aa0", "tid": 35568, "ts": 10474494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959690", "tid": 35568, "ts": 10474579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959830", "tid": 35568, "ts": 10474677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958cd0", "tid": 35568, "ts": 10474763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869594f0", "tid": 35568, "ts": 10474849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869588c0", "tid": 35568, "ts": 10474936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959010", "tid": 35568, "ts": 10475022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959350", "tid": 35568, "ts": 10475107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959280", "tid": 35568, "ts": 10475208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869599d0", "tid": 35568, "ts": 10475294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958a60", "tid": 35568, "ts": 10475379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869583e0", "tid": 35568, "ts": 10475465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959b70", "tid": 35568, "ts": 10475550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959de0", "tid": 35568, "ts": 10475636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959420", "tid": 35568, "ts": 10475721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958b30", "tid": 35568, "ts": 10475806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234869590e0", "tid": 35568, "ts": 10475891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958990", "tid": 35568, "ts": 10475976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486959d10", "tid": 35568, "ts": 10476061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7ff40", "tid": 35568, "ts": 10476147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80de0", "tid": 35568, "ts": 10476232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80900", "tid": 35568, "ts": 10476318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80b70", "tid": 35568, "ts": 10476403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80760", "tid": 35568, "ts": 10476503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80280", "tid": 35568, "ts": 10476590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38170", "tid": 35568, "ts": 10476692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f990", "tid": 35568, "ts": 10476788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958c00", "tid": 35568, "ts": 10476891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157eb80", "tid": 35568, "ts": 10476987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818abda0", "tid": 35568, "ts": 10477090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80f80", "tid": 35568, "ts": 10477232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80eb0", "tid": 35568, "ts": 10477353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d805c0", "tid": 35568, "ts": 10477474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f650", "tid": 35568, "ts": 10477593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03affa0", "tid": 35568, "ts": 10477681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b02e0", "tid": 35568, "ts": 10477767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1250", "tid": 35568, "ts": 10477852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f8c0", "tid": 35568, "ts": 10477937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b10b0", "tid": 35568, "ts": 10478025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38da0", "tid": 35568, "ts": 10478110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39c40", "tid": 35568, "ts": 10478198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39f80", "tid": 35568, "ts": 10478284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1a70", "tid": 35568, "ts": 10478369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1180", "tid": 35568, "ts": 10478455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e809d0", "tid": 35568, "ts": 10478540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e360", "tid": 35568, "ts": 10478627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e800e0", "tid": 35568, "ts": 10478713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad150", "tid": 35568, "ts": 10478799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0620", "tid": 35568, "ts": 10478884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39900", "tid": 35568, "ts": 10478969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39d10", "tid": 35568, "ts": 10479056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d391b0", "tid": 35568, "ts": 10479142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acfb0", "tid": 35568, "ts": 10479227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acba0", "tid": 35568, "ts": 10479311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b2290", "tid": 35568, "ts": 10479396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38b30", "tid": 35568, "ts": 10479482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38240", "tid": 35568, "ts": 10479568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38720", "tid": 35568, "ts": 10479654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acad0", "tid": 35568, "ts": 10479740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03afac0", "tid": 35568, "ts": 10479825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0b00", "tid": 35568, "ts": 10479909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39de0", "tid": 35568, "ts": 10479994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38580", "tid": 35568, "ts": 10480081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39010", "tid": 35568, "ts": 10480167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af850", "tid": 35568, "ts": 10480253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aedc0", "tid": 35568, "ts": 10480337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae8e0", "tid": 35568, "ts": 10480422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae670", "tid": 35568, "ts": 10480507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af440", "tid": 35568, "ts": 10480592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af370", "tid": 35568, "ts": 10480677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae400", "tid": 35568, "ts": 10480762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ace10", "tid": 35568, "ts": 10480846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aec20", "tid": 35568, "ts": 10480931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae740", "tid": 35568, "ts": 10481016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adcb0", "tid": 35568, "ts": 10481182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aeb50", "tid": 35568, "ts": 10481271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adbe0", "tid": 35568, "ts": 10481357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad970", "tid": 35568, "ts": 10481443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af2a0", "tid": 35568, "ts": 10481529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acd40", "tid": 35568, "ts": 10481615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af9f0", "tid": 35568, "ts": 10481700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad220", "tid": 35568, "ts": 10481786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aecf0", "tid": 35568, "ts": 10481872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03afc60", "tid": 35568, "ts": 10481957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af030", "tid": 35568, "ts": 10482043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adf20", "tid": 35568, "ts": 10482129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad7d0", "tid": 35568, "ts": 10482215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad700", "tid": 35568, "ts": 10482301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae260", "tid": 35568, "ts": 10482386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ade50", "tid": 35568, "ts": 10482471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ada40", "tid": 35568, "ts": 10482557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa3d0", "tid": 35568, "ts": 10482643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa710", "tid": 35568, "ts": 10482728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa160", "tid": 35568, "ts": 10482813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9bb0", "tid": 35568, "ts": 10482899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9870", "tid": 35568, "ts": 10482984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9fc0", "tid": 35568, "ts": 10483069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab9c0", "tid": 35568, "ts": 10483155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac110", "tid": 35568, "ts": 10483241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac450", "tid": 35568, "ts": 10483326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa090", "tid": 35568, "ts": 10483411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa300", "tid": 35568, "ts": 10483496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9ae0", "tid": 35568, "ts": 10483582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac2b0", "tid": 35568, "ts": 10483667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9e20", "tid": 35568, "ts": 10483753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9940", "tid": 35568, "ts": 10483838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abd00", "tid": 35568, "ts": 10483924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab750", "tid": 35568, "ts": 10484009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9600", "tid": 35568, "ts": 10484095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac860", "tid": 35568, "ts": 10484180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac790", "tid": 35568, "ts": 10484264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac040", "tid": 35568, "ts": 10484350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab4e0", "tid": 35568, "ts": 10484435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abea0", "tid": 35568, "ts": 10484521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9ef0", "tid": 35568, "ts": 10484606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abb60", "tid": 35568, "ts": 10484691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aba90", "tid": 35568, "ts": 10484776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aaf30", "tid": 35568, "ts": 10484862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa4a0", "tid": 35568, "ts": 10484947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab1a0", "tid": 35568, "ts": 10485033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aaa50", "tid": 35568, "ts": 10485120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac6c0", "tid": 35568, "ts": 10485205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa8b0", "tid": 35568, "ts": 10485292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7e70", "tid": 35568, "ts": 10485377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a77f0", "tid": 35568, "ts": 10485463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7720", "tid": 35568, "ts": 10485549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7580", "tid": 35568, "ts": 10485635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6950", "tid": 35568, "ts": 10485721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7da0", "tid": 35568, "ts": 10485807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a66e0", "tid": 35568, "ts": 10485893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8280", "tid": 35568, "ts": 10485979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9460", "tid": 35568, "ts": 10486065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a85c0", "tid": 35568, "ts": 10486150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a73e0", "tid": 35568, "ts": 10486236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8f80", "tid": 35568, "ts": 10486323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6af0", "tid": 35568, "ts": 10486408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6470", "tid": 35568, "ts": 10486494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a63a0", "tid": 35568, "ts": 10486580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a70a0", "tid": 35568, "ts": 10486666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a89d0", "tid": 35568, "ts": 10486752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6200", "tid": 35568, "ts": 10486838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a80e0", "tid": 35568, "ts": 10486924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a78c0", "tid": 35568, "ts": 10487010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6130", "tid": 35568, "ts": 10487096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9390", "tid": 35568, "ts": 10487182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9120", "tid": 35568, "ts": 10487267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8aa0", "tid": 35568, "ts": 10487353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a84f0", "tid": 35568, "ts": 10487440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8b70", "tid": 35568, "ts": 10487526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a91f0", "tid": 35568, "ts": 10487612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7f40", "tid": 35568, "ts": 10487698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a74b0", "tid": 35568, "ts": 10487784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a62d0", "tid": 35568, "ts": 10487870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7990", "tid": 35568, "ts": 10487955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7240", "tid": 35568, "ts": 10488042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3d70", "tid": 35568, "ts": 10488128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3ca0", "tid": 35568, "ts": 10488214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a43f0", "tid": 35568, "ts": 10488300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a32e0", "tid": 35568, "ts": 10488386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4b40", "tid": 35568, "ts": 10488472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4180", "tid": 35568, "ts": 10488558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3140", "tid": 35568, "ts": 10488644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3070", "tid": 35568, "ts": 10488730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5c50", "tid": 35568, "ts": 10488816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4a70", "tid": 35568, "ts": 10488901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3bd0", "tid": 35568, "ts": 10488987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a59e0", "tid": 35568, "ts": 10489074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3f10", "tid": 35568, "ts": 10489160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4e80", "tid": 35568, "ts": 10489246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5ec0", "tid": 35568, "ts": 10489332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4ce0", "tid": 35568, "ts": 10489418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2ed0", "tid": 35568, "ts": 10489504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5910", "tid": 35568, "ts": 10489590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3a30", "tid": 35568, "ts": 10489676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6060", "tid": 35568, "ts": 10489762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4660", "tid": 35568, "ts": 10489848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a48d0", "tid": 35568, "ts": 10489934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4590", "tid": 35568, "ts": 10490020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2d30", "tid": 35568, "ts": 10490106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a56a0", "tid": 35568, "ts": 10490193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5020", "tid": 35568, "ts": 10490278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a44c0", "tid": 35568, "ts": 10490364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a40b0", "tid": 35568, "ts": 10490450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5df0", "tid": 35568, "ts": 10490535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a50f0", "tid": 35568, "ts": 10490621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5500", "tid": 35568, "ts": 10490707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5770", "tid": 35568, "ts": 10490793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a14d0", "tid": 35568, "ts": 10490879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1260", "tid": 35568, "ts": 10490965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a10c0", "tid": 35568, "ts": 10491051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0d80", "tid": 35568, "ts": 10491137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0970", "tid": 35568, "ts": 10491222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0220", "tid": 35568, "ts": 10491308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a07d0", "tid": 35568, "ts": 10491393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0150", "tid": 35568, "ts": 10491479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1dc0", "tid": 35568, "ts": 10491566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2370", "tid": 35568, "ts": 10491651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1cf0", "tid": 35568, "ts": 10491738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0b10", "tid": 35568, "ts": 10491825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a22a0", "tid": 35568, "ts": 10491911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fc70", "tid": 35568, "ts": 10491998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2100", "tid": 35568, "ts": 10492084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fba0", "tid": 35568, "ts": 10492170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1b50", "tid": 35568, "ts": 10492256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a02f0", "tid": 35568, "ts": 10492342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0cb0", "tid": 35568, "ts": 10492428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1400", "tid": 35568, "ts": 10492515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a25e0", "tid": 35568, "ts": 10492600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2030", "tid": 35568, "ts": 10492686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2920", "tid": 35568, "ts": 10492773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0630", "tid": 35568, "ts": 10492859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fad0", "tid": 35568, "ts": 10492945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fa00", "tid": 35568, "ts": 10493031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1740", "tid": 35568, "ts": 10493118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2780", "tid": 35568, "ts": 10493204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1e90", "tid": 35568, "ts": 10493291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1670", "tid": 35568, "ts": 10493377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a21d0", "tid": 35568, "ts": 10493464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a26b0", "tid": 35568, "ts": 10493549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cd50", "tid": 35568, "ts": 10493635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039de60", "tid": 35568, "ts": 10493722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039dbf0", "tid": 35568, "ts": 10493807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d980", "tid": 35568, "ts": 10493893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d4a0", "tid": 35568, "ts": 10493979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f790", "tid": 35568, "ts": 10494066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c870", "tid": 35568, "ts": 10494152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e820", "tid": 35568, "ts": 10494238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f5f0", "tid": 35568, "ts": 10494326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cbb0", "tid": 35568, "ts": 10494411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f040", "tid": 35568, "ts": 10494497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039eea0", "tid": 35568, "ts": 10494595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f6c0", "tid": 35568, "ts": 10494684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e270", "tid": 35568, "ts": 10494782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ec30", "tid": 35568, "ts": 10494867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c6d0", "tid": 35568, "ts": 10494953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e680", "tid": 35568, "ts": 10495040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e4e0", "tid": 35568, "ts": 10495126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cfc0", "tid": 35568, "ts": 10495212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039edd0", "tid": 35568, "ts": 10495298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ed00", "tid": 35568, "ts": 10495385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ef70", "tid": 35568, "ts": 10495470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f110", "tid": 35568, "ts": 10495557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f520", "tid": 35568, "ts": 10495643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f1e0", "tid": 35568, "ts": 10495729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ca10", "tid": 35568, "ts": 10495815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ce20", "tid": 35568, "ts": 10495902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039dcc0", "tid": 35568, "ts": 10495988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e410", "tid": 35568, "ts": 10496074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039df30", "tid": 35568, "ts": 10496160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e750", "tid": 35568, "ts": 10496245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c600", "tid": 35568, "ts": 10496331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399950", "tid": 35568, "ts": 10496418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03997b0", "tid": 35568, "ts": 10496503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399540", "tid": 35568, "ts": 10496589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399470", "tid": 35568, "ts": 10496684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bf80", "tid": 35568, "ts": 10496774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bc40", "tid": 35568, "ts": 10496860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399af0", "tid": 35568, "ts": 10496946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039baa0", "tid": 35568, "ts": 10497032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b9d0", "tid": 35568, "ts": 10497119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b760", "tid": 35568, "ts": 10497205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399200", "tid": 35568, "ts": 10497292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b690", "tid": 35568, "ts": 10497378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b350", "tid": 35568, "ts": 10497464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c120", "tid": 35568, "ts": 10497551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b280", "tid": 35568, "ts": 10497637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b5c0", "tid": 35568, "ts": 10497723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ac00", "tid": 35568, "ts": 10497810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039aa60", "tid": 35568, "ts": 10497896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b1b0", "tid": 35568, "ts": 10497982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399fd0", "tid": 35568, "ts": 10498068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b900", "tid": 35568, "ts": 10498155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399f00", "tid": 35568, "ts": 10498241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a7f0", "tid": 35568, "ts": 10498327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a3e0", "tid": 35568, "ts": 10498413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c050", "tid": 35568, "ts": 10498499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b010", "tid": 35568, "ts": 10498585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399e30", "tid": 35568, "ts": 10498671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399d60", "tid": 35568, "ts": 10498758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a720", "tid": 35568, "ts": 10498844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a580", "tid": 35568, "ts": 10498930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399130", "tid": 35568, "ts": 10499016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b4f0", "tid": 35568, "ts": 10499103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396480", "tid": 35568, "ts": 10499188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03963b0", "tid": 35568, "ts": 10499274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396140", "tid": 35568, "ts": 10499360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398360", "tid": 35568, "ts": 10499447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397180", "tid": 35568, "ts": 10499533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03970b0", "tid": 35568, "ts": 10499619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398020", "tid": 35568, "ts": 10499704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397a70", "tid": 35568, "ts": 10499791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396fe0", "tid": 35568, "ts": 10499877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03979a0", "tid": 35568, "ts": 10499963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396550", "tid": 35568, "ts": 10500049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398ab0", "tid": 35568, "ts": 10500137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398ec0", "tid": 35568, "ts": 10500224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398500", "tid": 35568, "ts": 10500311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398df0", "tid": 35568, "ts": 10500398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396d70", "tid": 35568, "ts": 10500484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03973f0", "tid": 35568, "ts": 10500571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396bd0", "tid": 35568, "ts": 10500658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397660", "tid": 35568, "ts": 10500744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395fa0", "tid": 35568, "ts": 10500831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397db0", "tid": 35568, "ts": 10500917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398910", "tid": 35568, "ts": 10501003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03967c0", "tid": 35568, "ts": 10501089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397250", "tid": 35568, "ts": 10501175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03980f0", "tid": 35568, "ts": 10501262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398840", "tid": 35568, "ts": 10501348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397ce0", "tid": 35568, "ts": 10501434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396b00", "tid": 35568, "ts": 10501521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398d20", "tid": 35568, "ts": 10501607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03966f0", "tid": 35568, "ts": 10501693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395e00", "tid": 35568, "ts": 10501780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396ca0", "tid": 35568, "ts": 10501866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393220", "tid": 35568, "ts": 10501952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392d40", "tid": 35568, "ts": 10502038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392930", "tid": 35568, "ts": 10502124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395ac0", "tid": 35568, "ts": 10502210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03956b0", "tid": 35568, "ts": 10502297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395780", "tid": 35568, "ts": 10502383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395030", "tid": 35568, "ts": 10502470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393ff0", "tid": 35568, "ts": 10502556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394dc0", "tid": 35568, "ts": 10502643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394cf0", "tid": 35568, "ts": 10502729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03955e0", "tid": 35568, "ts": 10502816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393e50", "tid": 35568, "ts": 10502903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03933c0", "tid": 35568, "ts": 10502990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03945a0", "tid": 35568, "ts": 10503075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394740", "tid": 35568, "ts": 10503162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392ee0", "tid": 35568, "ts": 10503248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03937d0", "tid": 35568, "ts": 10503335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393630", "tid": 35568, "ts": 10503421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395920", "tid": 35568, "ts": 10503508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393560", "tid": 35568, "ts": 10503595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394260", "tid": 35568, "ts": 10503681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395100", "tid": 35568, "ts": 10503767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394810", "tid": 35568, "ts": 10503853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394e90", "tid": 35568, "ts": 10503941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394330", "tid": 35568, "ts": 10504028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394a80", "tid": 35568, "ts": 10504114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394190", "tid": 35568, "ts": 10504201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395440", "tid": 35568, "ts": 10504289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03940c0", "tid": 35568, "ts": 10504377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395370", "tid": 35568, "ts": 10504464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03944d0", "tid": 35568, "ts": 10504555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393490", "tid": 35568, "ts": 10504642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390570", "tid": 35568, "ts": 10504728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ffc0", "tid": 35568, "ts": 10504813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fc80", "tid": 35568, "ts": 10504900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fae0", "tid": 35568, "ts": 10504986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390cc0", "tid": 35568, "ts": 10505072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390230", "tid": 35568, "ts": 10505158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f600", "tid": 35568, "ts": 10505244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392450", "tid": 35568, "ts": 10505330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391c30", "tid": 35568, "ts": 10505416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390710", "tid": 35568, "ts": 10505502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fe20", "tid": 35568, "ts": 10505587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391a90", "tid": 35568, "ts": 10505674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03915b0", "tid": 35568, "ts": 10505760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f530", "tid": 35568, "ts": 10505846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03914e0", "tid": 35568, "ts": 10505932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03922b0", "tid": 35568, "ts": 10506018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392860", "tid": 35568, "ts": 10506104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390a50", "tid": 35568, "ts": 10506190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391410", "tid": 35568, "ts": 10506276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392110", "tid": 35568, "ts": 10506362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f6d0", "tid": 35568, "ts": 10506448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391750", "tid": 35568, "ts": 10506533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391820", "tid": 35568, "ts": 10506619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391270", "tid": 35568, "ts": 10506705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391d00", "tid": 35568, "ts": 10506791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03908b0", "tid": 35568, "ts": 10506877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391b60", "tid": 35568, "ts": 10506963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392040", "tid": 35568, "ts": 10507049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390980", "tid": 35568, "ts": 10507135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fd50", "tid": 35568, "ts": 10507221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390d90", "tid": 35568, "ts": 10507307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390f30", "tid": 35568, "ts": 10507394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c610", "tid": 35568, "ts": 10507480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c540", "tid": 35568, "ts": 10507567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e4f0", "tid": 35568, "ts": 10507652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d8c0", "tid": 35568, "ts": 10507739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c200", "tid": 35568, "ts": 10507825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f460", "tid": 35568, "ts": 10507911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f2c0", "tid": 35568, "ts": 10507997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e350", "tid": 35568, "ts": 10508083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e760", "tid": 35568, "ts": 10508170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d650", "tid": 35568, "ts": 10508256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038eeb0", "tid": 35568, "ts": 10508342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f1f0", "tid": 35568, "ts": 10508428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f120", "tid": 35568, "ts": 10508514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e1b0", "tid": 35568, "ts": 10508601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f050", "tid": 35568, "ts": 10508686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c470", "tid": 35568, "ts": 10508772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e9d0", "tid": 35568, "ts": 10508859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d4b0", "tid": 35568, "ts": 10508945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ec40", "tid": 35568, "ts": 10509031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d720", "tid": 35568, "ts": 10509117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ca20", "tid": 35568, "ts": 10509203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ede0", "tid": 35568, "ts": 10509290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c950", "tid": 35568, "ts": 10509375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038dda0", "tid": 35568, "ts": 10509461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cbc0", "tid": 35568, "ts": 10509548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d7f0", "tid": 35568, "ts": 10509634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cd60", "tid": 35568, "ts": 10509719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ce30", "tid": 35568, "ts": 10509806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cc90", "tid": 35568, "ts": 10509892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038eaa0", "tid": 35568, "ts": 10509978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038da60", "tid": 35568, "ts": 10510064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d3e0", "tid": 35568, "ts": 10510150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389480", "tid": 35568, "ts": 10510236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03892e0", "tid": 35568, "ts": 10510321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389140", "tid": 35568, "ts": 10510407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389070", "tid": 35568, "ts": 10510493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389f10", "tid": 35568, "ts": 10510579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a4c0", "tid": 35568, "ts": 10510666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388e00", "tid": 35568, "ts": 10510751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388d30", "tid": 35568, "ts": 10510838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a0b0", "tid": 35568, "ts": 10510924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ac10", "tid": 35568, "ts": 10511010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bc50", "tid": 35568, "ts": 10511095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a9a0", "tid": 35568, "ts": 10511182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389fe0", "tid": 35568, "ts": 10511268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038adb0", "tid": 35568, "ts": 10511354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b360", "tid": 35568, "ts": 10511440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bec0", "tid": 35568, "ts": 10511525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b290", "tid": 35568, "ts": 10511612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c060", "tid": 35568, "ts": 10511698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03897c0", "tid": 35568, "ts": 10511783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03896f0", "tid": 35568, "ts": 10511869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389210", "tid": 35568, "ts": 10511956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b6a0", "tid": 35568, "ts": 10512042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b500", "tid": 35568, "ts": 10512128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038af50", "tid": 35568, "ts": 10512214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bf90", "tid": 35568, "ts": 10512342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b020", "tid": 35568, "ts": 10512494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a320", "tid": 35568, "ts": 10512581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b1c0", "tid": 35568, "ts": 10512668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bd20", "tid": 35568, "ts": 10512754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a800", "tid": 35568, "ts": 10512840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b0f0", "tid": 35568, "ts": 10512927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a3f0", "tid": 35568, "ts": 10513014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03874d0", "tid": 35568, "ts": 10513101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03870c0", "tid": 35568, "ts": 10513186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386b10", "tid": 35568, "ts": 10513273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03867d0", "tid": 35568, "ts": 10513359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386560", "tid": 35568, "ts": 10513445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387e90", "tid": 35568, "ts": 10513531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03889f0", "tid": 35568, "ts": 10513616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387190", "tid": 35568, "ts": 10513703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03886b0", "tid": 35568, "ts": 10513789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388030", "tid": 35568, "ts": 10513875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386150", "tid": 35568, "ts": 10513961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386630", "tid": 35568, "ts": 10514048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387330", "tid": 35568, "ts": 10514133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386220", "tid": 35568, "ts": 10514219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03879b0", "tid": 35568, "ts": 10514305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388440", "tid": 35568, "ts": 10514391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386a40", "tid": 35568, "ts": 10514477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386970", "tid": 35568, "ts": 10514563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386f20", "tid": 35568, "ts": 10514648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03885e0", "tid": 35568, "ts": 10514734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385ee0", "tid": 35568, "ts": 10514819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385a00", "tid": 35568, "ts": 10514905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03875a0", "tid": 35568, "ts": 10514990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03863c0", "tid": 35568, "ts": 10515076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388510", "tid": 35568, "ts": 10515162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385ad0", "tid": 35568, "ts": 10515248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388100", "tid": 35568, "ts": 10515335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387740", "tid": 35568, "ts": 10515421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387810", "tid": 35568, "ts": 10515508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388920", "tid": 35568, "ts": 10515594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386cb0", "tid": 35568, "ts": 10515681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385fb0", "tid": 35568, "ts": 10515767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384ea0", "tid": 35568, "ts": 10515853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384c30", "tid": 35568, "ts": 10515939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384410", "tid": 35568, "ts": 10516025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03837e0", "tid": 35568, "ts": 10516111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03834a0", "tid": 35568, "ts": 10516196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382d50", "tid": 35568, "ts": 10516283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384b60", "tid": 35568, "ts": 10516369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382a10", "tid": 35568, "ts": 10516455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382870", "tid": 35568, "ts": 10516541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383640", "tid": 35568, "ts": 10516627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383980", "tid": 35568, "ts": 10516713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383300", "tid": 35568, "ts": 10516800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03826d0", "tid": 35568, "ts": 10516886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03845b0", "tid": 35568, "ts": 10516973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382600", "tid": 35568, "ts": 10517059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383090", "tid": 35568, "ts": 10517146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385860", "tid": 35568, "ts": 10517232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03841a0", "tid": 35568, "ts": 10517317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384680", "tid": 35568, "ts": 10517403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384000", "tid": 35568, "ts": 10517489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383f30", "tid": 35568, "ts": 10517575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385790", "tid": 35568, "ts": 10517661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383e60", "tid": 35568, "ts": 10517747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03840d0", "tid": 35568, "ts": 10517833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03849c0", "tid": 35568, "ts": 10517919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383570", "tid": 35568, "ts": 10518005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384f70", "tid": 35568, "ts": 10518091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385450", "tid": 35568, "ts": 10518177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03848f0", "tid": 35568, "ts": 10518263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384820", "tid": 35568, "ts": 10518350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383b20", "tid": 35568, "ts": 10518435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383d90", "tid": 35568, "ts": 10518521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ffd0", "tid": 35568, "ts": 10518607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fe30", "tid": 35568, "ts": 10518693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fc90", "tid": 35568, "ts": 10518779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fa20", "tid": 35568, "ts": 10518865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f6e0", "tid": 35568, "ts": 10518952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f610", "tid": 35568, "ts": 10519038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f540", "tid": 35568, "ts": 10519124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382460", "tid": 35568, "ts": 10519210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03821f0", "tid": 35568, "ts": 10519296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381aa0", "tid": 35568, "ts": 10519382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381900", "tid": 35568, "ts": 10519469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f7b0", "tid": 35568, "ts": 10519556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381350", "tid": 35568, "ts": 10519641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380650", "tid": 35568, "ts": 10519728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f2d0", "tid": 35568, "ts": 10519813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381010", "tid": 35568, "ts": 10519899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380580", "tid": 35568, "ts": 10519986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382050", "tid": 35568, "ts": 10520072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381f80", "tid": 35568, "ts": 10520158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380170", "tid": 35568, "ts": 10520244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03804b0", "tid": 35568, "ts": 10520331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03819d0", "tid": 35568, "ts": 10520416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380f40", "tid": 35568, "ts": 10520502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03815c0", "tid": 35568, "ts": 10520589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03803e0", "tid": 35568, "ts": 10520675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381280", "tid": 35568, "ts": 10520761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f470", "tid": 35568, "ts": 10520847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380c00", "tid": 35568, "ts": 10520933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381690", "tid": 35568, "ts": 10521019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f130", "tid": 35568, "ts": 10521105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381830", "tid": 35568, "ts": 10521192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380da0", "tid": 35568, "ts": 10521279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c890", "tid": 35568, "ts": 10521411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c7c0", "tid": 35568, "ts": 10521500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d0b0", "tid": 35568, "ts": 10521587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c2e0", "tid": 35568, "ts": 10521673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d9a0", "tid": 35568, "ts": 10521759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cfe0", "tid": 35568, "ts": 10521846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c140", "tid": 35568, "ts": 10521933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c070", "tid": 35568, "ts": 10522019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ce40", "tid": 35568, "ts": 10522105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d320", "tid": 35568, "ts": 10522191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cca0", "tid": 35568, "ts": 10522277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cb00", "tid": 35568, "ts": 10522364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cbd0", "tid": 35568, "ts": 10522450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037de80", "tid": 35568, "ts": 10522536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037eec0", "tid": 35568, "ts": 10522623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ed20", "tid": 35568, "ts": 10522709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cd70", "tid": 35568, "ts": 10522795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e1c0", "tid": 35568, "ts": 10522880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ec50", "tid": 35568, "ts": 10522966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037eb80", "tid": 35568, "ts": 10523052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bed0", "tid": 35568, "ts": 10523138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d3f0", "tid": 35568, "ts": 10523224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037da70", "tid": 35568, "ts": 10523309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e9e0", "tid": 35568, "ts": 10523396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c480", "tid": 35568, "ts": 10523482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ef90", "tid": 35568, "ts": 10523568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d800", "tid": 35568, "ts": 10523653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ca30", "tid": 35568, "ts": 10523739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e6a0", "tid": 35568, "ts": 10523825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c550", "tid": 35568, "ts": 10523912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037db40", "tid": 35568, "ts": 10523997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b03b0", "tid": 35568, "ts": 10524083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e770", "tid": 35568, "ts": 10524169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a740", "tid": 35568, "ts": 10524255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379e50", "tid": 35568, "ts": 10524341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a5a0", "tid": 35568, "ts": 10524428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379d80", "tid": 35568, "ts": 10524514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a9b0", "tid": 35568, "ts": 10524601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378d40", "tid": 35568, "ts": 10524686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ac20", "tid": 35568, "ts": 10524772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a8e0", "tid": 35568, "ts": 10524859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b9f0", "tid": 35568, "ts": 10524944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ae90", "tid": 35568, "ts": 10525030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b920", "tid": 35568, "ts": 10525117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037adc0", "tid": 35568, "ts": 10525204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379a40", "tid": 35568, "ts": 10525291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b5e0", "tid": 35568, "ts": 10525377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379220", "tid": 35568, "ts": 10525464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a400", "tid": 35568, "ts": 10525551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b780", "tid": 35568, "ts": 10525637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379630", "tid": 35568, "ts": 10525723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b6b0", "tid": 35568, "ts": 10525809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037aa80", "tid": 35568, "ts": 10525896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378930", "tid": 35568, "ts": 10525982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378ad0", "tid": 35568, "ts": 10526068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b100", "tid": 35568, "ts": 10526154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b440", "tid": 35568, "ts": 10526241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037af60", "tid": 35568, "ts": 10526327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378fb0", "tid": 35568, "ts": 10526413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bc60", "tid": 35568, "ts": 10526499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b510", "tid": 35568, "ts": 10526586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378e10", "tid": 35568, "ts": 10526672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a190", "tid": 35568, "ts": 10526758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379490", "tid": 35568, "ts": 10526845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a0c0", "tid": 35568, "ts": 10526932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376cc0", "tid": 35568, "ts": 10527018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376b20", "tid": 35568, "ts": 10527104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376980", "tid": 35568, "ts": 10527191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03767e0", "tid": 35568, "ts": 10527277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375c80", "tid": 35568, "ts": 10527362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375a10", "tid": 35568, "ts": 10527449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375870", "tid": 35568, "ts": 10527535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03778f0", "tid": 35568, "ts": 10527621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377ea0", "tid": 35568, "ts": 10527707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377d00", "tid": 35568, "ts": 10527793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377c30", "tid": 35568, "ts": 10527879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375d50", "tid": 35568, "ts": 10528035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376710", "tid": 35568, "ts": 10528196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376300", "tid": 35568, "ts": 10528338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377a90", "tid": 35568, "ts": 10528495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377680", "tid": 35568, "ts": 10528620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378380", "tid": 35568, "ts": 10528717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03782b0", "tid": 35568, "ts": 10528836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377340", "tid": 35568, "ts": 10528992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376570", "tid": 35568, "ts": 10529101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03781e0", "tid": 35568, "ts": 10529187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03771a0", "tid": 35568, "ts": 10529273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376f30", "tid": 35568, "ts": 10529358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378110", "tid": 35568, "ts": 10529445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378450", "tid": 35568, "ts": 10529531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375ef0", "tid": 35568, "ts": 10529616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03770d0", "tid": 35568, "ts": 10529702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03764a0", "tid": 35568, "ts": 10529788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03786c0", "tid": 35568, "ts": 10529874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376d90", "tid": 35568, "ts": 10529960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377b60", "tid": 35568, "ts": 10530046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377dd0", "tid": 35568, "ts": 10530132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126b70", "tid": 35568, "ts": 10530218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126760", "tid": 35568, "ts": 10530304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126420", "tid": 35568, "ts": 10530390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125e70", "tid": 35568, "ts": 10530477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1242d0", "tid": 35568, "ts": 10530562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124200", "tid": 35568, "ts": 10530648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1258c0", "tid": 35568, "ts": 10530734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124950", "tid": 35568, "ts": 10530820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1269d0", "tid": 35568, "ts": 10530907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1257f0", "tid": 35568, "ts": 10530993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126350", "tid": 35568, "ts": 10531079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126eb0", "tid": 35568, "ts": 10531166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125720", "tid": 35568, "ts": 10531252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125580", "tid": 35568, "ts": 10531338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124af0", "tid": 35568, "ts": 10531423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125cd0", "tid": 35568, "ts": 10531511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1254b0", "tid": 35568, "ts": 10531597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125310", "tid": 35568, "ts": 10531682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125240", "tid": 35568, "ts": 10531768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127390", "tid": 35568, "ts": 10531854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1272c0", "tid": 35568, "ts": 10531939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1250a0", "tid": 35568, "ts": 10532025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1264f0", "tid": 35568, "ts": 10532112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1261b0", "tid": 35568, "ts": 10532198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124c90", "tid": 35568, "ts": 10532284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124a20", "tid": 35568, "ts": 10532369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1260e0", "tid": 35568, "ts": 10532455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127050", "tid": 35568, "ts": 10532542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124bc0", "tid": 35568, "ts": 10532628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124d60", "tid": 35568, "ts": 10532714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124610", "tid": 35568, "ts": 10532800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124e30", "tid": 35568, "ts": 10532887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164360", "tid": 35568, "ts": 10532973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1640f0", "tid": 35568, "ts": 10533058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1639a0", "tid": 35568, "ts": 10533144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1638d0", "tid": 35568, "ts": 10533230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163db0", "tid": 35568, "ts": 10533317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163e80", "tid": 35568, "ts": 10533403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163b40", "tid": 35568, "ts": 10533489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162bd0", "tid": 35568, "ts": 10533576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162a30", "tid": 35568, "ts": 10533662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1627c0", "tid": 35568, "ts": 10533748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163800", "tid": 35568, "ts": 10533836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1626f0", "tid": 35568, "ts": 10533922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162890", "tid": 35568, "ts": 10534008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164840", "tid": 35568, "ts": 10534095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163250", "tid": 35568, "ts": 10534180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163730", "tid": 35568, "ts": 10534267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163320", "tid": 35568, "ts": 10534353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164770", "tid": 35568, "ts": 10534439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1622e0", "tid": 35568, "ts": 10534524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162550", "tid": 35568, "ts": 10534610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162f10", "tid": 35568, "ts": 10534696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162140", "tid": 35568, "ts": 10534782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163660", "tid": 35568, "ts": 10534867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162210", "tid": 35568, "ts": 10534954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161fa0", "tid": 35568, "ts": 10535040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162070", "tid": 35568, "ts": 10535125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1645d0", "tid": 35568, "ts": 10535212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161d30", "tid": 35568, "ts": 10535299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162fe0", "tid": 35568, "ts": 10535384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1646a0", "tid": 35568, "ts": 10535471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162960", "tid": 35568, "ts": 10535556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1608e0", "tid": 35568, "ts": 10535643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fbe0", "tid": 35568, "ts": 10535728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1604d0", "tid": 35568, "ts": 10535814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160c20", "tid": 35568, "ts": 10535900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fd80", "tid": 35568, "ts": 10535987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f3c0", "tid": 35568, "ts": 10536073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ee10", "tid": 35568, "ts": 10536159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1609b0", "tid": 35568, "ts": 10536245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160330", "tid": 35568, "ts": 10536330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160810", "tid": 35568, "ts": 10536416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1612a0", "tid": 35568, "ts": 10536501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160740", "tid": 35568, "ts": 10536588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f630", "tid": 35568, "ts": 10536674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161510", "tid": 35568, "ts": 10536760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161440", "tid": 35568, "ts": 10536847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161030", "tid": 35568, "ts": 10536933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160b50", "tid": 35568, "ts": 10537019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f080", "tid": 35568, "ts": 10537105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161c60", "tid": 35568, "ts": 10537190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15eee0", "tid": 35568, "ts": 10537276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ead0", "tid": 35568, "ts": 10537362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ea00", "tid": 35568, "ts": 10537448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f490", "tid": 35568, "ts": 10537534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161370", "tid": 35568, "ts": 10537620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15efb0", "tid": 35568, "ts": 10537706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160a80", "tid": 35568, "ts": 10537791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f220", "tid": 35568, "ts": 10537877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161100", "tid": 35568, "ts": 10537962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160f60", "tid": 35568, "ts": 10538049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160190", "tid": 35568, "ts": 10538135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1600c0", "tid": 35568, "ts": 10538222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1619f0", "tid": 35568, "ts": 10538308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c570", "tid": 35568, "ts": 10538394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c090", "tid": 35568, "ts": 10538480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e520", "tid": 35568, "ts": 10538566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bef0", "tid": 35568, "ts": 10538652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15da90", "tid": 35568, "ts": 10538738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d9c0", "tid": 35568, "ts": 10538823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cf30", "tid": 35568, "ts": 10538909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e040", "tid": 35568, "ts": 10538995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bae0", "tid": 35568, "ts": 10539080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e1e0", "tid": 35568, "ts": 10539166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d820", "tid": 35568, "ts": 10539252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15dea0", "tid": 35568, "ts": 10539339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d680", "tid": 35568, "ts": 10539426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c160", "tid": 35568, "ts": 10539512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c230", "tid": 35568, "ts": 10539598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d8f0", "tid": 35568, "ts": 10539684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e110", "tid": 35568, "ts": 10539771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b6d0", "tid": 35568, "ts": 10539857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d410", "tid": 35568, "ts": 10539943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b940", "tid": 35568, "ts": 10540029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e790", "tid": 35568, "ts": 10540116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b600", "tid": 35568, "ts": 10540202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15dd00", "tid": 35568, "ts": 10540288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ddd0", "tid": 35568, "ts": 10540373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cb20", "tid": 35568, "ts": 10540460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d340", "tid": 35568, "ts": 10540547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ca50", "tid": 35568, "ts": 10540633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bc80", "tid": 35568, "ts": 10540719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d270", "tid": 35568, "ts": 10540806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e380", "tid": 35568, "ts": 10540892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c980", "tid": 35568, "ts": 10540977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c4a0", "tid": 35568, "ts": 10541064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159f40", "tid": 35568, "ts": 10541150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159da0", "tid": 35568, "ts": 10541236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159c00", "tid": 35568, "ts": 10541323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1593e0", "tid": 35568, "ts": 10541410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a1b0", "tid": 35568, "ts": 10541497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159170", "tid": 35568, "ts": 10541583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b120", "tid": 35568, "ts": 10541669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159990", "tid": 35568, "ts": 10541755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158fd0", "tid": 35568, "ts": 10541841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159650", "tid": 35568, "ts": 10541927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158e30", "tid": 35568, "ts": 10542013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b050", "tid": 35568, "ts": 10542098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ac40", "tid": 35568, "ts": 10542186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158f00", "tid": 35568, "ts": 10542272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15aaa0", "tid": 35568, "ts": 10542358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158130", "tid": 35568, "ts": 10542444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158610", "tid": 35568, "ts": 10542530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158540", "tid": 35568, "ts": 10542616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158a20", "tid": 35568, "ts": 10542702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ad10", "tid": 35568, "ts": 10542788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158880", "tid": 35568, "ts": 10542874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15af80", "tid": 35568, "ts": 10542960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a830", "tid": 35568, "ts": 10543046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b2c0", "tid": 35568, "ts": 10543132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a420", "tid": 35568, "ts": 10543218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a760", "tid": 35568, "ts": 10543305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1583a0", "tid": 35568, "ts": 10543390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1590a0", "tid": 35568, "ts": 10543476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159a60", "tid": 35568, "ts": 10543599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a010", "tid": 35568, "ts": 10543725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a690", "tid": 35568, "ts": 10543823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159720", "tid": 35568, "ts": 10543908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1571c0", "tid": 35568, "ts": 10543995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1579e0", "tid": 35568, "ts": 10544081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156730", "tid": 35568, "ts": 10544168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1564c0", "tid": 35568, "ts": 10544254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156320", "tid": 35568, "ts": 10544341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156ce0", "tid": 35568, "ts": 10544426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155f10", "tid": 35568, "ts": 10544512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155bd0", "tid": 35568, "ts": 10544598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155b00", "tid": 35568, "ts": 10544684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155890", "tid": 35568, "ts": 10544770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155620", "tid": 35568, "ts": 10544856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1553b0", "tid": 35568, "ts": 10544942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155210", "tid": 35568, "ts": 10545028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1557c0", "tid": 35568, "ts": 10545114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156180", "tid": 35568, "ts": 10545200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154ed0", "tid": 35568, "ts": 10545286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155140", "tid": 35568, "ts": 10545372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157290", "tid": 35568, "ts": 10545459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154d30", "tid": 35568, "ts": 10545545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155e40", "tid": 35568, "ts": 10545631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157020", "tid": 35568, "ts": 10545718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157d20", "tid": 35568, "ts": 10545804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1570f0", "tid": 35568, "ts": 10545890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157430", "tid": 35568, "ts": 10545975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1569a0", "tid": 35568, "ts": 10546061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157f90", "tid": 35568, "ts": 10546148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1576a0", "tid": 35568, "ts": 10546234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156c10", "tid": 35568, "ts": 10546319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157b80", "tid": 35568, "ts": 10546406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1575d0", "tid": 35568, "ts": 10546491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154fa0", "tid": 35568, "ts": 10546577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156e80", "tid": 35568, "ts": 10546663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152220", "tid": 35568, "ts": 10546749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152150", "tid": 35568, "ts": 10546836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152080", "tid": 35568, "ts": 10546922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1535a0", "tid": 35568, "ts": 10547009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151e10", "tid": 35568, "ts": 10547096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153810", "tid": 35568, "ts": 10547182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151c70", "tid": 35568, "ts": 10547268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153400", "tid": 35568, "ts": 10547353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152e50", "tid": 35568, "ts": 10547440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1539b0", "tid": 35568, "ts": 10547526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152b10", "tid": 35568, "ts": 10547611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151ba0", "tid": 35568, "ts": 10547697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151a00", "tid": 35568, "ts": 10547783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153670", "tid": 35568, "ts": 10547869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152a40", "tid": 35568, "ts": 10547956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1523c0", "tid": 35568, "ts": 10548043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154c60", "tid": 35568, "ts": 10548129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1527d0", "tid": 35568, "ts": 10548215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153330", "tid": 35568, "ts": 10548301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1541d0", "tid": 35568, "ts": 10548387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154850", "tid": 35568, "ts": 10548474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153cf0", "tid": 35568, "ts": 10548560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154030", "tid": 35568, "ts": 10548646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154920", "tid": 35568, "ts": 10548732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154780", "tid": 35568, "ts": 10548819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154370", "tid": 35568, "ts": 10548905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1538e0", "tid": 35568, "ts": 10548992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152700", "tid": 35568, "ts": 10549077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153e90", "tid": 35568, "ts": 10549164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1546b0", "tid": 35568, "ts": 10549250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152560", "tid": 35568, "ts": 10549337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153f60", "tid": 35568, "ts": 10549424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14eef0", "tid": 35568, "ts": 10549510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e7a0", "tid": 35568, "ts": 10549597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151450", "tid": 35568, "ts": 10549684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1500d0", "tid": 35568, "ts": 10549770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14eae0", "tid": 35568, "ts": 10549856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1512b0", "tid": 35568, "ts": 10549942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f980", "tid": 35568, "ts": 10550028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150750", "tid": 35568, "ts": 10550115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150ea0", "tid": 35568, "ts": 10550202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fbf0", "tid": 35568, "ts": 10550287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fe60", "tid": 35568, "ts": 10550374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ee20", "tid": 35568, "ts": 10550461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151790", "tid": 35568, "ts": 10550548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150a90", "tid": 35568, "ts": 10550634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1505b0", "tid": 35568, "ts": 10550720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150c30", "tid": 35568, "ts": 10550807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150270", "tid": 35568, "ts": 10550894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f3d0", "tid": 35568, "ts": 10550980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f8b0", "tid": 35568, "ts": 10551066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1501a0", "tid": 35568, "ts": 10551153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150820", "tid": 35568, "ts": 10551240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f300", "tid": 35568, "ts": 10551326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e530", "tid": 35568, "ts": 10551413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150dd0", "tid": 35568, "ts": 10551499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150000", "tid": 35568, "ts": 10551586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1516c0", "tid": 35568, "ts": 10551672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150f70", "tid": 35568, "ts": 10551758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ed50", "tid": 35568, "ts": 10551845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e600", "tid": 35568, "ts": 10551932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150d00", "tid": 35568, "ts": 10552019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fcc0", "tid": 35568, "ts": 10552104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1508f0", "tid": 35568, "ts": 10552190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14baf0", "tid": 35568, "ts": 10552276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b7b0", "tid": 35568, "ts": 10552363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b470", "tid": 35568, "ts": 10552450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bf00", "tid": 35568, "ts": 10552536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b6e0", "tid": 35568, "ts": 10552623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e2c0", "tid": 35568, "ts": 10552709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14dc40", "tid": 35568, "ts": 10552796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d010", "tid": 35568, "ts": 10552882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14db70", "tid": 35568, "ts": 10552969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ce70", "tid": 35568, "ts": 10553055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d1b0", "tid": 35568, "ts": 10553142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ccd0", "tid": 35568, "ts": 10553229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d0e0", "tid": 35568, "ts": 10553316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d690", "tid": 35568, "ts": 10553402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c650", "tid": 35568, "ts": 10553489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e1f0", "tid": 35568, "ts": 10553576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cc00", "tid": 35568, "ts": 10553663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ca60", "tid": 35568, "ts": 10553749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c8c0", "tid": 35568, "ts": 10553835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bd60", "tid": 35568, "ts": 10553921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e460", "tid": 35568, "ts": 10554008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14dd10", "tid": 35568, "ts": 10554094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b2d0", "tid": 35568, "ts": 10554179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bc90", "tid": 35568, "ts": 10554265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b200", "tid": 35568, "ts": 10554352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c3e0", "tid": 35568, "ts": 10554438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bbc0", "tid": 35568, "ts": 10554523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cb30", "tid": 35568, "ts": 10554609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c990", "tid": 35568, "ts": 10554696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c170", "tid": 35568, "ts": 10554782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c0a0", "tid": 35568, "ts": 10554868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d900", "tid": 35568, "ts": 10554955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149db0", "tid": 35568, "ts": 10555042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149b40", "tid": 35568, "ts": 10555129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149a70", "tid": 35568, "ts": 10555215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149f50", "tid": 35568, "ts": 10555301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1498d0", "tid": 35568, "ts": 10555388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a360", "tid": 35568, "ts": 10555474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149ce0", "tid": 35568, "ts": 10555561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a290", "tid": 35568, "ts": 10555647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149250", "tid": 35568, "ts": 10555733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14aec0", "tid": 35568, "ts": 10555819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149180", "tid": 35568, "ts": 10555905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148d70", "tid": 35568, "ts": 10555991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148b00", "tid": 35568, "ts": 10556079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147e00", "tid": 35568, "ts": 10556165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148960", "tid": 35568, "ts": 10556253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1483b0", "tid": 35568, "ts": 10556340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148f10", "tid": 35568, "ts": 10556428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1494c0", "tid": 35568, "ts": 10556515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1482e0", "tid": 35568, "ts": 10556645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a910", "tid": 35568, "ts": 10556733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148620", "tid": 35568, "ts": 10556820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148e40", "tid": 35568, "ts": 10556906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149730", "tid": 35568, "ts": 10556993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b060", "tid": 35568, "ts": 10557079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148550", "tid": 35568, "ts": 10557165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a020", "tid": 35568, "ts": 10557251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1486f0", "tid": 35568, "ts": 10557337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148070", "tid": 35568, "ts": 10557423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149660", "tid": 35568, "ts": 10557510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14af90", "tid": 35568, "ts": 10557596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149c10", "tid": 35568, "ts": 10557682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147ed0", "tid": 35568, "ts": 10557769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145b10", "tid": 35568, "ts": 10557855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145970", "tid": 35568, "ts": 10557941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1465a0", "tid": 35568, "ts": 10558027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145150", "tid": 35568, "ts": 10558113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1464d0", "tid": 35568, "ts": 10558199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144a00", "tid": 35568, "ts": 10558286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146dc0", "tid": 35568, "ts": 10558372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147b90", "tid": 35568, "ts": 10558458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1479f0", "tid": 35568, "ts": 10558543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1452f0", "tid": 35568, "ts": 10558630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145220", "tid": 35568, "ts": 10558716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146b50", "tid": 35568, "ts": 10558802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145be0", "tid": 35568, "ts": 10558888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147030", "tid": 35568, "ts": 10558974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144d40", "tid": 35568, "ts": 10559061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147370", "tid": 35568, "ts": 10559147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146cf0", "tid": 35568, "ts": 10559277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144ad0", "tid": 35568, "ts": 10559364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144c70", "tid": 35568, "ts": 10559450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147440", "tid": 35568, "ts": 10559536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146190", "tid": 35568, "ts": 10559622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145490", "tid": 35568, "ts": 10559708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1468e0", "tid": 35568, "ts": 10559794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147920", "tid": 35568, "ts": 10559880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147510", "tid": 35568, "ts": 10559967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146a80", "tid": 35568, "ts": 10560052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145ff0", "tid": 35568, "ts": 10560139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147850", "tid": 35568, "ts": 10560224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147c60", "tid": 35568, "ts": 10560312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146f60", "tid": 35568, "ts": 10560398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145560", "tid": 35568, "ts": 10560484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146670", "tid": 35568, "ts": 10560570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142090", "tid": 35568, "ts": 10560656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143dd0", "tid": 35568, "ts": 10560742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143270", "tid": 35568, "ts": 10560829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141bb0", "tid": 35568, "ts": 10560915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141ae0", "tid": 35568, "ts": 10561001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143a90", "tid": 35568, "ts": 10561087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143f70", "tid": 35568, "ts": 10561174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1439c0", "tid": 35568, "ts": 10561259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142f30", "tid": 35568, "ts": 10561346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1446c0", "tid": 35568, "ts": 10561432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142980", "tid": 35568, "ts": 10561519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1442b0", "tid": 35568, "ts": 10561604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1428b0", "tid": 35568, "ts": 10561692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142710", "tid": 35568, "ts": 10561778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143750", "tid": 35568, "ts": 10561865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143410", "tid": 35568, "ts": 10561951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142300", "tid": 35568, "ts": 10562038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142e60", "tid": 35568, "ts": 10562124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142230", "tid": 35568, "ts": 10562210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142cc0", "tid": 35568, "ts": 10562296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141e20", "tid": 35568, "ts": 10562383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141940", "tid": 35568, "ts": 10562470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1424a0", "tid": 35568, "ts": 10562556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1441e0", "tid": 35568, "ts": 10562642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1417a0", "tid": 35568, "ts": 10562728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141d50", "tid": 35568, "ts": 10562814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144040", "tid": 35568, "ts": 10562900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141600", "tid": 35568, "ts": 10562986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142b20", "tid": 35568, "ts": 10563073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1435b0", "tid": 35568, "ts": 10563159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142a50", "tid": 35568, "ts": 10563245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144520", "tid": 35568, "ts": 10563331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fc00", "tid": 35568, "ts": 10563418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fa60", "tid": 35568, "ts": 10563503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f720", "tid": 35568, "ts": 10563589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f310", "tid": 35568, "ts": 10563675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ec90", "tid": 35568, "ts": 10563762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ebc0", "tid": 35568, "ts": 10563848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fe70", "tid": 35568, "ts": 10563935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e950", "tid": 35568, "ts": 10564020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1411f0", "tid": 35568, "ts": 10564106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13efd0", "tid": 35568, "ts": 10564192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f650", "tid": 35568, "ts": 10564278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e610", "tid": 35568, "ts": 10564364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140c40", "tid": 35568, "ts": 10564451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140830", "tid": 35568, "ts": 10564537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fda0", "tid": 35568, "ts": 10564623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140420", "tid": 35568, "ts": 10564709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140350", "tid": 35568, "ts": 10564795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f8c0", "tid": 35568, "ts": 10564881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1404f0", "tid": 35568, "ts": 10564968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140f80", "tid": 35568, "ts": 10565054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ed60", "tid": 35568, "ts": 10565141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140760", "tid": 35568, "ts": 10565226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e200", "tid": 35568, "ts": 10565312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e130", "tid": 35568, "ts": 10565398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f4b0", "tid": 35568, "ts": 10565484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1401b0", "tid": 35568, "ts": 10565570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140900", "tid": 35568, "ts": 10565656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140690", "tid": 35568, "ts": 10565742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ee30", "tid": 35568, "ts": 10565828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141390", "tid": 35568, "ts": 10565914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e540", "tid": 35568, "ts": 10566001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140010", "tid": 35568, "ts": 10566087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d1c0", "tid": 35568, "ts": 10566173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ca70", "tid": 35568, "ts": 10566260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c8d0", "tid": 35568, "ts": 10566346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c730", "tid": 35568, "ts": 10566432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c4c0", "tid": 35568, "ts": 10566518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c320", "tid": 35568, "ts": 10566605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c250", "tid": 35568, "ts": 10566691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cf50", "tid": 35568, "ts": 10566777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13be40", "tid": 35568, "ts": 10566864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d020", "tid": 35568, "ts": 10566951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bbd0", "tid": 35568, "ts": 10567037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bb00", "tid": 35568, "ts": 10567123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ce80", "tid": 35568, "ts": 10567210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b550", "tid": 35568, "ts": 10567296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b210", "tid": 35568, "ts": 10567382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d770", "tid": 35568, "ts": 10567468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ae00", "tid": 35568, "ts": 10567554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b6f0", "tid": 35568, "ts": 10567640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bca0", "tid": 35568, "ts": 10567726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b620", "tid": 35568, "ts": 10567812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d430", "tid": 35568, "ts": 10567898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b890", "tid": 35568, "ts": 10567984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dd20", "tid": 35568, "ts": 10568070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e060", "tid": 35568, "ts": 10568156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ba30", "tid": 35568, "ts": 10568242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b3b0", "tid": 35568, "ts": 10568328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dc50", "tid": 35568, "ts": 10568414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cdb0", "tid": 35568, "ts": 10568499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b960", "tid": 35568, "ts": 10568587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cc10", "tid": 35568, "ts": 10568673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d360", "tid": 35568, "ts": 10568760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d6a0", "tid": 35568, "ts": 10568846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138630", "tid": 35568, "ts": 10568932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138220", "tid": 35568, "ts": 10569019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137fb0", "tid": 35568, "ts": 10569105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137e10", "tid": 35568, "ts": 10569192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a9f0", "tid": 35568, "ts": 10569278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13aac0", "tid": 35568, "ts": 10569365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137ad0", "tid": 35568, "ts": 10569451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ac60", "tid": 35568, "ts": 10569537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138b10", "tid": 35568, "ts": 10569623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139740", "tid": 35568, "ts": 10569709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137a00", "tid": 35568, "ts": 10569795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1382f0", "tid": 35568, "ts": 10569881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138f20", "tid": 35568, "ts": 10569968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139f60", "tid": 35568, "ts": 10570054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139e90", "tid": 35568, "ts": 10570140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139260", "tid": 35568, "ts": 10570225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139b50", "tid": 35568, "ts": 10570312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139190", "tid": 35568, "ts": 10570398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a030", "tid": 35568, "ts": 10570484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138080", "tid": 35568, "ts": 10570570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1399b0", "tid": 35568, "ts": 10570657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139400", "tid": 35568, "ts": 10570742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137930", "tid": 35568, "ts": 10570829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a6b0", "tid": 35568, "ts": 10570915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a2a0", "tid": 35568, "ts": 10571002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1395a0", "tid": 35568, "ts": 10571088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138700", "tid": 35568, "ts": 10571174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138d80", "tid": 35568, "ts": 10571260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138cb0", "tid": 35568, "ts": 10571347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137ba0", "tid": 35568, "ts": 10571433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a920", "tid": 35568, "ts": 10571519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139cf0", "tid": 35568, "ts": 10571606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136000", "tid": 35568, "ts": 10571692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135f30", "tid": 35568, "ts": 10571778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135cc0", "tid": 35568, "ts": 10571864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135b20", "tid": 35568, "ts": 10571950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137110", "tid": 35568, "ts": 10572036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134fc0", "tid": 35568, "ts": 10572122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134ef0", "tid": 35568, "ts": 10572207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134bb0", "tid": 35568, "ts": 10572293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135300", "tid": 35568, "ts": 10572379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137040", "tid": 35568, "ts": 10572465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136f70", "tid": 35568, "ts": 10572552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134870", "tid": 35568, "ts": 10572638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136dd0", "tid": 35568, "ts": 10572725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136d00", "tid": 35568, "ts": 10572826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137860", "tid": 35568, "ts": 10572987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137450", "tid": 35568, "ts": 10573147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135a50", "tid": 35568, "ts": 10573233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136c30", "tid": 35568, "ts": 10573319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1353d0", "tid": 35568, "ts": 10573405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136750", "tid": 35568, "ts": 10573492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136a90", "tid": 35568, "ts": 10573578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136680", "tid": 35568, "ts": 10573664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134530", "tid": 35568, "ts": 10573750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134d50", "tid": 35568, "ts": 10573836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135230", "tid": 35568, "ts": 10573924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1368f0", "tid": 35568, "ts": 10574009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137520", "tid": 35568, "ts": 10574095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1372b0", "tid": 35568, "ts": 10574181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1365b0", "tid": 35568, "ts": 10574268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1360d0", "tid": 35568, "ts": 10574354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135e60", "tid": 35568, "ts": 10574441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136b60", "tid": 35568, "ts": 10574526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131bc0", "tid": 35568, "ts": 10574613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1316e0", "tid": 35568, "ts": 10574699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131470", "tid": 35568, "ts": 10574787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1312d0", "tid": 35568, "ts": 10574904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1335c0", "tid": 35568, "ts": 10574991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1331b0", "tid": 35568, "ts": 10575078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134460", "tid": 35568, "ts": 10575164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132990", "tid": 35568, "ts": 10575250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1341f0", "tid": 35568, "ts": 10575337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133010", "tid": 35568, "ts": 10575423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132720", "tid": 35568, "ts": 10575510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132e70", "tid": 35568, "ts": 10575597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132da0", "tid": 35568, "ts": 10575684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131540", "tid": 35568, "ts": 10575770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131d60", "tid": 35568, "ts": 10575856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1320a0", "tid": 35568, "ts": 10575942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133c40", "tid": 35568, "ts": 10576028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1323e0", "tid": 35568, "ts": 10576115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133420", "tid": 35568, "ts": 10576202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132170", "tid": 35568, "ts": 10576289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133aa0", "tid": 35568, "ts": 10576376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133f80", "tid": 35568, "ts": 10576462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132580", "tid": 35568, "ts": 10576548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132b30", "tid": 35568, "ts": 10576635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132cd0", "tid": 35568, "ts": 10576722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132240", "tid": 35568, "ts": 10576808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132a60", "tid": 35568, "ts": 10576895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131c90", "tid": 35568, "ts": 10576981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131130", "tid": 35568, "ts": 10577067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134390", "tid": 35568, "ts": 10577154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1324b0", "tid": 35568, "ts": 10577241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131200", "tid": 35568, "ts": 10577326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e890", "tid": 35568, "ts": 10577413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e620", "tid": 35568, "ts": 10577499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12de00", "tid": 35568, "ts": 10577586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130df0", "tid": 35568, "ts": 10577672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130c50", "tid": 35568, "ts": 10577759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130910", "tid": 35568, "ts": 10577845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e550", "tid": 35568, "ts": 10577932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130840", "tid": 35568, "ts": 10578018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f3f0", "tid": 35568, "ts": 10578104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e7c0", "tid": 35568, "ts": 10578191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f320", "tid": 35568, "ts": 10578278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f250", "tid": 35568, "ts": 10578364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ff50", "tid": 35568, "ts": 10578451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f660", "tid": 35568, "ts": 10578537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dfa0", "tid": 35568, "ts": 10578623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f180", "tid": 35568, "ts": 10578708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130f90", "tid": 35568, "ts": 10578794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12efe0", "tid": 35568, "ts": 10578880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ef10", "tid": 35568, "ts": 10578966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12eb00", "tid": 35568, "ts": 10579053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dd30", "tid": 35568, "ts": 10579139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130360", "tid": 35568, "ts": 10579226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ed70", "tid": 35568, "ts": 10579312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e070", "tid": 35568, "ts": 10579397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f9a0", "tid": 35568, "ts": 10579483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f8d0", "tid": 35568, "ts": 10579570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ded0", "tid": 35568, "ts": 10579657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ea30", "tid": 35568, "ts": 10579743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130b80", "tid": 35568, "ts": 10579829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130290", "tid": 35568, "ts": 10579915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130ab0", "tid": 35568, "ts": 10580001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f730", "tid": 35568, "ts": 10580087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d5e0", "tid": 35568, "ts": 10580174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c670", "tid": 35568, "ts": 10580260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c330", "tid": 35568, "ts": 10580346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c190", "tid": 35568, "ts": 10580432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bff0", "tid": 35568, "ts": 10580519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b150", "tid": 35568, "ts": 10580605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bf20", "tid": 35568, "ts": 10580692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b970", "tid": 35568, "ts": 10580778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12afb0", "tid": 35568, "ts": 10580865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aad0", "tid": 35568, "ts": 10580952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c0c0", "tid": 35568, "ts": 10581038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d6b0", "tid": 35568, "ts": 10581124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dac0", "tid": 35568, "ts": 10581211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a930", "tid": 35568, "ts": 10581297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b7d0", "tid": 35568, "ts": 10581383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c810", "tid": 35568, "ts": 10581469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d440", "tid": 35568, "ts": 10581556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ae10", "tid": 35568, "ts": 10581642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b630", "tid": 35568, "ts": 10581729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d1d0", "tid": 35568, "ts": 10581816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b220", "tid": 35568, "ts": 10581903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b560", "tid": 35568, "ts": 10581990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ce90", "tid": 35568, "ts": 10582076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12db90", "tid": 35568, "ts": 10582162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c4d0", "tid": 35568, "ts": 10582249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d030", "tid": 35568, "ts": 10582335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c400", "tid": 35568, "ts": 10582422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d850", "tid": 35568, "ts": 10582508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d780", "tid": 35568, "ts": 10582596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12dc60", "tid": 35568, "ts": 10582682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bcb0", "tid": 35568, "ts": 10582769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ac70", "tid": 35568, "ts": 10582855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127c80", "tid": 35568, "ts": 10582942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127940", "tid": 35568, "ts": 10583028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128090", "tid": 35568, "ts": 10583114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127600", "tid": 35568, "ts": 10583200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127530", "tid": 35568, "ts": 10583286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a2b0", "tid": 35568, "ts": 10583372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127a10", "tid": 35568, "ts": 10583458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1287e0", "tid": 35568, "ts": 10583544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128710", "tid": 35568, "ts": 10583631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128160", "tid": 35568, "ts": 10583717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a790", "tid": 35568, "ts": 10583804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a110", "tid": 35568, "ts": 10583890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129b60", "tid": 35568, "ts": 10583977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1291a0", "tid": 35568, "ts": 10584063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128d90", "tid": 35568, "ts": 10584149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129a90", "tid": 35568, "ts": 10584235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128cc0", "tid": 35568, "ts": 10584322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1298f0", "tid": 35568, "ts": 10584408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129f70", "tid": 35568, "ts": 10584494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1283d0", "tid": 35568, "ts": 10584581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128bf0", "tid": 35568, "ts": 10584668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129ea0", "tid": 35568, "ts": 10584754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129750", "tid": 35568, "ts": 10584840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1295b0", "tid": 35568, "ts": 10584927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129340", "tid": 35568, "ts": 10585014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129dd0", "tid": 35568, "ts": 10585101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129d00", "tid": 35568, "ts": 10585187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1294e0", "tid": 35568, "ts": 10585274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a6c0", "tid": 35568, "ts": 10585360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a860", "tid": 35568, "ts": 10585447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127ef0", "tid": 35568, "ts": 10585533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128230", "tid": 35568, "ts": 10585619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67550", "tid": 35568, "ts": 10585705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abeb0", "tid": 35568, "ts": 10585792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9130", "tid": 35568, "ts": 10585878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8020", "tid": 35568, "ts": 10585965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7f50", "tid": 35568, "ts": 10586053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7a70", "tid": 35568, "ts": 10586139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7660", "tid": 35568, "ts": 10586226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbddb0", "tid": 35568, "ts": 10586312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcbd0", "tid": 35568, "ts": 10586399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbed20", "tid": 35568, "ts": 10586486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe290", "tid": 35568, "ts": 10586572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc960", "tid": 35568, "ts": 10586658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdce0", "tid": 35568, "ts": 10586745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc210", "tid": 35568, "ts": 10586831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc140", "tid": 35568, "ts": 10586917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe430", "tid": 35568, "ts": 10587003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf3a0", "tid": 35568, "ts": 10587090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf470", "tid": 35568, "ts": 10587176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdc10", "tid": 35568, "ts": 10587262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd660", "tid": 35568, "ts": 10587349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe840", "tid": 35568, "ts": 10587436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe9e0", "tid": 35568, "ts": 10587521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd250", "tid": 35568, "ts": 10587608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbeb80", "tid": 35568, "ts": 10587694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe020", "tid": 35568, "ts": 10587780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdf50", "tid": 35568, "ts": 10587867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcf10", "tid": 35568, "ts": 10587954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc620", "tid": 35568, "ts": 10588040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc6f0", "tid": 35568, "ts": 10588127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf130", "tid": 35568, "ts": 10588213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbef90", "tid": 35568, "ts": 10588299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbedf0", "tid": 35568, "ts": 10588385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe1c0", "tid": 35568, "ts": 10588472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbde80", "tid": 35568, "ts": 10588559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc2e0", "tid": 35568, "ts": 10588644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbec50", "tid": 35568, "ts": 10588731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe500", "tid": 35568, "ts": 10588817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbeec0", "tid": 35568, "ts": 10588903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd180", "tid": 35568, "ts": 10588989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa630", "tid": 35568, "ts": 10589075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa490", "tid": 35568, "ts": 10589161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb8e0", "tid": 35568, "ts": 10589248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc6b0", "tid": 35568, "ts": 10589334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa220", "tid": 35568, "ts": 10589421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa080", "tid": 35568, "ts": 10589508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb670", "tid": 35568, "ts": 10589595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc510", "tid": 35568, "ts": 10589681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc850", "tid": 35568, "ts": 10589767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfad80", "tid": 35568, "ts": 10589854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc440", "tid": 35568, "ts": 10589941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb9b0", "tid": 35568, "ts": 10590027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfae50", "tid": 35568, "ts": 10590113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc2a0", "tid": 35568, "ts": 10590199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc100", "tid": 35568, "ts": 10590286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9ee0", "tid": 35568, "ts": 10590372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfabe0", "tid": 35568, "ts": 10590498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9e10", "tid": 35568, "ts": 10590585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbe90", "tid": 35568, "ts": 10590671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfab10", "tid": 35568, "ts": 10590758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb810", "tid": 35568, "ts": 10590844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbb50", "tid": 35568, "ts": 10590931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfba80", "tid": 35568, "ts": 10591018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcd30", "tid": 35568, "ts": 10591105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb330", "tid": 35568, "ts": 10591192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc1d0", "tid": 35568, "ts": 10591280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc5e0", "tid": 35568, "ts": 10591367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcc60", "tid": 35568, "ts": 10591454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9d40", "tid": 35568, "ts": 10591583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcac0", "tid": 35568, "ts": 10591671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc920", "tid": 35568, "ts": 10591758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8820", "tid": 35568, "ts": 10591844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8680", "tid": 35568, "ts": 10591930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8410", "tid": 35568, "ts": 10592017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8270", "tid": 35568, "ts": 10592104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df81a0", "tid": 35568, "ts": 10592190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7300", "tid": 35568, "ts": 10592276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6bb0", "tid": 35568, "ts": 10592363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7cc0", "tid": 35568, "ts": 10592449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df80d0", "tid": 35568, "ts": 10592534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7980", "tid": 35568, "ts": 10592620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df92b0", "tid": 35568, "ts": 10592707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6fc0", "tid": 35568, "ts": 10592792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9110", "tid": 35568, "ts": 10592878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df96c0", "tid": 35568, "ts": 10592964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8f70", "tid": 35568, "ts": 10593051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8750", "tid": 35568, "ts": 10593137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8ea0", "tid": 35568, "ts": 10593223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7640", "tid": 35568, "ts": 10593308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7570", "tid": 35568, "ts": 10593395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7b20", "tid": 35568, "ts": 10593481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6940", "tid": 35568, "ts": 10593568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7f30", "tid": 35568, "ts": 10593653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6a10", "tid": 35568, "ts": 10593741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7230", "tid": 35568, "ts": 10593827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9930", "tid": 35568, "ts": 10593913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8a90", "tid": 35568, "ts": 10593999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9520", "tid": 35568, "ts": 10594086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df89c0", "tid": 35568, "ts": 10594172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9790", "tid": 35568, "ts": 10594259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6d50", "tid": 35568, "ts": 10594345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6c80", "tid": 35568, "ts": 10594431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9c70", "tid": 35568, "ts": 10594517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df61f0", "tid": 35568, "ts": 10594626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6050", "tid": 35568, "ts": 10594713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5d10", "tid": 35568, "ts": 10594800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5280", "tid": 35568, "ts": 10594886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5760", "tid": 35568, "ts": 10594972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4e70", "tid": 35568, "ts": 10595059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df37b0", "tid": 35568, "ts": 10595146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4c00", "tid": 35568, "ts": 10595232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4b30", "tid": 35568, "ts": 10595318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4990", "tid": 35568, "ts": 10595404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df47f0", "tid": 35568, "ts": 10595490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4240", "tid": 35568, "ts": 10595576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5aa0", "tid": 35568, "ts": 10595661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4da0", "tid": 35568, "ts": 10595747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6600", "tid": 35568, "ts": 10595833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df40a0", "tid": 35568, "ts": 10595919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6460", "tid": 35568, "ts": 10596005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4310", "tid": 35568, "ts": 10596091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df59d0", "tid": 35568, "ts": 10596178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3610", "tid": 35568, "ts": 10596264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3950", "tid": 35568, "ts": 10596350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3a20", "tid": 35568, "ts": 10596437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6530", "tid": 35568, "ts": 10596524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df48c0", "tid": 35568, "ts": 10596610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5900", "tid": 35568, "ts": 10596696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df43e0", "tid": 35568, "ts": 10596782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3540", "tid": 35568, "ts": 10596868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4cd0", "tid": 35568, "ts": 10596953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5830", "tid": 35568, "ts": 10597039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3bc0", "tid": 35568, "ts": 10597125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5690", "tid": 35568, "ts": 10597211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3fd0", "tid": 35568, "ts": 10597297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2d20", "tid": 35568, "ts": 10597384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0140", "tid": 35568, "ts": 10597469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2b80", "tid": 35568, "ts": 10597556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0ca0", "tid": 35568, "ts": 10597642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df20f0", "tid": 35568, "ts": 10597728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0620", "tid": 35568, "ts": 10597815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1f50", "tid": 35568, "ts": 10597902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2910", "tid": 35568, "ts": 10597988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df26a0", "tid": 35568, "ts": 10598075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0a30", "tid": 35568, "ts": 10598161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0480", "tid": 35568, "ts": 10598248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1c10", "tid": 35568, "ts": 10598334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2840", "tid": 35568, "ts": 10598420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2020", "tid": 35568, "ts": 10598506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0210", "tid": 35568, "ts": 10598592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1e80", "tid": 35568, "ts": 10598678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0fe0", "tid": 35568, "ts": 10598764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0b00", "tid": 35568, "ts": 10598851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df32d0", "tid": 35568, "ts": 10598937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2360", "tid": 35568, "ts": 10599024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2770", "tid": 35568, "ts": 10599109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3060", "tid": 35568, "ts": 10599195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0f10", "tid": 35568, "ts": 10599282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2ab0", "tid": 35568, "ts": 10599368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0e40", "tid": 35568, "ts": 10599454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0bd0", "tid": 35568, "ts": 10599540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df13f0", "tid": 35568, "ts": 10599626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1320", "tid": 35568, "ts": 10599711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df10b0", "tid": 35568, "ts": 10599798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1730", "tid": 35568, "ts": 10599883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1800", "tid": 35568, "ts": 10599970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1660", "tid": 35568, "ts": 10600056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decfb0", "tid": 35568, "ts": 10600141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decd40", "tid": 35568, "ts": 10600227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defc60", "tid": 35568, "ts": 10600313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defb90", "tid": 35568, "ts": 10600400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defac0", "tid": 35568, "ts": 10600486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def850", "tid": 35568, "ts": 10600572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded8a0", "tid": 35568, "ts": 10600659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded7d0", "tid": 35568, "ts": 10600745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defed0", "tid": 35568, "ts": 10600831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def510", "tid": 35568, "ts": 10600917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee4d0", "tid": 35568, "ts": 10601003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defe00", "tid": 35568, "ts": 10601089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5defd30", "tid": 35568, "ts": 10601175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def2a0", "tid": 35568, "ts": 10601260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee5a0", "tid": 35568, "ts": 10601347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded490", "tid": 35568, "ts": 10601434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def1d0", "tid": 35568, "ts": 10601520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded220", "tid": 35568, "ts": 10601606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def440", "tid": 35568, "ts": 10601692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded3c0", "tid": 35568, "ts": 10601778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee0c0", "tid": 35568, "ts": 10601864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded970", "tid": 35568, "ts": 10601951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee9b0", "tid": 35568, "ts": 10602038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deecf0", "tid": 35568, "ts": 10602125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded700", "tid": 35568, "ts": 10602211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def100", "tid": 35568, "ts": 10602297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded080", "tid": 35568, "ts": 10602384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedf20", "tid": 35568, "ts": 10602470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dede50", "tid": 35568, "ts": 10602557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def030", "tid": 35568, "ts": 10602642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedff0", "tid": 35568, "ts": 10602729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee810", "tid": 35568, "ts": 10602815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9d50", "tid": 35568, "ts": 10602902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9a10", "tid": 35568, "ts": 10602988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea230", "tid": 35568, "ts": 10603074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decad0", "tid": 35568, "ts": 10603160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec790", "tid": 35568, "ts": 10603246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9ae0", "tid": 35568, "ts": 10603333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec520", "tid": 35568, "ts": 10603419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea090", "tid": 35568, "ts": 10603505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec450", "tid": 35568, "ts": 10603591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec380", "tid": 35568, "ts": 10603677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec2b0", "tid": 35568, "ts": 10603765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec110", "tid": 35568, "ts": 10603851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deaf30", "tid": 35568, "ts": 10603937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dead90", "tid": 35568, "ts": 10604023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb270", "tid": 35568, "ts": 10604110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea710", "tid": 35568, "ts": 10604196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debb60", "tid": 35568, "ts": 10604282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deab20", "tid": 35568, "ts": 10604368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deba90", "tid": 35568, "ts": 10604455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb9c0", "tid": 35568, "ts": 10604542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deabf0", "tid": 35568, "ts": 10604628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9ef0", "tid": 35568, "ts": 10604715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb1a0", "tid": 35568, "ts": 10604802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea3d0", "tid": 35568, "ts": 10604888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea980", "tid": 35568, "ts": 10604975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec860", "tid": 35568, "ts": 10605061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea8b0", "tid": 35568, "ts": 10605147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deae60", "tid": 35568, "ts": 10605233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb680", "tid": 35568, "ts": 10605320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb750", "tid": 35568, "ts": 10605406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea570", "tid": 35568, "ts": 10605493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debd00", "tid": 35568, "ts": 10605579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7650", "tid": 35568, "ts": 10605666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7580", "tid": 35568, "ts": 10605752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7c00", "tid": 35568, "ts": 10605839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7170", "tid": 35568, "ts": 10605925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6c90", "tid": 35568, "ts": 10606011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8d10", "tid": 35568, "ts": 10606192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8c40", "tid": 35568, "ts": 10606300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8b70", "tid": 35568, "ts": 10606387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6e30", "tid": 35568, "ts": 10606475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8aa0", "tid": 35568, "ts": 10606562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de70a0", "tid": 35568, "ts": 10606649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9050", "tid": 35568, "ts": 10606735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6950", "tid": 35568, "ts": 10606822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8010", "tid": 35568, "ts": 10606909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de66e0", "tid": 35568, "ts": 10606996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7e70", "tid": 35568, "ts": 10607082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8760", "tid": 35568, "ts": 10607168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6610", "tid": 35568, "ts": 10607254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6540", "tid": 35568, "ts": 10607340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de84f0", "tid": 35568, "ts": 10607425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8420", "tid": 35568, "ts": 10607512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8690", "tid": 35568, "ts": 10607598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de89d0", "tid": 35568, "ts": 10607685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de85c0", "tid": 35568, "ts": 10607771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6bc0", "tid": 35568, "ts": 10607857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9390", "tid": 35568, "ts": 10607943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8830", "tid": 35568, "ts": 10608029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9530", "tid": 35568, "ts": 10608115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de80e0", "tid": 35568, "ts": 10608201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7a60", "tid": 35568, "ts": 10608287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9870", "tid": 35568, "ts": 10608374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9460", "tid": 35568, "ts": 10608460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4800", "tid": 35568, "ts": 10608546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4250", "tid": 35568, "ts": 10608632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3480", "tid": 35568, "ts": 10608718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3140", "tid": 35568, "ts": 10608803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de37c0", "tid": 35568, "ts": 10608889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de40b0", "tid": 35568, "ts": 10608976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6060", "tid": 35568, "ts": 10609062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4660", "tid": 35568, "ts": 10609148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3210", "tid": 35568, "ts": 10609234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3f10", "tid": 35568, "ts": 10609320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5df0", "tid": 35568, "ts": 10609407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3e40", "tid": 35568, "ts": 10609493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3d70", "tid": 35568, "ts": 10609580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de44c0", "tid": 35568, "ts": 10609665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5ab0", "tid": 35568, "ts": 10609751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5840", "tid": 35568, "ts": 10609837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5770", "tid": 35568, "ts": 10609923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3a30", "tid": 35568, "ts": 10610009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de63a0", "tid": 35568, "ts": 10610095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5500", "tid": 35568, "ts": 10610181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5290", "tid": 35568, "ts": 10610267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de51c0", "tid": 35568, "ts": 10610354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4f50", "tid": 35568, "ts": 10610441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de62d0", "tid": 35568, "ts": 10610527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3960", "tid": 35568, "ts": 10610613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de50f0", "tid": 35568, "ts": 10610699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4e80", "tid": 35568, "ts": 10610786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de59e0", "tid": 35568, "ts": 10610872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4db0", "tid": 35568, "ts": 10610958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4ce0", "tid": 35568, "ts": 10611044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3550", "tid": 35568, "ts": 10611130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de48d0", "tid": 35568, "ts": 10611216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1810", "tid": 35568, "ts": 10611302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de10c0", "tid": 35568, "ts": 10611389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0220", "tid": 35568, "ts": 10611475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddffb0", "tid": 35568, "ts": 10611561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0b10", "tid": 35568, "ts": 10611647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfe10", "tid": 35568, "ts": 10611733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1740", "tid": 35568, "ts": 10611820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0490", "tid": 35568, "ts": 10611907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de29f0", "tid": 35568, "ts": 10611993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1670", "tid": 35568, "ts": 10612079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2440", "tid": 35568, "ts": 10612165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2c60", "tid": 35568, "ts": 10612250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0e50", "tid": 35568, "ts": 10612336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1e90", "tid": 35568, "ts": 10612422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0630", "tid": 35568, "ts": 10612509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0150", "tid": 35568, "ts": 10612595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2370", "tid": 35568, "ts": 10612681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2ed0", "tid": 35568, "ts": 10612767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2850", "tid": 35568, "ts": 10612853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2b90", "tid": 35568, "ts": 10612938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de26b0", "tid": 35568, "ts": 10613024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0d80", "tid": 35568, "ts": 10613109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de03c0", "tid": 35568, "ts": 10613196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de19b0", "tid": 35568, "ts": 10613281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0560", "tid": 35568, "ts": 10613368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0a40", "tid": 35568, "ts": 10613454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de15a0", "tid": 35568, "ts": 10613539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1400", "tid": 35568, "ts": 10613625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de07d0", "tid": 35568, "ts": 10613711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1dc0", "tid": 35568, "ts": 10613797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0970", "tid": 35568, "ts": 10613883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de18e0", "tid": 35568, "ts": 10613969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde270", "tid": 35568, "ts": 10614055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde000", "tid": 35568, "ts": 10614141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddda50", "tid": 35568, "ts": 10614227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd980", "tid": 35568, "ts": 10614314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd7e0", "tid": 35568, "ts": 10614399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddb20", "tid": 35568, "ts": 10614485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde410", "tid": 35568, "ts": 10614571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd640", "tid": 35568, "ts": 10614657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc940", "tid": 35568, "ts": 10614743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf6c0", "tid": 35568, "ts": 10614828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddca10", "tid": 35568, "ts": 10614913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd300", "tid": 35568, "ts": 10614999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd570", "tid": 35568, "ts": 10615085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddef70", "tid": 35568, "ts": 10615171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf1e0", "tid": 35568, "ts": 10615257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf520", "tid": 35568, "ts": 10615343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddd90", "tid": 35568, "ts": 10615429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf860", "tid": 35568, "ts": 10615515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddeea0", "tid": 35568, "ts": 10615601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde8f0", "tid": 35568, "ts": 10615687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcc80", "tid": 35568, "ts": 10615773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfad0", "tid": 35568, "ts": 10615859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd090", "tid": 35568, "ts": 10615946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf450", "tid": 35568, "ts": 10616032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde0d0", "tid": 35568, "ts": 10616118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dded00", "tid": 35568, "ts": 10616203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde4e0", "tid": 35568, "ts": 10616290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf930", "tid": 35568, "ts": 10616375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf110", "tid": 35568, "ts": 10616461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde820", "tid": 35568, "ts": 10616547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddce20", "tid": 35568, "ts": 10616634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd3d0", "tid": 35568, "ts": 10616719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda8c0", "tid": 35568, "ts": 10616805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda7f0", "tid": 35568, "ts": 10616891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda0a0", "tid": 35568, "ts": 10616977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9e30", "tid": 35568, "ts": 10617063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbb70", "tid": 35568, "ts": 10617150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9af0", "tid": 35568, "ts": 10617235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb280", "tid": 35568, "ts": 10617322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc1f0", "tid": 35568, "ts": 10617407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddaf40", "tid": 35568, "ts": 10617493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9a20", "tid": 35568, "ts": 10617579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddada0", "tid": 35568, "ts": 10617665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb420", "tid": 35568, "ts": 10617751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb1b0", "tid": 35568, "ts": 10617837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb4f0", "tid": 35568, "ts": 10617922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd96e0", "tid": 35568, "ts": 10618009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9610", "tid": 35568, "ts": 10618094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb350", "tid": 35568, "ts": 10618181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc870", "tid": 35568, "ts": 10618266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc6d0", "tid": 35568, "ts": 10618353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb760", "tid": 35568, "ts": 10618439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb5c0", "tid": 35568, "ts": 10618525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda720", "tid": 35568, "ts": 10618611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9540", "tid": 35568, "ts": 10618697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda580", "tid": 35568, "ts": 10618783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc7a0", "tid": 35568, "ts": 10618869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddac00", "tid": 35568, "ts": 10618955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda4b0", "tid": 35568, "ts": 10619041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddaa60", "tid": 35568, "ts": 10619127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddab30", "tid": 35568, "ts": 10619213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9c90", "tid": 35568, "ts": 10619298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc460", "tid": 35568, "ts": 10619384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda310", "tid": 35568, "ts": 10619470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7250", "tid": 35568, "ts": 10619556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6e40", "tid": 35568, "ts": 10619642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6b00", "tid": 35568, "ts": 10619727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7c10", "tid": 35568, "ts": 10619813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd93a0", "tid": 35568, "ts": 10619899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6fe0", "tid": 35568, "ts": 10619985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7db0", "tid": 35568, "ts": 10620072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd89e0", "tid": 35568, "ts": 10620157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9060", "tid": 35568, "ts": 10620243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6480", "tid": 35568, "ts": 10620329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd63b0", "tid": 35568, "ts": 10620415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8ec0", "tid": 35568, "ts": 10620501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6bd0", "tid": 35568, "ts": 10620588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7320", "tid": 35568, "ts": 10620673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd81c0", "tid": 35568, "ts": 10620759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7800", "tid": 35568, "ts": 10620845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd80f0", "tid": 35568, "ts": 10620931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7f50", "tid": 35568, "ts": 10621017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8770", "tid": 35568, "ts": 10621104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd70b0", "tid": 35568, "ts": 10621189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6890", "tid": 35568, "ts": 10621276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8ab0", "tid": 35568, "ts": 10621361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7730", "tid": 35568, "ts": 10621448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8910", "tid": 35568, "ts": 10621534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6a30", "tid": 35568, "ts": 10621619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8360", "tid": 35568, "ts": 10621736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6210", "tid": 35568, "ts": 10621824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd85d0", "tid": 35568, "ts": 10621910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7e80", "tid": 35568, "ts": 10621996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6140", "tid": 35568, "ts": 10622082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6960", "tid": 35568, "ts": 10622169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8020", "tid": 35568, "ts": 10622255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5ac0", "tid": 35568, "ts": 10622342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5920", "tid": 35568, "ts": 10622429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5370", "tid": 35568, "ts": 10622515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd55e0", "tid": 35568, "ts": 10622601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5510", "tid": 35568, "ts": 10622687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4a80", "tid": 35568, "ts": 10622773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5100", "tid": 35568, "ts": 10622861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5780", "tid": 35568, "ts": 10622946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2e10", "tid": 35568, "ts": 10623032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4670", "tid": 35568, "ts": 10623117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd45a0", "tid": 35568, "ts": 10623204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4e90", "tid": 35568, "ts": 10623290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4cf0", "tid": 35568, "ts": 10623376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3d80", "tid": 35568, "ts": 10623462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3be0", "tid": 35568, "ts": 10623548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2d40", "tid": 35568, "ts": 10623634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3080", "tid": 35568, "ts": 10623721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3630", "tid": 35568, "ts": 10623807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3700", "tid": 35568, "ts": 10623893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3490", "tid": 35568, "ts": 10623978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd32f0", "tid": 35568, "ts": 10624065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4810", "tid": 35568, "ts": 10624151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3b10", "tid": 35568, "ts": 10624237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd51d0", "tid": 35568, "ts": 10624323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd48e0", "tid": 35568, "ts": 10624410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3f20", "tid": 35568, "ts": 10624496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5ed0", "tid": 35568, "ts": 10624583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd56b0", "tid": 35568, "ts": 10624669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4400", "tid": 35568, "ts": 10624756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4190", "tid": 35568, "ts": 10624842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5d30", "tid": 35568, "ts": 10624928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3cb0", "tid": 35568, "ts": 10625014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1d00", "tid": 35568, "ts": 10625100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd14e0", "tid": 35568, "ts": 10625186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2380", "tid": 35568, "ts": 10625272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2520", "tid": 35568, "ts": 10625358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0d90", "tid": 35568, "ts": 10625445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcffc0", "tid": 35568, "ts": 10625531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1270", "tid": 35568, "ts": 10625618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2110", "tid": 35568, "ts": 10625704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfbb0", "tid": 35568, "ts": 10625791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1410", "tid": 35568, "ts": 10625878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0cc0", "tid": 35568, "ts": 10625966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0640", "tid": 35568, "ts": 10626053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1b60", "tid": 35568, "ts": 10626141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0090", "tid": 35568, "ts": 10626229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1680", "tid": 35568, "ts": 10626361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0e60", "tid": 35568, "ts": 10626451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2c70", "tid": 35568, "ts": 10626538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfe20", "tid": 35568, "ts": 10626624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2ba0", "tid": 35568, "ts": 10626734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2ad0", "tid": 35568, "ts": 10626820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1a90", "tid": 35568, "ts": 10626906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd08b0", "tid": 35568, "ts": 10626992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2a00", "tid": 35568, "ts": 10627079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd03d0", "tid": 35568, "ts": 10627164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd10d0", "tid": 35568, "ts": 10627250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfd50", "tid": 35568, "ts": 10627336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd25f0", "tid": 35568, "ts": 10627422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0160", "tid": 35568, "ts": 10627507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd15b0", "tid": 35568, "ts": 10627593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2930", "tid": 35568, "ts": 10627679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfae0", "tid": 35568, "ts": 10627764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd07e0", "tid": 35568, "ts": 10627851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdcd0", "tid": 35568, "ts": 10627938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd580", "tid": 35568, "ts": 10628024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd310", "tid": 35568, "ts": 10628110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf460", "tid": 35568, "ts": 10628196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccbc0", "tid": 35568, "ts": 10628282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce900", "tid": 35568, "ts": 10628367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcca20", "tid": 35568, "ts": 10628454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd990", "tid": 35568, "ts": 10628540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce0e0", "tid": 35568, "ts": 10628626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce420", "tid": 35568, "ts": 10628712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc950", "tid": 35568, "ts": 10628798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce4f0", "tid": 35568, "ts": 10628884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd0a0", "tid": 35568, "ts": 10628970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce5c0", "tid": 35568, "ts": 10629056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf6d0", "tid": 35568, "ts": 10629142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd8c0", "tid": 35568, "ts": 10629227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccfd0", "tid": 35568, "ts": 10629313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc7b0", "tid": 35568, "ts": 10629399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf530", "tid": 35568, "ts": 10629485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccd60", "tid": 35568, "ts": 10629570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcde70", "tid": 35568, "ts": 10629656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcede0", "tid": 35568, "ts": 10629742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dceeb0", "tid": 35568, "ts": 10629828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd4b0", "tid": 35568, "ts": 10629914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf120", "tid": 35568, "ts": 10630001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9e40", "tid": 35568, "ts": 10630086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc93b0", "tid": 35568, "ts": 10630172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc92e0", "tid": 35568, "ts": 10630258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca8d0", "tid": 35568, "ts": 10630344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb840", "tid": 35568, "ts": 10630429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9fe0", "tid": 35568, "ts": 10630516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb0f0", "tid": 35568, "ts": 10630602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca590", "tid": 35568, "ts": 10630688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb500", "tid": 35568, "ts": 10630774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbab0", "tid": 35568, "ts": 10630860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcace0", "tid": 35568, "ts": 10630946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc2d0", "tid": 35568, "ts": 10631031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9b00", "tid": 35568, "ts": 10631118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcab40", "tid": 35568, "ts": 10631204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb770", "tid": 35568, "ts": 10631290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9960", "tid": 35568, "ts": 10631376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc96f0", "tid": 35568, "ts": 10631461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9210", "tid": 35568, "ts": 10631547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb6a0", "tid": 35568, "ts": 10631633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcaf50", "tid": 35568, "ts": 10631718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca660", "tid": 35568, "ts": 10631804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9f10", "tid": 35568, "ts": 10631890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9140", "tid": 35568, "ts": 10631976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9620", "tid": 35568, "ts": 10632062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9480", "tid": 35568, "ts": 10632147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9550", "tid": 35568, "ts": 10632233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbc50", "tid": 35568, "ts": 10632318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbf90", "tid": 35568, "ts": 10632404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb290", "tid": 35568, "ts": 10632489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc97c0", "tid": 35568, "ts": 10632576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbec0", "tid": 35568, "ts": 10632662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9ca0", "tid": 35568, "ts": 10632748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6e50", "tid": 35568, "ts": 10632833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6b10", "tid": 35568, "ts": 10632919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7400", "tid": 35568, "ts": 10633005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6560", "tid": 35568, "ts": 10633091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7810", "tid": 35568, "ts": 10633176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7260", "tid": 35568, "ts": 10633262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6970", "tid": 35568, "ts": 10633347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8e00", "tid": 35568, "ts": 10633433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8c60", "tid": 35568, "ts": 10633519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc75a0", "tid": 35568, "ts": 10633606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8ac0", "tid": 35568, "ts": 10633691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8920", "tid": 35568, "ts": 10633777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc74d0", "tid": 35568, "ts": 10633862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8370", "tid": 35568, "ts": 10633949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8d30", "tid": 35568, "ts": 10634034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8fa0", "tid": 35568, "ts": 10634120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6150", "tid": 35568, "ts": 10634205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8100", "tid": 35568, "ts": 10634290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5ee0", "tid": 35568, "ts": 10634375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7dc0", "tid": 35568, "ts": 10634461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7740", "tid": 35568, "ts": 10634547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc86b0", "tid": 35568, "ts": 10634634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc85e0", "tid": 35568, "ts": 10634720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7c20", "tid": 35568, "ts": 10634805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc79b0", "tid": 35568, "ts": 10634891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8030", "tid": 35568, "ts": 10634977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7b50", "tid": 35568, "ts": 10635063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7e90", "tid": 35568, "ts": 10635148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9070", "tid": 35568, "ts": 10635234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6a40", "tid": 35568, "ts": 10635321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc67d0", "tid": 35568, "ts": 10635407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8780", "tid": 35568, "ts": 10635493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc48f0", "tid": 35568, "ts": 10635578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4750", "tid": 35568, "ts": 10635664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3cc0", "tid": 35568, "ts": 10635749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3710", "tid": 35568, "ts": 10635835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc45b0", "tid": 35568, "ts": 10635922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4270", "tid": 35568, "ts": 10636008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc33d0", "tid": 35568, "ts": 10636094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3bf0", "tid": 35568, "ts": 10636180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3e60", "tid": 35568, "ts": 10636266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3300", "tid": 35568, "ts": 10636352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3b20", "tid": 35568, "ts": 10636438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3090", "tid": 35568, "ts": 10636524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5c70", "tid": 35568, "ts": 10636609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3d90", "tid": 35568, "ts": 10636696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc51e0", "tid": 35568, "ts": 10636782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2fc0", "tid": 35568, "ts": 10636868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5ad0", "tid": 35568, "ts": 10636953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5380", "tid": 35568, "ts": 10637039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5930", "tid": 35568, "ts": 10637124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4c30", "tid": 35568, "ts": 10637210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5860", "tid": 35568, "ts": 10637333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc55f0", "tid": 35568, "ts": 10637491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5110", "tid": 35568, "ts": 10637649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2ef0", "tid": 35568, "ts": 10637789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2e20", "tid": 35568, "ts": 10637910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2d50", "tid": 35568, "ts": 10638067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5450", "tid": 35568, "ts": 10638192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4410", "tid": 35568, "ts": 10638278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4ea0", "tid": 35568, "ts": 10638410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3980", "tid": 35568, "ts": 10638534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4dd0", "tid": 35568, "ts": 10638620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2bb0", "tid": 35568, "ts": 10638706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc08c0", "tid": 35568, "ts": 10638792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0580", "tid": 35568, "ts": 10638878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc04b0", "tid": 35568, "ts": 10638964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc00a0", "tid": 35568, "ts": 10639049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfd60", "tid": 35568, "ts": 10639135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfaf0", "tid": 35568, "ts": 10639222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2600", "tid": 35568, "ts": 10639308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfc90", "tid": 35568, "ts": 10639394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf950", "tid": 35568, "ts": 10639479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf880", "tid": 35568, "ts": 10639566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1f80", "tid": 35568, "ts": 10639651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1eb0", "tid": 35568, "ts": 10639737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1b70", "tid": 35568, "ts": 10639823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc11b0", "tid": 35568, "ts": 10639910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc15c0", "tid": 35568, "ts": 10639996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc10e0", "tid": 35568, "ts": 10640082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbff00", "tid": 35568, "ts": 10640168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2120", "tid": 35568, "ts": 10640253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1d10", "tid": 35568, "ts": 10640339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1830", "tid": 35568, "ts": 10640425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc21f0", "tid": 35568, "ts": 10640510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0cd0", "tid": 35568, "ts": 10640597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1010", "tid": 35568, "ts": 10640683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2870", "tid": 35568, "ts": 10640769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc03e0", "tid": 35568, "ts": 10640854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1350", "tid": 35568, "ts": 10640941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1aa0", "tid": 35568, "ts": 10641027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0c00", "tid": 35568, "ts": 10641112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0720", "tid": 35568, "ts": 10641197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc19d0", "tid": 35568, "ts": 10641283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfbc0", "tid": 35568, "ts": 10641369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0990", "tid": 35568, "ts": 10641456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2701c0", "tid": 35568, "ts": 10641542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fa70", "tid": 35568, "ts": 10641628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ff50", "tid": 35568, "ts": 10641714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f250", "tid": 35568, "ts": 10641800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ea30", "tid": 35568, "ts": 10641885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e7c0", "tid": 35568, "ts": 10641972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f9a0", "tid": 35568, "ts": 10642058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e550", "tid": 35568, "ts": 10642143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e890", "tid": 35568, "ts": 10642229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e2e0", "tid": 35568, "ts": 10642315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e070", "tid": 35568, "ts": 10642401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fce0", "tid": 35568, "ts": 10642487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2705d0", "tid": 35568, "ts": 10642573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dfa0", "tid": 35568, "ts": 10642660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f660", "tid": 35568, "ts": 10642746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26efe0", "tid": 35568, "ts": 10642832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270500", "tid": 35568, "ts": 10642917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270df0", "tid": 35568, "ts": 10643004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f590", "tid": 35568, "ts": 10643091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ded0", "tid": 35568, "ts": 10643176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ed70", "tid": 35568, "ts": 10643262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270430", "tid": 35568, "ts": 10643348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fb40", "tid": 35568, "ts": 10643433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2700f0", "tid": 35568, "ts": 10643520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270840", "tid": 35568, "ts": 10643605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e140", "tid": 35568, "ts": 10643692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26de00", "tid": 35568, "ts": 10643778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ebd0", "tid": 35568, "ts": 10643863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270360", "tid": 35568, "ts": 10643950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2706a0", "tid": 35568, "ts": 10644036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f3f0", "tid": 35568, "ts": 10644122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c8e0", "tid": 35568, "ts": 10644208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c4d0", "tid": 35568, "ts": 10644293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c260", "tid": 35568, "ts": 10644381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d920", "tid": 35568, "ts": 10644466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b3c0", "tid": 35568, "ts": 10644551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b220", "tid": 35568, "ts": 10644638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d850", "tid": 35568, "ts": 10644724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bf20", "tid": 35568, "ts": 10644810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cb50", "tid": 35568, "ts": 10644896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26afb0", "tid": 35568, "ts": 10644982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d780", "tid": 35568, "ts": 10645067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aee0", "tid": 35568, "ts": 10645154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d6b0", "tid": 35568, "ts": 10645239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ad40", "tid": 35568, "ts": 10645325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c670", "tid": 35568, "ts": 10645412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ac70", "tid": 35568, "ts": 10645498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ba40", "tid": 35568, "ts": 10645584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aa00", "tid": 35568, "ts": 10645669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d370", "tid": 35568, "ts": 10645755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d1d0", "tid": 35568, "ts": 10645841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b2f0", "tid": 35568, "ts": 10645927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d510", "tid": 35568, "ts": 10646013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aba0", "tid": 35568, "ts": 10646099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d100", "tid": 35568, "ts": 10646186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26aad0", "tid": 35568, "ts": 10646272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b8a0", "tid": 35568, "ts": 10646358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b150", "tid": 35568, "ts": 10646444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26db90", "tid": 35568, "ts": 10646530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d2a0", "tid": 35568, "ts": 10646616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b630", "tid": 35568, "ts": 10646702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d030", "tid": 35568, "ts": 10646789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b560", "tid": 35568, "ts": 10646875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268640", "tid": 35568, "ts": 10646961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267e20", "tid": 35568, "ts": 10647047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267ae0", "tid": 35568, "ts": 10647133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267a10", "tid": 35568, "ts": 10647219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2677a0", "tid": 35568, "ts": 10647305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268710", "tid": 35568, "ts": 10647391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2695b0", "tid": 35568, "ts": 10647477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267c80", "tid": 35568, "ts": 10647563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2676d0", "tid": 35568, "ts": 10647649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a860", "tid": 35568, "ts": 10647735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2687e0", "tid": 35568, "ts": 10647821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a790", "tid": 35568, "ts": 10647907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2690d0", "tid": 35568, "ts": 10647993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268300", "tid": 35568, "ts": 10648079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267600", "tid": 35568, "ts": 10648166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268d90", "tid": 35568, "ts": 10648251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2691a0", "tid": 35568, "ts": 10648337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a2b0", "tid": 35568, "ts": 10648423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269d00", "tid": 35568, "ts": 10648510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a110", "tid": 35568, "ts": 10648596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a380", "tid": 35568, "ts": 10648681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268bf0", "tid": 35568, "ts": 10648767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a450", "tid": 35568, "ts": 10648854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268230", "tid": 35568, "ts": 10648939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269f70", "tid": 35568, "ts": 10649026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269dd0", "tid": 35568, "ts": 10649111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267530", "tid": 35568, "ts": 10649197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268e60", "tid": 35568, "ts": 10649283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268160", "tid": 35568, "ts": 10649369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268090", "tid": 35568, "ts": 10649455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269ea0", "tid": 35568, "ts": 10649542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269b60", "tid": 35568, "ts": 10649628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2665c0", "tid": 35568, "ts": 10649714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266420", "tid": 35568, "ts": 10649799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265f40", "tid": 35568, "ts": 10649886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265cd0", "tid": 35568, "ts": 10649971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265c00", "tid": 35568, "ts": 10650057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265a60", "tid": 35568, "ts": 10650143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2658c0", "tid": 35568, "ts": 10650229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265650", "tid": 35568, "ts": 10650316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266b70", "tid": 35568, "ts": 10650402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264f00", "tid": 35568, "ts": 10650487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2650a0", "tid": 35568, "ts": 10650574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2661b0", "tid": 35568, "ts": 10650660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264c90", "tid": 35568, "ts": 10650746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264bc0", "tid": 35568, "ts": 10650843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264880", "tid": 35568, "ts": 10650931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2643a0", "tid": 35568, "ts": 10651017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2654b0", "tid": 35568, "ts": 10651103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264200", "tid": 35568, "ts": 10651190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2653e0", "tid": 35568, "ts": 10651276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266830", "tid": 35568, "ts": 10651361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2660e0", "tid": 35568, "ts": 10651447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266c40", "tid": 35568, "ts": 10651532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267460", "tid": 35568, "ts": 10651619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2671f0", "tid": 35568, "ts": 10651705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264af0", "tid": 35568, "ts": 10651791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2646e0", "tid": 35568, "ts": 10651877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266350", "tid": 35568, "ts": 10651964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264a20", "tid": 35568, "ts": 10652050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264610", "tid": 35568, "ts": 10652136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2642d0", "tid": 35568, "ts": 10652222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266eb0", "tid": 35568, "ts": 10652308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2630f0", "tid": 35568, "ts": 10652394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262e80", "tid": 35568, "ts": 10652480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261e40", "tid": 35568, "ts": 10652566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263d20", "tid": 35568, "ts": 10652652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261b00", "tid": 35568, "ts": 10652738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262db0", "tid": 35568, "ts": 10652824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262590", "tid": 35568, "ts": 10652912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261480", "tid": 35568, "ts": 10653101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263770", "tid": 35568, "ts": 10653191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2620b0", "tid": 35568, "ts": 10653278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2613b0", "tid": 35568, "ts": 10653364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2612e0", "tid": 35568, "ts": 10653451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2631c0", "tid": 35568, "ts": 10653538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260e00", "tid": 35568, "ts": 10653624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262c10", "tid": 35568, "ts": 10653711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2635d0", "tid": 35568, "ts": 10653799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263910", "tid": 35568, "ts": 10653885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262f50", "tid": 35568, "ts": 10653972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262b40", "tid": 35568, "ts": 10654058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260fa0", "tid": 35568, "ts": 10654145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2617c0", "tid": 35568, "ts": 10654231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261210", "tid": 35568, "ts": 10654318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260ed0", "tid": 35568, "ts": 10654404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264060", "tid": 35568, "ts": 10654490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261ca0", "tid": 35568, "ts": 10654577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2616f0", "tid": 35568, "ts": 10654663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261620", "tid": 35568, "ts": 10654749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263df0", "tid": 35568, "ts": 10654835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261070", "tid": 35568, "ts": 10654921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261140", "tid": 35568, "ts": 10655006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262250", "tid": 35568, "ts": 10655092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2624c0", "tid": 35568, "ts": 10655180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e700", "tid": 35568, "ts": 10655266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e080", "tid": 35568, "ts": 10655352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dc70", "tid": 35568, "ts": 10655438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f190", "tid": 35568, "ts": 10655525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25eff0", "tid": 35568, "ts": 10655611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f400", "tid": 35568, "ts": 10655698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260850", "tid": 35568, "ts": 10655783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ef20", "tid": 35568, "ts": 10655869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260510", "tid": 35568, "ts": 10655956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e630", "tid": 35568, "ts": 10656041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2601d0", "tid": 35568, "ts": 10656127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260030", "tid": 35568, "ts": 10656213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f0c0", "tid": 35568, "ts": 10656300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f8e0", "tid": 35568, "ts": 10656386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e490", "tid": 35568, "ts": 10656472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e3c0", "tid": 35568, "ts": 10656559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260370", "tid": 35568, "ts": 10656644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dad0", "tid": 35568, "ts": 10656730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dee0", "tid": 35568, "ts": 10656816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2605e0", "tid": 35568, "ts": 10656902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ebe0", "tid": 35568, "ts": 10656988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fdc0", "tid": 35568, "ts": 10657074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f740", "tid": 35568, "ts": 10657160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e7d0", "tid": 35568, "ts": 10657246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f9b0", "tid": 35568, "ts": 10657332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e2f0", "tid": 35568, "ts": 10657418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f330", "tid": 35568, "ts": 10657504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25da00", "tid": 35568, "ts": 10657590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e970", "tid": 35568, "ts": 10657676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fb50", "tid": 35568, "ts": 10657762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f670", "tid": 35568, "ts": 10657848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ed80", "tid": 35568, "ts": 10657935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cb60", "tid": 35568, "ts": 10658021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c8f0", "tid": 35568, "ts": 10658106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b7e0", "tid": 35568, "ts": 10658192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d790", "tid": 35568, "ts": 10658278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c750", "tid": 35568, "ts": 10658364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c5b0", "tid": 35568, "ts": 10658450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d6c0", "tid": 35568, "ts": 10658536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d380", "tid": 35568, "ts": 10658622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d1e0", "tid": 35568, "ts": 10658708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a940", "tid": 35568, "ts": 10658794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d2b0", "tid": 35568, "ts": 10658879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cf70", "tid": 35568, "ts": 10658966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b640", "tid": 35568, "ts": 10659052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bf30", "tid": 35568, "ts": 10659137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cea0", "tid": 35568, "ts": 10659223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b300", "tid": 35568, "ts": 10659310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ae20", "tid": 35568, "ts": 10659396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25be60", "tid": 35568, "ts": 10659482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b570", "tid": 35568, "ts": 10659568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bcc0", "tid": 35568, "ts": 10659654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b4a0", "tid": 35568, "ts": 10659740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a870", "tid": 35568, "ts": 10659825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25aae0", "tid": 35568, "ts": 10659912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a600", "tid": 35568, "ts": 10659998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25abb0", "tid": 35568, "ts": 10660083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a6d0", "tid": 35568, "ts": 10660170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d860", "tid": 35568, "ts": 10660256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cd00", "tid": 35568, "ts": 10660342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25aef0", "tid": 35568, "ts": 10660428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ac80", "tid": 35568, "ts": 10660515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25aa10", "tid": 35568, "ts": 10660600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bb20", "tid": 35568, "ts": 10660687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258580", "tid": 35568, "ts": 10660774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259f80", "tid": 35568, "ts": 10660859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2584b0", "tid": 35568, "ts": 10660946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a050", "tid": 35568, "ts": 10661032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a120", "tid": 35568, "ts": 10661119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259900", "tid": 35568, "ts": 10661206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2577b0", "tid": 35568, "ts": 10661293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258170", "tid": 35568, "ts": 10661381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a1f0", "tid": 35568, "ts": 10661468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257610", "tid": 35568, "ts": 10661597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258f40", "tid": 35568, "ts": 10661685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259de0", "tid": 35568, "ts": 10661772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258b30", "tid": 35568, "ts": 10661857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258990", "tid": 35568, "ts": 10661943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258da0", "tid": 35568, "ts": 10662028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257f00", "tid": 35568, "ts": 10662115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257e30", "tid": 35568, "ts": 10662200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257bc0", "tid": 35568, "ts": 10662286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2572d0", "tid": 35568, "ts": 10662373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2590e0", "tid": 35568, "ts": 10662459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2583e0", "tid": 35568, "ts": 10662545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257c90", "tid": 35568, "ts": 10662631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258cd0", "tid": 35568, "ts": 10662717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a2c0", "tid": 35568, "ts": 10662803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258240", "tid": 35568, "ts": 10662888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2587f0", "tid": 35568, "ts": 10662975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2576e0", "tid": 35568, "ts": 10663060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2591b0", "tid": 35568, "ts": 10663146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257200", "tid": 35568, "ts": 10663232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257d60", "tid": 35568, "ts": 10663318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258650", "tid": 35568, "ts": 10663404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257950", "tid": 35568, "ts": 10663491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254550", "tid": 35568, "ts": 10663577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253fa0", "tid": 35568, "ts": 10663663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256840", "tid": 35568, "ts": 10663749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2566a0", "tid": 35568, "ts": 10663835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256360", "tid": 35568, "ts": 10663921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253e00", "tid": 35568, "ts": 10664007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257060", "tid": 35568, "ts": 10664093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255660", "tid": 35568, "ts": 10664179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255590", "tid": 35568, "ts": 10664265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2554c0", "tid": 35568, "ts": 10664351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2546f0", "tid": 35568, "ts": 10664437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256290", "tid": 35568, "ts": 10664523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2565d0", "tid": 35568, "ts": 10664608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254140", "tid": 35568, "ts": 10664694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256770", "tid": 35568, "ts": 10664779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256020", "tid": 35568, "ts": 10664866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255e80", "tid": 35568, "ts": 10664952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255320", "tid": 35568, "ts": 10665038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256c50", "tid": 35568, "ts": 10665123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253d30", "tid": 35568, "ts": 10665209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2560f0", "tid": 35568, "ts": 10665295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255a70", "tid": 35568, "ts": 10665381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254fe0", "tid": 35568, "ts": 10665466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254f10", "tid": 35568, "ts": 10665553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254bd0", "tid": 35568, "ts": 10665639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255db0", "tid": 35568, "ts": 10665724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254b00", "tid": 35568, "ts": 10665811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254ca0", "tid": 35568, "ts": 10665897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254d70", "tid": 35568, "ts": 10665983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255250", "tid": 35568, "ts": 10666068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254e40", "tid": 35568, "ts": 10666153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254890", "tid": 35568, "ts": 10666240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2539f0", "tid": 35568, "ts": 10666326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253510", "tid": 35568, "ts": 10666411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2532a0", "tid": 35568, "ts": 10666496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252c20", "tid": 35568, "ts": 10666582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250c70", "tid": 35568, "ts": 10666668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251630", "tid": 35568, "ts": 10666753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250ba0", "tid": 35568, "ts": 10666839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252a80", "tid": 35568, "ts": 10666925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253ac0", "tid": 35568, "ts": 10667010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251b10", "tid": 35568, "ts": 10667095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250e10", "tid": 35568, "ts": 10667181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251f20", "tid": 35568, "ts": 10667267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253920", "tid": 35568, "ts": 10667352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253030", "tid": 35568, "ts": 10667437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251970", "tid": 35568, "ts": 10667523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251220", "tid": 35568, "ts": 10667611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253370", "tid": 35568, "ts": 10667696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253850", "tid": 35568, "ts": 10667783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2528e0", "tid": 35568, "ts": 10667868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2529b0", "tid": 35568, "ts": 10667954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2525a0", "tid": 35568, "ts": 10668040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2517d0", "tid": 35568, "ts": 10668126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251700", "tid": 35568, "ts": 10668211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2536b0", "tid": 35568, "ts": 10668298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252330", "tid": 35568, "ts": 10668384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2524d0", "tid": 35568, "ts": 10668470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253100", "tid": 35568, "ts": 10668606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251ff0", "tid": 35568, "ts": 10668797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250a00", "tid": 35568, "ts": 10668889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252400", "tid": 35568, "ts": 10668978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252260", "tid": 35568, "ts": 10669064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2520c0", "tid": 35568, "ts": 10669152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ea50", "tid": 35568, "ts": 10669238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e3d0", "tid": 35568, "ts": 10669325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e230", "tid": 35568, "ts": 10669411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24def0", "tid": 35568, "ts": 10669497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dc80", "tid": 35568, "ts": 10669584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dae0", "tid": 35568, "ts": 10669670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d870", "tid": 35568, "ts": 10669757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d600", "tid": 35568, "ts": 10669843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f340", "tid": 35568, "ts": 10669930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2505f0", "tid": 35568, "ts": 10670016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f270", "tid": 35568, "ts": 10670102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250110", "tid": 35568, "ts": 10670189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d530", "tid": 35568, "ts": 10670275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2502b0", "tid": 35568, "ts": 10670361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f680", "tid": 35568, "ts": 10670448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ecc0", "tid": 35568, "ts": 10670535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f4e0", "tid": 35568, "ts": 10670621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ed90", "tid": 35568, "ts": 10670707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250450", "tid": 35568, "ts": 10670793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fea0", "tid": 35568, "ts": 10670879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dfc0", "tid": 35568, "ts": 10670966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fd00", "tid": 35568, "ts": 10671053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e8b0", "tid": 35568, "ts": 10671139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2501e0", "tid": 35568, "ts": 10671226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250040", "tid": 35568, "ts": 10671312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fb60", "tid": 35568, "ts": 10671399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fa90", "tid": 35568, "ts": 10671485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24eb20", "tid": 35568, "ts": 10671571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f9c0", "tid": 35568, "ts": 10671657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f1a0", "tid": 35568, "ts": 10671744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ff70", "tid": 35568, "ts": 10671830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fdd0", "tid": 35568, "ts": 10671916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a880", "tid": 35568, "ts": 10672003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a6e0", "tid": 35568, "ts": 10672089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a540", "tid": 35568, "ts": 10672175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cc40", "tid": 35568, "ts": 10672261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b8c0", "tid": 35568, "ts": 10672347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b170", "tid": 35568, "ts": 10672433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d390", "tid": 35568, "ts": 10672519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c690", "tid": 35568, "ts": 10672605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d2c0", "tid": 35568, "ts": 10672691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c5c0", "tid": 35568, "ts": 10672778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c4f0", "tid": 35568, "ts": 10672864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c420", "tid": 35568, "ts": 10672951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b4b0", "tid": 35568, "ts": 10673037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bb30", "tid": 35568, "ts": 10673123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c0e0", "tid": 35568, "ts": 10673209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c350", "tid": 35568, "ts": 10673297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24aa20", "tid": 35568, "ts": 10673384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c010", "tid": 35568, "ts": 10673470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24afd0", "tid": 35568, "ts": 10673556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bf40", "tid": 35568, "ts": 10673642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24be70", "tid": 35568, "ts": 10673729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a3a0", "tid": 35568, "ts": 10673815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ba60", "tid": 35568, "ts": 10673901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24af00", "tid": 35568, "ts": 10673987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cd10", "tid": 35568, "ts": 10674073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b580", "tid": 35568, "ts": 10674159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a200", "tid": 35568, "ts": 10674246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cf80", "tid": 35568, "ts": 10674332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c280", "tid": 35568, "ts": 10674419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a130", "tid": 35568, "ts": 10674505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bc00", "tid": 35568, "ts": 10674591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a950", "tid": 35568, "ts": 10674678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249360", "tid": 35568, "ts": 10674765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2491c0", "tid": 35568, "ts": 10674851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249020", "tid": 35568, "ts": 10674937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248800", "tid": 35568, "ts": 10675023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248730", "tid": 35568, "ts": 10675108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247fe0", "tid": 35568, "ts": 10675196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247140", "tid": 35568, "ts": 10675282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246fa0", "tid": 35568, "ts": 10675368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247960", "tid": 35568, "ts": 10675454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2472e0", "tid": 35568, "ts": 10675540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247210", "tid": 35568, "ts": 10675626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246ed0", "tid": 35568, "ts": 10675712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248c10", "tid": 35568, "ts": 10675798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2496a0", "tid": 35568, "ts": 10675885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2495d0", "tid": 35568, "ts": 10675971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248590", "tid": 35568, "ts": 10676058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248320", "tid": 35568, "ts": 10676145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248250", "tid": 35568, "ts": 10676231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248180", "tid": 35568, "ts": 10676317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247bd0", "tid": 35568, "ts": 10676403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249f90", "tid": 35568, "ts": 10676489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249df0", "tid": 35568, "ts": 10676574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247890", "tid": 35568, "ts": 10676660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247550", "tid": 35568, "ts": 10676747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249500", "tid": 35568, "ts": 10676832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247ca0", "tid": 35568, "ts": 10676918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249ec0", "tid": 35568, "ts": 10677005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249910", "tid": 35568, "ts": 10677090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249840", "tid": 35568, "ts": 10677176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247b00", "tid": 35568, "ts": 10677263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248f50", "tid": 35568, "ts": 10677349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2483f0", "tid": 35568, "ts": 10677435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243e10", "tid": 35568, "ts": 10677522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243d40", "tid": 35568, "ts": 10677608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2461d0", "tid": 35568, "ts": 10677694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2465e0", "tid": 35568, "ts": 10677781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246030", "tid": 35568, "ts": 10677866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245cf0", "tid": 35568, "ts": 10677953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243ba0", "tid": 35568, "ts": 10678039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244700", "tid": 35568, "ts": 10678125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2469f0", "tid": 35568, "ts": 10678211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244a40", "tid": 35568, "ts": 10678296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245670", "tid": 35568, "ts": 10678382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246850", "tid": 35568, "ts": 10678468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2442f0", "tid": 35568, "ts": 10678554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243a00", "tid": 35568, "ts": 10678640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246510", "tid": 35568, "ts": 10678726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2455a0", "tid": 35568, "ts": 10678814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244f20", "tid": 35568, "ts": 10678899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244080", "tid": 35568, "ts": 10678984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244970", "tid": 35568, "ts": 10679070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246440", "tid": 35568, "ts": 10679156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244220", "tid": 35568, "ts": 10679242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244d80", "tid": 35568, "ts": 10679328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245f60", "tid": 35568, "ts": 10679414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246c60", "tid": 35568, "ts": 10679501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244ff0", "tid": 35568, "ts": 10679586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244630", "tid": 35568, "ts": 10679672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245330", "tid": 35568, "ts": 10679758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245400", "tid": 35568, "ts": 10679844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245e90", "tid": 35568, "ts": 10679930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244b10", "tid": 35568, "ts": 10680016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246780", "tid": 35568, "ts": 10680102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2462a0", "tid": 35568, "ts": 10680188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240ae0", "tid": 35568, "ts": 10680274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242340", "tid": 35568, "ts": 10680360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2406d0", "tid": 35568, "ts": 10680446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2421a0", "tid": 35568, "ts": 10680532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2420d0", "tid": 35568, "ts": 10680618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241710", "tid": 35568, "ts": 10680704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240530", "tid": 35568, "ts": 10680791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243790", "tid": 35568, "ts": 10680877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241640", "tid": 35568, "ts": 10680963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241090", "tid": 35568, "ts": 10681049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240fc0", "tid": 35568, "ts": 10681135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241e60", "tid": 35568, "ts": 10681222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242a90", "tid": 35568, "ts": 10681308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242820", "tid": 35568, "ts": 10681394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241300", "tid": 35568, "ts": 10681480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241d90", "tid": 35568, "ts": 10681566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240a10", "tid": 35568, "ts": 10681652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243110", "tid": 35568, "ts": 10681738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242d00", "tid": 35568, "ts": 10681824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2413d0", "tid": 35568, "ts": 10681910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241cc0", "tid": 35568, "ts": 10681996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243520", "tid": 35568, "ts": 10682083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240c80", "tid": 35568, "ts": 10682169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242680", "tid": 35568, "ts": 10682255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2436c0", "tid": 35568, "ts": 10682340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242ea0", "tid": 35568, "ts": 10682426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2429c0", "tid": 35568, "ts": 10682512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240870", "tid": 35568, "ts": 10682598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241570", "tid": 35568, "ts": 10682684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2417e0", "tid": 35568, "ts": 10682770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243450", "tid": 35568, "ts": 10682857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241b20", "tid": 35568, "ts": 10682944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2401f0", "tid": 35568, "ts": 10683029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f4f0", "tid": 35568, "ts": 10683116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e0a0", "tid": 35568, "ts": 10683202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23eda0", "tid": 35568, "ts": 10683288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d610", "tid": 35568, "ts": 10683374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23faa0", "tid": 35568, "ts": 10683460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23df00", "tid": 35568, "ts": 10683546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ecd0", "tid": 35568, "ts": 10683632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fde0", "tid": 35568, "ts": 10683718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23de30", "tid": 35568, "ts": 10683804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e4b0", "tid": 35568, "ts": 10683890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dc90", "tid": 35568, "ts": 10683976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ff80", "tid": 35568, "ts": 10684062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d880", "tid": 35568, "ts": 10684148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dd60", "tid": 35568, "ts": 10684302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23da20", "tid": 35568, "ts": 10684392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23daf0", "tid": 35568, "ts": 10684478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d200", "tid": 35568, "ts": 10684564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e990", "tid": 35568, "ts": 10684650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f830", "tid": 35568, "ts": 10684737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fc40", "tid": 35568, "ts": 10684822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e8c0", "tid": 35568, "ts": 10684908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fb70", "tid": 35568, "ts": 10684994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dfd0", "tid": 35568, "ts": 10685081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ef40", "tid": 35568, "ts": 10685166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240390", "tid": 35568, "ts": 10685253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d3a0", "tid": 35568, "ts": 10685338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e310", "tid": 35568, "ts": 10685425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e720", "tid": 35568, "ts": 10685512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2402c0", "tid": 35568, "ts": 10685598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f900", "tid": 35568, "ts": 10685683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f760", "tid": 35568, "ts": 10685770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ba70", "tid": 35568, "ts": 10685856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b660", "tid": 35568, "ts": 10685942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a7c0", "tid": 35568, "ts": 10686028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b9a0", "tid": 35568, "ts": 10686114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b4c0", "tid": 35568, "ts": 10686201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a070", "tid": 35568, "ts": 10686287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239ed0", "tid": 35568, "ts": 10686373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239e00", "tid": 35568, "ts": 10686459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239d30", "tid": 35568, "ts": 10686546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b8d0", "tid": 35568, "ts": 10686632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cdf0", "tid": 35568, "ts": 10686718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23af10", "tid": 35568, "ts": 10686804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cab0", "tid": 35568, "ts": 10686890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c0f0", "tid": 35568, "ts": 10686976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b0b0", "tid": 35568, "ts": 10687062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b590", "tid": 35568, "ts": 10687148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c360", "tid": 35568, "ts": 10687234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bb40", "tid": 35568, "ts": 10687319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c840", "tid": 35568, "ts": 10687406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c6a0", "tid": 35568, "ts": 10687493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23be80", "tid": 35568, "ts": 10687579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c770", "tid": 35568, "ts": 10687666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a6f0", "tid": 35568, "ts": 10687752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cd20", "tid": 35568, "ts": 10687838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23aca0", "tid": 35568, "ts": 10687923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23aa30", "tid": 35568, "ts": 10688010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a960", "tid": 35568, "ts": 10688095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a210", "tid": 35568, "ts": 10688182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a140", "tid": 35568, "ts": 10688268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c910", "tid": 35568, "ts": 10688354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c500", "tid": 35568, "ts": 10688440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cb80", "tid": 35568, "ts": 10688527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2392a0", "tid": 35568, "ts": 10688612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238cf0", "tid": 35568, "ts": 10688699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2385a0", "tid": 35568, "ts": 10688786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238dc0", "tid": 35568, "ts": 10688872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236ad0", "tid": 35568, "ts": 10688958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2384d0", "tid": 35568, "ts": 10689046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238400", "tid": 35568, "ts": 10689132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237b10", "tid": 35568, "ts": 10689218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236930", "tid": 35568, "ts": 10689304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238260", "tid": 35568, "ts": 10689390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239c60", "tid": 35568, "ts": 10689476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237490", "tid": 35568, "ts": 10689562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239b90", "tid": 35568, "ts": 10689648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2391d0", "tid": 35568, "ts": 10689734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238f60", "tid": 35568, "ts": 10689820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2380c0", "tid": 35568, "ts": 10689907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2372f0", "tid": 35568, "ts": 10689993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237ff0", "tid": 35568, "ts": 10690080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238810", "tid": 35568, "ts": 10690165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236fb0", "tid": 35568, "ts": 10690252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237be0", "tid": 35568, "ts": 10690337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238e90", "tid": 35568, "ts": 10690423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237970", "tid": 35568, "ts": 10690510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2399f0", "tid": 35568, "ts": 10690596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239100", "tid": 35568, "ts": 10690683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237150", "tid": 35568, "ts": 10690768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238330", "tid": 35568, "ts": 10690855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239920", "tid": 35568, "ts": 10690941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236e10", "tid": 35568, "ts": 10691026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239850", "tid": 35568, "ts": 10691113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236c70", "tid": 35568, "ts": 10691198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236ee0", "tid": 35568, "ts": 10691285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234300", "tid": 35568, "ts": 10691372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236520", "tid": 35568, "ts": 10691457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236380", "tid": 35568, "ts": 10691543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2362b0", "tid": 35568, "ts": 10691630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236110", "tid": 35568, "ts": 10691716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233fc0", "tid": 35568, "ts": 10691802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235410", "tid": 35568, "ts": 10691888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234e60", "tid": 35568, "ts": 10691975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2337a0", "tid": 35568, "ts": 10692061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235f70", "tid": 35568, "ts": 10692146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2344a0", "tid": 35568, "ts": 10692232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236040", "tid": 35568, "ts": 10692319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2348b0", "tid": 35568, "ts": 10692404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2350d0", "tid": 35568, "ts": 10692490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2351a0", "tid": 35568, "ts": 10692576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234a50", "tid": 35568, "ts": 10692663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235a90", "tid": 35568, "ts": 10692748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2359c0", "tid": 35568, "ts": 10692835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235270", "tid": 35568, "ts": 10692920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233ae0", "tid": 35568, "ts": 10693006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234710", "tid": 35568, "ts": 10693092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2361e0", "tid": 35568, "ts": 10693179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235b60", "tid": 35568, "ts": 10693264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234640", "tid": 35568, "ts": 10693351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236860", "tid": 35568, "ts": 10693436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2365f0", "tid": 35568, "ts": 10693522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234b20", "tid": 35568, "ts": 10693608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2343d0", "tid": 35568, "ts": 10693695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233a10", "tid": 35568, "ts": 10693780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235820", "tid": 35568, "ts": 10693867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2336d0", "tid": 35568, "ts": 10693953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2355b0", "tid": 35568, "ts": 10694040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230c90", "tid": 35568, "ts": 10694127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230880", "tid": 35568, "ts": 10694212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2306e0", "tid": 35568, "ts": 10694299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2303a0", "tid": 35568, "ts": 10694386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232c40", "tid": 35568, "ts": 10694472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232aa0", "tid": 35568, "ts": 10694558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232760", "tid": 35568, "ts": 10694667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230af0", "tid": 35568, "ts": 10694754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230130", "tid": 35568, "ts": 10694840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232690", "tid": 35568, "ts": 10694926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231b30", "tid": 35568, "ts": 10695012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2324f0", "tid": 35568, "ts": 10695098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233460", "tid": 35568, "ts": 10695183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232900", "tid": 35568, "ts": 10695270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232420", "tid": 35568, "ts": 10695356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230d60", "tid": 35568, "ts": 10695444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233120", "tid": 35568, "ts": 10695530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2310a0", "tid": 35568, "ts": 10695616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232d10", "tid": 35568, "ts": 10695701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231990", "tid": 35568, "ts": 10695787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231650", "tid": 35568, "ts": 10695873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232de0", "tid": 35568, "ts": 10695961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2318c0", "tid": 35568, "ts": 10696048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2329d0", "tid": 35568, "ts": 10696135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2317f0", "tid": 35568, "ts": 10696222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231310", "tid": 35568, "ts": 10696310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230f00", "tid": 35568, "ts": 10696441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230bc0", "tid": 35568, "ts": 10696531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231cd0", "tid": 35568, "ts": 10696617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2325c0", "tid": 35568, "ts": 10696704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2321b0", "tid": 35568, "ts": 10696790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231240", "tid": 35568, "ts": 10696877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50e30", "tid": 35568, "ts": 10696963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50c90", "tid": 35568, "ts": 10697050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50af0", "tid": 35568, "ts": 10697136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50a20", "tid": 35568, "ts": 10697223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53050", "tid": 35568, "ts": 10697309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb507b0", "tid": 35568, "ts": 10697395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52760", "tid": 35568, "ts": 10697481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52c40", "tid": 35568, "ts": 10697568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52350", "tid": 35568, "ts": 10697655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50540", "tid": 35568, "ts": 10697741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52f80", "tid": 35568, "ts": 10697826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb513e0", "tid": 35568, "ts": 10697913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51990", "tid": 35568, "ts": 10697999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52280", "tid": 35568, "ts": 10698085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53390", "tid": 35568, "ts": 10698171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb517f0", "tid": 35568, "ts": 10698259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51310", "tid": 35568, "ts": 10698345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52010", "tid": 35568, "ts": 10698430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51da0", "tid": 35568, "ts": 10698516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51f40", "tid": 35568, "ts": 10698603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51170", "tid": 35568, "ts": 10698688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50fd0", "tid": 35568, "ts": 10698774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52830", "tid": 35568, "ts": 10698860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb506e0", "tid": 35568, "ts": 10698946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52900", "tid": 35568, "ts": 10699032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb532c0", "tid": 35568, "ts": 10699118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51720", "tid": 35568, "ts": 10699204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb525c0", "tid": 35568, "ts": 10699290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50130", "tid": 35568, "ts": 10699376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb510a0", "tid": 35568, "ts": 10699462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50470", "tid": 35568, "ts": 10699548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51c00", "tid": 35568, "ts": 10699634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ded0", "tid": 35568, "ts": 10699720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90ab0", "tid": 35568, "ts": 10699839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8efe0", "tid": 35568, "ts": 10699942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90770", "tid": 35568, "ts": 10700029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90290", "tid": 35568, "ts": 10700115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90500", "tid": 35568, "ts": 10700202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dd30", "tid": 35568, "ts": 10700288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb901c0", "tid": 35568, "ts": 10700375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fce0", "tid": 35568, "ts": 10700461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90430", "tid": 35568, "ts": 10700547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e890", "tid": 35568, "ts": 10700633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f660", "tid": 35568, "ts": 10700720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e480", "tid": 35568, "ts": 10700806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90c50", "tid": 35568, "ts": 10700892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90df0", "tid": 35568, "ts": 10700978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f590", "tid": 35568, "ts": 10701065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb909e0", "tid": 35568, "ts": 10701151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ed70", "tid": 35568, "ts": 10701238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f9a0", "tid": 35568, "ts": 10701323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90d20", "tid": 35568, "ts": 10701410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e070", "tid": 35568, "ts": 10701496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90b80", "tid": 35568, "ts": 10701582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90020", "tid": 35568, "ts": 10701668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8eca0", "tid": 35568, "ts": 10701755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f4c0", "tid": 35568, "ts": 10701841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e3b0", "tid": 35568, "ts": 10701927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f730", "tid": 35568, "ts": 10702012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fdb0", "tid": 35568, "ts": 10702098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f0b0", "tid": 35568, "ts": 10702184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f320", "tid": 35568, "ts": 10702270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ea30", "tid": 35568, "ts": 10702356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bcb0", "tid": 35568, "ts": 10702442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b970", "tid": 35568, "ts": 10702529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b700", "tid": 35568, "ts": 10702615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b560", "tid": 35568, "ts": 10702700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ce90", "tid": 35568, "ts": 10702787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d030", "tid": 35568, "ts": 10702873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b220", "tid": 35568, "ts": 10702958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b080", "tid": 35568, "ts": 10703045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8afb0", "tid": 35568, "ts": 10703131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aba0", "tid": 35568, "ts": 10703216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cb50", "tid": 35568, "ts": 10703302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bb10", "tid": 35568, "ts": 10703388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b490", "tid": 35568, "ts": 10703475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aa00", "tid": 35568, "ts": 10703561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ca80", "tid": 35568, "ts": 10703648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c740", "tid": 35568, "ts": 10703734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ccf0", "tid": 35568, "ts": 10703821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ac70", "tid": 35568, "ts": 10703906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c330", "tid": 35568, "ts": 10703992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ba40", "tid": 35568, "ts": 10704078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d920", "tid": 35568, "ts": 10704164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b7d0", "tid": 35568, "ts": 10704250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d440", "tid": 35568, "ts": 10704336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c0c0", "tid": 35568, "ts": 10704422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d6b0", "tid": 35568, "ts": 10704508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c8e0", "tid": 35568, "ts": 10704594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b2f0", "tid": 35568, "ts": 10704680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d100", "tid": 35568, "ts": 10704766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bf20", "tid": 35568, "ts": 10704853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c190", "tid": 35568, "ts": 10704940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8be50", "tid": 35568, "ts": 10705027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d5e0", "tid": 35568, "ts": 10705113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a2b0", "tid": 35568, "ts": 10705200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89c30", "tid": 35568, "ts": 10705286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89b60", "tid": 35568, "ts": 10705371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a1e0", "tid": 35568, "ts": 10705457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb876d0", "tid": 35568, "ts": 10705543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89a90", "tid": 35568, "ts": 10705629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89000", "tid": 35568, "ts": 10705716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a6c0", "tid": 35568, "ts": 10705802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb898f0", "tid": 35568, "ts": 10705888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88f30", "tid": 35568, "ts": 10705974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89410", "tid": 35568, "ts": 10706061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88570", "tid": 35568, "ts": 10706146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb899c0", "tid": 35568, "ts": 10706233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb890d0", "tid": 35568, "ts": 10706320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a790", "tid": 35568, "ts": 10706406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88d90", "tid": 35568, "ts": 10706491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88cc0", "tid": 35568, "ts": 10706578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89340", "tid": 35568, "ts": 10706665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88bf0", "tid": 35568, "ts": 10706751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88b20", "tid": 35568, "ts": 10706837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88300", "tid": 35568, "ts": 10706923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88160", "tid": 35568, "ts": 10707010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87bb0", "tid": 35568, "ts": 10707096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88710", "tid": 35568, "ts": 10707182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88640", "tid": 35568, "ts": 10707268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb883d0", "tid": 35568, "ts": 10707354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89f70", "tid": 35568, "ts": 10707440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb891a0", "tid": 35568, "ts": 10707526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb887e0", "tid": 35568, "ts": 10707613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a380", "tid": 35568, "ts": 10707699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87870", "tid": 35568, "ts": 10707785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87fc0", "tid": 35568, "ts": 10707871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb864f0", "tid": 35568, "ts": 10707958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb860e0", "tid": 35568, "ts": 10708045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85c00", "tid": 35568, "ts": 10708131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb858c0", "tid": 35568, "ts": 10708216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86280", "tid": 35568, "ts": 10708303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85cd0", "tid": 35568, "ts": 10708389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb843a0", "tid": 35568, "ts": 10708475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85580", "tid": 35568, "ts": 10708561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85da0", "tid": 35568, "ts": 10708647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85240", "tid": 35568, "ts": 10708734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84c90", "tid": 35568, "ts": 10708820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb871f0", "tid": 35568, "ts": 10708906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb850a0", "tid": 35568, "ts": 10708992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84af0", "tid": 35568, "ts": 10709079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86830", "tid": 35568, "ts": 10709166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84470", "tid": 35568, "ts": 10709252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84950", "tid": 35568, "ts": 10709339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86eb0", "tid": 35568, "ts": 10709425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb847b0", "tid": 35568, "ts": 10709511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85990", "tid": 35568, "ts": 10709597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb854b0", "tid": 35568, "ts": 10709684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87050", "tid": 35568, "ts": 10709770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84130", "tid": 35568, "ts": 10709856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86d10", "tid": 35568, "ts": 10709941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86c40", "tid": 35568, "ts": 10710028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb869d0", "tid": 35568, "ts": 10710114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86350", "tid": 35568, "ts": 10710200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87390", "tid": 35568, "ts": 10710286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85f40", "tid": 35568, "ts": 10710373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb861b0", "tid": 35568, "ts": 10710459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86b70", "tid": 35568, "ts": 10710545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84540", "tid": 35568, "ts": 10710630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81b00", "tid": 35568, "ts": 10710717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81960", "tid": 35568, "ts": 10710803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81620", "tid": 35568, "ts": 10710889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80fa0", "tid": 35568, "ts": 10710975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82c10", "tid": 35568, "ts": 10711062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80e00", "tid": 35568, "ts": 10711148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81210", "tid": 35568, "ts": 10711234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82a70", "tid": 35568, "ts": 10711320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb829a0", "tid": 35568, "ts": 10711406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb839e0", "tid": 35568, "ts": 10711492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80d30", "tid": 35568, "ts": 10711578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83ec0", "tid": 35568, "ts": 10711664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83910", "tid": 35568, "ts": 10711751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb830f0", "tid": 35568, "ts": 10711837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81550", "tid": 35568, "ts": 10711924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81890", "tid": 35568, "ts": 10712009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84060", "tid": 35568, "ts": 10712097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb812e0", "tid": 35568, "ts": 10712182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82320", "tid": 35568, "ts": 10712268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82ce0", "tid": 35568, "ts": 10712355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb831c0", "tid": 35568, "ts": 10712441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83c50", "tid": 35568, "ts": 10712527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb823f0", "tid": 35568, "ts": 10712613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82730", "tid": 35568, "ts": 10712699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82db0", "tid": 35568, "ts": 10712786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82f50", "tid": 35568, "ts": 10712872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81e40", "tid": 35568, "ts": 10712957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81fe0", "tid": 35568, "ts": 10713043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81d70", "tid": 35568, "ts": 10713130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81f10", "tid": 35568, "ts": 10713216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb835d0", "tid": 35568, "ts": 10713302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83df0", "tid": 35568, "ts": 10713388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e8a0", "tid": 35568, "ts": 10713475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e700", "tid": 35568, "ts": 10713561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dfb0", "tid": 35568, "ts": 10713649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e2f0", "tid": 35568, "ts": 10713735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7da00", "tid": 35568, "ts": 10713821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80ac0", "tid": 35568, "ts": 10713907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dba0", "tid": 35568, "ts": 10713994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dee0", "tid": 35568, "ts": 10714080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80b90", "tid": 35568, "ts": 10714167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb802a0", "tid": 35568, "ts": 10714254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80100", "tid": 35568, "ts": 10714340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80030", "tid": 35568, "ts": 10714426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fcf0", "tid": 35568, "ts": 10714513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fa80", "tid": 35568, "ts": 10714599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e150", "tid": 35568, "ts": 10714685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e080", "tid": 35568, "ts": 10714772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80510", "tid": 35568, "ts": 10714859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7de10", "tid": 35568, "ts": 10714945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fdc0", "tid": 35568, "ts": 10715032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fb50", "tid": 35568, "ts": 10715118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e560", "tid": 35568, "ts": 10715204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f5a0", "tid": 35568, "ts": 10715291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ff60", "tid": 35568, "ts": 10715377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dd40", "tid": 35568, "ts": 10715496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80920", "tid": 35568, "ts": 10715583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f330", "tid": 35568, "ts": 10715669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f9b0", "tid": 35568, "ts": 10715756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ee50", "tid": 35568, "ts": 10715843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7eff0", "tid": 35568, "ts": 10715930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f0c0", "tid": 35568, "ts": 10716015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7eb10", "tid": 35568, "ts": 10716102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e3c0", "tid": 35568, "ts": 10716188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b090", "tid": 35568, "ts": 10716276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a870", "tid": 35568, "ts": 10716361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d790", "tid": 35568, "ts": 10716447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ae20", "tid": 35568, "ts": 10716534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cc30", "tid": 35568, "ts": 10716620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c8f0", "tid": 35568, "ts": 10716706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d2b0", "tid": 35568, "ts": 10716792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c4e0", "tid": 35568, "ts": 10716878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c000", "tid": 35568, "ts": 10716964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bf30", "tid": 35568, "ts": 10717050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bd90", "tid": 35568, "ts": 10717138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a600", "tid": 35568, "ts": 10717224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b980", "tid": 35568, "ts": 10717310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d6c0", "tid": 35568, "ts": 10717396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d860", "tid": 35568, "ts": 10717483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b570", "tid": 35568, "ts": 10717568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c680", "tid": 35568, "ts": 10717656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d1e0", "tid": 35568, "ts": 10717743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7aae0", "tid": 35568, "ts": 10717830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7afc0", "tid": 35568, "ts": 10717916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cd00", "tid": 35568, "ts": 10718002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b8b0", "tid": 35568, "ts": 10718088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d040", "tid": 35568, "ts": 10718174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bbf0", "tid": 35568, "ts": 10718260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b4a0", "tid": 35568, "ts": 10718346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b7e0", "tid": 35568, "ts": 10718432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c5b0", "tid": 35568, "ts": 10718519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c820", "tid": 35568, "ts": 10718604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cdd0", "tid": 35568, "ts": 10718691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ac80", "tid": 35568, "ts": 10718778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a6d0", "tid": 35568, "ts": 10718864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a530", "tid": 35568, "ts": 10718950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78170", "tid": 35568, "ts": 10719036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77f00", "tid": 35568, "ts": 10719122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77d60", "tid": 35568, "ts": 10719209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77af0", "tid": 35568, "ts": 10719296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a1f0", "tid": 35568, "ts": 10719383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a120", "tid": 35568, "ts": 10719469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77880", "tid": 35568, "ts": 10719556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79aa0", "tid": 35568, "ts": 10719642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79690", "tid": 35568, "ts": 10719728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78720", "tid": 35568, "ts": 10719815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78e70", "tid": 35568, "ts": 10719901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79de0", "tid": 35568, "ts": 10719986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78650", "tid": 35568, "ts": 10720073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79b70", "tid": 35568, "ts": 10720158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78cd0", "tid": 35568, "ts": 10720244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77fd0", "tid": 35568, "ts": 10720330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78580", "tid": 35568, "ts": 10720417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77bc0", "tid": 35568, "ts": 10720503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77200", "tid": 35568, "ts": 10720588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb790e0", "tid": 35568, "ts": 10720674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb776e0", "tid": 35568, "ts": 10720761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77610", "tid": 35568, "ts": 10720847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78310", "tid": 35568, "ts": 10720933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb795c0", "tid": 35568, "ts": 10721019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79420", "tid": 35568, "ts": 10721106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78990", "tid": 35568, "ts": 10721191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb783e0", "tid": 35568, "ts": 10721277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78240", "tid": 35568, "ts": 10721363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb787f0", "tid": 35568, "ts": 10721450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79010", "tid": 35568, "ts": 10721536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a2c0", "tid": 35568, "ts": 10721622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79900", "tid": 35568, "ts": 10721708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75e80", "tid": 35568, "ts": 10721794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75ce0", "tid": 35568, "ts": 10721880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75c10", "tid": 35568, "ts": 10721966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74bd0", "tid": 35568, "ts": 10722051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74550", "tid": 35568, "ts": 10722139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb743b0", "tid": 35568, "ts": 10722224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb766a0", "tid": 35568, "ts": 10722310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75b40", "tid": 35568, "ts": 10722396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74210", "tid": 35568, "ts": 10722482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75db0", "tid": 35568, "ts": 10722568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb759a0", "tid": 35568, "ts": 10722654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76ab0", "tid": 35568, "ts": 10722740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75590", "tid": 35568, "ts": 10722826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74890", "tid": 35568, "ts": 10722913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb769e0", "tid": 35568, "ts": 10722999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76840", "tid": 35568, "ts": 10723085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74140", "tid": 35568, "ts": 10723171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74e40", "tid": 35568, "ts": 10723258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb754c0", "tid": 35568, "ts": 10723344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73e00", "tid": 35568, "ts": 10723429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76910", "tid": 35568, "ts": 10723516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75730", "tid": 35568, "ts": 10723602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb760f0", "tid": 35568, "ts": 10723688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73ed0", "tid": 35568, "ts": 10723774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73d30", "tid": 35568, "ts": 10723860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75250", "tid": 35568, "ts": 10723945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb753f0", "tid": 35568, "ts": 10724031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76d20", "tid": 35568, "ts": 10724118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76770", "tid": 35568, "ts": 10724204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74960", "tid": 35568, "ts": 10724290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75320", "tid": 35568, "ts": 10724376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77060", "tid": 35568, "ts": 10724462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71490", "tid": 35568, "ts": 10724549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70c70", "tid": 35568, "ts": 10724635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70930", "tid": 35568, "ts": 10724723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb739f0", "tid": 35568, "ts": 10724809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72670", "tid": 35568, "ts": 10724895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71560", "tid": 35568, "ts": 10724981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72810", "tid": 35568, "ts": 10725067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71630", "tid": 35568, "ts": 10725153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72400", "tid": 35568, "ts": 10725239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71220", "tid": 35568, "ts": 10725325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb732a0", "tid": 35568, "ts": 10725411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70ee0", "tid": 35568, "ts": 10725496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73440", "tid": 35568, "ts": 10725583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb720c0", "tid": 35568, "ts": 10725669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70ad0", "tid": 35568, "ts": 10725756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71f20", "tid": 35568, "ts": 10725842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71080", "tid": 35568, "ts": 10725928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73b90", "tid": 35568, "ts": 10726014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71ff0", "tid": 35568, "ts": 10726100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71a40", "tid": 35568, "ts": 10726185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72330", "tid": 35568, "ts": 10726272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70e10", "tid": 35568, "ts": 10726358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72e90", "tid": 35568, "ts": 10726443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73850", "tid": 35568, "ts": 10726529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72dc0", "tid": 35568, "ts": 10726616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72a80", "tid": 35568, "ts": 10726701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb725a0", "tid": 35568, "ts": 10726787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73510", "tid": 35568, "ts": 10726873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72f60", "tid": 35568, "ts": 10726959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb731d0", "tid": 35568, "ts": 10727045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb729b0", "tid": 35568, "ts": 10727131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72c20", "tid": 35568, "ts": 10727217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ee60", "tid": 35568, "ts": 10727303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d870", "tid": 35568, "ts": 10727389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ecc0", "tid": 35568, "ts": 10727476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e570", "tid": 35568, "ts": 10727562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70520", "tid": 35568, "ts": 10727648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e230", "tid": 35568, "ts": 10727734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ff70", "tid": 35568, "ts": 10727820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6eb20", "tid": 35568, "ts": 10727906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f680", "tid": 35568, "ts": 10727992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f1a0", "tid": 35568, "ts": 10728077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dd50", "tid": 35568, "ts": 10728164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ea50", "tid": 35568, "ts": 10728250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dfc0", "tid": 35568, "ts": 10728336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e8b0", "tid": 35568, "ts": 10728422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f340", "tid": 35568, "ts": 10728507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70380", "tid": 35568, "ts": 10728593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fc30", "tid": 35568, "ts": 10728680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dae0", "tid": 35568, "ts": 10728765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e980", "tid": 35568, "ts": 10728851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb702b0", "tid": 35568, "ts": 10728938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e300", "tid": 35568, "ts": 10729024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e710", "tid": 35568, "ts": 10729110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f000", "tid": 35568, "ts": 10729195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e3d0", "tid": 35568, "ts": 10729281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d7a0", "tid": 35568, "ts": 10729367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e4a0", "tid": 35568, "ts": 10729452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e7e0", "tid": 35568, "ts": 10729538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fd00", "tid": 35568, "ts": 10729624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d6d0", "tid": 35568, "ts": 10729711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70110", "tid": 35568, "ts": 10729796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f410", "tid": 35568, "ts": 10729883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d600", "tid": 35568, "ts": 10729968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6aa20", "tid": 35568, "ts": 10730054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a2d0", "tid": 35568, "ts": 10730141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d390", "tid": 35568, "ts": 10730226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d050", "tid": 35568, "ts": 10730311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d2c0", "tid": 35568, "ts": 10730397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c350", "tid": 35568, "ts": 10730483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ceb0", "tid": 35568, "ts": 10730570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cde0", "tid": 35568, "ts": 10730656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c0e0", "tid": 35568, "ts": 10730743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6be70", "tid": 35568, "ts": 10730829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d120", "tid": 35568, "ts": 10730917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6caa0", "tid": 35568, "ts": 10731005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c9d0", "tid": 35568, "ts": 10731196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c900", "tid": 35568, "ts": 10731286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a6e0", "tid": 35568, "ts": 10731372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ba60", "tid": 35568, "ts": 10731458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a540", "tid": 35568, "ts": 10731545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c010", "tid": 35568, "ts": 10731630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a470", "tid": 35568, "ts": 10731717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b8c0", "tid": 35568, "ts": 10731803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ad60", "tid": 35568, "ts": 10731889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c760", "tid": 35568, "ts": 10731976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d460", "tid": 35568, "ts": 10732062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b170", "tid": 35568, "ts": 10732149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6af00", "tid": 35568, "ts": 10732235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d1f0", "tid": 35568, "ts": 10732321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ac90", "tid": 35568, "ts": 10732407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b4b0", "tid": 35568, "ts": 10732493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c5c0", "tid": 35568, "ts": 10732579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bb30", "tid": 35568, "ts": 10732665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b7f0", "tid": 35568, "ts": 10732751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b240", "tid": 35568, "ts": 10732837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68db0", "tid": 35568, "ts": 10732923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68730", "tid": 35568, "ts": 10733009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67e40", "tid": 35568, "ts": 10733095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb676f0", "tid": 35568, "ts": 10733181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67550", "tid": 35568, "ts": 10733267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68660", "tid": 35568, "ts": 10733353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67480", "tid": 35568, "ts": 10733439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68800", "tid": 35568, "ts": 10733524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68ce0", "tid": 35568, "ts": 10733611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69d20", "tid": 35568, "ts": 10733697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb684c0", "tid": 35568, "ts": 10733783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68c10", "tid": 35568, "ts": 10733869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67bd0", "tid": 35568, "ts": 10733955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb695d0", "tid": 35568, "ts": 10734041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68a70", "tid": 35568, "ts": 10734127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69b80", "tid": 35568, "ts": 10734213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66ed0", "tid": 35568, "ts": 10734300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69020", "tid": 35568, "ts": 10734386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69f90", "tid": 35568, "ts": 10734473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb688d0", "tid": 35568, "ts": 10734559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68250", "tid": 35568, "ts": 10734645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69910", "tid": 35568, "ts": 10734731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67a30", "tid": 35568, "ts": 10734817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67140", "tid": 35568, "ts": 10734903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69ab0", "tid": 35568, "ts": 10734990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68b40", "tid": 35568, "ts": 10735075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69df0", "tid": 35568, "ts": 10735161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68320", "tid": 35568, "ts": 10735247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb677c0", "tid": 35568, "ts": 10735334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66e00", "tid": 35568, "ts": 10735419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68f50", "tid": 35568, "ts": 10735505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb699e0", "tid": 35568, "ts": 10735591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65c20", "tid": 35568, "ts": 10735678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65a80", "tid": 35568, "ts": 10735764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb658e0", "tid": 35568, "ts": 10735850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65670", "tid": 35568, "ts": 10735936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66030", "tid": 35568, "ts": 10736022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb648a0", "tid": 35568, "ts": 10736109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65190", "tid": 35568, "ts": 10736194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64700", "tid": 35568, "ts": 10736281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64f20", "tid": 35568, "ts": 10736367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65740", "tid": 35568, "ts": 10736453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb661d0", "tid": 35568, "ts": 10736539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb642f0", "tid": 35568, "ts": 10736625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64220", "tid": 35568, "ts": 10736711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64630", "tid": 35568, "ts": 10736797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64080", "tid": 35568, "ts": 10736884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb654d0", "tid": 35568, "ts": 10736969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63ee0", "tid": 35568, "ts": 10737056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66370", "tid": 35568, "ts": 10737142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66ac0", "tid": 35568, "ts": 10737229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64150", "tid": 35568, "ts": 10737315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64b10", "tid": 35568, "ts": 10737401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64be0", "tid": 35568, "ts": 10737487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66100", "tid": 35568, "ts": 10737573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66920", "tid": 35568, "ts": 10737658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63930", "tid": 35568, "ts": 10737744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb662a0", "tid": 35568, "ts": 10737831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65260", "tid": 35568, "ts": 10737917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63a00", "tid": 35568, "ts": 10738003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65cf0", "tid": 35568, "ts": 10738089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb665e0", "tid": 35568, "ts": 10738175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65330", "tid": 35568, "ts": 10738261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66c60", "tid": 35568, "ts": 10738347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60870", "tid": 35568, "ts": 10738434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63860", "tid": 35568, "ts": 10738520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb632b0", "tid": 35568, "ts": 10738606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63110", "tid": 35568, "ts": 10738693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb628f0", "tid": 35568, "ts": 10738779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62680", "tid": 35568, "ts": 10738865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62c30", "tid": 35568, "ts": 10738951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62410", "tid": 35568, "ts": 10739037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62340", "tid": 35568, "ts": 10739123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62000", "tid": 35568, "ts": 10739210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb635f0", "tid": 35568, "ts": 10739296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62b60", "tid": 35568, "ts": 10739382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60d50", "tid": 35568, "ts": 10739468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62ea0", "tid": 35568, "ts": 10739554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61980", "tid": 35568, "ts": 10739640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb629c0", "tid": 35568, "ts": 10739726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60fc0", "tid": 35568, "ts": 10739814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb621a0", "tid": 35568, "ts": 10739900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60bb0", "tid": 35568, "ts": 10739986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61710", "tid": 35568, "ts": 10740072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60ef0", "tid": 35568, "ts": 10740158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61640", "tid": 35568, "ts": 10740244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60a10", "tid": 35568, "ts": 10740330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61b20", "tid": 35568, "ts": 10740417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62a90", "tid": 35568, "ts": 10740504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb636c0", "tid": 35568, "ts": 10740589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb624e0", "tid": 35568, "ts": 10740675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60530", "tid": 35568, "ts": 10740760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61300", "tid": 35568, "ts": 10740847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61a50", "tid": 35568, "ts": 10740932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62d00", "tid": 35568, "ts": 10741019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61230", "tid": 35568, "ts": 10741104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f1b0", "tid": 35568, "ts": 10741191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f010", "tid": 35568, "ts": 10741277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dc90", "tid": 35568, "ts": 10741363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ee70", "tid": 35568, "ts": 10741450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ec00", "tid": 35568, "ts": 10741536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f280", "tid": 35568, "ts": 10741622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ea60", "tid": 35568, "ts": 10741708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e990", "tid": 35568, "ts": 10741794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e720", "tid": 35568, "ts": 10741880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e7f0", "tid": 35568, "ts": 10741966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60050", "tid": 35568, "ts": 10742052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5eda0", "tid": 35568, "ts": 10742138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fd10", "tid": 35568, "ts": 10742224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fb70", "tid": 35568, "ts": 10742311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d950", "tid": 35568, "ts": 10742397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f420", "tid": 35568, "ts": 10742483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f900", "tid": 35568, "ts": 10742569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d880", "tid": 35568, "ts": 10742656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5faa0", "tid": 35568, "ts": 10742742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60460", "tid": 35568, "ts": 10742828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f760", "tid": 35568, "ts": 10742914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5de30", "tid": 35568, "ts": 10743000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fde0", "tid": 35568, "ts": 10743087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d6e0", "tid": 35568, "ts": 10743172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d7b0", "tid": 35568, "ts": 10743259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5eb30", "tid": 35568, "ts": 10743346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e0a0", "tid": 35568, "ts": 10743432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f350", "tid": 35568, "ts": 10743518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d130", "tid": 35568, "ts": 10743604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5daf0", "tid": 35568, "ts": 10743690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ecd0", "tid": 35568, "ts": 10743776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e170", "tid": 35568, "ts": 10743863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a2e0", "tid": 35568, "ts": 10743949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bf50", "tid": 35568, "ts": 10744036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59ed0", "tid": 35568, "ts": 10744122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a070", "tid": 35568, "ts": 10744208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59e00", "tid": 35568, "ts": 10744294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b8d0", "tid": 35568, "ts": 10744380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b730", "tid": 35568, "ts": 10744466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cec0", "tid": 35568, "ts": 10744551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b4c0", "tid": 35568, "ts": 10744638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cc50", "tid": 35568, "ts": 10744724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a7c0", "tid": 35568, "ts": 10744810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d060", "tid": 35568, "ts": 10744896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a550", "tid": 35568, "ts": 10744983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b3f0", "tid": 35568, "ts": 10745069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a6f0", "tid": 35568, "ts": 10745154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b250", "tid": 35568, "ts": 10745240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59d30", "tid": 35568, "ts": 10745327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5aa30", "tid": 35568, "ts": 10745413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ba70", "tid": 35568, "ts": 10745499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5abd0", "tid": 35568, "ts": 10745585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5afe0", "tid": 35568, "ts": 10745671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a3b0", "tid": 35568, "ts": 10745757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c5d0", "tid": 35568, "ts": 10745844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a620", "tid": 35568, "ts": 10745930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c840", "tid": 35568, "ts": 10746015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c500", "tid": 35568, "ts": 10746102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5be80", "tid": 35568, "ts": 10746187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ab00", "tid": 35568, "ts": 10746274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cd20", "tid": 35568, "ts": 10746360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c020", "tid": 35568, "ts": 10746446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c290", "tid": 35568, "ts": 10746532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c430", "tid": 35568, "ts": 10746618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59510", "tid": 35568, "ts": 10746792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59100", "tid": 35568, "ts": 10746916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58a80", "tid": 35568, "ts": 10747071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58810", "tid": 35568, "ts": 10747186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58740", "tid": 35568, "ts": 10747285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58670", "tid": 35568, "ts": 10747395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58400", "tid": 35568, "ts": 10747549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57b10", "tid": 35568, "ts": 10747693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57220", "tid": 35568, "ts": 10747780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58260", "tid": 35568, "ts": 10747867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb584d0", "tid": 35568, "ts": 10747954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57080", "tid": 35568, "ts": 10748040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58190", "tid": 35568, "ts": 10748128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59ac0", "tid": 35568, "ts": 10748214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb580c0", "tid": 35568, "ts": 10748301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59440", "tid": 35568, "ts": 10748388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58c20", "tid": 35568, "ts": 10748475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57e50", "tid": 35568, "ts": 10748561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57d80", "tid": 35568, "ts": 10748648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57700", "tid": 35568, "ts": 10748734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56fb0", "tid": 35568, "ts": 10748820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb592a0", "tid": 35568, "ts": 10748907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56930", "tid": 35568, "ts": 10748993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57a40", "tid": 35568, "ts": 10749080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59850", "tid": 35568, "ts": 10749166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb588e0", "tid": 35568, "ts": 10749252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59780", "tid": 35568, "ts": 10749339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb577d0", "tid": 35568, "ts": 10749425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57490", "tid": 35568, "ts": 10749512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56ad0", "tid": 35568, "ts": 10749598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56ee0", "tid": 35568, "ts": 10749685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57560", "tid": 35568, "ts": 10749771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55f70", "tid": 35568, "ts": 10749859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55820", "tid": 35568, "ts": 10749946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb555b0", "tid": 35568, "ts": 10750033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb558f0", "tid": 35568, "ts": 10750119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55340", "tid": 35568, "ts": 10750206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb550d0", "tid": 35568, "ts": 10750292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53a10", "tid": 35568, "ts": 10750378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb566c0", "tid": 35568, "ts": 10750465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54090", "tid": 35568, "ts": 10750551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb544a0", "tid": 35568, "ts": 10750637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54e60", "tid": 35568, "ts": 10750723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53870", "tid": 35568, "ts": 10750809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54cc0", "tid": 35568, "ts": 10750895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55dd0", "tid": 35568, "ts": 10750981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55410", "tid": 35568, "ts": 10751068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55680", "tid": 35568, "ts": 10751155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53c80", "tid": 35568, "ts": 10751242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb548b0", "tid": 35568, "ts": 10751328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb537a0", "tid": 35568, "ts": 10751414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54d90", "tid": 35568, "ts": 10751501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53ef0", "tid": 35568, "ts": 10751587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb562b0", "tid": 35568, "ts": 10751673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54710", "tid": 35568, "ts": 10751759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb536d0", "tid": 35568, "ts": 10751845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53ae0", "tid": 35568, "ts": 10751932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56790", "tid": 35568, "ts": 10752018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55d00", "tid": 35568, "ts": 10752105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56110", "tid": 35568, "ts": 10752191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54570", "tid": 35568, "ts": 10752277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53530", "tid": 35568, "ts": 10752364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56860", "tid": 35568, "ts": 10752450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb559c0", "tid": 35568, "ts": 10752536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fe20", "tid": 35568, "ts": 10752622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fd50", "tid": 35568, "ts": 10752709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490cc0", "tid": 35568, "ts": 10752795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48df40", "tid": 35568, "ts": 10752881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f2c0", "tid": 35568, "ts": 10752968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f600", "tid": 35568, "ts": 10753054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f7a0", "tid": 35568, "ts": 10753141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490bf0", "tid": 35568, "ts": 10753227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ef80", "tid": 35568, "ts": 10753313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ed10", "tid": 35568, "ts": 10753399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490f30", "tid": 35568, "ts": 10753484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490640", "tid": 35568, "ts": 10753570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4907e0", "tid": 35568, "ts": 10753656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490300", "tid": 35568, "ts": 10753742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48eb70", "tid": 35568, "ts": 10753828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490570", "tid": 35568, "ts": 10753914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e690", "tid": 35568, "ts": 10754001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e9d0", "tid": 35568, "ts": 10754087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48de70", "tid": 35568, "ts": 10754173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490e60", "tid": 35568, "ts": 10754259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490230", "tid": 35568, "ts": 10754345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490090", "tid": 35568, "ts": 10754431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e420", "tid": 35568, "ts": 10754518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490a50", "tid": 35568, "ts": 10754604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e350", "tid": 35568, "ts": 10754690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e830", "tid": 35568, "ts": 10754777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e0e0", "tid": 35568, "ts": 10754863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fef0", "tid": 35568, "ts": 10754948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4903d0", "tid": 35568, "ts": 10755035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e1b0", "tid": 35568, "ts": 10755121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fae0", "tid": 35568, "ts": 10755208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c950", "tid": 35568, "ts": 10755294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c7b0", "tid": 35568, "ts": 10755381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cd60", "tid": 35568, "ts": 10755468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c470", "tid": 35568, "ts": 10755555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b0f0", "tid": 35568, "ts": 10755642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48adb0", "tid": 35568, "ts": 10755728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a9a0", "tid": 35568, "ts": 10755815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48dc00", "tid": 35568, "ts": 10755901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c130", "tid": 35568, "ts": 10755987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d3e0", "tid": 35568, "ts": 10756074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cf00", "tid": 35568, "ts": 10756160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d990", "tid": 35568, "ts": 10756246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b020", "tid": 35568, "ts": 10756332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bf90", "tid": 35568, "ts": 10756419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b360", "tid": 35568, "ts": 10756505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48af50", "tid": 35568, "ts": 10756591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48db30", "tid": 35568, "ts": 10756677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bdf0", "tid": 35568, "ts": 10756764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ace0", "tid": 35568, "ts": 10756850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b500", "tid": 35568, "ts": 10756936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b6a0", "tid": 35568, "ts": 10757022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cfd0", "tid": 35568, "ts": 10757108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bb80", "tid": 35568, "ts": 10757195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d4b0", "tid": 35568, "ts": 10757281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bd20", "tid": 35568, "ts": 10757367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b290", "tid": 35568, "ts": 10757453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48aa70", "tid": 35568, "ts": 10757540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bab0", "tid": 35568, "ts": 10757626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b9e0", "tid": 35568, "ts": 10757712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b910", "tid": 35568, "ts": 10757798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c3a0", "tid": 35568, "ts": 10757884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bc50", "tid": 35568, "ts": 10757971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4878e0", "tid": 35568, "ts": 10758057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488370", "tid": 35568, "ts": 10758145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488e00", "tid": 35568, "ts": 10758231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488c60", "tid": 35568, "ts": 10758318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a730", "tid": 35568, "ts": 10758404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a660", "tid": 35568, "ts": 10758491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a590", "tid": 35568, "ts": 10758576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489a30", "tid": 35568, "ts": 10758663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489960", "tid": 35568, "ts": 10758750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4897c0", "tid": 35568, "ts": 10758836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a8d0", "tid": 35568, "ts": 10758922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a320", "tid": 35568, "ts": 10759008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a800", "tid": 35568, "ts": 10759093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4892e0", "tid": 35568, "ts": 10759180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a180", "tid": 35568, "ts": 10759267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489210", "tid": 35568, "ts": 10759353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a4c0", "tid": 35568, "ts": 10759439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4896f0", "tid": 35568, "ts": 10759526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487e90", "tid": 35568, "ts": 10759612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489ca0", "tid": 35568, "ts": 10759698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a0b0", "tid": 35568, "ts": 10759784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487dc0", "tid": 35568, "ts": 10759872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4885e0", "tid": 35568, "ts": 10759958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489140", "tid": 35568, "ts": 10760044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a3f0", "tid": 35568, "ts": 10760130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487b50", "tid": 35568, "ts": 10760216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48a250", "tid": 35568, "ts": 10760302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489bd0", "tid": 35568, "ts": 10760389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489f10", "tid": 35568, "ts": 10760475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489550", "tid": 35568, "ts": 10760562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488510", "tid": 35568, "ts": 10760648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4889f0", "tid": 35568, "ts": 10760734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486d80", "tid": 35568, "ts": 10760820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486be0", "tid": 35568, "ts": 10760907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486a40", "tid": 35568, "ts": 10760994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485fb0", "tid": 35568, "ts": 10761080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485ee0", "tid": 35568, "ts": 10761167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485e10", "tid": 35568, "ts": 10761254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485930", "tid": 35568, "ts": 10761340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486630", "tid": 35568, "ts": 10761426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485860", "tid": 35568, "ts": 10761512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486560", "tid": 35568, "ts": 10761598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484410", "tid": 35568, "ts": 10761684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485c70", "tid": 35568, "ts": 10761770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4841a0", "tid": 35568, "ts": 10761857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484d00", "tid": 35568, "ts": 10761943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4852b0", "tid": 35568, "ts": 10762029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486490", "tid": 35568, "ts": 10762116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487400", "tid": 35568, "ts": 10762203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487260", "tid": 35568, "ts": 10762311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4867d0", "tid": 35568, "ts": 10762409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484f70", "tid": 35568, "ts": 10762496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4863c0", "tid": 35568, "ts": 10762583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486700", "tid": 35568, "ts": 10762670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4862f0", "tid": 35568, "ts": 10762756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486220", "tid": 35568, "ts": 10762843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4848f0", "tid": 35568, "ts": 10762929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485ad0", "tid": 35568, "ts": 10763015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485520", "tid": 35568, "ts": 10763101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484680", "tid": 35568, "ts": 10763188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485790", "tid": 35568, "ts": 10763274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484750", "tid": 35568, "ts": 10763361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485d40", "tid": 35568, "ts": 10763447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487330", "tid": 35568, "ts": 10763533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482e20", "tid": 35568, "ts": 10763619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482bb0", "tid": 35568, "ts": 10763706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482940", "tid": 35568, "ts": 10763791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482870", "tid": 35568, "ts": 10763878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482530", "tid": 35568, "ts": 10763964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483bf0", "tid": 35568, "ts": 10764050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481f80", "tid": 35568, "ts": 10764136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481690", "tid": 35568, "ts": 10764223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4815c0", "tid": 35568, "ts": 10764309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484000", "tid": 35568, "ts": 10764395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483640", "tid": 35568, "ts": 10764481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483e60", "tid": 35568, "ts": 10764567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483570", "tid": 35568, "ts": 10764652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4834a0", "tid": 35568, "ts": 10764738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483cc0", "tid": 35568, "ts": 10764824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481b70", "tid": 35568, "ts": 10764910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483980", "tid": 35568, "ts": 10764997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4819d0", "tid": 35568, "ts": 10765084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4811b0", "tid": 35568, "ts": 10765170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481350", "tid": 35568, "ts": 10765256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480e70", "tid": 35568, "ts": 10765342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483f30", "tid": 35568, "ts": 10765429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4827a0", "tid": 35568, "ts": 10765515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4822c0", "tid": 35568, "ts": 10765601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481aa0", "tid": 35568, "ts": 10765687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482c80", "tid": 35568, "ts": 10765774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482460", "tid": 35568, "ts": 10765861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481900", "tid": 35568, "ts": 10765948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481eb0", "tid": 35568, "ts": 10766036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481830", "tid": 35568, "ts": 10766124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481010", "tid": 35568, "ts": 10766211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4837e0", "tid": 35568, "ts": 10766345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ed20", "tid": 35568, "ts": 10766433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47eab0", "tid": 35568, "ts": 10766521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e910", "tid": 35568, "ts": 10766607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e360", "tid": 35568, "ts": 10766693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47dc10", "tid": 35568, "ts": 10766779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480cd0", "tid": 35568, "ts": 10766866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480990", "tid": 35568, "ts": 10766951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fe30", "tid": 35568, "ts": 10767038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4808c0", "tid": 35568, "ts": 10767123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f610", "tid": 35568, "ts": 10767209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f540", "tid": 35568, "ts": 10767295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480580", "tid": 35568, "ts": 10767381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480240", "tid": 35568, "ts": 10767466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f2d0", "tid": 35568, "ts": 10767553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47faf0", "tid": 35568, "ts": 10767639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47de80", "tid": 35568, "ts": 10767725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47df50", "tid": 35568, "ts": 10767811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f200", "tid": 35568, "ts": 10767899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ddb0", "tid": 35568, "ts": 10767985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f3a0", "tid": 35568, "ts": 10768072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fa20", "tid": 35568, "ts": 10768159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480170", "tid": 35568, "ts": 10768245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e770", "tid": 35568, "ts": 10768331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e290", "tid": 35568, "ts": 10768417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47edf0", "tid": 35568, "ts": 10768503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480650", "tid": 35568, "ts": 10768590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e0f0", "tid": 35568, "ts": 10768676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e020", "tid": 35568, "ts": 10768763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ef90", "tid": 35568, "ts": 10768849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f060", "tid": 35568, "ts": 10768935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47eb80", "tid": 35568, "ts": 10769021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4804b0", "tid": 35568, "ts": 10769107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d800", "tid": 35568, "ts": 10769194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d660", "tid": 35568, "ts": 10769281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d4c0", "tid": 35568, "ts": 10769367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c140", "tid": 35568, "ts": 10769453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47be00", "tid": 35568, "ts": 10769539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bc60", "tid": 35568, "ts": 10769626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47adc0", "tid": 35568, "ts": 10769713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b5e0", "tid": 35568, "ts": 10769799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d250", "tid": 35568, "ts": 10769885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c7c0", "tid": 35568, "ts": 10769971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ab50", "tid": 35568, "ts": 10770057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bb90", "tid": 35568, "ts": 10770143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b510", "tid": 35568, "ts": 10770229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c620", "tid": 35568, "ts": 10770315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a8e0", "tid": 35568, "ts": 10770401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a810", "tid": 35568, "ts": 10770488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a740", "tid": 35568, "ts": 10770574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d320", "tid": 35568, "ts": 10770661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b9f0", "tid": 35568, "ts": 10770747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b440", "tid": 35568, "ts": 10770833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bed0", "tid": 35568, "ts": 10770919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bac0", "tid": 35568, "ts": 10771005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b2a0", "tid": 35568, "ts": 10771091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b030", "tid": 35568, "ts": 10771177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a670", "tid": 35568, "ts": 10771263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b780", "tid": 35568, "ts": 10771349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a5a0", "tid": 35568, "ts": 10771435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cbd0", "tid": 35568, "ts": 10771522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c6f0", "tid": 35568, "ts": 10771608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a9b0", "tid": 35568, "ts": 10771695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cb00", "tid": 35568, "ts": 10771781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d8d0", "tid": 35568, "ts": 10771867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4793c0", "tid": 35568, "ts": 10771953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478fb0", "tid": 35568, "ts": 10772040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479150", "tid": 35568, "ts": 10772126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478860", "tid": 35568, "ts": 10772213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479560", "tid": 35568, "ts": 10772299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4785f0", "tid": 35568, "ts": 10772386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477a90", "tid": 35568, "ts": 10772472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4778f0", "tid": 35568, "ts": 10772558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477680", "tid": 35568, "ts": 10772644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479be0", "tid": 35568, "ts": 10772730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a330", "tid": 35568, "ts": 10772816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478380", "tid": 35568, "ts": 10772903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477410", "tid": 35568, "ts": 10772989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a400", "tid": 35568, "ts": 10773076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477f70", "tid": 35568, "ts": 10773161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479a40", "tid": 35568, "ts": 10773248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479ff0", "tid": 35568, "ts": 10773333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478790", "tid": 35568, "ts": 10773420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4781e0", "tid": 35568, "ts": 10773506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4798a0", "tid": 35568, "ts": 10773592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4774e0", "tid": 35568, "ts": 10773678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477820", "tid": 35568, "ts": 10773764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478ee0", "tid": 35568, "ts": 10773850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477ea0", "tid": 35568, "ts": 10773937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478110", "tid": 35568, "ts": 10774023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479cb0", "tid": 35568, "ts": 10774110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4775b0", "tid": 35568, "ts": 10774196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479970", "tid": 35568, "ts": 10774282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479080", "tid": 35568, "ts": 10774369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477dd0", "tid": 35568, "ts": 10774455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479220", "tid": 35568, "ts": 10774542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a4d0", "tid": 35568, "ts": 10774628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475120", "tid": 35568, "ts": 10774715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476e60", "tid": 35568, "ts": 10774802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475c80", "tid": 35568, "ts": 10774889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475bb0", "tid": 35568, "ts": 10774975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474280", "tid": 35568, "ts": 10775061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475ae0", "tid": 35568, "ts": 10775147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474eb0", "tid": 35568, "ts": 10775232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476640", "tid": 35568, "ts": 10775318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4745c0", "tid": 35568, "ts": 10775405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476980", "tid": 35568, "ts": 10775491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475870", "tid": 35568, "ts": 10775578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474f80", "tid": 35568, "ts": 10775664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473da0", "tid": 35568, "ts": 10775750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4763d0", "tid": 35568, "ts": 10775836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4757a0", "tid": 35568, "ts": 10775923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474900", "tid": 35568, "ts": 10776010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4767e0", "tid": 35568, "ts": 10776095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4768b0", "tid": 35568, "ts": 10776182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477000", "tid": 35568, "ts": 10776268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476d90", "tid": 35568, "ts": 10776354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474c40", "tid": 35568, "ts": 10776440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476160", "tid": 35568, "ts": 10776527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4740e0", "tid": 35568, "ts": 10776612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475ef0", "tid": 35568, "ts": 10776699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474690", "tid": 35568, "ts": 10776785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474de0", "tid": 35568, "ts": 10776872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474420", "tid": 35568, "ts": 10776958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474aa0", "tid": 35568, "ts": 10777043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4752c0", "tid": 35568, "ts": 10777129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4749d0", "tid": 35568, "ts": 10777214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475d50", "tid": 35568, "ts": 10777301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4751f0", "tid": 35568, "ts": 10777387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473580", "tid": 35568, "ts": 10777472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472bc0", "tid": 35568, "ts": 10777558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472a20", "tid": 35568, "ts": 10777644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472880", "tid": 35568, "ts": 10777730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472130", "tid": 35568, "ts": 10777816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471ab0", "tid": 35568, "ts": 10777911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471b80", "tid": 35568, "ts": 10778000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4726e0", "tid": 35568, "ts": 10778086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471360", "tid": 35568, "ts": 10778173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471840", "tid": 35568, "ts": 10778259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471ec0", "tid": 35568, "ts": 10778345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4715d0", "tid": 35568, "ts": 10778431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472610", "tid": 35568, "ts": 10778518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471c50", "tid": 35568, "ts": 10778604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470a70", "tid": 35568, "ts": 10778690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472540", "tid": 35568, "ts": 10778776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4709a0", "tid": 35568, "ts": 10778862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471910", "tid": 35568, "ts": 10778949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473cd0", "tid": 35568, "ts": 10779036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471430", "tid": 35568, "ts": 10779122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470db0", "tid": 35568, "ts": 10779208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471290", "tid": 35568, "ts": 10779294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471770", "tid": 35568, "ts": 10779380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472fd0", "tid": 35568, "ts": 10779466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470ce0", "tid": 35568, "ts": 10779552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4723a0", "tid": 35568, "ts": 10779638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473990", "tid": 35568, "ts": 10779724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471020", "tid": 35568, "ts": 10779811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473720", "tid": 35568, "ts": 10779897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472e30", "tid": 35568, "ts": 10779983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4734b0", "tid": 35568, "ts": 10780069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472060", "tid": 35568, "ts": 10780156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ffe0", "tid": 35568, "ts": 10780242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4700b0", "tid": 35568, "ts": 10780329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ee00", "tid": 35568, "ts": 10780415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e920", "tid": 35568, "ts": 10780501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fe40", "tid": 35568, "ts": 10780588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46da80", "tid": 35568, "ts": 10780675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f6f0", "tid": 35568, "ts": 10780761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470250", "tid": 35568, "ts": 10780848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fd70", "tid": 35568, "ts": 10780934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e5e0", "tid": 35568, "ts": 10781021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f620", "tid": 35568, "ts": 10781107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e780", "tid": 35568, "ts": 10781193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e030", "tid": 35568, "ts": 10781279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e440", "tid": 35568, "ts": 10781365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46dcf0", "tid": 35568, "ts": 10781451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f890", "tid": 35568, "ts": 10781538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d810", "tid": 35568, "ts": 10781623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fbd0", "tid": 35568, "ts": 10781711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f550", "tid": 35568, "ts": 10781797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e510", "tid": 35568, "ts": 10781884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f210", "tid": 35568, "ts": 10781970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d740", "tid": 35568, "ts": 10782056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f140", "tid": 35568, "ts": 10782143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fca0", "tid": 35568, "ts": 10782229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f960", "tid": 35568, "ts": 10782316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46de90", "tid": 35568, "ts": 10782402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470660", "tid": 35568, "ts": 10782487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46dc20", "tid": 35568, "ts": 10782574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d9b0", "tid": 35568, "ts": 10782659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4704c0", "tid": 35568, "ts": 10782746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4703f0", "tid": 35568, "ts": 10782831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d5a0", "tid": 35568, "ts": 10782918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c220", "tid": 35568, "ts": 10783005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b450", "tid": 35568, "ts": 10783093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bba0", "tid": 35568, "ts": 10783179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ad00", "tid": 35568, "ts": 10783265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a750", "tid": 35568, "ts": 10783351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b6c0", "tid": 35568, "ts": 10783437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a340", "tid": 35568, "ts": 10783523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cf20", "tid": 35568, "ts": 10783609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cb10", "tid": 35568, "ts": 10783695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c150", "tid": 35568, "ts": 10783782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b860", "tid": 35568, "ts": 10783869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a680", "tid": 35568, "ts": 10783956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d330", "tid": 35568, "ts": 10784042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bfb0", "tid": 35568, "ts": 10784129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ce50", "tid": 35568, "ts": 10784215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c8a0", "tid": 35568, "ts": 10784301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a1a0", "tid": 35568, "ts": 10784387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c970", "tid": 35568, "ts": 10784476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cbe0", "tid": 35568, "ts": 10784562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bd40", "tid": 35568, "ts": 10784647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c3c0", "tid": 35568, "ts": 10784733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d400", "tid": 35568, "ts": 10784820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d0c0", "tid": 35568, "ts": 10784906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ab60", "tid": 35568, "ts": 10784992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b930", "tid": 35568, "ts": 10785078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b040", "tid": 35568, "ts": 10785166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cff0", "tid": 35568, "ts": 10785252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a9c0", "tid": 35568, "ts": 10785338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d260", "tid": 35568, "ts": 10785425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46aa90", "tid": 35568, "ts": 10785512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a8f0", "tid": 35568, "ts": 10785598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b2b0", "tid": 35568, "ts": 10785685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468ef0", "tid": 35568, "ts": 10785772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468d50", "tid": 35568, "ts": 10785858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4687a0", "tid": 35568, "ts": 10785945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4681f0", "tid": 35568, "ts": 10786031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469e60", "tid": 35568, "ts": 10786118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468050", "tid": 35568, "ts": 10786205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467d10", "tid": 35568, "ts": 10786291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467c40", "tid": 35568, "ts": 10786378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469a50", "tid": 35568, "ts": 10786464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467aa0", "tid": 35568, "ts": 10786550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467760", "tid": 35568, "ts": 10786637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4675c0", "tid": 35568, "ts": 10786723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468460", "tid": 35568, "ts": 10786809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467de0", "tid": 35568, "ts": 10786895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4679d0", "tid": 35568, "ts": 10786981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4686d0", "tid": 35568, "ts": 10787068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4694a0", "tid": 35568, "ts": 10787155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468c80", "tid": 35568, "ts": 10787241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466f40", "tid": 35568, "ts": 10787327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467900", "tid": 35568, "ts": 10787413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467690", "tid": 35568, "ts": 10787499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468fc0", "tid": 35568, "ts": 10787586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468870", "tid": 35568, "ts": 10787672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a000", "tid": 35568, "ts": 10787759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4682c0", "tid": 35568, "ts": 10787845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469b20", "tid": 35568, "ts": 10787931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469300", "tid": 35568, "ts": 10788017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468940", "tid": 35568, "ts": 10788103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469f30", "tid": 35568, "ts": 10788190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467350", "tid": 35568, "ts": 10788276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469570", "tid": 35568, "ts": 10788362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468a10", "tid": 35568, "ts": 10788449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465d60", "tid": 35568, "ts": 10788535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463ce0", "tid": 35568, "ts": 10788623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4663e0", "tid": 35568, "ts": 10788709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465fd0", "tid": 35568, "ts": 10788796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465bc0", "tid": 35568, "ts": 10788883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465950", "tid": 35568, "ts": 10788970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463a70", "tid": 35568, "ts": 10789056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465200", "tid": 35568, "ts": 10789142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465470", "tid": 35568, "ts": 10789229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463c10", "tid": 35568, "ts": 10789315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466b30", "tid": 35568, "ts": 10789402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466240", "tid": 35568, "ts": 10789487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464df0", "tid": 35568, "ts": 10789574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464d20", "tid": 35568, "ts": 10789660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4649e0", "tid": 35568, "ts": 10789747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465f00", "tid": 35568, "ts": 10789834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465610", "tid": 35568, "ts": 10789920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466a60", "tid": 35568, "ts": 10790008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4656e0", "tid": 35568, "ts": 10790094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464500", "tid": 35568, "ts": 10790180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464770", "tid": 35568, "ts": 10790266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465540", "tid": 35568, "ts": 10790353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464360", "tid": 35568, "ts": 10790438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466650", "tid": 35568, "ts": 10790525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463f50", "tid": 35568, "ts": 10790611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4641c0", "tid": 35568, "ts": 10790698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4668c0", "tid": 35568, "ts": 10790784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464ab0", "tid": 35568, "ts": 10790870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4640f0", "tid": 35568, "ts": 10790957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464020", "tid": 35568, "ts": 10791043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466310", "tid": 35568, "ts": 10791129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466580", "tid": 35568, "ts": 10791216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463730", "tid": 35568, "ts": 10791303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462550", "tid": 35568, "ts": 10791390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462480", "tid": 35568, "ts": 10791476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462d70", "tid": 35568, "ts": 10791562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461fa0", "tid": 35568, "ts": 10791648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461ac0", "tid": 35568, "ts": 10791735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463590", "tid": 35568, "ts": 10791820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461ed0", "tid": 35568, "ts": 10791907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4615e0", "tid": 35568, "ts": 10791994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461510", "tid": 35568, "ts": 10792080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461370", "tid": 35568, "ts": 10792166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461100", "tid": 35568, "ts": 10792252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460a80", "tid": 35568, "ts": 10792338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4627c0", "tid": 35568, "ts": 10792425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462890", "tid": 35568, "ts": 10792511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462070", "tid": 35568, "ts": 10792598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462620", "tid": 35568, "ts": 10792684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461e00", "tid": 35568, "ts": 10792771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462a30", "tid": 35568, "ts": 10792857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460810", "tid": 35568, "ts": 10792944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4611d0", "tid": 35568, "ts": 10793029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460f60", "tid": 35568, "ts": 10793116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460e90", "tid": 35568, "ts": 10793202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462210", "tid": 35568, "ts": 10793289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461850", "tid": 35568, "ts": 10793376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4634c0", "tid": 35568, "ts": 10793463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463800", "tid": 35568, "ts": 10793585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4626f0", "tid": 35568, "ts": 10793754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460670", "tid": 35568, "ts": 10793904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460c20", "tid": 35568, "ts": 10793992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461780", "tid": 35568, "ts": 10794079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460cf0", "tid": 35568, "ts": 10794166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ee10", "tid": 35568, "ts": 10794252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ed40", "tid": 35568, "ts": 10794339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fbe0", "tid": 35568, "ts": 10794425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e1e0", "tid": 35568, "ts": 10794511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e110", "tid": 35568, "ts": 10794620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e930", "tid": 35568, "ts": 10794707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f8a0", "tid": 35568, "ts": 10794794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e860", "tid": 35568, "ts": 10794880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e520", "tid": 35568, "ts": 10794967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45db60", "tid": 35568, "ts": 10795053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e040", "tid": 35568, "ts": 10795140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f700", "tid": 35568, "ts": 10795225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fd80", "tid": 35568, "ts": 10795311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e790", "tid": 35568, "ts": 10795398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d9c0", "tid": 35568, "ts": 10795484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f7d0", "tid": 35568, "ts": 10795569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f150", "tid": 35568, "ts": 10795656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d340", "tid": 35568, "ts": 10795743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45df70", "tid": 35568, "ts": 10795829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f220", "tid": 35568, "ts": 10795915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d820", "tid": 35568, "ts": 10796001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45eee0", "tid": 35568, "ts": 10796087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fa40", "tid": 35568, "ts": 10796173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45efb0", "tid": 35568, "ts": 10796260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4604d0", "tid": 35568, "ts": 10796345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e5f0", "tid": 35568, "ts": 10796431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d680", "tid": 35568, "ts": 10796517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f970", "tid": 35568, "ts": 10796603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d5b0", "tid": 35568, "ts": 10796690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d1a0", "tid": 35568, "ts": 10796777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f2f0", "tid": 35568, "ts": 10796863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460330", "tid": 35568, "ts": 10796949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c710", "tid": 35568, "ts": 10797035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bbb0", "tid": 35568, "ts": 10797121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b940", "tid": 35568, "ts": 10797208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b6d0", "tid": 35568, "ts": 10797294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b870", "tid": 35568, "ts": 10797381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b390", "tid": 35568, "ts": 10797468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ad10", "tid": 35568, "ts": 10797555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ac40", "tid": 35568, "ts": 10797641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a010", "tid": 35568, "ts": 10797727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459e70", "tid": 35568, "ts": 10797814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cd90", "tid": 35568, "ts": 10797899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a0e0", "tid": 35568, "ts": 10797985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ab70", "tid": 35568, "ts": 10798071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a900", "tid": 35568, "ts": 10798158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a830", "tid": 35568, "ts": 10798244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ba10", "tid": 35568, "ts": 10798330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cbf0", "tid": 35568, "ts": 10798416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a5c0", "tid": 35568, "ts": 10798503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cb20", "tid": 35568, "ts": 10798589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d0d0", "tid": 35568, "ts": 10798675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459da0", "tid": 35568, "ts": 10798760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a1b0", "tid": 35568, "ts": 10798847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45af80", "tid": 35568, "ts": 10798933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d000", "tid": 35568, "ts": 10799020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bef0", "tid": 35568, "ts": 10799106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45aaa0", "tid": 35568, "ts": 10799193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c980", "tid": 35568, "ts": 10799279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a420", "tid": 35568, "ts": 10799366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a690", "tid": 35568, "ts": 10799452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45aeb0", "tid": 35568, "ts": 10799539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a280", "tid": 35568, "ts": 10799625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b120", "tid": 35568, "ts": 10799711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459990", "tid": 35568, "ts": 10799798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4594b0", "tid": 35568, "ts": 10799885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459310", "tid": 35568, "ts": 10799971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459c00", "tid": 35568, "ts": 10800058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4582d0", "tid": 35568, "ts": 10800144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457840", "tid": 35568, "ts": 10800231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458fd0", "tid": 35568, "ts": 10800316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458130", "tid": 35568, "ts": 10800403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458bc0", "tid": 35568, "ts": 10800488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458060", "tid": 35568, "ts": 10800575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4583a0", "tid": 35568, "ts": 10800661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459a60", "tid": 35568, "ts": 10800748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4579e0", "tid": 35568, "ts": 10800835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458a20", "tid": 35568, "ts": 10800922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4575d0", "tid": 35568, "ts": 10801010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457ec0", "tid": 35568, "ts": 10801097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457df0", "tid": 35568, "ts": 10801227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456ce0", "tid": 35568, "ts": 10801318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457290", "tid": 35568, "ts": 10801404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456c10", "tid": 35568, "ts": 10801491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457500", "tid": 35568, "ts": 10801577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458610", "tid": 35568, "ts": 10801663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456db0", "tid": 35568, "ts": 10801749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457d20", "tid": 35568, "ts": 10801836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458f00", "tid": 35568, "ts": 10801923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459cd0", "tid": 35568, "ts": 10802010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4597f0", "tid": 35568, "ts": 10802095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457c50", "tid": 35568, "ts": 10802181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4569a0", "tid": 35568, "ts": 10802267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457ab0", "tid": 35568, "ts": 10802353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458470", "tid": 35568, "ts": 10802439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458e30", "tid": 35568, "ts": 10802526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456800", "tid": 35568, "ts": 10802612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4556f0", "tid": 35568, "ts": 10802699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455210", "tid": 35568, "ts": 10802785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454fa0", "tid": 35568, "ts": 10802872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454100", "tid": 35568, "ts": 10802958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455f10", "tid": 35568, "ts": 10803044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455e40", "tid": 35568, "ts": 10803131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455960", "tid": 35568, "ts": 10803217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453e90", "tid": 35568, "ts": 10803304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454510", "tid": 35568, "ts": 10803391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454e00", "tid": 35568, "ts": 10803477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454c60", "tid": 35568, "ts": 10803563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454370", "tid": 35568, "ts": 10803649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456250", "tid": 35568, "ts": 10803736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455070", "tid": 35568, "ts": 10803822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455d70", "tid": 35568, "ts": 10803909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4542a0", "tid": 35568, "ts": 10803996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4549f0", "tid": 35568, "ts": 10804083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4541d0", "tid": 35568, "ts": 10804169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4546b0", "tid": 35568, "ts": 10804255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453670", "tid": 35568, "ts": 10804341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455fe0", "tid": 35568, "ts": 10804428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455bd0", "tid": 35568, "ts": 10804514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454ac0", "tid": 35568, "ts": 10804601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455b00", "tid": 35568, "ts": 10804687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454780", "tid": 35568, "ts": 10804774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456180", "tid": 35568, "ts": 10804861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455a30", "tid": 35568, "ts": 10804947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4564c0", "tid": 35568, "ts": 10805033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4539b0", "tid": 35568, "ts": 10805119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4563f0", "tid": 35568, "ts": 10805205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453cf0", "tid": 35568, "ts": 10805291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4530c0", "tid": 35568, "ts": 10805377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452e50", "tid": 35568, "ts": 10805464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451a00", "tid": 35568, "ts": 10805551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451790", "tid": 35568, "ts": 10805636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452080", "tid": 35568, "ts": 10805723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452be0", "tid": 35568, "ts": 10805809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452f20", "tid": 35568, "ts": 10805896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451ad0", "tid": 35568, "ts": 10805982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451110", "tid": 35568, "ts": 10806068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451520", "tid": 35568, "ts": 10806155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452560", "tid": 35568, "ts": 10806242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4504e0", "tid": 35568, "ts": 10806329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452970", "tid": 35568, "ts": 10806415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4534d0", "tid": 35568, "ts": 10806502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4528a0", "tid": 35568, "ts": 10806588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450410", "tid": 35568, "ts": 10806674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4527d0", "tid": 35568, "ts": 10806760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450a90", "tid": 35568, "ts": 10806847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450750", "tid": 35568, "ts": 10806934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452ff0", "tid": 35568, "ts": 10807020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4512b0", "tid": 35568, "ts": 10807106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452b10", "tid": 35568, "ts": 10807192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451040", "tid": 35568, "ts": 10807280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453330", "tid": 35568, "ts": 10807366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4508f0", "tid": 35568, "ts": 10807452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450820", "tid": 35568, "ts": 10807539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453190", "tid": 35568, "ts": 10807625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451e10", "tid": 35568, "ts": 10807711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451380", "tid": 35568, "ts": 10807797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452220", "tid": 35568, "ts": 10807884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452d80", "tid": 35568, "ts": 10807970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4515f0", "tid": 35568, "ts": 10808056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80ac0", "tid": 35568, "ts": 10808142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80920", "tid": 35568, "ts": 10808229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80510", "tid": 35568, "ts": 10808315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd802a0", "tid": 35568, "ts": 10808402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ff60", "tid": 35568, "ts": 10808488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fe90", "tid": 35568, "ts": 10808574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fc20", "tid": 35568, "ts": 10808661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f9b0", "tid": 35568, "ts": 10808747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f810", "tid": 35568, "ts": 10808833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e560", "tid": 35568, "ts": 10808920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e2f0", "tid": 35568, "ts": 10809006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e630", "tid": 35568, "ts": 10809092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f330", "tid": 35568, "ts": 10809228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f740", "tid": 35568, "ts": 10809337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80b90", "tid": 35568, "ts": 10809449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dfb0", "tid": 35568, "ts": 10809535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80780", "tid": 35568, "ts": 10809622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e080", "tid": 35568, "ts": 10809722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd806b0", "tid": 35568, "ts": 10809831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e8a0", "tid": 35568, "ts": 10809947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7de10", "tid": 35568, "ts": 10810035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80d30", "tid": 35568, "ts": 10810157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7eff0", "tid": 35568, "ts": 10810243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ea40", "tid": 35568, "ts": 10810333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd805e0", "tid": 35568, "ts": 10810420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ef20", "tid": 35568, "ts": 10810507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f190", "tid": 35568, "ts": 10810623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd801d0", "tid": 35568, "ts": 10810735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f5a0", "tid": 35568, "ts": 10810821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80100", "tid": 35568, "ts": 10810908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f0c0", "tid": 35568, "ts": 10810995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cb60", "tid": 35568, "ts": 10811084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c4e0", "tid": 35568, "ts": 10811170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c270", "tid": 35568, "ts": 10811284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c1a0", "tid": 35568, "ts": 10811371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7be60", "tid": 35568, "ts": 10811458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ae20", "tid": 35568, "ts": 10811544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ad50", "tid": 35568, "ts": 10811632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cea0", "tid": 35568, "ts": 10811718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c000", "tid": 35568, "ts": 10811804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ba50", "tid": 35568, "ts": 10811890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b980", "tid": 35568, "ts": 10811977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dad0", "tid": 35568, "ts": 10812063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b8b0", "tid": 35568, "ts": 10812150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bbf0", "tid": 35568, "ts": 10812237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ac80", "tid": 35568, "ts": 10812323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c750", "tid": 35568, "ts": 10812409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d930", "tid": 35568, "ts": 10812495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bb20", "tid": 35568, "ts": 10812581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7da00", "tid": 35568, "ts": 10812668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a940", "tid": 35568, "ts": 10812754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b4a0", "tid": 35568, "ts": 10812841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cc30", "tid": 35568, "ts": 10812927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d450", "tid": 35568, "ts": 10813014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d790", "tid": 35568, "ts": 10813099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b3d0", "tid": 35568, "ts": 10813186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7abb0", "tid": 35568, "ts": 10813272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bf30", "tid": 35568, "ts": 10813358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b300", "tid": 35568, "ts": 10813444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7afc0", "tid": 35568, "ts": 10813531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cd00", "tid": 35568, "ts": 10813617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7aef0", "tid": 35568, "ts": 10813703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7aa10", "tid": 35568, "ts": 10813790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79f80", "tid": 35568, "ts": 10813877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77950", "tid": 35568, "ts": 10813964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77880", "tid": 35568, "ts": 10814051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78b30", "tid": 35568, "ts": 10814137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78a60", "tid": 35568, "ts": 10814224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79de0", "tid": 35568, "ts": 10814310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79c40", "tid": 35568, "ts": 10814397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79420", "tid": 35568, "ts": 10814482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79350", "tid": 35568, "ts": 10814569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77610", "tid": 35568, "ts": 10814655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a530", "tid": 35568, "ts": 10814741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77a20", "tid": 35568, "ts": 10814828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a460", "tid": 35568, "ts": 10814915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78e70", "tid": 35568, "ts": 10815002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79aa0", "tid": 35568, "ts": 10815089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a390", "tid": 35568, "ts": 10815175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78da0", "tid": 35568, "ts": 10815262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78c00", "tid": 35568, "ts": 10815347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78720", "tid": 35568, "ts": 10815434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a870", "tid": 35568, "ts": 10815520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79d10", "tid": 35568, "ts": 10815607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77d60", "tid": 35568, "ts": 10815693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd788c0", "tid": 35568, "ts": 10815780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78310", "tid": 35568, "ts": 10815865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78580", "tid": 35568, "ts": 10815951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79690", "tid": 35568, "ts": 10816037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77c90", "tid": 35568, "ts": 10816123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a120", "tid": 35568, "ts": 10816210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a7a0", "tid": 35568, "ts": 10816295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd784b0", "tid": 35568, "ts": 10816381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79760", "tid": 35568, "ts": 10816467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77540", "tid": 35568, "ts": 10816554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76ab0", "tid": 35568, "ts": 10816640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74b00", "tid": 35568, "ts": 10816726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd766a0", "tid": 35568, "ts": 10816814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76360", "tid": 35568, "ts": 10816900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76500", "tid": 35568, "ts": 10816987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74620", "tid": 35568, "ts": 10817074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74210", "tid": 35568, "ts": 10817160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75730", "tid": 35568, "ts": 10817247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77200", "tid": 35568, "ts": 10817333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75ce0", "tid": 35568, "ts": 10817419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd743b0", "tid": 35568, "ts": 10817506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74140", "tid": 35568, "ts": 10817592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75320", "tid": 35568, "ts": 10817678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74ca0", "tid": 35568, "ts": 10817764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76df0", "tid": 35568, "ts": 10817851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76020", "tid": 35568, "ts": 10817937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74d70", "tid": 35568, "ts": 10818023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75f50", "tid": 35568, "ts": 10818108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd754c0", "tid": 35568, "ts": 10818195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74550", "tid": 35568, "ts": 10818281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75250", "tid": 35568, "ts": 10818368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76c50", "tid": 35568, "ts": 10818454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd750b0", "tid": 35568, "ts": 10818541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd758d0", "tid": 35568, "ts": 10818627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74f10", "tid": 35568, "ts": 10818713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd760f0", "tid": 35568, "ts": 10818799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75a70", "tid": 35568, "ts": 10818886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77130", "tid": 35568, "ts": 10818972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75590", "tid": 35568, "ts": 10819058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76910", "tid": 35568, "ts": 10819144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75e80", "tid": 35568, "ts": 10819231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd769e0", "tid": 35568, "ts": 10819318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71080", "tid": 35568, "ts": 10819405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73c60", "tid": 35568, "ts": 10819491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73920", "tid": 35568, "ts": 10819578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd736b0", "tid": 35568, "ts": 10819665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70ee0", "tid": 35568, "ts": 10819751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73510", "tid": 35568, "ts": 10819838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73370", "tid": 35568, "ts": 10819925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73100", "tid": 35568, "ts": 10820011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72b50", "tid": 35568, "ts": 10820097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72330", "tid": 35568, "ts": 10820184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73ed0", "tid": 35568, "ts": 10820270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72260", "tid": 35568, "ts": 10820357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd728e0", "tid": 35568, "ts": 10820443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72190", "tid": 35568, "ts": 10820529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73e00", "tid": 35568, "ts": 10820616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd720c0", "tid": 35568, "ts": 10820702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71d80", "tid": 35568, "ts": 10820788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd717d0", "tid": 35568, "ts": 10820874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72810", "tid": 35568, "ts": 10820961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd724d0", "tid": 35568, "ts": 10821047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72cf0", "tid": 35568, "ts": 10821134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74070", "tid": 35568, "ts": 10821220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71a40", "tid": 35568, "ts": 10821307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd712f0", "tid": 35568, "ts": 10821393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73d30", "tid": 35568, "ts": 10821480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72a80", "tid": 35568, "ts": 10821566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71cb0", "tid": 35568, "ts": 10821653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71970", "tid": 35568, "ts": 10821738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71f20", "tid": 35568, "ts": 10821824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72c20", "tid": 35568, "ts": 10821911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71be0", "tid": 35568, "ts": 10821998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72400", "tid": 35568, "ts": 10822084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70c70", "tid": 35568, "ts": 10822171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ff70", "tid": 35568, "ts": 10822258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70a00", "tid": 35568, "ts": 10822346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fc30", "tid": 35568, "ts": 10822433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f750", "tid": 35568, "ts": 10822519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f680", "tid": 35568, "ts": 10822605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70860", "tid": 35568, "ts": 10822693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ee60", "tid": 35568, "ts": 10822778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ed90", "tid": 35568, "ts": 10822865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fa90", "tid": 35568, "ts": 10822951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd702b0", "tid": 35568, "ts": 10823038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f5b0", "tid": 35568, "ts": 10823124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dfc0", "tid": 35568, "ts": 10823211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ecc0", "tid": 35568, "ts": 10823297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e8b0", "tid": 35568, "ts": 10823384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f340", "tid": 35568, "ts": 10823471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dc80", "tid": 35568, "ts": 10823557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6eb20", "tid": 35568, "ts": 10823645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e4a0", "tid": 35568, "ts": 10823732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70ad0", "tid": 35568, "ts": 10823819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6def0", "tid": 35568, "ts": 10823905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f000", "tid": 35568, "ts": 10823991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e980", "tid": 35568, "ts": 10824078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ea50", "tid": 35568, "ts": 10824165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70380", "tid": 35568, "ts": 10824251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6da10", "tid": 35568, "ts": 10824337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e090", "tid": 35568, "ts": 10824423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd706c0", "tid": 35568, "ts": 10824510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dae0", "tid": 35568, "ts": 10824597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ebf0", "tid": 35568, "ts": 10824683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f270", "tid": 35568, "ts": 10824771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e300", "tid": 35568, "ts": 10824992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b240", "tid": 35568, "ts": 10825143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6af00", "tid": 35568, "ts": 10825249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c280", "tid": 35568, "ts": 10825345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c0e0", "tid": 35568, "ts": 10825445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d1f0", "tid": 35568, "ts": 10825555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ae30", "tid": 35568, "ts": 10825652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c420", "tid": 35568, "ts": 10825754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ad60", "tid": 35568, "ts": 10825863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bc00", "tid": 35568, "ts": 10825962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d870", "tid": 35568, "ts": 10826060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b720", "tid": 35568, "ts": 10826196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cde0", "tid": 35568, "ts": 10826323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bb30", "tid": 35568, "ts": 10826410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cd10", "tid": 35568, "ts": 10826499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b3e0", "tid": 35568, "ts": 10826587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cf80", "tid": 35568, "ts": 10826695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c9d0", "tid": 35568, "ts": 10826832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d390", "tid": 35568, "ts": 10826973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d120", "tid": 35568, "ts": 10827110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ba60", "tid": 35568, "ts": 10827197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a6e0", "tid": 35568, "ts": 10827311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a7b0", "tid": 35568, "ts": 10827397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d2c0", "tid": 35568, "ts": 10827485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6be70", "tid": 35568, "ts": 10827572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6afd0", "tid": 35568, "ts": 10827659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b990", "tid": 35568, "ts": 10827745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a880", "tid": 35568, "ts": 10827831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6caa0", "tid": 35568, "ts": 10827918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b580", "tid": 35568, "ts": 10828005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a950", "tid": 35568, "ts": 10828092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c830", "tid": 35568, "ts": 10828180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bf40", "tid": 35568, "ts": 10828292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a470", "tid": 35568, "ts": 10828379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd696a0", "tid": 35568, "ts": 10828466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a130", "tid": 35568, "ts": 10828556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68730", "tid": 35568, "ts": 10828643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69430", "tid": 35568, "ts": 10828731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69020", "tid": 35568, "ts": 10828818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67f10", "tid": 35568, "ts": 10828907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68590", "tid": 35568, "ts": 10828996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69360", "tid": 35568, "ts": 10829084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68320", "tid": 35568, "ts": 10829172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67ca0", "tid": 35568, "ts": 10829260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69770", "tid": 35568, "ts": 10829349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67bd0", "tid": 35568, "ts": 10829438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69f90", "tid": 35568, "ts": 10829526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67890", "tid": 35568, "ts": 10829614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69ec0", "tid": 35568, "ts": 10829702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd676f0", "tid": 35568, "ts": 10829790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd677c0", "tid": 35568, "ts": 10829897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68660", "tid": 35568, "ts": 10829987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69500", "tid": 35568, "ts": 10830074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69d20", "tid": 35568, "ts": 10830163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67210", "tid": 35568, "ts": 10830251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67e40", "tid": 35568, "ts": 10830339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a3a0", "tid": 35568, "ts": 10830427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd672e0", "tid": 35568, "ts": 10830518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67140", "tid": 35568, "ts": 10830606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67a30", "tid": 35568, "ts": 10830694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67620", "tid": 35568, "ts": 10830782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68db0", "tid": 35568, "ts": 10830871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd673b0", "tid": 35568, "ts": 10830958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd680b0", "tid": 35568, "ts": 10831047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66b90", "tid": 35568, "ts": 10831135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66ac0", "tid": 35568, "ts": 10831223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd669f0", "tid": 35568, "ts": 10831311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67070", "tid": 35568, "ts": 10831400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66510", "tid": 35568, "ts": 10831488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66e00", "tid": 35568, "ts": 10831575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65cf0", "tid": 35568, "ts": 10831664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65330", "tid": 35568, "ts": 10831752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd643c0", "tid": 35568, "ts": 10831839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63ee0", "tid": 35568, "ts": 10831927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd659b0", "tid": 35568, "ts": 10832016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63e10", "tid": 35568, "ts": 10832105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66100", "tid": 35568, "ts": 10832192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64be0", "tid": 35568, "ts": 10832281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd650c0", "tid": 35568, "ts": 10832369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd665e0", "tid": 35568, "ts": 10832457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64150", "tid": 35568, "ts": 10832545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64ff0", "tid": 35568, "ts": 10832633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65810", "tid": 35568, "ts": 10832722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63fb0", "tid": 35568, "ts": 10832811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64a40", "tid": 35568, "ts": 10832900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66c60", "tid": 35568, "ts": 10832988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd662a0", "tid": 35568, "ts": 10833076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66fa0", "tid": 35568, "ts": 10833165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64e50", "tid": 35568, "ts": 10833253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64560", "tid": 35568, "ts": 10833340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65dc0", "tid": 35568, "ts": 10833427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63d40", "tid": 35568, "ts": 10833540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65740", "tid": 35568, "ts": 10833626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd666b0", "tid": 35568, "ts": 10833714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64b10", "tid": 35568, "ts": 10833802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64700", "tid": 35568, "ts": 10833890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63a00", "tid": 35568, "ts": 10833977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63040", "tid": 35568, "ts": 10834064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62b60", "tid": 35568, "ts": 10834151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62a90", "tid": 35568, "ts": 10834240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd628f0", "tid": 35568, "ts": 10834327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd618b0", "tid": 35568, "ts": 10834425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61b20", "tid": 35568, "ts": 10834545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62dd0", "tid": 35568, "ts": 10834633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62000", "tid": 35568, "ts": 10834755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd636c0", "tid": 35568, "ts": 10834853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd635f0", "tid": 35568, "ts": 10834940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63860", "tid": 35568, "ts": 10835027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60e20", "tid": 35568, "ts": 10835113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd621a0", "tid": 35568, "ts": 10835200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62d00", "tid": 35568, "ts": 10835286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd613d0", "tid": 35568, "ts": 10835373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61d90", "tid": 35568, "ts": 10835460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61640", "tid": 35568, "ts": 10835546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd620d0", "tid": 35568, "ts": 10835633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63ba0", "tid": 35568, "ts": 10835721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60a10", "tid": 35568, "ts": 10835806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61e60", "tid": 35568, "ts": 10835893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd614a0", "tid": 35568, "ts": 10835980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61300", "tid": 35568, "ts": 10836068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61230", "tid": 35568, "ts": 10836155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63450", "tid": 35568, "ts": 10836242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61bf0", "tid": 35568, "ts": 10836329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62c30", "tid": 35568, "ts": 10836416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd631e0", "tid": 35568, "ts": 10836504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61160", "tid": 35568, "ts": 10836590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61090", "tid": 35568, "ts": 10836677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62750", "tid": 35568, "ts": 10836764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5da20", "tid": 35568, "ts": 10836852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd606d0", "tid": 35568, "ts": 10836940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f760", "tid": 35568, "ts": 10837028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f4f0", "tid": 35568, "ts": 10837162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f1b0", "tid": 35568, "ts": 10837252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60600", "tid": 35568, "ts": 10837340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ee70", "tid": 35568, "ts": 10837427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd602c0", "tid": 35568, "ts": 10837514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e580", "tid": 35568, "ts": 10837601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fb70", "tid": 35568, "ts": 10837688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5eb30", "tid": 35568, "ts": 10837776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60120", "tid": 35568, "ts": 10837864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dc90", "tid": 35568, "ts": 10837950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f5c0", "tid": 35568, "ts": 10838037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ea60", "tid": 35568, "ts": 10838123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5df00", "tid": 35568, "ts": 10838209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60460", "tid": 35568, "ts": 10838296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dd60", "tid": 35568, "ts": 10838382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60390", "tid": 35568, "ts": 10838468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e990", "tid": 35568, "ts": 10838556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5daf0", "tid": 35568, "ts": 10838642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dbc0", "tid": 35568, "ts": 10838729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d610", "tid": 35568, "ts": 10838816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ef40", "tid": 35568, "ts": 10838903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5feb0", "tid": 35568, "ts": 10838989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e8c0", "tid": 35568, "ts": 10839076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5de30", "tid": 35568, "ts": 10839162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e720", "tid": 35568, "ts": 10839250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d950", "tid": 35568, "ts": 10839336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d6e0", "tid": 35568, "ts": 10839422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e3e0", "tid": 35568, "ts": 10839508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd607a0", "tid": 35568, "ts": 10839596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c9e0", "tid": 35568, "ts": 10839682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b9a0", "tid": 35568, "ts": 10839769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c500", "tid": 35568, "ts": 10839855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b3f0", "tid": 35568, "ts": 10839943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b320", "tid": 35568, "ts": 10840030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ad70", "tid": 35568, "ts": 10840117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b250", "tid": 35568, "ts": 10840204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cec0", "tid": 35568, "ts": 10840291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a890", "tid": 35568, "ts": 10840378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b660", "tid": 35568, "ts": 10840540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ae40", "tid": 35568, "ts": 10840626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c290", "tid": 35568, "ts": 10840713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a6f0", "tid": 35568, "ts": 10840799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a620", "tid": 35568, "ts": 10840887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bdb0", "tid": 35568, "ts": 10840974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5af10", "tid": 35568, "ts": 10841060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cc50", "tid": 35568, "ts": 10841147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b8d0", "tid": 35568, "ts": 10841233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a3b0", "tid": 35568, "ts": 10841319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a210", "tid": 35568, "ts": 10841407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bc10", "tid": 35568, "ts": 10841494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b590", "tid": 35568, "ts": 10841580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d200", "tid": 35568, "ts": 10841667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c0f0", "tid": 35568, "ts": 10841753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cd20", "tid": 35568, "ts": 10841839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ab00", "tid": 35568, "ts": 10841926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a960", "tid": 35568, "ts": 10842013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cb80", "tid": 35568, "ts": 10842100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bce0", "tid": 35568, "ts": 10842186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d2d0", "tid": 35568, "ts": 10842273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bf50", "tid": 35568, "ts": 10842359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ba70", "tid": 35568, "ts": 10842447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd585a0", "tid": 35568, "ts": 10842534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57e50", "tid": 35568, "ts": 10842621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57cb0", "tid": 35568, "ts": 10842707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57080", "tid": 35568, "ts": 10842794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57700", "tid": 35568, "ts": 10842881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58b50", "tid": 35568, "ts": 10842968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd578a0", "tid": 35568, "ts": 10843054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57be0", "tid": 35568, "ts": 10843141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58400", "tid": 35568, "ts": 10843228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56d40", "tid": 35568, "ts": 10843315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a070", "tid": 35568, "ts": 10843401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57970", "tid": 35568, "ts": 10843489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59850", "tid": 35568, "ts": 10843575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59100", "tid": 35568, "ts": 10843662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59780", "tid": 35568, "ts": 10843749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59ed0", "tid": 35568, "ts": 10843836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57490", "tid": 35568, "ts": 10843922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd591d0", "tid": 35568, "ts": 10844010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd573c0", "tid": 35568, "ts": 10844097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58dc0", "tid": 35568, "ts": 10844184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59c60", "tid": 35568, "ts": 10844271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59b90", "tid": 35568, "ts": 10844358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58a80", "tid": 35568, "ts": 10844445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57f20", "tid": 35568, "ts": 10844532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58670", "tid": 35568, "ts": 10844619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd592a0", "tid": 35568, "ts": 10844706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56ee0", "tid": 35568, "ts": 10844793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59510", "tid": 35568, "ts": 10844879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59e00", "tid": 35568, "ts": 10844965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59d30", "tid": 35568, "ts": 10845053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58cf0", "tid": 35568, "ts": 10845139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57150", "tid": 35568, "ts": 10845226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53d50", "tid": 35568, "ts": 10845312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53ef0", "tid": 35568, "ts": 10845399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53940", "tid": 35568, "ts": 10845485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd566c0", "tid": 35568, "ts": 10845573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55000", "tid": 35568, "ts": 10845659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd543d0", "tid": 35568, "ts": 10845746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56450", "tid": 35568, "ts": 10845833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54f30", "tid": 35568, "ts": 10845920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56520", "tid": 35568, "ts": 10846006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd550d0", "tid": 35568, "ts": 10846092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53fc0", "tid": 35568, "ts": 10846179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55a90", "tid": 35568, "ts": 10846265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd548b0", "tid": 35568, "ts": 10846351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54d90", "tid": 35568, "ts": 10846438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd555b0", "tid": 35568, "ts": 10846524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55dd0", "tid": 35568, "ts": 10846610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54570", "tid": 35568, "ts": 10846697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54640", "tid": 35568, "ts": 10846784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54cc0", "tid": 35568, "ts": 10846870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53bb0", "tid": 35568, "ts": 10846957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54bf0", "tid": 35568, "ts": 10847043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55d00", "tid": 35568, "ts": 10847130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56040", "tid": 35568, "ts": 10847216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56ba0", "tid": 35568, "ts": 10847304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56930", "tid": 35568, "ts": 10847390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55750", "tid": 35568, "ts": 10847477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54e60", "tid": 35568, "ts": 10847563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56c70", "tid": 35568, "ts": 10847650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54090", "tid": 35568, "ts": 10847737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54230", "tid": 35568, "ts": 10847823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53ae0", "tid": 35568, "ts": 10847911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd544a0", "tid": 35568, "ts": 10847997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50610", "tid": 35568, "ts": 10848083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51e70", "tid": 35568, "ts": 10848170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51c00", "tid": 35568, "ts": 10848257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51a60", "tid": 35568, "ts": 10848344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50bc0", "tid": 35568, "ts": 10848431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd524f0", "tid": 35568, "ts": 10848518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52420", "tid": 35568, "ts": 10848605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50e30", "tid": 35568, "ts": 10848692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51990", "tid": 35568, "ts": 10848778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51580", "tid": 35568, "ts": 10848865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52690", "tid": 35568, "ts": 10848951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd514b0", "tid": 35568, "ts": 10849038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50c90", "tid": 35568, "ts": 10849125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd532c0", "tid": 35568, "ts": 10849211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53530", "tid": 35568, "ts": 10849298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53120", "tid": 35568, "ts": 10849385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd518c0", "tid": 35568, "ts": 10849472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52900", "tid": 35568, "ts": 10849559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50540", "tid": 35568, "ts": 10849645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd513e0", "tid": 35568, "ts": 10849732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51170", "tid": 35568, "ts": 10849819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd520e0", "tid": 35568, "ts": 10849906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd525c0", "tid": 35568, "ts": 10849992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd529d0", "tid": 35568, "ts": 10850079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52aa0", "tid": 35568, "ts": 10850166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50a20", "tid": 35568, "ts": 10850253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52de0", "tid": 35568, "ts": 10850340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd517f0", "tid": 35568, "ts": 10850427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd531f0", "tid": 35568, "ts": 10850513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52f80", "tid": 35568, "ts": 10850600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52010", "tid": 35568, "ts": 10850687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd510a0", "tid": 35568, "ts": 10850774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fc50", "tid": 35568, "ts": 10850861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e180", "tid": 35568, "ts": 10850948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4de40", "tid": 35568, "ts": 10851035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f020", "tid": 35568, "ts": 10851122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dfe0", "tid": 35568, "ts": 10851208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f360", "tid": 35568, "ts": 10851295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f910", "tid": 35568, "ts": 10851381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ea70", "tid": 35568, "ts": 10851468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4db00", "tid": 35568, "ts": 10851554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ef50", "tid": 35568, "ts": 10851641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d550", "tid": 35568, "ts": 10851727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d210", "tid": 35568, "ts": 10851814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d620", "tid": 35568, "ts": 10851900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50470", "tid": 35568, "ts": 10851987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fb80", "tid": 35568, "ts": 10852073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d7c0", "tid": 35568, "ts": 10852161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e320", "tid": 35568, "ts": 10852247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f770", "tid": 35568, "ts": 10852333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ee80", "tid": 35568, "ts": 10852420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd503a0", "tid": 35568, "ts": 10852508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50060", "tid": 35568, "ts": 10852594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ff90", "tid": 35568, "ts": 10852682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d6f0", "tid": 35568, "ts": 10852768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d2e0", "tid": 35568, "ts": 10852854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dca0", "tid": 35568, "ts": 10852940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ec10", "tid": 35568, "ts": 10853026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f0f0", "tid": 35568, "ts": 10853113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd502d0", "tid": 35568, "ts": 10853200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50130", "tid": 35568, "ts": 10853286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fab0", "tid": 35568, "ts": 10853372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4df10", "tid": 35568, "ts": 10853458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fdf0", "tid": 35568, "ts": 10853546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b330", "tid": 35568, "ts": 10853632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b190", "tid": 35568, "ts": 10853717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4abe0", "tid": 35568, "ts": 10853803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a970", "tid": 35568, "ts": 10853891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a8a0", "tid": 35568, "ts": 10853978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cfa0", "tid": 35568, "ts": 10854064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a080", "tid": 35568, "ts": 10854151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49fb0", "tid": 35568, "ts": 10854237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ced0", "tid": 35568, "ts": 10854323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c510", "tid": 35568, "ts": 10854410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4af20", "tid": 35568, "ts": 10854496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ae50", "tid": 35568, "ts": 10854583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b8e0", "tid": 35568, "ts": 10854669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ad80", "tid": 35568, "ts": 10854756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a150", "tid": 35568, "ts": 10854842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c1d0", "tid": 35568, "ts": 10854929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a630", "tid": 35568, "ts": 10855015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c9f0", "tid": 35568, "ts": 10855101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b810", "tid": 35568, "ts": 10855188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bdc0", "tid": 35568, "ts": 10855275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c920", "tid": 35568, "ts": 10855362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c5e0", "tid": 35568, "ts": 10855448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c440", "tid": 35568, "ts": 10855534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a2f0", "tid": 35568, "ts": 10855621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a220", "tid": 35568, "ts": 10855707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c780", "tid": 35568, "ts": 10855795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ba80", "tid": 35568, "ts": 10855881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a490", "tid": 35568, "ts": 10855968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49e10", "tid": 35568, "ts": 10856108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c030", "tid": 35568, "ts": 10856239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bcf0", "tid": 35568, "ts": 10856334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b740", "tid": 35568, "ts": 10856448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46ae0", "tid": 35568, "ts": 10856550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd496c0", "tid": 35568, "ts": 10856688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46ef0", "tid": 35568, "ts": 10856830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd495f0", "tid": 35568, "ts": 10856933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd491e0", "tid": 35568, "ts": 10857020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48dd0", "tid": 35568, "ts": 10857107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd473d0", "tid": 35568, "ts": 10857194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd485b0", "tid": 35568, "ts": 10857281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48270", "tid": 35568, "ts": 10857368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47300", "tid": 35568, "ts": 10857455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46e20", "tid": 35568, "ts": 10857541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47cc0", "tid": 35568, "ts": 10857628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49520", "tid": 35568, "ts": 10857715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49790", "tid": 35568, "ts": 10857802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49380", "tid": 35568, "ts": 10857889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48d00", "tid": 35568, "ts": 10857975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49a00", "tid": 35568, "ts": 10858061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48b60", "tid": 35568, "ts": 10858147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd484e0", "tid": 35568, "ts": 10858234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46fc0", "tid": 35568, "ts": 10858323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47980", "tid": 35568, "ts": 10858410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49860", "tid": 35568, "ts": 10858497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46d50", "tid": 35568, "ts": 10858583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47570", "tid": 35568, "ts": 10858670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48f70", "tid": 35568, "ts": 10858757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46c80", "tid": 35568, "ts": 10858843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48340", "tid": 35568, "ts": 10858929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd478b0", "tid": 35568, "ts": 10859015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48750", "tid": 35568, "ts": 10859102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd481a0", "tid": 35568, "ts": 10859188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47710", "tid": 35568, "ts": 10859275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47f30", "tid": 35568, "ts": 10859362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd462c0", "tid": 35568, "ts": 10859448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd448c0", "tid": 35568, "ts": 10859535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43e30", "tid": 35568, "ts": 10859621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd447f0", "tid": 35568, "ts": 10859709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43c90", "tid": 35568, "ts": 10859795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45350", "tid": 35568, "ts": 10859882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43f00", "tid": 35568, "ts": 10859968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44580", "tid": 35568, "ts": 10860056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44a60", "tid": 35568, "ts": 10860142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd437b0", "tid": 35568, "ts": 10860229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45d10", "tid": 35568, "ts": 10860315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd443e0", "tid": 35568, "ts": 10860402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45c40", "tid": 35568, "ts": 10860489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd436e0", "tid": 35568, "ts": 10860576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46870", "tid": 35568, "ts": 10860662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46120", "tid": 35568, "ts": 10860749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44e70", "tid": 35568, "ts": 10860836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43a20", "tid": 35568, "ts": 10860922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43610", "tid": 35568, "ts": 10861009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd466d0", "tid": 35568, "ts": 10861096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46390", "tid": 35568, "ts": 10861182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd440a0", "tid": 35568, "ts": 10861268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44b30", "tid": 35568, "ts": 10861355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43fd0", "tid": 35568, "ts": 10861442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45900", "tid": 35568, "ts": 10861529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43950", "tid": 35568, "ts": 10861615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45760", "tid": 35568, "ts": 10861702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45eb0", "tid": 35568, "ts": 10861790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44240", "tid": 35568, "ts": 10861876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46600", "tid": 35568, "ts": 10861963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46530", "tid": 35568, "ts": 10862049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45aa0", "tid": 35568, "ts": 10862136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40890", "tid": 35568, "ts": 10862222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40620", "tid": 35568, "ts": 10862309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42d20", "tid": 35568, "ts": 10862395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd403b0", "tid": 35568, "ts": 10862483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42b80", "tid": 35568, "ts": 10862569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd429e0", "tid": 35568, "ts": 10862655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40210", "tid": 35568, "ts": 10862742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42840", "tid": 35568, "ts": 10862828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41ce0", "tid": 35568, "ts": 10862915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd413f0", "tid": 35568, "ts": 10863003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42c50", "tid": 35568, "ts": 10863090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd419a0", "tid": 35568, "ts": 10863177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42ab0", "tid": 35568, "ts": 10863263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd432d0", "tid": 35568, "ts": 10863350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43130", "tid": 35568, "ts": 10863437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40a30", "tid": 35568, "ts": 10863524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41b40", "tid": 35568, "ts": 10863611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41250", "tid": 35568, "ts": 10863697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd418d0", "tid": 35568, "ts": 10863783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd433a0", "tid": 35568, "ts": 10863871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43060", "tid": 35568, "ts": 10863957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43200", "tid": 35568, "ts": 10864043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40d70", "tid": 35568, "ts": 10864130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42290", "tid": 35568, "ts": 10864217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41660", "tid": 35568, "ts": 10864304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd425d0", "tid": 35568, "ts": 10864390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40ca0", "tid": 35568, "ts": 10864477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42430", "tid": 35568, "ts": 10864564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41a70", "tid": 35568, "ts": 10864651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40960", "tid": 35568, "ts": 10864738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41590", "tid": 35568, "ts": 10864825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41db0", "tid": 35568, "ts": 10864912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f990", "tid": 35568, "ts": 10864999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f720", "tid": 35568, "ts": 10865086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f580", "tid": 35568, "ts": 10865172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f170", "tid": 35568, "ts": 10865259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ec90", "tid": 35568, "ts": 10865346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6509d0", "tid": 35568, "ts": 10865434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650de0", "tid": 35568, "ts": 10865520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650d10", "tid": 35568, "ts": 10865608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e2d0", "tid": 35568, "ts": 10865694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6505c0", "tid": 35568, "ts": 10865780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e540", "tid": 35568, "ts": 10865867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64efd0", "tid": 35568, "ts": 10865954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f0a0", "tid": 35568, "ts": 10866040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e200", "tid": 35568, "ts": 10866127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651460", "tid": 35568, "ts": 10866213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f8c0", "tid": 35568, "ts": 10866300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f3e0", "tid": 35568, "ts": 10866387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e6e0", "tid": 35568, "ts": 10866473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e3a0", "tid": 35568, "ts": 10866559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ff40", "tid": 35568, "ts": 10866646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6512c0", "tid": 35568, "ts": 10866733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ef00", "tid": 35568, "ts": 10866819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ee30", "tid": 35568, "ts": 10866905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650760", "tid": 35568, "ts": 10866993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6511f0", "tid": 35568, "ts": 10867079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fe70", "tid": 35568, "ts": 10867166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6501b0", "tid": 35568, "ts": 10867253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f4b0", "tid": 35568, "ts": 10867340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fb30", "tid": 35568, "ts": 10867427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6500e0", "tid": 35568, "ts": 10867514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651120", "tid": 35568, "ts": 10867600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650690", "tid": 35568, "ts": 10867687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d4c0", "tid": 35568, "ts": 10867774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cfe0", "tid": 35568, "ts": 10867860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ce40", "tid": 35568, "ts": 10867947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cca0", "tid": 35568, "ts": 10868035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c6f0", "tid": 35568, "ts": 10868122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c480", "tid": 35568, "ts": 10868209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c2e0", "tid": 35568, "ts": 10868296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d590", "tid": 35568, "ts": 10868384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ec50", "tid": 35568, "ts": 10868471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68eab0", "tid": 35568, "ts": 10868557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e770", "tid": 35568, "ts": 10868643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c070", "tid": 35568, "ts": 10868730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e430", "tid": 35568, "ts": 10868816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bfa0", "tid": 35568, "ts": 10868903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e5d0", "tid": 35568, "ts": 10868990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68df50", "tid": 35568, "ts": 10869078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68da70", "tid": 35568, "ts": 10869165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ddb0", "tid": 35568, "ts": 10869251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cbd0", "tid": 35568, "ts": 10869338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e360", "tid": 35568, "ts": 10869425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cb00", "tid": 35568, "ts": 10869511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d8d0", "tid": 35568, "ts": 10869598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e020", "tid": 35568, "ts": 10869684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c620", "tid": 35568, "ts": 10869772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c7c0", "tid": 35568, "ts": 10869858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68edf0", "tid": 35568, "ts": 10869945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d180", "tid": 35568, "ts": 10870031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e290", "tid": 35568, "ts": 10870118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ed20", "tid": 35568, "ts": 10870205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68be00", "tid": 35568, "ts": 10870291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c960", "tid": 35568, "ts": 10870377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689f20", "tid": 35568, "ts": 10870465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689d80", "tid": 35568, "ts": 10870551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6898a0", "tid": 35568, "ts": 10870638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689970", "tid": 35568, "ts": 10870724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689700", "tid": 35568, "ts": 10870812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689220", "tid": 35568, "ts": 10870898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688a00", "tid": 35568, "ts": 10870984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689560", "tid": 35568, "ts": 10871070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689080", "tid": 35568, "ts": 10871158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b440", "tid": 35568, "ts": 10871244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688930", "tid": 35568, "ts": 10871330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a4d0", "tid": 35568, "ts": 10871417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bc60", "tid": 35568, "ts": 10871504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b100", "tid": 35568, "ts": 10871591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a8e0", "tid": 35568, "ts": 10871741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a740", "tid": 35568, "ts": 10871829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688ee0", "tid": 35568, "ts": 10871917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68adc0", "tid": 35568, "ts": 10872005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688e10", "tid": 35568, "ts": 10872092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688c70", "tid": 35568, "ts": 10872180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689a40", "tid": 35568, "ts": 10872268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a330", "tid": 35568, "ts": 10872356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b030", "tid": 35568, "ts": 10872485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68af60", "tid": 35568, "ts": 10872573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b850", "tid": 35568, "ts": 10872660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ac20", "tid": 35568, "ts": 10872747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688d40", "tid": 35568, "ts": 10872833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ab50", "tid": 35568, "ts": 10872919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b1d0", "tid": 35568, "ts": 10873006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a810", "tid": 35568, "ts": 10873093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689ff0", "tid": 35568, "ts": 10873179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bb90", "tid": 35568, "ts": 10873265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685fc0", "tid": 35568, "ts": 10873352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685ef0", "tid": 35568, "ts": 10873439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685bb0", "tid": 35568, "ts": 10873526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687f70", "tid": 35568, "ts": 10873612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6881e0", "tid": 35568, "ts": 10873700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685940", "tid": 35568, "ts": 10873786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687410", "tid": 35568, "ts": 10873873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688860", "tid": 35568, "ts": 10873960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687340", "tid": 35568, "ts": 10874046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687c30", "tid": 35568, "ts": 10874133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6867e0", "tid": 35568, "ts": 10874219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687270", "tid": 35568, "ts": 10874306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686640", "tid": 35568, "ts": 10874392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688450", "tid": 35568, "ts": 10874478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685a10", "tid": 35568, "ts": 10874564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6856d0", "tid": 35568, "ts": 10874650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6878f0", "tid": 35568, "ts": 10874737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688380", "tid": 35568, "ts": 10874823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6857a0", "tid": 35568, "ts": 10874909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6871a0", "tid": 35568, "ts": 10874995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687b60", "tid": 35568, "ts": 10875083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685600", "tid": 35568, "ts": 10875169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687750", "tid": 35568, "ts": 10875255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687820", "tid": 35568, "ts": 10875342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686e60", "tid": 35568, "ts": 10875429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685c80", "tid": 35568, "ts": 10875515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686cc0", "tid": 35568, "ts": 10875602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685870", "tid": 35568, "ts": 10875687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686f30", "tid": 35568, "ts": 10875774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687a90", "tid": 35568, "ts": 10875860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6874e0", "tid": 35568, "ts": 10875947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686bf0", "tid": 35568, "ts": 10876033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683650", "tid": 35568, "ts": 10876119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6834b0", "tid": 35568, "ts": 10876204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683310", "tid": 35568, "ts": 10876291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682d60", "tid": 35568, "ts": 10876376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682c90", "tid": 35568, "ts": 10876462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6827b0", "tid": 35568, "ts": 10876550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684eb0", "tid": 35568, "ts": 10876636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682540", "tid": 35568, "ts": 10876722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683a60", "tid": 35568, "ts": 10876808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684760", "tid": 35568, "ts": 10876895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684350", "tid": 35568, "ts": 10876981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682950", "tid": 35568, "ts": 10877067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684280", "tid": 35568, "ts": 10877154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683e70", "tid": 35568, "ts": 10877240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682130", "tid": 35568, "ts": 10877327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683720", "tid": 35568, "ts": 10877413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682bc0", "tid": 35568, "ts": 10877499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683b30", "tid": 35568, "ts": 10877585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684010", "tid": 35568, "ts": 10877671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685390", "tid": 35568, "ts": 10877758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6844f0", "tid": 35568, "ts": 10877845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6852c0", "tid": 35568, "ts": 10877931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6840e0", "tid": 35568, "ts": 10878018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682470", "tid": 35568, "ts": 10878104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685050", "tid": 35568, "ts": 10878191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682af0", "tid": 35568, "ts": 10878277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6849d0", "tid": 35568, "ts": 10878364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684830", "tid": 35568, "ts": 10878450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684900", "tid": 35568, "ts": 10878537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682fd0", "tid": 35568, "ts": 10878624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6841b0", "tid": 35568, "ts": 10878712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683c00", "tid": 35568, "ts": 10878798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ffe0", "tid": 35568, "ts": 10878885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fe40", "tid": 35568, "ts": 10878971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681ab0", "tid": 35568, "ts": 10879057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fbd0", "tid": 35568, "ts": 10879144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6816a0", "tid": 35568, "ts": 10879232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681020", "tid": 35568, "ts": 10879319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fa30", "tid": 35568, "ts": 10879405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6819e0", "tid": 35568, "ts": 10879492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680730", "tid": 35568, "ts": 10879578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680db0", "tid": 35568, "ts": 10879664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680ce0", "tid": 35568, "ts": 10879751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f480", "tid": 35568, "ts": 10879837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681430", "tid": 35568, "ts": 10879924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680660", "tid": 35568, "ts": 10880010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681290", "tid": 35568, "ts": 10880096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6811c0", "tid": 35568, "ts": 10880183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f960", "tid": 35568, "ts": 10880269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f2e0", "tid": 35568, "ts": 10880355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680a70", "tid": 35568, "ts": 10880442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ed30", "tid": 35568, "ts": 10880528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680250", "tid": 35568, "ts": 10880615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680800", "tid": 35568, "ts": 10880701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f3b0", "tid": 35568, "ts": 10880788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f620", "tid": 35568, "ts": 10880874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f070", "tid": 35568, "ts": 10880960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681ec0", "tid": 35568, "ts": 10881047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f890", "tid": 35568, "ts": 10881133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681b80", "tid": 35568, "ts": 10881220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f210", "tid": 35568, "ts": 10881306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ee00", "tid": 35568, "ts": 10881393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681df0", "tid": 35568, "ts": 10881480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680320", "tid": 35568, "ts": 10881566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c8a0", "tid": 35568, "ts": 10881653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c700", "tid": 35568, "ts": 10881739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c2f0", "tid": 35568, "ts": 10881826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bee0", "tid": 35568, "ts": 10881912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bc70", "tid": 35568, "ts": 10882000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ba00", "tid": 35568, "ts": 10882086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e850", "tid": 35568, "ts": 10882172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e9f0", "tid": 35568, "ts": 10882258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bad0", "tid": 35568, "ts": 10882345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67df60", "tid": 35568, "ts": 10882431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e920", "tid": 35568, "ts": 10882517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cf20", "tid": 35568, "ts": 10882604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e1d0", "tid": 35568, "ts": 10882691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ddc0", "tid": 35568, "ts": 10882778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67dc20", "tid": 35568, "ts": 10882864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e2a0", "tid": 35568, "ts": 10882950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67da80", "tid": 35568, "ts": 10883038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e780", "tid": 35568, "ts": 10883124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d670", "tid": 35568, "ts": 10883211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cbe0", "tid": 35568, "ts": 10883297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d0c0", "tid": 35568, "ts": 10883385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e440", "tid": 35568, "ts": 10883470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ca40", "tid": 35568, "ts": 10883557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d330", "tid": 35568, "ts": 10883643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d8e0", "tid": 35568, "ts": 10883729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ce50", "tid": 35568, "ts": 10883817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e510", "tid": 35568, "ts": 10883903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d400", "tid": 35568, "ts": 10883990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c630", "tid": 35568, "ts": 10884077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67eac0", "tid": 35568, "ts": 10884164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e370", "tid": 35568, "ts": 10884251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cd80", "tid": 35568, "ts": 10884337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679710", "tid": 35568, "ts": 10884424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6794a0", "tid": 35568, "ts": 10884510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679230", "tid": 35568, "ts": 10884597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678fc0", "tid": 35568, "ts": 10884683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678ae0", "tid": 35568, "ts": 10884770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679cc0", "tid": 35568, "ts": 10884856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b860", "tid": 35568, "ts": 10884943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b2b0", "tid": 35568, "ts": 10885029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b6c0", "tid": 35568, "ts": 10885116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679090", "tid": 35568, "ts": 10885202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678ef0", "tid": 35568, "ts": 10885289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a4e0", "tid": 35568, "ts": 10885377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b110", "tid": 35568, "ts": 10885463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b5f0", "tid": 35568, "ts": 10885549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ac30", "tid": 35568, "ts": 10885636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67aea0", "tid": 35568, "ts": 10885723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679570", "tid": 35568, "ts": 10885809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679bf0", "tid": 35568, "ts": 10885895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a270", "tid": 35568, "ts": 10885981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a1a0", "tid": 35568, "ts": 10886067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a820", "tid": 35568, "ts": 10886154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a000", "tid": 35568, "ts": 10886241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6787a0", "tid": 35568, "ts": 10886327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a410", "tid": 35568, "ts": 10886413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679d90", "tid": 35568, "ts": 10886500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67af70", "tid": 35568, "ts": 10886586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679980", "tid": 35568, "ts": 10886673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a750", "tid": 35568, "ts": 10886759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678600", "tid": 35568, "ts": 10886845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67add0", "tid": 35568, "ts": 10886932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a340", "tid": 35568, "ts": 10887018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679a50", "tid": 35568, "ts": 10887104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6764b0", "tid": 35568, "ts": 10887192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676170", "tid": 35568, "ts": 10887315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675fd0", "tid": 35568, "ts": 10887440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675e30", "tid": 35568, "ts": 10887538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675610", "tid": 35568, "ts": 10887625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675540", "tid": 35568, "ts": 10887711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675470", "tid": 35568, "ts": 10887797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678390", "tid": 35568, "ts": 10887884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675bc0", "tid": 35568, "ts": 10887971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677de0", "tid": 35568, "ts": 10888056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675af0", "tid": 35568, "ts": 10888144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677aa0", "tid": 35568, "ts": 10888231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677830", "tid": 35568, "ts": 10888318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676990", "tid": 35568, "ts": 10888405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675950", "tid": 35568, "ts": 10888492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676580", "tid": 35568, "ts": 10888577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677d10", "tid": 35568, "ts": 10888664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6775c0", "tid": 35568, "ts": 10888750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6770e0", "tid": 35568, "ts": 10888837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676c00", "tid": 35568, "ts": 10888924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676f40", "tid": 35568, "ts": 10889011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676720", "tid": 35568, "ts": 10889098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6781f0", "tid": 35568, "ts": 10889185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676650", "tid": 35568, "ts": 10889271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677f80", "tid": 35568, "ts": 10889358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677280", "tid": 35568, "ts": 10889445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676da0", "tid": 35568, "ts": 10889532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678050", "tid": 35568, "ts": 10889618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677c40", "tid": 35568, "ts": 10889705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677900", "tid": 35568, "ts": 10889790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6771b0", "tid": 35568, "ts": 10889877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676e70", "tid": 35568, "ts": 10889964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672ca0", "tid": 35568, "ts": 10890051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672a30", "tid": 35568, "ts": 10890138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672140", "tid": 35568, "ts": 10890224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671ed0", "tid": 35568, "ts": 10890310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674ab0", "tid": 35568, "ts": 10890397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6727c0", "tid": 35568, "ts": 10890483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674df0", "tid": 35568, "ts": 10890570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674500", "tid": 35568, "ts": 10890656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6741c0", "tid": 35568, "ts": 10890743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674360", "tid": 35568, "ts": 10890829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673ce0", "tid": 35568, "ts": 10890916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673c10", "tid": 35568, "ts": 10891002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673590", "tid": 35568, "ts": 10891089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6734c0", "tid": 35568, "ts": 10891176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674770", "tid": 35568, "ts": 10891262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673250", "tid": 35568, "ts": 10891348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6746a0", "tid": 35568, "ts": 10891435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673180", "tid": 35568, "ts": 10891522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673a70", "tid": 35568, "ts": 10891608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674840", "tid": 35568, "ts": 10891695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673e80", "tid": 35568, "ts": 10891782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672480", "tid": 35568, "ts": 10891868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672f10", "tid": 35568, "ts": 10891954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6723b0", "tid": 35568, "ts": 10892040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673660", "tid": 35568, "ts": 10892127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671e00", "tid": 35568, "ts": 10892213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673730", "tid": 35568, "ts": 10892299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672620", "tid": 35568, "ts": 10892386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673800", "tid": 35568, "ts": 10892473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6730b0", "tid": 35568, "ts": 10892560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672e40", "tid": 35568, "ts": 10892646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6739a0", "tid": 35568, "ts": 10892733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fb10", "tid": 35568, "ts": 10892820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f700", "tid": 35568, "ts": 10892906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f560", "tid": 35568, "ts": 10892992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f080", "tid": 35568, "ts": 10893078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66eba0", "tid": 35568, "ts": 10893164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6716b0", "tid": 35568, "ts": 10893250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6715e0", "tid": 35568, "ts": 10893337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671510", "tid": 35568, "ts": 10893423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ea00", "tid": 35568, "ts": 10893509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66efb0", "tid": 35568, "ts": 10893596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6709b0", "tid": 35568, "ts": 10893682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fd80", "tid": 35568, "ts": 10893769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6708e0", "tid": 35568, "ts": 10893856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671440", "tid": 35568, "ts": 10893943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670670", "tid": 35568, "ts": 10894030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670740", "tid": 35568, "ts": 10894115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670400", "tid": 35568, "ts": 10894201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671370", "tid": 35568, "ts": 10894288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671b90", "tid": 35568, "ts": 10894375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f490", "tid": 35568, "ts": 10894461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fa40", "tid": 35568, "ts": 10894548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ed40", "tid": 35568, "ts": 10894658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671c60", "tid": 35568, "ts": 10894745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671920", "tid": 35568, "ts": 10894832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6711d0", "tid": 35568, "ts": 10894919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6712a0", "tid": 35568, "ts": 10895005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671ac0", "tid": 35568, "ts": 10895091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fcb0", "tid": 35568, "ts": 10895178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670260", "tid": 35568, "ts": 10895265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670190", "tid": 35568, "ts": 10895351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670c20", "tid": 35568, "ts": 10895438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fff0", "tid": 35568, "ts": 10895525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bae0", "tid": 35568, "ts": 10895612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c4a0", "tid": 35568, "ts": 10895698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66dea0", "tid": 35568, "ts": 10895785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d410", "tid": 35568, "ts": 10895871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ba10", "tid": 35568, "ts": 10895959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66dd00", "tid": 35568, "ts": 10896046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c8b0", "tid": 35568, "ts": 10896133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d0d0", "tid": 35568, "ts": 10896219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c300", "tid": 35568, "ts": 10896306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66db60", "tid": 35568, "ts": 10896393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bef0", "tid": 35568, "ts": 10896479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e6c0", "tid": 35568, "ts": 10896565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cf30", "tid": 35568, "ts": 10896651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cbf0", "tid": 35568, "ts": 10896738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c230", "tid": 35568, "ts": 10896825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ca50", "tid": 35568, "ts": 10896911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e450", "tid": 35568, "ts": 10896998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b7a0", "tid": 35568, "ts": 10897084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b600", "tid": 35568, "ts": 10897171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d750", "tid": 35568, "ts": 10897257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ccc0", "tid": 35568, "ts": 10897345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b6d0", "tid": 35568, "ts": 10897431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d5b0", "tid": 35568, "ts": 10897518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d680", "tid": 35568, "ts": 10897604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d4e0", "tid": 35568, "ts": 10897691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d8f0", "tid": 35568, "ts": 10897778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c090", "tid": 35568, "ts": 10897865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c3d0", "tid": 35568, "ts": 10897951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c980", "tid": 35568, "ts": 10898037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bbb0", "tid": 35568, "ts": 10898123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b530", "tid": 35568, "ts": 10898210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d820", "tid": 35568, "ts": 10898296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668d60", "tid": 35568, "ts": 10898382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6687b0", "tid": 35568, "ts": 10898468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668610", "tid": 35568, "ts": 10898555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669310", "tid": 35568, "ts": 10898641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66af80", "tid": 35568, "ts": 10898729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a900", "tid": 35568, "ts": 10898815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a010", "tid": 35568, "ts": 10898902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b1f0", "tid": 35568, "ts": 10898988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ac40", "tid": 35568, "ts": 10899074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669f40", "tid": 35568, "ts": 10899161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669cd0", "tid": 35568, "ts": 10899248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669c00", "tid": 35568, "ts": 10899334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a690", "tid": 35568, "ts": 10899421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668470", "tid": 35568, "ts": 10899508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6690a0", "tid": 35568, "ts": 10899594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6694b0", "tid": 35568, "ts": 10899681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668bc0", "tid": 35568, "ts": 10899768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6682d0", "tid": 35568, "ts": 10899854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669240", "tid": 35568, "ts": 10899940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a0e0", "tid": 35568, "ts": 10900027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ab70", "tid": 35568, "ts": 10900115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668880", "tid": 35568, "ts": 10900202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6697f0", "tid": 35568, "ts": 10900288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669a60", "tid": 35568, "ts": 10900374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a350", "tid": 35568, "ts": 10900461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ad10", "tid": 35568, "ts": 10900548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a280", "tid": 35568, "ts": 10900634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669720", "tid": 35568, "ts": 10900721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a5c0", "tid": 35568, "ts": 10900808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668130", "tid": 35568, "ts": 10900894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6683a0", "tid": 35568, "ts": 10900981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a420", "tid": 35568, "ts": 10901068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666a70", "tid": 35568, "ts": 10901154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665b00", "tid": 35568, "ts": 10901241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665960", "tid": 35568, "ts": 10901327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665d70", "tid": 35568, "ts": 10901414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666590", "tid": 35568, "ts": 10901502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665620", "tid": 35568, "ts": 10901588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665480", "tid": 35568, "ts": 10901674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6664c0", "tid": 35568, "ts": 10901760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664ed0", "tid": 35568, "ts": 10901848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667c50", "tid": 35568, "ts": 10901934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667ab0", "tid": 35568, "ts": 10902021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666660", "tid": 35568, "ts": 10902107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667500", "tid": 35568, "ts": 10902194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665210", "tid": 35568, "ts": 10902281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667360", "tid": 35568, "ts": 10902368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668060", "tid": 35568, "ts": 10902454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665fe0", "tid": 35568, "ts": 10902540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665ca0", "tid": 35568, "ts": 10902628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6657c0", "tid": 35568, "ts": 10902714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667770", "tid": 35568, "ts": 10902801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667430", "tid": 35568, "ts": 10902889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665bd0", "tid": 35568, "ts": 10903013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665070", "tid": 35568, "ts": 10903100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666250", "tid": 35568, "ts": 10903187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666ce0", "tid": 35568, "ts": 10903274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666e80", "tid": 35568, "ts": 10903360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6668d0", "tid": 35568, "ts": 10903446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666db0", "tid": 35568, "ts": 10903532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664d30", "tid": 35568, "ts": 10903619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6653b0", "tid": 35568, "ts": 10903706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667840", "tid": 35568, "ts": 10903792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666b40", "tid": 35568, "ts": 10903878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664b90", "tid": 35568, "ts": 10903964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664850", "tid": 35568, "ts": 10904051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664510", "tid": 35568, "ts": 10904137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663400", "tid": 35568, "ts": 10904223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663260", "tid": 35568, "ts": 10904312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662970", "tid": 35568, "ts": 10904397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663190", "tid": 35568, "ts": 10904483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661ad0", "tid": 35568, "ts": 10904569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661a00", "tid": 35568, "ts": 10904656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6646b0", "tid": 35568, "ts": 10904743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662630", "tid": 35568, "ts": 10904829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664030", "tid": 35568, "ts": 10904916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6630c0", "tid": 35568, "ts": 10905002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662560", "tid": 35568, "ts": 10905089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662ff0", "tid": 35568, "ts": 10905175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661930", "tid": 35568, "ts": 10905262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662f20", "tid": 35568, "ts": 10905349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663670", "tid": 35568, "ts": 10905436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6622f0", "tid": 35568, "ts": 10905523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662e50", "tid": 35568, "ts": 10905610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662150", "tid": 35568, "ts": 10905697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661ba0", "tid": 35568, "ts": 10905784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662d80", "tid": 35568, "ts": 10905870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661e10", "tid": 35568, "ts": 10905957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664ac0", "tid": 35568, "ts": 10906043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661d40", "tid": 35568, "ts": 10906129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661ee0", "tid": 35568, "ts": 10906217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664c60", "tid": 35568, "ts": 10906303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664920", "tid": 35568, "ts": 10906390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6645e0", "tid": 35568, "ts": 10906476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662a40", "tid": 35568, "ts": 10906562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6639b0", "tid": 35568, "ts": 10906649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fb20", "tid": 35568, "ts": 10906736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f7e0", "tid": 35568, "ts": 10906822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661380", "tid": 35568, "ts": 10906908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f300", "tid": 35568, "ts": 10906996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6612b0", "tid": 35568, "ts": 10907083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661040", "tid": 35568, "ts": 10907170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f090", "tid": 35568, "ts": 10907257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fcc0", "tid": 35568, "ts": 10907386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661860", "tid": 35568, "ts": 10907475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660dd0", "tid": 35568, "ts": 10907562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65efc0", "tid": 35568, "ts": 10907648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e7a0", "tid": 35568, "ts": 10907735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660d00", "tid": 35568, "ts": 10907822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661450", "tid": 35568, "ts": 10907907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f980", "tid": 35568, "ts": 10907994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e6d0", "tid": 35568, "ts": 10908080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65eae0", "tid": 35568, "ts": 10908167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660b60", "tid": 35568, "ts": 10908253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661790", "tid": 35568, "ts": 10908340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f640", "tid": 35568, "ts": 10908426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6611e0", "tid": 35568, "ts": 10908513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fd90", "tid": 35568, "ts": 10908599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65eef0", "tid": 35568, "ts": 10908686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6601a0", "tid": 35568, "ts": 10908772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6609c0", "tid": 35568, "ts": 10908858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fbf0", "tid": 35568, "ts": 10908945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ed50", "tid": 35568, "ts": 10909031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660680", "tid": 35568, "ts": 10909118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ee20", "tid": 35568, "ts": 10909205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f8b0", "tid": 35568, "ts": 10909292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660a90", "tid": 35568, "ts": 10909378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f230", "tid": 35568, "ts": 10909465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e1f0", "tid": 35568, "ts": 10909552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65dd10", "tid": 35568, "ts": 10909639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65db70", "tid": 35568, "ts": 10909725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e120", "tid": 35568, "ts": 10909812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cf40", "tid": 35568, "ts": 10909899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d760", "tid": 35568, "ts": 10909985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c990", "tid": 35568, "ts": 10910071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c7f0", "tid": 35568, "ts": 10910158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c580", "tid": 35568, "ts": 10910244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cda0", "tid": 35568, "ts": 10910331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c3e0", "tid": 35568, "ts": 10910417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c170", "tid": 35568, "ts": 10910504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d5c0", "tid": 35568, "ts": 10910591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65deb0", "tid": 35568, "ts": 10910678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bf00", "tid": 35568, "ts": 10910764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b7b0", "tid": 35568, "ts": 10910850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b6e0", "tid": 35568, "ts": 10910938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c4b0", "tid": 35568, "ts": 10911024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b610", "tid": 35568, "ts": 10911110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65be30", "tid": 35568, "ts": 10911197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b200", "tid": 35568, "ts": 10911284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ba20", "tid": 35568, "ts": 10911370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d280", "tid": 35568, "ts": 10911457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d900", "tid": 35568, "ts": 10911543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d1b0", "tid": 35568, "ts": 10911630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bbc0", "tid": 35568, "ts": 10911716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d0e0", "tid": 35568, "ts": 10911804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d420", "tid": 35568, "ts": 10911890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b130", "tid": 35568, "ts": 10911977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c240", "tid": 35568, "ts": 10912063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e460", "tid": 35568, "ts": 10912150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c310", "tid": 35568, "ts": 10912236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6586f0", "tid": 35568, "ts": 10912322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658550", "tid": 35568, "ts": 10912409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6583b0", "tid": 35568, "ts": 10912495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657fa0", "tid": 35568, "ts": 10912582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658b00", "tid": 35568, "ts": 10912669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658a30", "tid": 35568, "ts": 10912755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a9e0", "tid": 35568, "ts": 10912842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6587c0", "tid": 35568, "ts": 10912928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b060", "tid": 35568, "ts": 10913014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a0f0", "tid": 35568, "ts": 10913101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659db0", "tid": 35568, "ts": 10913187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a770", "tid": 35568, "ts": 10913274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6598d0", "tid": 35568, "ts": 10913360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a500", "tid": 35568, "ts": 10913446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6582e0", "tid": 35568, "ts": 10913532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659660", "tid": 35568, "ts": 10913618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657ed0", "tid": 35568, "ts": 10913705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a6a0", "tid": 35568, "ts": 10913792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a430", "tid": 35568, "ts": 10913878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6594c0", "tid": 35568, "ts": 10913965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a5d0", "tid": 35568, "ts": 10914052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658d70", "tid": 35568, "ts": 10914138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659180", "tid": 35568, "ts": 10914225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659590", "tid": 35568, "ts": 10914311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6599a0", "tid": 35568, "ts": 10914397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657d30", "tid": 35568, "ts": 10914484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659800", "tid": 35568, "ts": 10914571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659a70", "tid": 35568, "ts": 10914657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6590b0", "tid": 35568, "ts": 10914744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ad20", "tid": 35568, "ts": 10914830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658fe0", "tid": 35568, "ts": 10914917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658f10", "tid": 35568, "ts": 10915004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655080", "tid": 35568, "ts": 10915091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654ba0", "tid": 35568, "ts": 10915177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654930", "tid": 35568, "ts": 10915264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655560", "tid": 35568, "ts": 10915350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657850", "tid": 35568, "ts": 10915437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6576b0", "tid": 35568, "ts": 10915523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656f60", "tid": 35568, "ts": 10915610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655490", "tid": 35568, "ts": 10915697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657b90", "tid": 35568, "ts": 10915784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656260", "tid": 35568, "ts": 10915871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656190", "tid": 35568, "ts": 10915958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654e10", "tid": 35568, "ts": 10916044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656670", "tid": 35568, "ts": 10916131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6560c0", "tid": 35568, "ts": 10916217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6575e0", "tid": 35568, "ts": 10916304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657440", "tid": 35568, "ts": 10916391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6558a0", "tid": 35568, "ts": 10916478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655630", "tid": 35568, "ts": 10916564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6568e0", "tid": 35568, "ts": 10916651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655f20", "tid": 35568, "ts": 10916737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655ff0", "tid": 35568, "ts": 10916823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655d80", "tid": 35568, "ts": 10916910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655220", "tid": 35568, "ts": 10916996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657920", "tid": 35568, "ts": 10917083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655cb0", "tid": 35568, "ts": 10917169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655700", "tid": 35568, "ts": 10917256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656b50", "tid": 35568, "ts": 10917342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654c70", "tid": 35568, "ts": 10917429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655b10", "tid": 35568, "ts": 10917516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656810", "tid": 35568, "ts": 10917603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656a80", "tid": 35568, "ts": 10917690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656c20", "tid": 35568, "ts": 10917776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652160", "tid": 35568, "ts": 10917863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651ef0", "tid": 35568, "ts": 10917949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6517a0", "tid": 35568, "ts": 10918036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653f70", "tid": 35568, "ts": 10918122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653c30", "tid": 35568, "ts": 10918210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653750", "tid": 35568, "ts": 10918296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6535b0", "tid": 35568, "ts": 10918383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6516d0", "tid": 35568, "ts": 10918469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653dd0", "tid": 35568, "ts": 10918604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653340", "tid": 35568, "ts": 10918717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652d90", "tid": 35568, "ts": 10918817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6528b0", "tid": 35568, "ts": 10918915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652300", "tid": 35568, "ts": 10919002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652570", "tid": 35568, "ts": 10919088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652230", "tid": 35568, "ts": 10919175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652980", "tid": 35568, "ts": 10919261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6534e0", "tid": 35568, "ts": 10919347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653000", "tid": 35568, "ts": 10919433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6545f0", "tid": 35568, "ts": 10919520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651bb0", "tid": 35568, "ts": 10919606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654380", "tid": 35568, "ts": 10919695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651ae0", "tid": 35568, "ts": 10919781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653410", "tid": 35568, "ts": 10919867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6542b0", "tid": 35568, "ts": 10919954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651940", "tid": 35568, "ts": 10920040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653820", "tid": 35568, "ts": 10920126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651a10", "tid": 35568, "ts": 10920212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654520", "tid": 35568, "ts": 10920299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652a50", "tid": 35568, "ts": 10920386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6523d0", "tid": 35568, "ts": 10920472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652710", "tid": 35568, "ts": 10920559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6527e0", "tid": 35568, "ts": 10920645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b505d0", "tid": 35568, "ts": 10920731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e6f0", "tid": 35568, "ts": 10920819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e210", "tid": 35568, "ts": 10920906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e070", "tid": 35568, "ts": 10920992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50500", "tid": 35568, "ts": 10921080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50020", "tid": 35568, "ts": 10921166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50c50", "tid": 35568, "ts": 10921253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f320", "tid": 35568, "ts": 10921338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ef10", "tid": 35568, "ts": 10921425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fc10", "tid": 35568, "ts": 10921511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dd30", "tid": 35568, "ts": 10921597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4eb00", "tid": 35568, "ts": 10921684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f180", "tid": 35568, "ts": 10921771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50df0", "tid": 35568, "ts": 10921856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f3f0", "tid": 35568, "ts": 10921943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b509e0", "tid": 35568, "ts": 10922030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e480", "tid": 35568, "ts": 10922116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f800", "tid": 35568, "ts": 10922202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f730", "tid": 35568, "ts": 10922288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4eca0", "tid": 35568, "ts": 10922375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e140", "tid": 35568, "ts": 10922462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fa70", "tid": 35568, "ts": 10922548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50910", "tid": 35568, "ts": 10922635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50430", "tid": 35568, "ts": 10922721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b506a0", "tid": 35568, "ts": 10922807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ee40", "tid": 35568, "ts": 10922894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ded0", "tid": 35568, "ts": 10922981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fdb0", "tid": 35568, "ts": 10923067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e960", "tid": 35568, "ts": 10923154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50840", "tid": 35568, "ts": 10923239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f8d0", "tid": 35568, "ts": 10923326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b080", "tid": 35568, "ts": 10923413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a930", "tid": 35568, "ts": 10923500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4db90", "tid": 35568, "ts": 10923588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dac0", "tid": 35568, "ts": 10923674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ae10", "tid": 35568, "ts": 10923761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cb50", "tid": 35568, "ts": 10923848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ca80", "tid": 35568, "ts": 10923934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c9b0", "tid": 35568, "ts": 10924021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d1d0", "tid": 35568, "ts": 10924107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b7d0", "tid": 35568, "ts": 10924194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aee0", "tid": 35568, "ts": 10924280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d100", "tid": 35568, "ts": 10924366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d370", "tid": 35568, "ts": 10924453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d2a0", "tid": 35568, "ts": 10924539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bff0", "tid": 35568, "ts": 10924626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bf20", "tid": 35568, "ts": 10924713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b3c0", "tid": 35568, "ts": 10924799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c740", "tid": 35568, "ts": 10924885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b700", "tid": 35568, "ts": 10924971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c670", "tid": 35568, "ts": 10925057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c5a0", "tid": 35568, "ts": 10925144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d030", "tid": 35568, "ts": 10925230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bcb0", "tid": 35568, "ts": 10925317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bbe0", "tid": 35568, "ts": 10925404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cf60", "tid": 35568, "ts": 10925490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b560", "tid": 35568, "ts": 10925577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bb10", "tid": 35568, "ts": 10925663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ce90", "tid": 35568, "ts": 10925750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4bd80", "tid": 35568, "ts": 10925836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b150", "tid": 35568, "ts": 10925923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4be50", "tid": 35568, "ts": 10926010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b220", "tid": 35568, "ts": 10926096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48160", "tid": 35568, "ts": 10926182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a860", "tid": 35568, "ts": 10926270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47530", "tid": 35568, "ts": 10926356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47fc0", "tid": 35568, "ts": 10926443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a380", "tid": 35568, "ts": 10926530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48980", "tid": 35568, "ts": 10926617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49dd0", "tid": 35568, "ts": 10926704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a2b0", "tid": 35568, "ts": 10926791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49b60", "tid": 35568, "ts": 10926877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47e20", "tid": 35568, "ts": 10926964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b498f0", "tid": 35568, "ts": 10927050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b477a0", "tid": 35568, "ts": 10927137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48cc0", "tid": 35568, "ts": 10927224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b495b0", "tid": 35568, "ts": 10927310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48710", "tid": 35568, "ts": 10927397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b490d0", "tid": 35568, "ts": 10927483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47a10", "tid": 35568, "ts": 10927569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49340", "tid": 35568, "ts": 10927656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b494e0", "tid": 35568, "ts": 10927743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49f70", "tid": 35568, "ts": 10927830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a110", "tid": 35568, "ts": 10927916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b487e0", "tid": 35568, "ts": 10928003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48bf0", "tid": 35568, "ts": 10928090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47ef0", "tid": 35568, "ts": 10928177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48230", "tid": 35568, "ts": 10928263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a1e0", "tid": 35568, "ts": 10928349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47c80", "tid": 35568, "ts": 10928436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49750", "tid": 35568, "ts": 10928522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48570", "tid": 35568, "ts": 10928609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b491a0", "tid": 35568, "ts": 10928695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48a50", "tid": 35568, "ts": 10928781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49410", "tid": 35568, "ts": 10928868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b453e0", "tid": 35568, "ts": 10928955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45240", "tid": 35568, "ts": 10929042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b450a0", "tid": 35568, "ts": 10929129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44f00", "tid": 35568, "ts": 10929215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46de0", "tid": 35568, "ts": 10929301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44e30", "tid": 35568, "ts": 10929388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46c40", "tid": 35568, "ts": 10929475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44c90", "tid": 35568, "ts": 10929561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46830", "tid": 35568, "ts": 10929649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46690", "tid": 35568, "ts": 10929736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44a20", "tid": 35568, "ts": 10929822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46350", "tid": 35568, "ts": 10929908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44880", "tid": 35568, "ts": 10929995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46f80", "tid": 35568, "ts": 10930082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b464f0", "tid": 35568, "ts": 10930168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44540", "tid": 35568, "ts": 10930255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b454b0", "tid": 35568, "ts": 10930340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b442d0", "tid": 35568, "ts": 10930428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45e70", "tid": 35568, "ts": 10930515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44bc0", "tid": 35568, "ts": 10930601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47390", "tid": 35568, "ts": 10930688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45990", "tid": 35568, "ts": 10930775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44200", "tid": 35568, "ts": 10930862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46aa0", "tid": 35568, "ts": 10930948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b471f0", "tid": 35568, "ts": 10931035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b458c0", "tid": 35568, "ts": 10931121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44130", "tid": 35568, "ts": 10931208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45da0", "tid": 35568, "ts": 10931294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46280", "tid": 35568, "ts": 10931380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45c00", "tid": 35568, "ts": 10931467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b472c0", "tid": 35568, "ts": 10931553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45b30", "tid": 35568, "ts": 10931640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41bd0", "tid": 35568, "ts": 10931727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43b80", "tid": 35568, "ts": 10931813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41890", "tid": 35568, "ts": 10931899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b439e0", "tid": 35568, "ts": 10931985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43840", "tid": 35568, "ts": 10932072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b436a0", "tid": 35568, "ts": 10932159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41d70", "tid": 35568, "ts": 10932245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42590", "tid": 35568, "ts": 10932332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41ca0", "tid": 35568, "ts": 10932419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42a70", "tid": 35568, "ts": 10932505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41620", "tid": 35568, "ts": 10932592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40ed0", "tid": 35568, "ts": 10932679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43d20", "tid": 35568, "ts": 10932766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43430", "tid": 35568, "ts": 10932853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b412e0", "tid": 35568, "ts": 10932939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b429a0", "tid": 35568, "ts": 10933026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b431c0", "tid": 35568, "ts": 10933112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41e40", "tid": 35568, "ts": 10933198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41550", "tid": 35568, "ts": 10933284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42e80", "tid": 35568, "ts": 10933371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43020", "tid": 35568, "ts": 10933458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44060", "tid": 35568, "ts": 10933545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b413b0", "tid": 35568, "ts": 10933632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41fe0", "tid": 35568, "ts": 10933719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41210", "tid": 35568, "ts": 10933805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41140", "tid": 35568, "ts": 10933892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b423f0", "tid": 35568, "ts": 10933978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41a30", "tid": 35568, "ts": 10934066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42250", "tid": 35568, "ts": 10934174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b420b0", "tid": 35568, "ts": 10934277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42660", "tid": 35568, "ts": 10934363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42c10", "tid": 35568, "ts": 10934450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e630", "tid": 35568, "ts": 10934536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f740", "tid": 35568, "ts": 10934624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e560", "tid": 35568, "ts": 10934711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40c60", "tid": 35568, "ts": 10934797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40100", "tid": 35568, "ts": 10934883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f4d0", "tid": 35568, "ts": 10934970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f810", "tid": 35568, "ts": 10935057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ff60", "tid": 35568, "ts": 10935143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f5a0", "tid": 35568, "ts": 10935229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e2f0", "tid": 35568, "ts": 10935316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f330", "tid": 35568, "ts": 10935402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fcf0", "tid": 35568, "ts": 10935489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e220", "tid": 35568, "ts": 10935574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3da00", "tid": 35568, "ts": 10935661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dad0", "tid": 35568, "ts": 10935748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f190", "tid": 35568, "ts": 10935834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e970", "tid": 35568, "ts": 10935922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e080", "tid": 35568, "ts": 10936008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fc20", "tid": 35568, "ts": 10936094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f260", "tid": 35568, "ts": 10936181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e8a0", "tid": 35568, "ts": 10936267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40850", "tid": 35568, "ts": 10936354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ecb0", "tid": 35568, "ts": 10936440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40440", "tid": 35568, "ts": 10936527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f0c0", "tid": 35568, "ts": 10936613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e700", "tid": 35568, "ts": 10936699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e7d0", "tid": 35568, "ts": 10936786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dfb0", "tid": 35568, "ts": 10936872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e150", "tid": 35568, "ts": 10936959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dee0", "tid": 35568, "ts": 10937046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dba0", "tid": 35568, "ts": 10937132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f9b0", "tid": 35568, "ts": 10937217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d860", "tid": 35568, "ts": 10937303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d6c0", "tid": 35568, "ts": 10937390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d1e0", "tid": 35568, "ts": 10937477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ac80", "tid": 35568, "ts": 10937564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3abb0", "tid": 35568, "ts": 10937650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bcc0", "tid": 35568, "ts": 10937738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bb20", "tid": 35568, "ts": 10937824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d110", "tid": 35568, "ts": 10937910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b570", "tid": 35568, "ts": 10937997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cb60", "tid": 35568, "ts": 10938084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cf70", "tid": 35568, "ts": 10938171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d520", "tid": 35568, "ts": 10938258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bf30", "tid": 35568, "ts": 10938345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b160", "tid": 35568, "ts": 10938431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d380", "tid": 35568, "ts": 10938517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3be60", "tid": 35568, "ts": 10938604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b090", "tid": 35568, "ts": 10938690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3afc0", "tid": 35568, "ts": 10938778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c750", "tid": 35568, "ts": 10938864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bd90", "tid": 35568, "ts": 10938950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c1a0", "tid": 35568, "ts": 10939036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a600", "tid": 35568, "ts": 10939124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3aef0", "tid": 35568, "ts": 10939212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a530", "tid": 35568, "ts": 10939299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b640", "tid": 35568, "ts": 10939386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cea0", "tid": 35568, "ts": 10939473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b230", "tid": 35568, "ts": 10939560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b300", "tid": 35568, "ts": 10939646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c270", "tid": 35568, "ts": 10939732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a940", "tid": 35568, "ts": 10939819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ba50", "tid": 35568, "ts": 10939906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3aa10", "tid": 35568, "ts": 10939992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37c90", "tid": 35568, "ts": 10940079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b373a0", "tid": 35568, "ts": 10940166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b399d0", "tid": 35568, "ts": 10940252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39900", "tid": 35568, "ts": 10940340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39b70", "tid": 35568, "ts": 10940427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b387f0", "tid": 35568, "ts": 10940515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39690", "tid": 35568, "ts": 10940601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39aa0", "tid": 35568, "ts": 10940688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a050", "tid": 35568, "ts": 10940775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38240", "tid": 35568, "ts": 10940862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39420", "tid": 35568, "ts": 10940948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a460", "tid": 35568, "ts": 10941035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b390e0", "tid": 35568, "ts": 10941122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38580", "tid": 35568, "ts": 10941208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a1f0", "tid": 35568, "ts": 10941295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b383e0", "tid": 35568, "ts": 10941382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39eb0", "tid": 35568, "ts": 10941468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39280", "tid": 35568, "ts": 10941555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38170", "tid": 35568, "ts": 10941642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37f00", "tid": 35568, "ts": 10941729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b388c0", "tid": 35568, "ts": 10941816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38f40", "tid": 35568, "ts": 10941904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38da0", "tid": 35568, "ts": 10941991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37e30", "tid": 35568, "ts": 10942079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37af0", "tid": 35568, "ts": 10942166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37470", "tid": 35568, "ts": 10942294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a120", "tid": 35568, "ts": 10942384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37fd0", "tid": 35568, "ts": 10942471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37a20", "tid": 35568, "ts": 10942557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38a60", "tid": 35568, "ts": 10942644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37950", "tid": 35568, "ts": 10942731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38990", "tid": 35568, "ts": 10942817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b354c0", "tid": 35568, "ts": 10942902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b353f0", "tid": 35568, "ts": 10942989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36d20", "tid": 35568, "ts": 10943076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34e40", "tid": 35568, "ts": 10943163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36b80", "tid": 35568, "ts": 10943249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34bd0", "tid": 35568, "ts": 10943337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34a30", "tid": 35568, "ts": 10943423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b369e0", "tid": 35568, "ts": 10943510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b343b0", "tid": 35568, "ts": 10943596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36840", "tid": 35568, "ts": 10943683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36770", "tid": 35568, "ts": 10943769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b365d0", "tid": 35568, "ts": 10943856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35a70", "tid": 35568, "ts": 10943943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b350b0", "tid": 35568, "ts": 10944030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33e00", "tid": 35568, "ts": 10944116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35e80", "tid": 35568, "ts": 10944202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35b40", "tid": 35568, "ts": 10944288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35660", "tid": 35568, "ts": 10944375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34b00", "tid": 35568, "ts": 10944462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34550", "tid": 35568, "ts": 10944548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b361c0", "tid": 35568, "ts": 10944635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b346f0", "tid": 35568, "ts": 10944722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37060", "tid": 35568, "ts": 10944809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b342e0", "tid": 35568, "ts": 10944895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b359a0", "tid": 35568, "ts": 10944982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b360f0", "tid": 35568, "ts": 10945069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36df0", "tid": 35568, "ts": 10945156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34210", "tid": 35568, "ts": 10945242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34480", "tid": 35568, "ts": 10945328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35800", "tid": 35568, "ts": 10945415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33fa0", "tid": 35568, "ts": 10945501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34d70", "tid": 35568, "ts": 10945587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33ac0", "tid": 35568, "ts": 10945674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33850", "tid": 35568, "ts": 10945760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33780", "tid": 35568, "ts": 10945847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30ad0", "tid": 35568, "ts": 10945933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32f60", "tid": 35568, "ts": 10946019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b320c0", "tid": 35568, "ts": 10946107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b339f0", "tid": 35568, "ts": 10946193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31630", "tid": 35568, "ts": 10946280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31970", "tid": 35568, "ts": 10946367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b313c0", "tid": 35568, "ts": 10946454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b318a0", "tid": 35568, "ts": 10946539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33b90", "tid": 35568, "ts": 10946626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b328e0", "tid": 35568, "ts": 10946712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32e90", "tid": 35568, "ts": 10946799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32400", "tid": 35568, "ts": 10946886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32c20", "tid": 35568, "ts": 10946972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30d40", "tid": 35568, "ts": 10947059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31700", "tid": 35568, "ts": 10947144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30ba0", "tid": 35568, "ts": 10947231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31be0", "tid": 35568, "ts": 10947318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b329b0", "tid": 35568, "ts": 10947405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b335e0", "tid": 35568, "ts": 10947492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31490", "tid": 35568, "ts": 10947578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33c60", "tid": 35568, "ts": 10947665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31150", "tid": 35568, "ts": 10947751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31560", "tid": 35568, "ts": 10947838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31b10", "tid": 35568, "ts": 10947925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33440", "tid": 35568, "ts": 10948011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32330", "tid": 35568, "ts": 10948097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31080", "tid": 35568, "ts": 10948184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30c70", "tid": 35568, "ts": 10948271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30a00", "tid": 35568, "ts": 10948357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dfc0", "tid": 35568, "ts": 10948443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d7a0", "tid": 35568, "ts": 10948530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30110", "tid": 35568, "ts": 10948616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ff70", "tid": 35568, "ts": 10948703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fea0", "tid": 35568, "ts": 10948789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fdd0", "tid": 35568, "ts": 10948875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fb60", "tid": 35568, "ts": 10948961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fa90", "tid": 35568, "ts": 10949048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f9c0", "tid": 35568, "ts": 10949134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dbb0", "tid": 35568, "ts": 10949221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e300", "tid": 35568, "ts": 10949308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dc80", "tid": 35568, "ts": 10949394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30520", "tid": 35568, "ts": 10949481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b302b0", "tid": 35568, "ts": 10949567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f0d0", "tid": 35568, "ts": 10949654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f340", "tid": 35568, "ts": 10949741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ebf0", "tid": 35568, "ts": 10949866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2de20", "tid": 35568, "ts": 10949953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2eb20", "tid": 35568, "ts": 10950041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b301e0", "tid": 35568, "ts": 10950127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30790", "tid": 35568, "ts": 10950214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e160", "tid": 35568, "ts": 10950301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d940", "tid": 35568, "ts": 10950388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f5b0", "tid": 35568, "ts": 10950475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f1a0", "tid": 35568, "ts": 10950562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e710", "tid": 35568, "ts": 10950648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e570", "tid": 35568, "ts": 10950735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30450", "tid": 35568, "ts": 10950821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ef30", "tid": 35568, "ts": 10950907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dae0", "tid": 35568, "ts": 10950994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e640", "tid": 35568, "ts": 10951080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d870", "tid": 35568, "ts": 10951166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b8c0", "tid": 35568, "ts": 10951251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ac90", "tid": 35568, "ts": 10951338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2abc0", "tid": 35568, "ts": 10951424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a7b0", "tid": 35568, "ts": 10951510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d1f0", "tid": 35568, "ts": 10951596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d050", "tid": 35568, "ts": 10951682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c690", "tid": 35568, "ts": 10951769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2caa0", "tid": 35568, "ts": 10951855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a950", "tid": 35568, "ts": 10951942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b650", "tid": 35568, "ts": 10952028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c5c0", "tid": 35568, "ts": 10952115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a880", "tid": 35568, "ts": 10952201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b310", "tid": 35568, "ts": 10952288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a3a0", "tid": 35568, "ts": 10952374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c420", "tid": 35568, "ts": 10952460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c010", "tid": 35568, "ts": 10952547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cd10", "tid": 35568, "ts": 10952633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a200", "tid": 35568, "ts": 10952720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ba60", "tid": 35568, "ts": 10952806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c900", "tid": 35568, "ts": 10952893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bc00", "tid": 35568, "ts": 10952979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c350", "tid": 35568, "ts": 10953066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2aaf0", "tid": 35568, "ts": 10953152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a6e0", "tid": 35568, "ts": 10953238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b580", "tid": 35568, "ts": 10953325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bda0", "tid": 35568, "ts": 10953412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a610", "tid": 35568, "ts": 10953498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b3e0", "tid": 35568, "ts": 10953584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2afd0", "tid": 35568, "ts": 10953670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d390", "tid": 35568, "ts": 10953757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b990", "tid": 35568, "ts": 10953843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b0a0", "tid": 35568, "ts": 10953930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27960", "tid": 35568, "ts": 10954017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27890", "tid": 35568, "ts": 10954104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b276f0", "tid": 35568, "ts": 10954190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b272e0", "tid": 35568, "ts": 10954275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26fa0", "tid": 35568, "ts": 10954361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29df0", "tid": 35568, "ts": 10954448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29c50", "tid": 35568, "ts": 10954535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29ab0", "tid": 35568, "ts": 10954621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29840", "tid": 35568, "ts": 10954708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b296a0", "tid": 35568, "ts": 10954795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29430", "tid": 35568, "ts": 10954881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b291c0", "tid": 35568, "ts": 10954968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b295d0", "tid": 35568, "ts": 10955053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28320", "tid": 35568, "ts": 10955140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27b00", "tid": 35568, "ts": 10955226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b273b0", "tid": 35568, "ts": 10955313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28f50", "tid": 35568, "ts": 10955400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27f10", "tid": 35568, "ts": 10955486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28b40", "tid": 35568, "ts": 10955573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27e40", "tid": 35568, "ts": 10955660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b284c0", "tid": 35568, "ts": 10955746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26d30", "tid": 35568, "ts": 10955833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b299e0", "tid": 35568, "ts": 10955920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28db0", "tid": 35568, "ts": 10956007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b280b0", "tid": 35568, "ts": 10956093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29f90", "tid": 35568, "ts": 10956180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27620", "tid": 35568, "ts": 10956266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28800", "tid": 35568, "ts": 10956353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28730", "tid": 35568, "ts": 10956439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28250", "tid": 35568, "ts": 10956525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27550", "tid": 35568, "ts": 10956611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28590", "tid": 35568, "ts": 10956698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23ad0", "tid": 35568, "ts": 10956785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b269f0", "tid": 35568, "ts": 10956871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24f20", "tid": 35568, "ts": 10956958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26850", "tid": 35568, "ts": 10957044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26100", "tid": 35568, "ts": 10957131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25dc0", "tid": 35568, "ts": 10957218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24970", "tid": 35568, "ts": 10957305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24490", "tid": 35568, "ts": 10957391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25cf0", "tid": 35568, "ts": 10957477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25b50", "tid": 35568, "ts": 10957564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23e10", "tid": 35568, "ts": 10957651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25810", "tid": 35568, "ts": 10957737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23930", "tid": 35568, "ts": 10957823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25670", "tid": 35568, "ts": 10957910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b261d0", "tid": 35568, "ts": 10957997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26c60", "tid": 35568, "ts": 10958083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b254d0", "tid": 35568, "ts": 10958169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26510", "tid": 35568, "ts": 10958257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b242f0", "tid": 35568, "ts": 10958344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24b10", "tid": 35568, "ts": 10958430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b262a0", "tid": 35568, "ts": 10958516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25a80", "tid": 35568, "ts": 10958604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b265e0", "tid": 35568, "ts": 10958691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26030", "tid": 35568, "ts": 10958777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23ba0", "tid": 35568, "ts": 10958863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23c70", "tid": 35568, "ts": 10958949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25f60", "tid": 35568, "ts": 10959035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25330", "tid": 35568, "ts": 10959121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23ee0", "tid": 35568, "ts": 10959207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b259b0", "tid": 35568, "ts": 10959293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b255a0", "tid": 35568, "ts": 10959379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b247d0", "tid": 35568, "ts": 10959465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b213d0", "tid": 35568, "ts": 10959552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20fc0", "tid": 35568, "ts": 10959639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20ae0", "tid": 35568, "ts": 10959725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23860", "tid": 35568, "ts": 10959811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20ef0", "tid": 35568, "ts": 10959897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22b60", "tid": 35568, "ts": 10959984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20e20", "tid": 35568, "ts": 10960070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22f70", "tid": 35568, "ts": 10960157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22a90", "tid": 35568, "ts": 10960244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22820", "tid": 35568, "ts": 10960331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b228f0", "tid": 35568, "ts": 10960418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22750", "tid": 35568, "ts": 10960504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b231e0", "tid": 35568, "ts": 10960590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b220d0", "tid": 35568, "ts": 10960677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b225b0", "tid": 35568, "ts": 10960763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20d50", "tid": 35568, "ts": 10960850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b207a0", "tid": 35568, "ts": 10960936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21b20", "tid": 35568, "ts": 10961023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21f30", "tid": 35568, "ts": 10961109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22d00", "tid": 35568, "ts": 10961196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20600", "tid": 35568, "ts": 10961282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20940", "tid": 35568, "ts": 10961369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22340", "tid": 35568, "ts": 10961455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20530", "tid": 35568, "ts": 10961542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20870", "tid": 35568, "ts": 10961628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23040", "tid": 35568, "ts": 10961715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21640", "tid": 35568, "ts": 10961801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21980", "tid": 35568, "ts": 10961886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22270", "tid": 35568, "ts": 10961973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21160", "tid": 35568, "ts": 10962060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23520", "tid": 35568, "ts": 10962146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21300", "tid": 35568, "ts": 10962232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e3e0", "tid": 35568, "ts": 10962318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1da20", "tid": 35568, "ts": 10962405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d610", "tid": 35568, "ts": 10962490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d3a0", "tid": 35568, "ts": 10962577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d2d0", "tid": 35568, "ts": 10962664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dc90", "tid": 35568, "ts": 10962751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20460", "tid": 35568, "ts": 10962837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dfd0", "tid": 35568, "ts": 10962924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f5c0", "tid": 35568, "ts": 10963010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1feb0", "tid": 35568, "ts": 10963097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f350", "tid": 35568, "ts": 10963184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d130", "tid": 35568, "ts": 10963270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ecd0", "tid": 35568, "ts": 10963356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ec00", "tid": 35568, "ts": 10963444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1eb30", "tid": 35568, "ts": 10963530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f690", "tid": 35568, "ts": 10963617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f830", "tid": 35568, "ts": 10963703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e580", "tid": 35568, "ts": 10963790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f010", "tid": 35568, "ts": 10963876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ea60", "tid": 35568, "ts": 10963962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dd60", "tid": 35568, "ts": 10964048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e7f0", "tid": 35568, "ts": 10964137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fde0", "tid": 35568, "ts": 10964224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1dbc0", "tid": 35568, "ts": 10964310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e720", "tid": 35568, "ts": 10964397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ee70", "tid": 35568, "ts": 10964483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20120", "tid": 35568, "ts": 10964570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1daf0", "tid": 35568, "ts": 10964656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f900", "tid": 35568, "ts": 10964743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1df00", "tid": 35568, "ts": 10964830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1de30", "tid": 35568, "ts": 10964917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d880", "tid": 35568, "ts": 10965003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c290", "tid": 35568, "ts": 10965090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bf50", "tid": 35568, "ts": 10965176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c1c0", "tid": 35568, "ts": 10965263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1aca0", "tid": 35568, "ts": 10965349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a6f0", "tid": 35568, "ts": 10965474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b800", "tid": 35568, "ts": 10965682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c020", "tid": 35568, "ts": 10965831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a3b0", "tid": 35568, "ts": 10965956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a140", "tid": 35568, "ts": 10966079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b590", "tid": 35568, "ts": 10966204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19ed0", "tid": 35568, "ts": 10966313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cc50", "tid": 35568, "ts": 10966465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cab0", "tid": 35568, "ts": 10966601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cdf0", "tid": 35568, "ts": 10966688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b9a0", "tid": 35568, "ts": 10966774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a550", "tid": 35568, "ts": 10966861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c0f0", "tid": 35568, "ts": 10966948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a070", "tid": 35568, "ts": 10967035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c840", "tid": 35568, "ts": 10967122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bc10", "tid": 35568, "ts": 10967208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ae40", "tid": 35568, "ts": 10967294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a480", "tid": 35568, "ts": 10967381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ab00", "tid": 35568, "ts": 10967468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c770", "tid": 35568, "ts": 10967554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c9e0", "tid": 35568, "ts": 10967641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a960", "tid": 35568, "ts": 10967727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bb40", "tid": 35568, "ts": 10967814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c360", "tid": 35568, "ts": 10967901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c5d0", "tid": 35568, "ts": 10967987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a210", "tid": 35568, "ts": 10968074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c500", "tid": 35568, "ts": 10968160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c430", "tid": 35568, "ts": 10968246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b196b0", "tid": 35568, "ts": 10968333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18400", "tid": 35568, "ts": 10968419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17cb0", "tid": 35568, "ts": 10968506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17a40", "tid": 35568, "ts": 10968593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17490", "tid": 35568, "ts": 10968678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b189b0", "tid": 35568, "ts": 10968766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17220", "tid": 35568, "ts": 10968852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18260", "tid": 35568, "ts": 10968939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19030", "tid": 35568, "ts": 10969026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17ff0", "tid": 35568, "ts": 10969113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18f60", "tid": 35568, "ts": 10969199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18810", "tid": 35568, "ts": 10969285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b191d0", "tid": 35568, "ts": 10969372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17be0", "tid": 35568, "ts": 10969459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17d80", "tid": 35568, "ts": 10969545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19510", "tid": 35568, "ts": 10969632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18330", "tid": 35568, "ts": 10969718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18a80", "tid": 35568, "ts": 10969805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17b10", "tid": 35568, "ts": 10969891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b199f0", "tid": 35568, "ts": 10969978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16ba0", "tid": 35568, "ts": 10970064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19850", "tid": 35568, "ts": 10970150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b177d0", "tid": 35568, "ts": 10970237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18e90", "tid": 35568, "ts": 10970323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b192a0", "tid": 35568, "ts": 10970409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17630", "tid": 35568, "ts": 10970496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19ac0", "tid": 35568, "ts": 10970582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18b50", "tid": 35568, "ts": 10970669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19c60", "tid": 35568, "ts": 10970755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18670", "tid": 35568, "ts": 10970842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19780", "tid": 35568, "ts": 10970929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b188e0", "tid": 35568, "ts": 10971015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b159c0", "tid": 35568, "ts": 10971101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b158f0", "tid": 35568, "ts": 10971188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15820", "tid": 35568, "ts": 10971274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14bf0", "tid": 35568, "ts": 10971360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15410", "tid": 35568, "ts": 10971446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b137a0", "tid": 35568, "ts": 10971534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15750", "tid": 35568, "ts": 10971619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b136d0", "tid": 35568, "ts": 10971705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15a90", "tid": 35568, "ts": 10971791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15dd0", "tid": 35568, "ts": 10971879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13600", "tid": 35568, "ts": 10971965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15000", "tid": 35568, "ts": 10972051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14a50", "tid": 35568, "ts": 10972137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14570", "tid": 35568, "ts": 10972225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15ea0", "tid": 35568, "ts": 10972311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14230", "tid": 35568, "ts": 10972398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b154e0", "tid": 35568, "ts": 10972485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13ef0", "tid": 35568, "ts": 10972571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16110", "tid": 35568, "ts": 10972658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13d50", "tid": 35568, "ts": 10972744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b165f0", "tid": 35568, "ts": 10972829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16790", "tid": 35568, "ts": 10972916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13c80", "tid": 35568, "ts": 10973003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b144a0", "tid": 35568, "ts": 10973089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15d00", "tid": 35568, "ts": 10973176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b147e0", "tid": 35568, "ts": 10973262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15b60", "tid": 35568, "ts": 10973349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16860", "tid": 35568, "ts": 10973435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16380", "tid": 35568, "ts": 10973522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13ae0", "tid": 35568, "ts": 10973609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14090", "tid": 35568, "ts": 10973695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13940", "tid": 35568, "ts": 10973781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12690", "tid": 35568, "ts": 10973868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12350", "tid": 35568, "ts": 10973955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b114b0", "tid": 35568, "ts": 10974041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b113e0", "tid": 35568, "ts": 10974128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10950", "tid": 35568, "ts": 10974213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b102d0", "tid": 35568, "ts": 10974301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10e30", "tid": 35568, "ts": 10974387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b118c0", "tid": 35568, "ts": 10974474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b132c0", "tid": 35568, "ts": 10974562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10d60", "tid": 35568, "ts": 10974648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11720", "tid": 35568, "ts": 10974734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13120", "tid": 35568, "ts": 10974821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10af0", "tid": 35568, "ts": 10974907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10a20", "tid": 35568, "ts": 10974994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10880", "tid": 35568, "ts": 10975080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b120e0", "tid": 35568, "ts": 10975167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b107b0", "tid": 35568, "ts": 10975252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b103a0", "tid": 35568, "ts": 10975339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b131f0", "tid": 35568, "ts": 10975426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b106e0", "tid": 35568, "ts": 10975513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11a60", "tid": 35568, "ts": 10975598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11240", "tid": 35568, "ts": 10975686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10470", "tid": 35568, "ts": 10975772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12de0", "tid": 35568, "ts": 10975858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12f80", "tid": 35568, "ts": 10975945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10f00", "tid": 35568, "ts": 10976032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12eb0", "tid": 35568, "ts": 10976118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b124f0", "tid": 35568, "ts": 10976205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11650", "tid": 35568, "ts": 10976291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11e70", "tid": 35568, "ts": 10976378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11f40", "tid": 35568, "ts": 10976464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12d10", "tid": 35568, "ts": 10976551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c050", "tid": 35568, "ts": 10976637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dda20", "tid": 35568, "ts": 10976724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcab0", "tid": 35568, "ts": 10976811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09decd0", "tid": 35568, "ts": 10976898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd470", "tid": 35568, "ts": 10976984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ce40", "tid": 35568, "ts": 10977072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cca0", "tid": 35568, "ts": 10977159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c960", "tid": 35568, "ts": 10977246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c890", "tid": 35568, "ts": 10977333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c2e0", "tid": 35568, "ts": 10977421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e5d0", "tid": 35568, "ts": 10977509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48eb80", "tid": 35568, "ts": 10977640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48dce0", "tid": 35568, "ts": 10977728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f200", "tid": 35568, "ts": 10977816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ef90", "tid": 35568, "ts": 10977902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cfe0", "tid": 35568, "ts": 10977989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f130", "tid": 35568, "ts": 10978075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e430", "tid": 35568, "ts": 10978162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48edf0", "tid": 35568, "ts": 10978249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c210", "tid": 35568, "ts": 10978335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c140", "tid": 35568, "ts": 10978422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d8d0", "tid": 35568, "ts": 10978510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e020", "tid": 35568, "ts": 10978596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d730", "tid": 35568, "ts": 10978683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d250", "tid": 35568, "ts": 10978769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c550", "tid": 35568, "ts": 10978855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cbd0", "tid": 35568, "ts": 10978941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d3f0", "tid": 35568, "ts": 10979027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cb00", "tid": 35568, "ts": 10979113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e360", "tid": 35568, "ts": 10979200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f470", "tid": 35568, "ts": 10979287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e0f0", "tid": 35568, "ts": 10979373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d180", "tid": 35568, "ts": 10979459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d320", "tid": 35568, "ts": 10979546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48de80", "tid": 35568, "ts": 10979632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48df50", "tid": 35568, "ts": 10979718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e770", "tid": 35568, "ts": 10979805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca970", "tid": 35568, "ts": 10979891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca630", "tid": 35568, "ts": 10979977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cced0", "tid": 35568, "ts": 10980063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccd30", "tid": 35568, "ts": 10980149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc510", "tid": 35568, "ts": 10980236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca490", "tid": 35568, "ts": 10980323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbdc0", "tid": 35568, "ts": 10980410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cba80", "tid": 35568, "ts": 10980495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc6b0", "tid": 35568, "ts": 10980582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccac0", "tid": 35568, "ts": 10980668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb4d0", "tid": 35568, "ts": 10980754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc370", "tid": 35568, "ts": 10980841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca220", "tid": 35568, "ts": 10980928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cacb0", "tid": 35568, "ts": 10981028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cab10", "tid": 35568, "ts": 10981192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc2a0", "tid": 35568, "ts": 10981279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc030", "tid": 35568, "ts": 10981366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc850", "tid": 35568, "ts": 10981453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc9f0", "tid": 35568, "ts": 10981539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb260", "tid": 35568, "ts": 10981625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9fb0", "tid": 35568, "ts": 10981712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb9b0", "tid": 35568, "ts": 10981798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9e10", "tid": 35568, "ts": 10981885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca2f0", "tid": 35568, "ts": 10981971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbf60", "tid": 35568, "ts": 10982058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc1d0", "tid": 35568, "ts": 10982145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca700", "tid": 35568, "ts": 10982231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb8e0", "tid": 35568, "ts": 10982317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc5e0", "tid": 35568, "ts": 10982404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4caa40", "tid": 35568, "ts": 10982490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb5a0", "tid": 35568, "ts": 10982576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c91e0", "tid": 35568, "ts": 10982662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8c30", "tid": 35568, "ts": 10982749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7bf0", "tid": 35568, "ts": 10982835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c96c0", "tid": 35568, "ts": 10982922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7980", "tid": 35568, "ts": 10983009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7640", "tid": 35568, "ts": 10983096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8b60", "tid": 35568, "ts": 10983183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7f30", "tid": 35568, "ts": 10983269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9110", "tid": 35568, "ts": 10983355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8680", "tid": 35568, "ts": 10983442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7d90", "tid": 35568, "ts": 10983528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6a10", "tid": 35568, "ts": 10983615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c78b0", "tid": 35568, "ts": 10983701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6fc0", "tid": 35568, "ts": 10983788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6bb0", "tid": 35568, "ts": 10983874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7230", "tid": 35568, "ts": 10983961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9520", "tid": 35568, "ts": 10984047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c84e0", "tid": 35568, "ts": 10984134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8ea0", "tid": 35568, "ts": 10984221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6ef0", "tid": 35568, "ts": 10984308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7300", "tid": 35568, "ts": 10984395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c74a0", "tid": 35568, "ts": 10984482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6d50", "tid": 35568, "ts": 10984568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7710", "tid": 35568, "ts": 10984655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8a90", "tid": 35568, "ts": 10984741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9380", "tid": 35568, "ts": 10984827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8dd0", "tid": 35568, "ts": 10984914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8750", "tid": 35568, "ts": 10985001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8d00", "tid": 35568, "ts": 10985086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7cc0", "tid": 35568, "ts": 10985174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9790", "tid": 35568, "ts": 10985260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6c80", "tid": 35568, "ts": 10985348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5010", "tid": 35568, "ts": 10985434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4cd0", "tid": 35568, "ts": 10985522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4c00", "tid": 35568, "ts": 10985608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3bc0", "tid": 35568, "ts": 10985694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c37b0", "tid": 35568, "ts": 10985781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3610", "tid": 35568, "ts": 10985867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6870", "tid": 35568, "ts": 10985954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6460", "tid": 35568, "ts": 10986040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4a60", "tid": 35568, "ts": 10986126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4580", "tid": 35568, "ts": 10986212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c54f0", "tid": 35568, "ts": 10986298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6530", "tid": 35568, "ts": 10986386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c44b0", "tid": 35568, "ts": 10986472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5690", "tid": 35568, "ts": 10986559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4e70", "tid": 35568, "ts": 10986645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c61f0", "tid": 35568, "ts": 10986732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6050", "tid": 35568, "ts": 10986818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5420", "tid": 35568, "ts": 10986906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4da0", "tid": 35568, "ts": 10986992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3c90", "tid": 35568, "ts": 10987079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4990", "tid": 35568, "ts": 10987166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4b30", "tid": 35568, "ts": 10987253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3e30", "tid": 35568, "ts": 10987339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4170", "tid": 35568, "ts": 10987425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3af0", "tid": 35568, "ts": 10987512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5280", "tid": 35568, "ts": 10987598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5d10", "tid": 35568, "ts": 10987684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c51b0", "tid": 35568, "ts": 10987771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c62c0", "tid": 35568, "ts": 10987857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5c40", "tid": 35568, "ts": 10987944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3880", "tid": 35568, "ts": 10988030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c36e0", "tid": 35568, "ts": 10988117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c18d0", "tid": 35568, "ts": 10988203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1730", "tid": 35568, "ts": 10988290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1320", "tid": 35568, "ts": 10988376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0d70", "tid": 35568, "ts": 10988463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c14c0", "tid": 35568, "ts": 10988549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2020", "tid": 35568, "ts": 10988636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0ca0", "tid": 35568, "ts": 10988722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c13f0", "tid": 35568, "ts": 10988809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0210", "tid": 35568, "ts": 10988894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0140", "tid": 35568, "ts": 10988981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2f90", "tid": 35568, "ts": 10989068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c33a0", "tid": 35568, "ts": 10989155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2c50", "tid": 35568, "ts": 10989241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1180", "tid": 35568, "ts": 10989328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0550", "tid": 35568, "ts": 10989415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c10b0", "tid": 35568, "ts": 10989501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0a30", "tid": 35568, "ts": 10989587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2500", "tid": 35568, "ts": 10989674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2b80", "tid": 35568, "ts": 10989760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c25d0", "tid": 35568, "ts": 10989847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3200", "tid": 35568, "ts": 10989933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1250", "tid": 35568, "ts": 10990019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2430", "tid": 35568, "ts": 10990105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2ec0", "tid": 35568, "ts": 10990192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3470", "tid": 35568, "ts": 10990277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c07c0", "tid": 35568, "ts": 10990364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1a70", "tid": 35568, "ts": 10990450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2770", "tid": 35568, "ts": 10990537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1c10", "tid": 35568, "ts": 10990623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2840", "tid": 35568, "ts": 10990710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c32d0", "tid": 35568, "ts": 10990795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c21c0", "tid": 35568, "ts": 10990881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd560", "tid": 35568, "ts": 10990967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd3c0", "tid": 35568, "ts": 10991054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfac0", "tid": 35568, "ts": 10991140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf9f0", "tid": 35568, "ts": 10991228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0070", "tid": 35568, "ts": 10991314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be4d0", "tid": 35568, "ts": 10991401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcfb0", "tid": 35568, "ts": 10991487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf440", "tid": 35568, "ts": 10991573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf780", "tid": 35568, "ts": 10991660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf920", "tid": 35568, "ts": 10991746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd700", "tid": 35568, "ts": 10991832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf510", "tid": 35568, "ts": 10991918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bffa0", "tid": 35568, "ts": 10992004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdb10", "tid": 35568, "ts": 10992090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be810", "tid": 35568, "ts": 10992176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be740", "tid": 35568, "ts": 10992262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfed0", "tid": 35568, "ts": 10992348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bde50", "tid": 35568, "ts": 10992435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfd30", "tid": 35568, "ts": 10992521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be0c0", "tid": 35568, "ts": 10992607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf030", "tid": 35568, "ts": 10992693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdff0", "tid": 35568, "ts": 10992780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bedc0", "tid": 35568, "ts": 10992866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfc60", "tid": 35568, "ts": 10992953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd630", "tid": 35568, "ts": 10993039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd2f0", "tid": 35568, "ts": 10993126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bef60", "tid": 35568, "ts": 10993213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bee90", "tid": 35568, "ts": 10993299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be8e0", "tid": 35568, "ts": 10993387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf2a0", "tid": 35568, "ts": 10993473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf5e0", "tid": 35568, "ts": 10993559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcd40", "tid": 35568, "ts": 10993646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9d50", "tid": 35568, "ts": 10993732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba7e0", "tid": 35568, "ts": 10993819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9bb0", "tid": 35568, "ts": 10993905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9940", "tid": 35568, "ts": 10993991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bca00", "tid": 35568, "ts": 10994077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc930", "tid": 35568, "ts": 10994164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba230", "tid": 35568, "ts": 10994249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba090", "tid": 35568, "ts": 10994336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc040", "tid": 35568, "ts": 10994423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba570", "tid": 35568, "ts": 10994509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc380", "tid": 35568, "ts": 10994607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbdd0", "tid": 35568, "ts": 10994705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4baa50", "tid": 35568, "ts": 10994792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba300", "tid": 35568, "ts": 10994878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb0d0", "tid": 35568, "ts": 10994964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb9c0", "tid": 35568, "ts": 10995051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc1e0", "tid": 35568, "ts": 10995137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc860", "tid": 35568, "ts": 10995225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcba0", "tid": 35568, "ts": 10995311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbf70", "tid": 35568, "ts": 10995397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb270", "tid": 35568, "ts": 10995483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc790", "tid": 35568, "ts": 10995569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb5b0", "tid": 35568, "ts": 10995655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcad0", "tid": 35568, "ts": 10995742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb820", "tid": 35568, "ts": 10995829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba980", "tid": 35568, "ts": 10995916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bab20", "tid": 35568, "ts": 10996002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbea0", "tid": 35568, "ts": 10996088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9e20", "tid": 35568, "ts": 10996175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bae60", "tid": 35568, "ts": 10996263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9ae0", "tid": 35568, "ts": 10996349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bad90", "tid": 35568, "ts": 10996435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b80e0", "tid": 35568, "ts": 10996522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6610", "tid": 35568, "ts": 10996610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b97a0", "tid": 35568, "ts": 10996763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b77f0", "tid": 35568, "ts": 10996921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7720", "tid": 35568, "ts": 10997022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9390", "tid": 35568, "ts": 10997109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b92c0", "tid": 35568, "ts": 10997195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7c00", "tid": 35568, "ts": 10997281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8010", "tid": 35568, "ts": 10997367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8830", "tid": 35568, "ts": 10997453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9870", "tid": 35568, "ts": 10997540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b81b0", "tid": 35568, "ts": 10997628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6f00", "tid": 35568, "ts": 10997713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7f40", "tid": 35568, "ts": 10997800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8de0", "tid": 35568, "ts": 10997887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b91f0", "tid": 35568, "ts": 10997974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7da0", "tid": 35568, "ts": 10998060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6af0", "tid": 35568, "ts": 10998148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6950", "tid": 35568, "ts": 10998234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9120", "tid": 35568, "ts": 10998321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6fd0", "tid": 35568, "ts": 10998407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8760", "tid": 35568, "ts": 10998494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7990", "tid": 35568, "ts": 10998581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8690", "tid": 35568, "ts": 10998667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8c40", "tid": 35568, "ts": 10998753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6880", "tid": 35568, "ts": 10998841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b85c0", "tid": 35568, "ts": 10998928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8f80", "tid": 35568, "ts": 10999014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8b70", "tid": 35568, "ts": 10999101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6bc0", "tid": 35568, "ts": 10999188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6d60", "tid": 35568, "ts": 10999274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8280", "tid": 35568, "ts": 10999360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4730", "tid": 35568, "ts": 10999446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3b00", "tid": 35568, "ts": 10999533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b63a0", "tid": 35568, "ts": 10999620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3960", "tid": 35568, "ts": 10999706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b36f0", "tid": 35568, "ts": 10999793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5840", "tid": 35568, "ts": 10999880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b55d0", "tid": 35568, "ts": 10999965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b37c0", "tid": 35568, "ts": 11000052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4ce0", "tid": 35568, "ts": 11000139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3620", "tid": 35568, "ts": 11000226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4c10", "tid": 35568, "ts": 11000313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4b40", "tid": 35568, "ts": 11000400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4a70", "tid": 35568, "ts": 11000486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5df0", "tid": 35568, "ts": 11000573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b56a0", "tid": 35568, "ts": 11000659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3140", "tid": 35568, "ts": 11000744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4250", "tid": 35568, "ts": 11000830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b44c0", "tid": 35568, "ts": 11000917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5d20", "tid": 35568, "ts": 11001003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3890", "tid": 35568, "ts": 11001089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6470", "tid": 35568, "ts": 11001175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5c50", "tid": 35568, "ts": 11001262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4e80", "tid": 35568, "ts": 11001348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4800", "tid": 35568, "ts": 11001434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5910", "tid": 35568, "ts": 11001521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3f10", "tid": 35568, "ts": 11001608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6060", "tid": 35568, "ts": 11001694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5ec0", "tid": 35568, "ts": 11001781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5290", "tid": 35568, "ts": 11001867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3480", "tid": 35568, "ts": 11001954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3d70", "tid": 35568, "ts": 11002040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4180", "tid": 35568, "ts": 11002126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b15a0", "tid": 35568, "ts": 11002213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1400", "tid": 35568, "ts": 11002300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1330", "tid": 35568, "ts": 11002388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afee0", "tid": 35568, "ts": 11002474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afd40", "tid": 35568, "ts": 11002561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1260", "tid": 35568, "ts": 11002648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2d30", "tid": 35568, "ts": 11002734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0ff0", "tid": 35568, "ts": 11002820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0f20", "tid": 35568, "ts": 11002907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0e50", "tid": 35568, "ts": 11002993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b29f0", "tid": 35568, "ts": 11003080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2780", "tid": 35568, "ts": 11003166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b03c0", "tid": 35568, "ts": 11003253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0d80", "tid": 35568, "ts": 11003339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b26b0", "tid": 35568, "ts": 11003426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0150", "tid": 35568, "ts": 11003512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b02f0", "tid": 35568, "ts": 11003598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1f60", "tid": 35568, "ts": 11003685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0be0", "tid": 35568, "ts": 11003772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b18e0", "tid": 35568, "ts": 11003859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b10c0", "tid": 35568, "ts": 11003946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2100", "tid": 35568, "ts": 11004033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1810", "tid": 35568, "ts": 11004119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2030", "tid": 35568, "ts": 11004206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0a40", "tid": 35568, "ts": 11004292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b08a0", "tid": 35568, "ts": 11004379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b19b0", "tid": 35568, "ts": 11004466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4affb0", "tid": 35568, "ts": 11004552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2510", "tid": 35568, "ts": 11004638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1cf0", "tid": 35568, "ts": 11004725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3070", "tid": 35568, "ts": 11004811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2fa0", "tid": 35568, "ts": 11004897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afa00", "tid": 35568, "ts": 11004983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af790", "tid": 35568, "ts": 11005070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af5f0", "tid": 35568, "ts": 11005157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af450", "tid": 35568, "ts": 11005244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af110", "tid": 35568, "ts": 11005330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae750", "tid": 35568, "ts": 11005416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad640", "tid": 35568, "ts": 11005503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af380", "tid": 35568, "ts": 11005589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adb20", "tid": 35568, "ts": 11005676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aed00", "tid": 35568, "ts": 11005763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae5b0", "tid": 35568, "ts": 11005849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acc80", "tid": 35568, "ts": 11005936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad300", "tid": 35568, "ts": 11006023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad980", "tid": 35568, "ts": 11006110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ade60", "tid": 35568, "ts": 11006197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adcc0", "tid": 35568, "ts": 11006284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ace20", "tid": 35568, "ts": 11006370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae410", "tid": 35568, "ts": 11006457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acfc0", "tid": 35568, "ts": 11006544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aedd0", "tid": 35568, "ts": 11006631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afc70", "tid": 35568, "ts": 11006716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aea90", "tid": 35568, "ts": 11006804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af040", "tid": 35568, "ts": 11006891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aec30", "tid": 35568, "ts": 11006977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad090", "tid": 35568, "ts": 11007065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae000", "tid": 35568, "ts": 11007152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aef70", "tid": 35568, "ts": 11007238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afba0", "tid": 35568, "ts": 11007326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acbb0", "tid": 35568, "ts": 11007412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae1a0", "tid": 35568, "ts": 11007499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad3d0", "tid": 35568, "ts": 11007585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae270", "tid": 35568, "ts": 11007672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac1f0", "tid": 35568, "ts": 11007759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abf80", "tid": 35568, "ts": 11007847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abaa0", "tid": 35568, "ts": 11007932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aac00", "tid": 35568, "ts": 11008018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac530", "tid": 35568, "ts": 11008105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abc40", "tid": 35568, "ts": 11008191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa8c0", "tid": 35568, "ts": 11008277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab830", "tid": 35568, "ts": 11008363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa3e0", "tid": 35568, "ts": 11008449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa310", "tid": 35568, "ts": 11008536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa240", "tid": 35568, "ts": 11008623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab690", "tid": 35568, "ts": 11008710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa650", "tid": 35568, "ts": 11008796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa0a0", "tid": 35568, "ts": 11008883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9c90", "tid": 35568, "ts": 11008970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9bc0", "tid": 35568, "ts": 11009056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac390", "tid": 35568, "ts": 11009154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abde0", "tid": 35568, "ts": 11009243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa990", "tid": 35568, "ts": 11009329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9a20", "tid": 35568, "ts": 11009415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9950", "tid": 35568, "ts": 11009502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa4b0", "tid": 35568, "ts": 11009588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9f00", "tid": 35568, "ts": 11009674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aada0", "tid": 35568, "ts": 11009761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab280", "tid": 35568, "ts": 11009847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac6d0", "tid": 35568, "ts": 11009934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9540", "tid": 35568, "ts": 11010021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9610", "tid": 35568, "ts": 11010107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab0e0", "tid": 35568, "ts": 11010193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab1b0", "tid": 35568, "ts": 11010281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac600", "tid": 35568, "ts": 11010366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6a30", "tid": 35568, "ts": 11010452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a66f0", "tid": 35568, "ts": 11010539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6550", "tid": 35568, "ts": 11010625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8500", "tid": 35568, "ts": 11010712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a63b0", "tid": 35568, "ts": 11010799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a80f0", "tid": 35568, "ts": 11010885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9470", "tid": 35568, "ts": 11010972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6bd0", "tid": 35568, "ts": 11011058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6ca0", "tid": 35568, "ts": 11011144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8430", "tid": 35568, "ts": 11011230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7e80", "tid": 35568, "ts": 11011318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a67c0", "tid": 35568, "ts": 11011404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6b00", "tid": 35568, "ts": 11011491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7db0", "tid": 35568, "ts": 11011578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a74c0", "tid": 35568, "ts": 11011664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7c10", "tid": 35568, "ts": 11011751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a86a0", "tid": 35568, "ts": 11011838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9060", "tid": 35568, "ts": 11011924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8f90", "tid": 35568, "ts": 11012011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a70b0", "tid": 35568, "ts": 11012097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8df0", "tid": 35568, "ts": 11012183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6fe0", "tid": 35568, "ts": 11012309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a89e0", "tid": 35568, "ts": 11012399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8910", "tid": 35568, "ts": 11012487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a81c0", "tid": 35568, "ts": 11012574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7b40", "tid": 35568, "ts": 11012703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7250", "tid": 35568, "ts": 11012791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5fa0", "tid": 35568, "ts": 11012878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3220", "tid": 35568, "ts": 11012965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5ac0", "tid": 35568, "ts": 11013051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a59f0", "tid": 35568, "ts": 11013137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3e50", "tid": 35568, "ts": 11013224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3970", "tid": 35568, "ts": 11013310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4f60", "tid": 35568, "ts": 11013396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5ed0", "tid": 35568, "ts": 11013483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3080", "tid": 35568, "ts": 11013569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4400", "tid": 35568, "ts": 11013654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4c20", "tid": 35568, "ts": 11013740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a33c0", "tid": 35568, "ts": 11013827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4190", "tid": 35568, "ts": 11013913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3150", "tid": 35568, "ts": 11013999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5780", "tid": 35568, "ts": 11014085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a55e0", "tid": 35568, "ts": 11014172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5e00", "tid": 35568, "ts": 11014258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4260", "tid": 35568, "ts": 11014345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a48e0", "tid": 35568, "ts": 11014431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a52a0", "tid": 35568, "ts": 11014517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a49b0", "tid": 35568, "ts": 11014603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a32f0", "tid": 35568, "ts": 11014689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5d30", "tid": 35568, "ts": 11014776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3be0", "tid": 35568, "ts": 11014863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3ff0", "tid": 35568, "ts": 11014949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4330", "tid": 35568, "ts": 11015036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4810", "tid": 35568, "ts": 11015122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a56b0", "tid": 35568, "ts": 11015210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2d40", "tid": 35568, "ts": 11015296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5440", "tid": 35568, "ts": 11015382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5030", "tid": 35568, "ts": 11015468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a45a0", "tid": 35568, "ts": 11015555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0570", "tid": 35568, "ts": 11015642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2c70", "tid": 35568, "ts": 11015728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fd50", "tid": 35568, "ts": 11015814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fa10", "tid": 35568, "ts": 11015900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2520", "tid": 35568, "ts": 11015987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a22b0", "tid": 35568, "ts": 11016073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a25f0", "tid": 35568, "ts": 11016159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0bf0", "tid": 35568, "ts": 11016246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1b60", "tid": 35568, "ts": 11016332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2860", "tid": 35568, "ts": 11016418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0b20", "tid": 35568, "ts": 11016504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0a50", "tid": 35568, "ts": 11016591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1000", "tid": 35568, "ts": 11016677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0230", "tid": 35568, "ts": 11016763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2ad0", "tid": 35568, "ts": 11016849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0160", "tid": 35568, "ts": 11016935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0f30", "tid": 35568, "ts": 11017021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2a00", "tid": 35568, "ts": 11017108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a14e0", "tid": 35568, "ts": 11017194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a10d0", "tid": 35568, "ts": 11017281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2450", "tid": 35568, "ts": 11017367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a21e0", "tid": 35568, "ts": 11017453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a08b0", "tid": 35568, "ts": 11017540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1a90", "tid": 35568, "ts": 11017627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fbb0", "tid": 35568, "ts": 11017712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1750", "tid": 35568, "ts": 11017799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2040", "tid": 35568, "ts": 11017885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0300", "tid": 35568, "ts": 11017971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0cc0", "tid": 35568, "ts": 11018057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2930", "tid": 35568, "ts": 11018143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1410", "tid": 35568, "ts": 11018229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1ea0", "tid": 35568, "ts": 11018316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e830", "tid": 35568, "ts": 11018403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e690", "tid": 35568, "ts": 11018489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d170", "tid": 35568, "ts": 11018575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49dcd0", "tid": 35568, "ts": 11018662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cd60", "tid": 35568, "ts": 11018748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e350", "tid": 35568, "ts": 11018835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e4f0", "tid": 35568, "ts": 11018921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ed10", "tid": 35568, "ts": 11019008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e280", "tid": 35568, "ts": 11019095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d7f0", "tid": 35568, "ts": 11019181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cf00", "tid": 35568, "ts": 11019269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49de70", "tid": 35568, "ts": 11019355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f600", "tid": 35568, "ts": 11019442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49df40", "tid": 35568, "ts": 11019529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c6e0", "tid": 35568, "ts": 11019615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c880", "tid": 35568, "ts": 11019701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49dc00", "tid": 35568, "ts": 11019787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cbc0", "tid": 35568, "ts": 11019874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f460", "tid": 35568, "ts": 11019960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f120", "tid": 35568, "ts": 11020048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e9d0", "tid": 35568, "ts": 11020134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49eb70", "tid": 35568, "ts": 11020220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d3e0", "tid": 35568, "ts": 11020307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f390", "tid": 35568, "ts": 11020394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cfd0", "tid": 35568, "ts": 11020481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d4b0", "tid": 35568, "ts": 11020567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ca20", "tid": 35568, "ts": 11020654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c610", "tid": 35568, "ts": 11020740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f1f0", "tid": 35568, "ts": 11020827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49dda0", "tid": 35568, "ts": 11020913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f6d0", "tid": 35568, "ts": 11020999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49eeb0", "tid": 35568, "ts": 11021086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499620", "tid": 35568, "ts": 11021172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c470", "tid": 35568, "ts": 11021258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c2d0", "tid": 35568, "ts": 11021344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ac10", "tid": 35568, "ts": 11021431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a800", "tid": 35568, "ts": 11021517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499f10", "tid": 35568, "ts": 11021603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a3f0", "tid": 35568, "ts": 11021689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a9a0", "tid": 35568, "ts": 11021776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a730", "tid": 35568, "ts": 11021863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a250", "tid": 35568, "ts": 11021949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a8d0", "tid": 35568, "ts": 11022035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a590", "tid": 35568, "ts": 11022121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b770", "tid": 35568, "ts": 11022208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499d70", "tid": 35568, "ts": 11022295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b0f0", "tid": 35568, "ts": 11022381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499ca0", "tid": 35568, "ts": 11022468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bab0", "tid": 35568, "ts": 11022554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c130", "tid": 35568, "ts": 11022641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a4c0", "tid": 35568, "ts": 11022728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b6a0", "tid": 35568, "ts": 11022814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bdf0", "tid": 35568, "ts": 11022900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a180", "tid": 35568, "ts": 11022986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ae80", "tid": 35568, "ts": 11023073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499960", "tid": 35568, "ts": 11023160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a0b0", "tid": 35568, "ts": 11023246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49adb0", "tid": 35568, "ts": 11023333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b910", "tid": 35568, "ts": 11023419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499140", "tid": 35568, "ts": 11023506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49af50", "tid": 35568, "ts": 11023593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4992e0", "tid": 35568, "ts": 11023679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b1c0", "tid": 35568, "ts": 11023765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499fe0", "tid": 35568, "ts": 11023852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4967d0", "tid": 35568, "ts": 11023938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496560", "tid": 35568, "ts": 11024024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495ee0", "tid": 35568, "ts": 11024110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498fa0", "tid": 35568, "ts": 11024196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498ed0", "tid": 35568, "ts": 11024283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496700", "tid": 35568, "ts": 11024370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4989f0", "tid": 35568, "ts": 11024456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4985e0", "tid": 35568, "ts": 11024543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4962f0", "tid": 35568, "ts": 11024629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497cf0", "tid": 35568, "ts": 11024715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496150", "tid": 35568, "ts": 11024801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497dc0", "tid": 35568, "ts": 11024888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496cb0", "tid": 35568, "ts": 11024975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496be0", "tid": 35568, "ts": 11025061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498370", "tid": 35568, "ts": 11025147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4974d0", "tid": 35568, "ts": 11025234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4979b0", "tid": 35568, "ts": 11025321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497e90", "tid": 35568, "ts": 11025407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4975a0", "tid": 35568, "ts": 11025493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497400", "tid": 35568, "ts": 11025580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496490", "tid": 35568, "ts": 11025666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497330", "tid": 35568, "ts": 11025752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4981d0", "tid": 35568, "ts": 11025838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497740", "tid": 35568, "ts": 11025926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497190", "tid": 35568, "ts": 11026012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499070", "tid": 35568, "ts": 11026098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498030", "tid": 35568, "ts": 11026184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496630", "tid": 35568, "ts": 11026270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496f20", "tid": 35568, "ts": 11026356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4978e0", "tid": 35568, "ts": 11026442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4970c0", "tid": 35568, "ts": 11026528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4982a0", "tid": 35568, "ts": 11026614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492e20", "tid": 35568, "ts": 11026701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495ad0", "tid": 35568, "ts": 11026813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495450", "tid": 35568, "ts": 11026899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495040", "tid": 35568, "ts": 11026986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4952b0", "tid": 35568, "ts": 11027071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495930", "tid": 35568, "ts": 11027157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4945b0", "tid": 35568, "ts": 11027243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494270", "tid": 35568, "ts": 11027330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4934a0", "tid": 35568, "ts": 11027416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495860", "tid": 35568, "ts": 11027502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494dd0", "tid": 35568, "ts": 11027588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493300", "tid": 35568, "ts": 11027674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4938b0", "tid": 35568, "ts": 11027760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4951e0", "tid": 35568, "ts": 11027847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495c70", "tid": 35568, "ts": 11027976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494340", "tid": 35568, "ts": 11028064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4955f0", "tid": 35568, "ts": 11028151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494000", "tid": 35568, "ts": 11028238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4937e0", "tid": 35568, "ts": 11028323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4948f0", "tid": 35568, "ts": 11028410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4933d0", "tid": 35568, "ts": 11028497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492bb0", "tid": 35568, "ts": 11028584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494680", "tid": 35568, "ts": 11028670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495520", "tid": 35568, "ts": 11028757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492a10", "tid": 35568, "ts": 11028844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494820", "tid": 35568, "ts": 11028930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493bf0", "tid": 35568, "ts": 11029016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492ae0", "tid": 35568, "ts": 11029103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494c30", "tid": 35568, "ts": 11029189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493d90", "tid": 35568, "ts": 11029276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492fc0", "tid": 35568, "ts": 11029363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493b20", "tid": 35568, "ts": 11029450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490170", "tid": 35568, "ts": 11029536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490310", "tid": 35568, "ts": 11029622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fbc0", "tid": 35568, "ts": 11029708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f540", "tid": 35568, "ts": 11029795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490650", "tid": 35568, "ts": 11029882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492390", "tid": 35568, "ts": 11029968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492050", "tid": 35568, "ts": 11030054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492870", "tid": 35568, "ts": 11030142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491d10", "tid": 35568, "ts": 11030228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490f40", "tid": 35568, "ts": 11030314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f950", "tid": 35568, "ts": 11030399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490c00", "tid": 35568, "ts": 11030486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f6e0", "tid": 35568, "ts": 11030572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4910e0", "tid": 35568, "ts": 11030658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4900a0", "tid": 35568, "ts": 11030744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491b70", "tid": 35568, "ts": 11030831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491420", "tid": 35568, "ts": 11030916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491760", "tid": 35568, "ts": 11031003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492120", "tid": 35568, "ts": 11031089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490240", "tid": 35568, "ts": 11031176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491aa0", "tid": 35568, "ts": 11031261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490a60", "tid": 35568, "ts": 11031348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4919d0", "tid": 35568, "ts": 11031434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490990", "tid": 35568, "ts": 11031521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4908c0", "tid": 35568, "ts": 11031608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fa20", "tid": 35568, "ts": 11031694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4903e0", "tid": 35568, "ts": 11031780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4914f0", "tid": 35568, "ts": 11031867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490da0", "tid": 35568, "ts": 11031952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491690", "tid": 35568, "ts": 11032039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fe30", "tid": 35568, "ts": 11032126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491830", "tid": 35568, "ts": 11032213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b344a0", "tid": 35568, "ts": 11032299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36ad0", "tid": 35568, "ts": 11032386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b351a0", "tid": 35568, "ts": 11032472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33ef0", "tid": 35568, "ts": 11032559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34f30", "tid": 35568, "ts": 11032645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36110", "tid": 35568, "ts": 11032732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33e20", "tid": 35568, "ts": 11032818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35c30", "tid": 35568, "ts": 11032904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34e60", "tid": 35568, "ts": 11032990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b366c0", "tid": 35568, "ts": 11033077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35750", "tid": 35568, "ts": 11033163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b348b0", "tid": 35568, "ts": 11033250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36d40", "tid": 35568, "ts": 11033336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35f70", "tid": 35568, "ts": 11033423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b358f0", "tid": 35568, "ts": 11033509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b354e0", "tid": 35568, "ts": 11033595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35340", "tid": 35568, "ts": 11033681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35ea0", "tid": 35568, "ts": 11033768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35dd0", "tid": 35568, "ts": 11033854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34980", "tid": 35568, "ts": 11033941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36ee0", "tid": 35568, "ts": 11034027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34300", "tid": 35568, "ts": 11034113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36790", "tid": 35568, "ts": 11034200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34d90", "tid": 35568, "ts": 11034287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34230", "tid": 35568, "ts": 11034374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35000", "tid": 35568, "ts": 11034460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34160", "tid": 35568, "ts": 11034545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b355b0", "tid": 35568, "ts": 11034631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36e10", "tid": 35568, "ts": 11034717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34570", "tid": 35568, "ts": 11034804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35d00", "tid": 35568, "ts": 11034890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32420", "tid": 35568, "ts": 11034976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b321b0", "tid": 35568, "ts": 11035062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30fd0", "tid": 35568, "ts": 11035148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b320e0", "tid": 35568, "ts": 11035235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30bc0", "tid": 35568, "ts": 11035321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33940", "tid": 35568, "ts": 11035407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b337a0", "tid": 35568, "ts": 11035493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31e70", "tid": 35568, "ts": 11035579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30af0", "tid": 35568, "ts": 11035666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32350", "tid": 35568, "ts": 11035752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31c00", "tid": 35568, "ts": 11035838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31650", "tid": 35568, "ts": 11035924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33390", "tid": 35568, "ts": 11036010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b332c0", "tid": 35568, "ts": 11036096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30d60", "tid": 35568, "ts": 11036182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33120", "tid": 35568, "ts": 11036268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32760", "tid": 35568, "ts": 11036355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33050", "tid": 35568, "ts": 11036441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31720", "tid": 35568, "ts": 11036527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30950", "tid": 35568, "ts": 11036613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b325c0", "tid": 35568, "ts": 11036700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32eb0", "tid": 35568, "ts": 11036786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32280", "tid": 35568, "ts": 11036871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32f80", "tid": 35568, "ts": 11036957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b331f0", "tid": 35568, "ts": 11037045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31cd0", "tid": 35568, "ts": 11037131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33ae0", "tid": 35568, "ts": 11037218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31a60", "tid": 35568, "ts": 11037304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31240", "tid": 35568, "ts": 11037390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b318c0", "tid": 35568, "ts": 11037476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32d10", "tid": 35568, "ts": 11037561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32900", "tid": 35568, "ts": 11037647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e250", "tid": 35568, "ts": 11037735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d890", "tid": 35568, "ts": 11037821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b306e0", "tid": 35568, "ts": 11037907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30540", "tid": 35568, "ts": 11037992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b303a0", "tid": 35568, "ts": 11038080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dd70", "tid": 35568, "ts": 11038165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30130", "tid": 35568, "ts": 11038251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f0f0", "tid": 35568, "ts": 11038337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b302d0", "tid": 35568, "ts": 11038424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f020", "tid": 35568, "ts": 11038510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2da30", "tid": 35568, "ts": 11038595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e3f0", "tid": 35568, "ts": 11038681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fc50", "tid": 35568, "ts": 11038768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fb80", "tid": 35568, "ts": 11038855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ef50", "tid": 35568, "ts": 11038942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e4c0", "tid": 35568, "ts": 11039027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ee80", "tid": 35568, "ts": 11039113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d7c0", "tid": 35568, "ts": 11039200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fab0", "tid": 35568, "ts": 11039286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f770", "tid": 35568, "ts": 11039372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e800", "tid": 35568, "ts": 11039459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fec0", "tid": 35568, "ts": 11039544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30060", "tid": 35568, "ts": 11039630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2edb0", "tid": 35568, "ts": 11039717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e660", "tid": 35568, "ts": 11039804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2eb40", "tid": 35568, "ts": 11039891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d550", "tid": 35568, "ts": 11039977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f430", "tid": 35568, "ts": 11040063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e730", "tid": 35568, "ts": 11040149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f290", "tid": 35568, "ts": 11040235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d6f0", "tid": 35568, "ts": 11040321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f360", "tid": 35568, "ts": 11040407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c6b0", "tid": 35568, "ts": 11040494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c5e0", "tid": 35568, "ts": 11040580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a8a0", "tid": 35568, "ts": 11040667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d480", "tid": 35568, "ts": 11040752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d3b0", "tid": 35568, "ts": 11040839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d140", "tid": 35568, "ts": 11040925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a150", "tid": 35568, "ts": 11041012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c100", "tid": 35568, "ts": 11041097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b190", "tid": 35568, "ts": 11041185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b0c0", "tid": 35568, "ts": 11041271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ced0", "tid": 35568, "ts": 11041357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a3c0", "tid": 35568, "ts": 11041443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c440", "tid": 35568, "ts": 11041529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c9f0", "tid": 35568, "ts": 11041615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ce00", "tid": 35568, "ts": 11041701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c030", "tid": 35568, "ts": 11041787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ba80", "tid": 35568, "ts": 11041873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c780", "tid": 35568, "ts": 11041959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c920", "tid": 35568, "ts": 11042046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2af20", "tid": 35568, "ts": 11042132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a2f0", "tid": 35568, "ts": 11042219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b740", "tid": 35568, "ts": 11042306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bc20", "tid": 35568, "ts": 11042393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b670", "tid": 35568, "ts": 11042479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2acb0", "tid": 35568, "ts": 11042566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2abe0", "tid": 35568, "ts": 11042652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cb90", "tid": 35568, "ts": 11042738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b330", "tid": 35568, "ts": 11042824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bb50", "tid": 35568, "ts": 11042910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bf60", "tid": 35568, "ts": 11042997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d210", "tid": 35568, "ts": 11043082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2aa40", "tid": 35568, "ts": 11043169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27d90", "tid": 35568, "ts": 11043255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27b20", "tid": 35568, "ts": 11043342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26fc0", "tid": 35568, "ts": 11043428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b296c0", "tid": 35568, "ts": 11043545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29450", "tid": 35568, "ts": 11043663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28a90", "tid": 35568, "ts": 11043750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b288f0", "tid": 35568, "ts": 11043836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27640", "tid": 35568, "ts": 11043922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b292b0", "tid": 35568, "ts": 11044009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27570", "tid": 35568, "ts": 11044095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29040", "tid": 35568, "ts": 11044181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a080", "tid": 35568, "ts": 11044267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29ba0", "tid": 35568, "ts": 11044353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b274a0", "tid": 35568, "ts": 11044439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28dd0", "tid": 35568, "ts": 11044526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29e10", "tid": 35568, "ts": 11044612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29ad0", "tid": 35568, "ts": 11044699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b284e0", "tid": 35568, "ts": 11044785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28750", "tid": 35568, "ts": 11044871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27e60", "tid": 35568, "ts": 11044957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28680", "tid": 35568, "ts": 11045043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28d00", "tid": 35568, "ts": 11045129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29110", "tid": 35568, "ts": 11045215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27230", "tid": 35568, "ts": 11045302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b278b0", "tid": 35568, "ts": 11045388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b281a0", "tid": 35568, "ts": 11045474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29a00", "tid": 35568, "ts": 11045561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27090", "tid": 35568, "ts": 11045648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28820", "tid": 35568, "ts": 11045735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b280d0", "tid": 35568, "ts": 11045821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29c70", "tid": 35568, "ts": 11045908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b285b0", "tid": 35568, "ts": 11045994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26120", "tid": 35568, "ts": 11046081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b254f0", "tid": 35568, "ts": 11046167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b267a0", "tid": 35568, "ts": 11046253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25eb0", "tid": 35568, "ts": 11046339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b250e0", "tid": 35568, "ts": 11046426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25d10", "tid": 35568, "ts": 11046513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25c40", "tid": 35568, "ts": 11046600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24b30", "tid": 35568, "ts": 11046686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24a60", "tid": 35568, "ts": 11046774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24da0", "tid": 35568, "ts": 11046860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24170", "tid": 35568, "ts": 11046946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b247f0", "tid": 35568, "ts": 11047032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24580", "tid": 35568, "ts": 11047120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b240a0", "tid": 35568, "ts": 11047207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25f80", "tid": 35568, "ts": 11047294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23af0", "tid": 35568, "ts": 11047382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b244b0", "tid": 35568, "ts": 11047510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24650", "tid": 35568, "ts": 11047600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23f00", "tid": 35568, "ts": 11047687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26bb0", "tid": 35568, "ts": 11047774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23d60", "tid": 35568, "ts": 11047860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26a10", "tid": 35568, "ts": 11047947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26460", "tid": 35568, "ts": 11048034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24e70", "tid": 35568, "ts": 11048120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26530", "tid": 35568, "ts": 11048207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26940", "tid": 35568, "ts": 11048293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b261f0", "tid": 35568, "ts": 11048380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b255c0", "tid": 35568, "ts": 11048466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25350", "tid": 35568, "ts": 11048552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b262c0", "tid": 35568, "ts": 11048639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23bc0", "tid": 35568, "ts": 11048725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23e30", "tid": 35568, "ts": 11048811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21c10", "tid": 35568, "ts": 11048898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b218d0", "tid": 35568, "ts": 11048984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21730", "tid": 35568, "ts": 11049070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21250", "tid": 35568, "ts": 11049157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20fe0", "tid": 35568, "ts": 11049243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b220f0", "tid": 35568, "ts": 11049330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20e40", "tid": 35568, "ts": 11049415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21320", "tid": 35568, "ts": 11049502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20550", "tid": 35568, "ts": 11049589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20bd0", "tid": 35568, "ts": 11049675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b214c0", "tid": 35568, "ts": 11049761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22360", "tid": 35568, "ts": 11049847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b229e0", "tid": 35568, "ts": 11049934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22020", "tid": 35568, "ts": 11050019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b233a0", "tid": 35568, "ts": 11050105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22290", "tid": 35568, "ts": 11050191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20f10", "tid": 35568, "ts": 11050278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21f50", "tid": 35568, "ts": 11050365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b232d0", "tid": 35568, "ts": 11050451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22c50", "tid": 35568, "ts": 11050537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b207c0", "tid": 35568, "ts": 11050624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22840", "tid": 35568, "ts": 11050710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b221c0", "tid": 35568, "ts": 11050797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23060", "tid": 35568, "ts": 11050883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b210b0", "tid": 35568, "ts": 11050969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20a30", "tid": 35568, "ts": 11051055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22500", "tid": 35568, "ts": 11051141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23540", "tid": 35568, "ts": 11051227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21a70", "tid": 35568, "ts": 11051314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20890", "tid": 35568, "ts": 11051400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b236e0", "tid": 35568, "ts": 11051487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20d70", "tid": 35568, "ts": 11051573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f850", "tid": 35568, "ts": 11051660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f6b0", "tid": 35568, "ts": 11051746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f370", "tid": 35568, "ts": 11051832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1edc0", "tid": 35568, "ts": 11051917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d2f0", "tid": 35568, "ts": 11052004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20480", "tid": 35568, "ts": 11052091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e5a0", "tid": 35568, "ts": 11052177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ecf0", "tid": 35568, "ts": 11052263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fed0", "tid": 35568, "ts": 11052351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f1d0", "tid": 35568, "ts": 11052438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b203b0", "tid": 35568, "ts": 11052524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d150", "tid": 35568, "ts": 11052610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20070", "tid": 35568, "ts": 11052696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d630", "tid": 35568, "ts": 11052782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fd30", "tid": 35568, "ts": 11052868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f100", "tid": 35568, "ts": 11052955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fb90", "tid": 35568, "ts": 11053041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ffa0", "tid": 35568, "ts": 11053127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e8e0", "tid": 35568, "ts": 11053214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d490", "tid": 35568, "ts": 11053300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d700", "tid": 35568, "ts": 11053387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d8a0", "tid": 35568, "ts": 11053473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d3c0", "tid": 35568, "ts": 11053559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fac0", "tid": 35568, "ts": 11053645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1da40", "tid": 35568, "ts": 11053734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fc60", "tid": 35568, "ts": 11053820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f9f0", "tid": 35568, "ts": 11053907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e260", "tid": 35568, "ts": 11053993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dbe0", "tid": 35568, "ts": 11054080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dcb0", "tid": 35568, "ts": 11054166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ea80", "tid": 35568, "ts": 11054253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1fe00", "tid": 35568, "ts": 11054339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ad90", "tid": 35568, "ts": 11054425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1abf0", "tid": 35568, "ts": 11054511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1aa50", "tid": 35568, "ts": 11054597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a4a0", "tid": 35568, "ts": 11054683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19e20", "tid": 35568, "ts": 11054771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c450", "tid": 35568, "ts": 11054857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c2b0", "tid": 35568, "ts": 11054943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b8f0", "tid": 35568, "ts": 11055030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bc30", "tid": 35568, "ts": 11055117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b680", "tid": 35568, "ts": 11055203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cee0", "tid": 35568, "ts": 11055289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b820", "tid": 35568, "ts": 11055376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c1e0", "tid": 35568, "ts": 11055462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cad0", "tid": 35568, "ts": 11055549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ca00", "tid": 35568, "ts": 11055634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a640", "tid": 35568, "ts": 11055721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b000", "tid": 35568, "ts": 11055808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c790", "tid": 35568, "ts": 11055894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c6c0", "tid": 35568, "ts": 11055981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b1a0", "tid": 35568, "ts": 11056067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cd40", "tid": 35568, "ts": 11056154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b270", "tid": 35568, "ts": 11056240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a160", "tid": 35568, "ts": 11056327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a090", "tid": 35568, "ts": 11056414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1af30", "tid": 35568, "ts": 11056501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bf70", "tid": 35568, "ts": 11056587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a3d0", "tid": 35568, "ts": 11056673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ae60", "tid": 35568, "ts": 11056759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19fc0", "tid": 35568, "ts": 11056845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b9c0", "tid": 35568, "ts": 11056932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c860", "tid": 35568, "ts": 11057018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bdd0", "tid": 35568, "ts": 11057104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16950", "tid": 35568, "ts": 11057191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19ae0", "tid": 35568, "ts": 11057278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b197a0", "tid": 35568, "ts": 11057364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19460", "tid": 35568, "ts": 11057451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b191f0", "tid": 35568, "ts": 11057538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18f80", "tid": 35568, "ts": 11057624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17f40", "tid": 35568, "ts": 11057711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b185c0", "tid": 35568, "ts": 11057798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18b70", "tid": 35568, "ts": 11057885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17c00", "tid": 35568, "ts": 11057971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17a60", "tid": 35568, "ts": 11058058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18420", "tid": 35568, "ts": 11058143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17cd0", "tid": 35568, "ts": 11058231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17e70", "tid": 35568, "ts": 11058316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b189d0", "tid": 35568, "ts": 11058403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b196d0", "tid": 35568, "ts": 11058489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17990", "tid": 35568, "ts": 11058575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17650", "tid": 35568, "ts": 11058662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b174b0", "tid": 35568, "ts": 11058748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16f00", "tid": 35568, "ts": 11058834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b173e0", "tid": 35568, "ts": 11058920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16d60", "tid": 35568, "ts": 11059006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16c90", "tid": 35568, "ts": 11059093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16bc0", "tid": 35568, "ts": 11059217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b181b0", "tid": 35568, "ts": 11059306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18830", "tid": 35568, "ts": 11059393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b178c0", "tid": 35568, "ts": 11059479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19120", "tid": 35568, "ts": 11059565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18900", "tid": 35568, "ts": 11059652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16e30", "tid": 35568, "ts": 11059738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19600", "tid": 35568, "ts": 11059824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18de0", "tid": 35568, "ts": 11059911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b136f0", "tid": 35568, "ts": 11059998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13550", "tid": 35568, "ts": 11060085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16540", "tid": 35568, "ts": 11060171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b162d0", "tid": 35568, "ts": 11060258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15430", "tid": 35568, "ts": 11060344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16060", "tid": 35568, "ts": 11060431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15c50", "tid": 35568, "ts": 11060517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15ab0", "tid": 35568, "ts": 11060604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14590", "tid": 35568, "ts": 11060691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b144c0", "tid": 35568, "ts": 11060778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15360", "tid": 35568, "ts": 11060864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b140b0", "tid": 35568, "ts": 11060950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13fe0", "tid": 35568, "ts": 11061037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16610", "tid": 35568, "ts": 11061123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15770", "tid": 35568, "ts": 11061209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b156a0", "tid": 35568, "ts": 11061296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b151c0", "tid": 35568, "ts": 11061383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13f10", "tid": 35568, "ts": 11061470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15df0", "tid": 35568, "ts": 11061556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14e80", "tid": 35568, "ts": 11061642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15020", "tid": 35568, "ts": 11061729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15910", "tid": 35568, "ts": 11061815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14db0", "tid": 35568, "ts": 11061901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15d20", "tid": 35568, "ts": 11061987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13a30", "tid": 35568, "ts": 11062075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13890", "tid": 35568, "ts": 11062161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14ce0", "tid": 35568, "ts": 11062247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15290", "tid": 35568, "ts": 11062333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14b40", "tid": 35568, "ts": 11062420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13e40", "tid": 35568, "ts": 11062506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14730", "tid": 35568, "ts": 11062593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14660", "tid": 35568, "ts": 11062679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b132e0", "tid": 35568, "ts": 11062766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11a80", "tid": 35568, "ts": 11062853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b118e0", "tid": 35568, "ts": 11062940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12ed0", "tid": 35568, "ts": 11063027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12e00", "tid": 35568, "ts": 11063113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12b90", "tid": 35568, "ts": 11063199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12ac0", "tid": 35568, "ts": 11063286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12850", "tid": 35568, "ts": 11063371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13070", "tid": 35568, "ts": 11063459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10b10", "tid": 35568, "ts": 11063546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10970", "tid": 35568, "ts": 11063633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b110c0", "tid": 35568, "ts": 11063719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11740", "tid": 35568, "ts": 11063806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11f60", "tid": 35568, "ts": 11063893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11330", "tid": 35568, "ts": 11063979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11e90", "tid": 35568, "ts": 11064065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b115a0", "tid": 35568, "ts": 11064151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12370", "tid": 35568, "ts": 11064238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12d30", "tid": 35568, "ts": 11064324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10a40", "tid": 35568, "ts": 11064411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b126b0", "tid": 35568, "ts": 11064498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12440", "tid": 35568, "ts": 11064583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12100", "tid": 35568, "ts": 11064669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10be0", "tid": 35568, "ts": 11064756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12920", "tid": 35568, "ts": 11064843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11cf0", "tid": 35568, "ts": 11064930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b107d0", "tid": 35568, "ts": 11065017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10cb0", "tid": 35568, "ts": 11065104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10560", "tid": 35568, "ts": 11065191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10220", "tid": 35568, "ts": 11065277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b125e0", "tid": 35568, "ts": 11065363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b133b0", "tid": 35568, "ts": 11065449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f040", "tid": 35568, "ts": 11065536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ef70", "tid": 35568, "ts": 11065622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0eea0", "tid": 35568, "ts": 11065709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ed00", "tid": 35568, "ts": 11065796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e340", "tid": 35568, "ts": 11065883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e000", "tid": 35568, "ts": 11065969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f1e0", "tid": 35568, "ts": 11066055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ea90", "tid": 35568, "ts": 11066142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d300", "tid": 35568, "ts": 11066228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0de60", "tid": 35568, "ts": 11066315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fa00", "tid": 35568, "ts": 11066401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f380", "tid": 35568, "ts": 11066487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0dbf0", "tid": 35568, "ts": 11066574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fba0", "tid": 35568, "ts": 11066660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d980", "tid": 35568, "ts": 11066746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e1a0", "tid": 35568, "ts": 11066832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fe10", "tid": 35568, "ts": 11066919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f6c0", "tid": 35568, "ts": 11067005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e5b0", "tid": 35568, "ts": 11067092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e0d0", "tid": 35568, "ts": 11067178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cef0", "tid": 35568, "ts": 11067264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ce20", "tid": 35568, "ts": 11067350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f2b0", "tid": 35568, "ts": 11067437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ffb0", "tid": 35568, "ts": 11067524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d8b0", "tid": 35568, "ts": 11067611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f790", "tid": 35568, "ts": 11067697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f520", "tid": 35568, "ts": 11067783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fad0", "tid": 35568, "ts": 11067870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d090", "tid": 35568, "ts": 11067956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e270", "tid": 35568, "ts": 11068042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d160", "tid": 35568, "ts": 11068129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fee0", "tid": 35568, "ts": 11068215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ada0", "tid": 35568, "ts": 11068302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bf80", "tid": 35568, "ts": 11068387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c7a0", "tid": 35568, "ts": 11068473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0beb0", "tid": 35568, "ts": 11068559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ac00", "tid": 35568, "ts": 11068645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b350", "tid": 35568, "ts": 11068732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c050", "tid": 35568, "ts": 11068818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a240", "tid": 35568, "ts": 11068904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b280", "tid": 35568, "ts": 11068992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a170", "tid": 35568, "ts": 11069078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bd10", "tid": 35568, "ts": 11069165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c460", "tid": 35568, "ts": 11069251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a8c0", "tid": 35568, "ts": 11069338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09950", "tid": 35568, "ts": 11069424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b4f0", "tid": 35568, "ts": 11069510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09af0", "tid": 35568, "ts": 11069596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09f00", "tid": 35568, "ts": 11069683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b010", "tid": 35568, "ts": 11069769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a7f0", "tid": 35568, "ts": 11069855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c2c0", "tid": 35568, "ts": 11069941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c530", "tid": 35568, "ts": 11070028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ab30", "tid": 35568, "ts": 11070114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09fd0", "tid": 35568, "ts": 11070201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ca10", "tid": 35568, "ts": 11070287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cae0", "tid": 35568, "ts": 11070374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bb70", "tid": 35568, "ts": 11070460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a650", "tid": 35568, "ts": 11070546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cc80", "tid": 35568, "ts": 11070632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bde0", "tid": 35568, "ts": 11070719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0baa0", "tid": 35568, "ts": 11070805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ae70", "tid": 35568, "ts": 11070892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c1f0", "tid": 35568, "ts": 11070978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07e80", "tid": 35568, "ts": 11071064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07ce0", "tid": 35568, "ts": 11071151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b078d0", "tid": 35568, "ts": 11071238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07590", "tid": 35568, "ts": 11071324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09540", "tid": 35568, "ts": 11071411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b073f0", "tid": 35568, "ts": 11071497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09130", "tid": 35568, "ts": 11071583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07320", "tid": 35568, "ts": 11071669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07180", "tid": 35568, "ts": 11071756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07250", "tid": 35568, "ts": 11071842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06b00", "tid": 35568, "ts": 11071929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07b40", "tid": 35568, "ts": 11072015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08910", "tid": 35568, "ts": 11072102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b089e0", "tid": 35568, "ts": 11072187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06890", "tid": 35568, "ts": 11072273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08840", "tid": 35568, "ts": 11072359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06960", "tid": 35568, "ts": 11072446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b070b0", "tid": 35568, "ts": 11072532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b080f0", "tid": 35568, "ts": 11072619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08770", "tid": 35568, "ts": 11072706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08360", "tid": 35568, "ts": 11072792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09880", "tid": 35568, "ts": 11072878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b097b0", "tid": 35568, "ts": 11072965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b096e0", "tid": 35568, "ts": 11073051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08df0", "tid": 35568, "ts": 11073139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06bd0", "tid": 35568, "ts": 11073225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b085d0", "tid": 35568, "ts": 11073312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07a70", "tid": 35568, "ts": 11073398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b074c0", "tid": 35568, "ts": 11073485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b081c0", "tid": 35568, "ts": 11073572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09200", "tid": 35568, "ts": 11073658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08430", "tid": 35568, "ts": 11073744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b033c0", "tid": 35568, "ts": 11073830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04f60", "tid": 35568, "ts": 11073916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b056b0", "tid": 35568, "ts": 11074003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03150", "tid": 35568, "ts": 11074089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04a80", "tid": 35568, "ts": 11074176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04400", "tid": 35568, "ts": 11074263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04260", "tid": 35568, "ts": 11074349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03220", "tid": 35568, "ts": 11074435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05b90", "tid": 35568, "ts": 11074523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b049b0", "tid": 35568, "ts": 11074609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04330", "tid": 35568, "ts": 11074696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b048e0", "tid": 35568, "ts": 11074820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04810", "tid": 35568, "ts": 11074996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03970", "tid": 35568, "ts": 11075144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03a40", "tid": 35568, "ts": 11075320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04dc0", "tid": 35568, "ts": 11075440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03700", "tid": 35568, "ts": 11075591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03ff0", "tid": 35568, "ts": 11075703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b052a0", "tid": 35568, "ts": 11075790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06070", "tid": 35568, "ts": 11075909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06210", "tid": 35568, "ts": 11076099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05fa0", "tid": 35568, "ts": 11076231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03e50", "tid": 35568, "ts": 11076317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b040c0", "tid": 35568, "ts": 11076402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05920", "tid": 35568, "ts": 11076490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05510", "tid": 35568, "ts": 11076575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b038a0", "tid": 35568, "ts": 11076661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b044d0", "tid": 35568, "ts": 11076747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04740", "tid": 35568, "ts": 11076835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03d80", "tid": 35568, "ts": 11076921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06480", "tid": 35568, "ts": 11077008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03560", "tid": 35568, "ts": 11077093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00570", "tid": 35568, "ts": 11077180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00160", "tid": 35568, "ts": 11077266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affd50", "tid": 35568, "ts": 11077352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01820", "tid": 35568, "ts": 11077439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affef0", "tid": 35568, "ts": 11077525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b015b0", "tid": 35568, "ts": 11077611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b014e0", "tid": 35568, "ts": 11077698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02c70", "tid": 35568, "ts": 11077784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02ba0", "tid": 35568, "ts": 11077870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01a90", "tid": 35568, "ts": 11077956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00bf0", "tid": 35568, "ts": 11078043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00b20", "tid": 35568, "ts": 11078128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01270", "tid": 35568, "ts": 11078214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00d90", "tid": 35568, "ts": 11078301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b004a0", "tid": 35568, "ts": 11078387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b007e0", "tid": 35568, "ts": 11078472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02110", "tid": 35568, "ts": 11078559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02450", "tid": 35568, "ts": 11078644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01f70", "tid": 35568, "ts": 11078730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b018f0", "tid": 35568, "ts": 11078816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b022b0", "tid": 35568, "ts": 11078902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00230", "tid": 35568, "ts": 11078988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02fb0", "tid": 35568, "ts": 11079074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b010d0", "tid": 35568, "ts": 11079160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01340", "tid": 35568, "ts": 11079247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02e10", "tid": 35568, "ts": 11079333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b025f0", "tid": 35568, "ts": 11079418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b011a0", "tid": 35568, "ts": 11079505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00710", "tid": 35568, "ts": 11079591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affe20", "tid": 35568, "ts": 11079677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b021e0", "tid": 35568, "ts": 11079763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00e60", "tid": 35568, "ts": 11079849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcc90", "tid": 35568, "ts": 11079935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff6d0", "tid": 35568, "ts": 11080021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff460", "tid": 35568, "ts": 11080108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff050", "tid": 35568, "ts": 11080194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff2c0", "tid": 35568, "ts": 11080280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd720", "tid": 35568, "ts": 11080367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afeeb0", "tid": 35568, "ts": 11080453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe1b0", "tid": 35568, "ts": 11080540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd4b0", "tid": 35568, "ts": 11080626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afede0", "tid": 35568, "ts": 11080712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afca20", "tid": 35568, "ts": 11080798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afef80", "tid": 35568, "ts": 11080884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc950", "tid": 35568, "ts": 11080971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd650", "tid": 35568, "ts": 11081057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd8c0", "tid": 35568, "ts": 11081144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcf00", "tid": 35568, "ts": 11081230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe010", "tid": 35568, "ts": 11081316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe760", "tid": 35568, "ts": 11081402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affae0", "tid": 35568, "ts": 11081489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff870", "tid": 35568, "ts": 11081575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdf40", "tid": 35568, "ts": 11081661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff940", "tid": 35568, "ts": 11081748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcfd0", "tid": 35568, "ts": 11081834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affa10", "tid": 35568, "ts": 11081920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe4f0", "tid": 35568, "ts": 11082007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe5c0", "tid": 35568, "ts": 11082094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd990", "tid": 35568, "ts": 11082181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe830", "tid": 35568, "ts": 11082267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afeb70", "tid": 35568, "ts": 11082356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affbb0", "tid": 35568, "ts": 11082443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd240", "tid": 35568, "ts": 11082530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff120", "tid": 35568, "ts": 11082617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afae80", "tid": 35568, "ts": 11082704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afadb0", "tid": 35568, "ts": 11082791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa800", "tid": 35568, "ts": 11082920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa9a0", "tid": 35568, "ts": 11083008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbec0", "tid": 35568, "ts": 11083094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb6a0", "tid": 35568, "ts": 11083180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9ca0", "tid": 35568, "ts": 11083266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9550", "tid": 35568, "ts": 11083352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc6e0", "tid": 35568, "ts": 11083440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9b00", "tid": 35568, "ts": 11083525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aface0", "tid": 35568, "ts": 11083611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa730", "tid": 35568, "ts": 11083697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afac10", "tid": 35568, "ts": 11083783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af96f0", "tid": 35568, "ts": 11083870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb500", "tid": 35568, "ts": 11083955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb430", "tid": 35568, "ts": 11084041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbb80", "tid": 35568, "ts": 11084128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbab0", "tid": 35568, "ts": 11084214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9f10", "tid": 35568, "ts": 11084300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9960", "tid": 35568, "ts": 11084386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa4c0", "tid": 35568, "ts": 11084472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc3a0", "tid": 35568, "ts": 11084558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afaa70", "tid": 35568, "ts": 11084644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb770", "tid": 35568, "ts": 11084730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc130", "tid": 35568, "ts": 11084817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa250", "tid": 35568, "ts": 11084902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb020", "tid": 35568, "ts": 11084988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb9e0", "tid": 35568, "ts": 11085074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb1c0", "tid": 35568, "ts": 11085161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbc50", "tid": 35568, "ts": 11085248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb5d0", "tid": 35568, "ts": 11085334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc200", "tid": 35568, "ts": 11085421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7e90", "tid": 35568, "ts": 11085508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7190", "tid": 35568, "ts": 11085594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af78e0", "tid": 35568, "ts": 11085680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7cf0", "tid": 35568, "ts": 11085766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7dc0", "tid": 35568, "ts": 11085852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6970", "tid": 35568, "ts": 11085939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6560", "tid": 35568, "ts": 11086025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6b10", "tid": 35568, "ts": 11086111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7740", "tid": 35568, "ts": 11086197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af62f0", "tid": 35568, "ts": 11086284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6150", "tid": 35568, "ts": 11086370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9210", "tid": 35568, "ts": 11086456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8ed0", "tid": 35568, "ts": 11086542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af74d0", "tid": 35568, "ts": 11086629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af93b0", "tid": 35568, "ts": 11086715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6d80", "tid": 35568, "ts": 11086800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8510", "tid": 35568, "ts": 11086886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6700", "tid": 35568, "ts": 11086973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af75a0", "tid": 35568, "ts": 11087060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6f20", "tid": 35568, "ts": 11087145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8ac0", "tid": 35568, "ts": 11087232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8b90", "tid": 35568, "ts": 11087317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8370", "tid": 35568, "ts": 11087403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af89f0", "tid": 35568, "ts": 11087489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af79b0", "tid": 35568, "ts": 11087577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9070", "tid": 35568, "ts": 11087664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8100", "tid": 35568, "ts": 11087750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af82a0", "tid": 35568, "ts": 11087836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6e50", "tid": 35568, "ts": 11087923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af67d0", "tid": 35568, "ts": 11088008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8fa0", "tid": 35568, "ts": 11088094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af81d0", "tid": 35568, "ts": 11088181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6b80", "tid": 35568, "ts": 11088268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f53f0", "tid": 35568, "ts": 11088355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5180", "tid": 35568, "ts": 11088441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4bd0", "tid": 35568, "ts": 11088527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4a30", "tid": 35568, "ts": 11088613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4fe0", "tid": 35568, "ts": 11088699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4890", "tid": 35568, "ts": 11088786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6840", "tid": 35568, "ts": 11088872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4d70", "tid": 35568, "ts": 11088959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6770", "tid": 35568, "ts": 11089045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4210", "tid": 35568, "ts": 11089131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4140", "tid": 35568, "ts": 11089217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3e00", "tid": 35568, "ts": 11089303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f66a0", "tid": 35568, "ts": 11089390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6df0", "tid": 35568, "ts": 11089477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6290", "tid": 35568, "ts": 11089563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f54c0", "tid": 35568, "ts": 11089650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6360", "tid": 35568, "ts": 11089736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5f50", "tid": 35568, "ts": 11089823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3fa0", "tid": 35568, "ts": 11089909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f59a0", "tid": 35568, "ts": 11089995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5730", "tid": 35568, "ts": 11090081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6ab0", "tid": 35568, "ts": 11090166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4480", "tid": 35568, "ts": 11090253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6ec0", "tid": 35568, "ts": 11090339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5e80", "tid": 35568, "ts": 11090475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f43b0", "tid": 35568, "ts": 11090562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5ce0", "tid": 35568, "ts": 11090649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f61c0", "tid": 35568, "ts": 11090736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5660", "tid": 35568, "ts": 11090822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5a70", "tid": 35568, "ts": 11090909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1d80", "tid": 35568, "ts": 11090995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f18a0", "tid": 35568, "ts": 11091081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0c70", "tid": 35568, "ts": 11091167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3ac0", "tid": 35568, "ts": 11091253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3780", "tid": 35568, "ts": 11091339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f35e0", "tid": 35568, "ts": 11091426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1630", "tid": 35568, "ts": 11091512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1a40", "tid": 35568, "ts": 11091598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0d40", "tid": 35568, "ts": 11091685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2670", "tid": 35568, "ts": 11091771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3100", "tid": 35568, "ts": 11091857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f24d0", "tid": 35568, "ts": 11091944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2dc0", "tid": 35568, "ts": 11092030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1cb0", "tid": 35568, "ts": 11092116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2cf0", "tid": 35568, "ts": 11092202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2c20", "tid": 35568, "ts": 11092288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0ee0", "tid": 35568, "ts": 11092374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1220", "tid": 35568, "ts": 11092461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f32a0", "tid": 35568, "ts": 11092547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0ad0", "tid": 35568, "ts": 11092633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f12f0", "tid": 35568, "ts": 11092720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1be0", "tid": 35568, "ts": 11092807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2810", "tid": 35568, "ts": 11092892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f29b0", "tid": 35568, "ts": 11092979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0930", "tid": 35568, "ts": 11093065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0ba0", "tid": 35568, "ts": 11093152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f28e0", "tid": 35568, "ts": 11093238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f13c0", "tid": 35568, "ts": 11093324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f31d0", "tid": 35568, "ts": 11093410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2330", "tid": 35568, "ts": 11093497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1080", "tid": 35568, "ts": 11093584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2740", "tid": 35568, "ts": 11093670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee7e0", "tid": 35568, "ts": 11093755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee4a0", "tid": 35568, "ts": 11093842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed7a0", "tid": 35568, "ts": 11093928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef8f0", "tid": 35568, "ts": 11094015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0790", "tid": 35568, "ts": 11094101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eed90", "tid": 35568, "ts": 11094187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef680", "tid": 35568, "ts": 11094273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0520", "tid": 35568, "ts": 11094359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edef0", "tid": 35568, "ts": 11094445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee300", "tid": 35568, "ts": 11094532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eecc0", "tid": 35568, "ts": 11094619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef820", "tid": 35568, "ts": 11094728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eebf0", "tid": 35568, "ts": 11094814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edae0", "tid": 35568, "ts": 11094900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef410", "tid": 35568, "ts": 11094987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efd00", "tid": 35568, "ts": 11095074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efc30", "tid": 35568, "ts": 11095160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eea50", "tid": 35568, "ts": 11095246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee230", "tid": 35568, "ts": 11095333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f02b0", "tid": 35568, "ts": 11095419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0110", "tid": 35568, "ts": 11095505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed530", "tid": 35568, "ts": 11095593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef270", "tid": 35568, "ts": 11095679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eeb20", "tid": 35568, "ts": 11095765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f06c0", "tid": 35568, "ts": 11095852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eee60", "tid": 35568, "ts": 11095938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef1a0", "tid": 35568, "ts": 11096025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edd50", "tid": 35568, "ts": 11096111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef000", "tid": 35568, "ts": 11096197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee980", "tid": 35568, "ts": 11096284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef9c0", "tid": 35568, "ts": 11096369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ede20", "tid": 35568, "ts": 11096456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed1f0", "tid": 35568, "ts": 11096543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebc00", "tid": 35568, "ts": 11096630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eba60", "tid": 35568, "ts": 11096716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed050", "tid": 35568, "ts": 11096802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb580", "tid": 35568, "ts": 11096888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecf80", "tid": 35568, "ts": 11096974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb7f0", "tid": 35568, "ts": 11097061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec690", "tid": 35568, "ts": 11097147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb720", "tid": 35568, "ts": 11097234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb0a0", "tid": 35568, "ts": 11097320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecd10", "tid": 35568, "ts": 11097406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec5c0", "tid": 35568, "ts": 11097491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec010", "tid": 35568, "ts": 11097577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eae30", "tid": 35568, "ts": 11097664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec9d0", "tid": 35568, "ts": 11097751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebda0", "tid": 35568, "ts": 11097837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea2d0", "tid": 35568, "ts": 11097923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec1b0", "tid": 35568, "ts": 11098009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed390", "tid": 35568, "ts": 11098095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eabc0", "tid": 35568, "ts": 11098182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea470", "tid": 35568, "ts": 11098267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb650", "tid": 35568, "ts": 11098354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb8c0", "tid": 35568, "ts": 11098441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea6e0", "tid": 35568, "ts": 11098527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea950", "tid": 35568, "ts": 11098627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eceb0", "tid": 35568, "ts": 11098715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed2c0", "tid": 35568, "ts": 11098801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec4f0", "tid": 35568, "ts": 11098887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb3e0", "tid": 35568, "ts": 11098974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea610", "tid": 35568, "ts": 11099060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea540", "tid": 35568, "ts": 11099146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8730", "tid": 35568, "ts": 11099232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8590", "tid": 35568, "ts": 11099317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e80b0", "tid": 35568, "ts": 11099404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7ca0", "tid": 35568, "ts": 11099490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7b00", "tid": 35568, "ts": 11099577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e83f0", "tid": 35568, "ts": 11099663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7140", "tid": 35568, "ts": 11099749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7070", "tid": 35568, "ts": 11099835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8320", "tid": 35568, "ts": 11099921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8800", "tid": 35568, "ts": 11100007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7620", "tid": 35568, "ts": 11100094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9c50", "tid": 35568, "ts": 11100180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7d70", "tid": 35568, "ts": 11100267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6d30", "tid": 35568, "ts": 11100354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6fa0", "tid": 35568, "ts": 11100440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7e40", "tid": 35568, "ts": 11100526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8f50", "tid": 35568, "ts": 11100612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7960", "tid": 35568, "ts": 11100697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7550", "tid": 35568, "ts": 11100784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e89a0", "tid": 35568, "ts": 11100870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9ab0", "tid": 35568, "ts": 11100956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8a70", "tid": 35568, "ts": 11101042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9360", "tid": 35568, "ts": 11101128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e96a0", "tid": 35568, "ts": 11101215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8e80", "tid": 35568, "ts": 11101301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9500", "tid": 35568, "ts": 11101387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7890", "tid": 35568, "ts": 11101474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e88d0", "tid": 35568, "ts": 11101560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9910", "tid": 35568, "ts": 11101646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8b40", "tid": 35568, "ts": 11101732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e90f0", "tid": 35568, "ts": 11101820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9020", "tid": 35568, "ts": 11101906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e43c0", "tid": 35568, "ts": 11101992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4080", "tid": 35568, "ts": 11102078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3ee0", "tid": 35568, "ts": 11102165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3d40", "tid": 35568, "ts": 11102250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3ba0", "tid": 35568, "ts": 11102336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e42f0", "tid": 35568, "ts": 11102422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3930", "tid": 35568, "ts": 11102509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6b90", "tid": 35568, "ts": 11102595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4b10", "tid": 35568, "ts": 11102680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6ac0", "tid": 35568, "ts": 11102767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5400", "tid": 35568, "ts": 11102854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3ad0", "tid": 35568, "ts": 11102940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5190", "tid": 35568, "ts": 11103026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6100", "tid": 35568, "ts": 11103112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6030", "tid": 35568, "ts": 11103199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e50c0", "tid": 35568, "ts": 11103285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6440", "tid": 35568, "ts": 11103371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4cb0", "tid": 35568, "ts": 11103457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5330", "tid": 35568, "ts": 11103544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4220", "tid": 35568, "ts": 11103630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e69f0", "tid": 35568, "ts": 11103716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5b50", "tid": 35568, "ts": 11103803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5f60", "tid": 35568, "ts": 11103889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6370", "tid": 35568, "ts": 11103975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e48a0", "tid": 35568, "ts": 11104062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5cf0", "tid": 35568, "ts": 11104148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e47d0", "tid": 35568, "ts": 11104235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5a80", "tid": 35568, "ts": 11104321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6510", "tid": 35568, "ts": 11104407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4630", "tid": 35568, "ts": 11104494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4560", "tid": 35568, "ts": 11104580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5dc0", "tid": 35568, "ts": 11104666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1f30", "tid": 35568, "ts": 11104752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e17e0", "tid": 35568, "ts": 11104838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2000", "tid": 35568, "ts": 11104924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0ae0", "tid": 35568, "ts": 11105010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1640", "tid": 35568, "ts": 11105096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e32b0", "tid": 35568, "ts": 11105182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e18b0", "tid": 35568, "ts": 11105268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e14a0", "tid": 35568, "ts": 11105355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3110", "tid": 35568, "ts": 11105441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0600", "tid": 35568, "ts": 11105528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1090", "tid": 35568, "ts": 11105614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2d00", "tid": 35568, "ts": 11105701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1bf0", "tid": 35568, "ts": 11105787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e21a0", "tid": 35568, "ts": 11105873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e25b0", "tid": 35568, "ts": 11105960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0940", "tid": 35568, "ts": 11106110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3380", "tid": 35568, "ts": 11106198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e28f0", "tid": 35568, "ts": 11106284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e20d0", "tid": 35568, "ts": 11106371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3450", "tid": 35568, "ts": 11106457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1b20", "tid": 35568, "ts": 11106543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2a90", "tid": 35568, "ts": 11106629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2ea0", "tid": 35568, "ts": 11106716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2270", "tid": 35568, "ts": 11106802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0d50", "tid": 35568, "ts": 11106889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3520", "tid": 35568, "ts": 11106976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0c80", "tid": 35568, "ts": 11107063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2dd0", "tid": 35568, "ts": 11107149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0870", "tid": 35568, "ts": 11107235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1300", "tid": 35568, "ts": 11107321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2410", "tid": 35568, "ts": 11107408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1a50", "tid": 35568, "ts": 11107494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de3e0", "tid": 35568, "ts": 11107580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de240", "tid": 35568, "ts": 11107666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dff80", "tid": 35568, "ts": 11107753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df4f0", "tid": 35568, "ts": 11107839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df420", "tid": 35568, "ts": 11107926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df0e0", "tid": 35568, "ts": 11108012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd200", "tid": 35568, "ts": 11108099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd130", "tid": 35568, "ts": 11108185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0460", "tid": 35568, "ts": 11108272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0390", "tid": 35568, "ts": 11108358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfde0", "tid": 35568, "ts": 11108446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfd10", "tid": 35568, "ts": 11108531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33def40", "tid": 35568, "ts": 11108618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dec00", "tid": 35568, "ts": 11108705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33deb30", "tid": 35568, "ts": 11108792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e02c0", "tid": 35568, "ts": 11108878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df9d0", "tid": 35568, "ts": 11108965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddbc0", "tid": 35568, "ts": 11109051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd540", "tid": 35568, "ts": 11109137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfc40", "tid": 35568, "ts": 11109223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd610", "tid": 35568, "ts": 11109310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33deda0", "tid": 35568, "ts": 11109397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de650", "tid": 35568, "ts": 11109484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddc90", "tid": 35568, "ts": 11109569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df5c0", "tid": 35568, "ts": 11109655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e01f0", "tid": 35568, "ts": 11109741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df010", "tid": 35568, "ts": 11109829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd470", "tid": 35568, "ts": 11109916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de720", "tid": 35568, "ts": 11110003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddf00", "tid": 35568, "ts": 11110089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df760", "tid": 35568, "ts": 11110176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dda20", "tid": 35568, "ts": 11110262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9e00", "tid": 35568, "ts": 11110348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcf90", "tid": 35568, "ts": 11110434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcc50", "tid": 35568, "ts": 11110520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc910", "tid": 35568, "ts": 11110607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcb80", "tid": 35568, "ts": 11110693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbce0", "tid": 35568, "ts": 11110780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da7c0", "tid": 35568, "ts": 11110867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc0f0", "tid": 35568, "ts": 11110953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db8d0", "tid": 35568, "ts": 11111040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db800", "tid": 35568, "ts": 11111126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da3b0", "tid": 35568, "ts": 11111213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db180", "tid": 35568, "ts": 11111300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbc10", "tid": 35568, "ts": 11111386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcdf0", "tid": 35568, "ts": 11111472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dafe0", "tid": 35568, "ts": 11111559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbf50", "tid": 35568, "ts": 11111645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dba70", "tid": 35568, "ts": 11111731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33daf10", "tid": 35568, "ts": 11111817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db250", "tid": 35568, "ts": 11111904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc770", "tid": 35568, "ts": 11111990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbe80", "tid": 35568, "ts": 11112077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc6a0", "tid": 35568, "ts": 11112163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dad70", "tid": 35568, "ts": 11112250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33daa30", "tid": 35568, "ts": 11112335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da070", "tid": 35568, "ts": 11112422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db3f0", "tid": 35568, "ts": 11112508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dabd0", "tid": 35568, "ts": 11112595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da210", "tid": 35568, "ts": 11112682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcd20", "tid": 35568, "ts": 11112769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc1c0", "tid": 35568, "ts": 11112855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dab00", "tid": 35568, "ts": 11112943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da480", "tid": 35568, "ts": 11113029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8330", "tid": 35568, "ts": 11113115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d72f0", "tid": 35568, "ts": 11113201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d80c0", "tid": 35568, "ts": 11113289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8740", "tid": 35568, "ts": 11113375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8260", "tid": 35568, "ts": 11113461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8b50", "tid": 35568, "ts": 11113547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7e50", "tid": 35568, "ts": 11113634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6ee0", "tid": 35568, "ts": 11113721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d95e0", "tid": 35568, "ts": 11113807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7b10", "tid": 35568, "ts": 11113894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7a40", "tid": 35568, "ts": 11113982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d85a0", "tid": 35568, "ts": 11114068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9100", "tid": 35568, "ts": 11114155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7970", "tid": 35568, "ts": 11114241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9030", "tid": 35568, "ts": 11114328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d78a0", "tid": 35568, "ts": 11114414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8f60", "tid": 35568, "ts": 11114501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8400", "tid": 35568, "ts": 11114587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7700", "tid": 35568, "ts": 11114675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6ba0", "tid": 35568, "ts": 11114762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6930", "tid": 35568, "ts": 11114849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d77d0", "tid": 35568, "ts": 11114934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9780", "tid": 35568, "ts": 11115021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8dc0", "tid": 35568, "ts": 11115108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7560", "tid": 35568, "ts": 11115194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7490", "tid": 35568, "ts": 11115280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7080", "tid": 35568, "ts": 11115368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9c60", "tid": 35568, "ts": 11115454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8cf0", "tid": 35568, "ts": 11115540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9370", "tid": 35568, "ts": 11115626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6fb0", "tid": 35568, "ts": 11115713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8c20", "tid": 35568, "ts": 11115799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5820", "tid": 35568, "ts": 11115885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5680", "tid": 35568, "ts": 11115971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3ae0", "tid": 35568, "ts": 11116058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4f30", "tid": 35568, "ts": 11116145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4cc0", "tid": 35568, "ts": 11116231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d50d0", "tid": 35568, "ts": 11116316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4bf0", "tid": 35568, "ts": 11116403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4b20", "tid": 35568, "ts": 11116489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4d90", "tid": 35568, "ts": 11116575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3a10", "tid": 35568, "ts": 11116661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6860", "tid": 35568, "ts": 11116749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4640", "tid": 35568, "ts": 11116835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6520", "tid": 35568, "ts": 11116921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6450", "tid": 35568, "ts": 11117006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3c80", "tid": 35568, "ts": 11117093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5340", "tid": 35568, "ts": 11117179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3d50", "tid": 35568, "ts": 11117265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6380", "tid": 35568, "ts": 11117353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5f70", "tid": 35568, "ts": 11117440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5ea0", "tid": 35568, "ts": 11117527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d47e0", "tid": 35568, "ts": 11117614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3940", "tid": 35568, "ts": 11117743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5a90", "tid": 35568, "ts": 11117831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d58f0", "tid": 35568, "ts": 11117917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d44a0", "tid": 35568, "ts": 11118004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d66c0", "tid": 35568, "ts": 11118090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3bb0", "tid": 35568, "ts": 11118176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3e20", "tid": 35568, "ts": 11118263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5000", "tid": 35568, "ts": 11118348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5270", "tid": 35568, "ts": 11118434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4090", "tid": 35568, "ts": 11118520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5c30", "tid": 35568, "ts": 11118607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1da0", "tid": 35568, "ts": 11118693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d13e0", "tid": 35568, "ts": 11118780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1170", "tid": 35568, "ts": 11118866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0c90", "tid": 35568, "ts": 11118953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0a20", "tid": 35568, "ts": 11119039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d03a0", "tid": 35568, "ts": 11119125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0200", "tid": 35568, "ts": 11119212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d06e0", "tid": 35568, "ts": 11119299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1990", "tid": 35568, "ts": 11119385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3120", "tid": 35568, "ts": 11119472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3050", "tid": 35568, "ts": 11119559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d10a0", "tid": 35568, "ts": 11119645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2f80", "tid": 35568, "ts": 11119730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1e70", "tid": 35568, "ts": 11119816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d20e0", "tid": 35568, "ts": 11119903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3460", "tid": 35568, "ts": 11119990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0950", "tid": 35568, "ts": 11120076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d18c0", "tid": 35568, "ts": 11120163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2d10", "tid": 35568, "ts": 11120249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1f40", "tid": 35568, "ts": 11120335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2280", "tid": 35568, "ts": 11120422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0e30", "tid": 35568, "ts": 11120508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2690", "tid": 35568, "ts": 11120595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2900", "tid": 35568, "ts": 11120681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0540", "tid": 35568, "ts": 11120767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2830", "tid": 35568, "ts": 11120854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0fd0", "tid": 35568, "ts": 11120942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d29d0", "tid": 35568, "ts": 11121029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d24f0", "tid": 35568, "ts": 11121114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1580", "tid": 35568, "ts": 11121200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3390", "tid": 35568, "ts": 11121286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1cd0", "tid": 35568, "ts": 11121372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce8d0", "tid": 35568, "ts": 11121459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce180", "tid": 35568, "ts": 11121545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdd70", "tid": 35568, "ts": 11121666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf9e0", "tid": 35568, "ts": 11121783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf910", "tid": 35568, "ts": 11121870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd7c0", "tid": 35568, "ts": 11121956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf500", "tid": 35568, "ts": 11122042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cedb0", "tid": 35568, "ts": 11122128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd2e0", "tid": 35568, "ts": 11122213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd140", "tid": 35568, "ts": 11122300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce660", "tid": 35568, "ts": 11122387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cece0", "tid": 35568, "ts": 11122473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd960", "tid": 35568, "ts": 11122559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cef50", "tid": 35568, "ts": 11122646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf840", "tid": 35568, "ts": 11122732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd210", "tid": 35568, "ts": 11122819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cec10", "tid": 35568, "ts": 11122905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccfa0", "tid": 35568, "ts": 11122990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd620", "tid": 35568, "ts": 11123077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cced0", "tid": 35568, "ts": 11123164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfc50", "tid": 35568, "ts": 11123250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce4c0", "tid": 35568, "ts": 11123336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cce00", "tid": 35568, "ts": 11123423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cea70", "tid": 35568, "ts": 11123509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfb80", "tid": 35568, "ts": 11123595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd550", "tid": 35568, "ts": 11123681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf5d0", "tid": 35568, "ts": 11123768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce250", "tid": 35568, "ts": 11123855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce9a0", "tid": 35568, "ts": 11123941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cff90", "tid": 35568, "ts": 11124027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf1c0", "tid": 35568, "ts": 11124114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd3b0", "tid": 35568, "ts": 11124201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb670", "tid": 35568, "ts": 11124287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb330", "tid": 35568, "ts": 11124373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb0c0", "tid": 35568, "ts": 11124460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cab10", "tid": 35568, "ts": 11124547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9c70", "tid": 35568, "ts": 11124633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33caa40", "tid": 35568, "ts": 11124719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9e10", "tid": 35568, "ts": 11124805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cae50", "tid": 35568, "ts": 11124891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc850", "tid": 35568, "ts": 11124977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc780", "tid": 35568, "ts": 11125064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cacb0", "tid": 35568, "ts": 11125151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9a00", "tid": 35568, "ts": 11125238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccac0", "tid": 35568, "ts": 11125325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc6b0", "tid": 35568, "ts": 11125412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc5e0", "tid": 35568, "ts": 11125499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb810", "tid": 35568, "ts": 11125585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cabe0", "tid": 35568, "ts": 11125671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca700", "tid": 35568, "ts": 11125757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33caf20", "tid": 35568, "ts": 11125843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca080", "tid": 35568, "ts": 11125929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb190", "tid": 35568, "ts": 11126016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33caff0", "tid": 35568, "ts": 11126103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca3c0", "tid": 35568, "ts": 11126189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca630", "tid": 35568, "ts": 11126276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc100", "tid": 35568, "ts": 11126362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc030", "tid": 35568, "ts": 11126448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca560", "tid": 35568, "ts": 11126534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbe90", "tid": 35568, "ts": 11126621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccc60", "tid": 35568, "ts": 11126708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb5a0", "tid": 35568, "ts": 11126795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbcf0", "tid": 35568, "ts": 11126881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbdc0", "tid": 35568, "ts": 11126967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8820", "tid": 35568, "ts": 11127053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c85b0", "tid": 35568, "ts": 11127140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7f30", "tid": 35568, "ts": 11127226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7980", "tid": 35568, "ts": 11127313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c78b0", "tid": 35568, "ts": 11127399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c77e0", "tid": 35568, "ts": 11127485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6d50", "tid": 35568, "ts": 11127571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7710", "tid": 35568, "ts": 11127657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7570", "tid": 35568, "ts": 11127743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6bb0", "tid": 35568, "ts": 11127829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c96c0", "tid": 35568, "ts": 11127916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9380", "tid": 35568, "ts": 11128002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8000", "tid": 35568, "ts": 11128088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c95f0", "tid": 35568, "ts": 11128174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7b20", "tid": 35568, "ts": 11128260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6940", "tid": 35568, "ts": 11128347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8dd0", "tid": 35568, "ts": 11128433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6870", "tid": 35568, "ts": 11128519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c80d0", "tid": 35568, "ts": 11128606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6ae0", "tid": 35568, "ts": 11128692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7300", "tid": 35568, "ts": 11128778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8a90", "tid": 35568, "ts": 11128865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7cc0", "tid": 35568, "ts": 11128952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8d00", "tid": 35568, "ts": 11129038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c67a0", "tid": 35568, "ts": 11129125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c89c0", "tid": 35568, "ts": 11129212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8ea0", "tid": 35568, "ts": 11129299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7640", "tid": 35568, "ts": 11129386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c74a0", "tid": 35568, "ts": 11129472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8c30", "tid": 35568, "ts": 11129559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6530", "tid": 35568, "ts": 11129646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c88f0", "tid": 35568, "ts": 11129733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3d60", "tid": 35568, "ts": 11129818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3c90", "tid": 35568, "ts": 11129905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c37b0", "tid": 35568, "ts": 11129991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3610", "tid": 35568, "ts": 11130078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4da0", "tid": 35568, "ts": 11130165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3470", "tid": 35568, "ts": 11130250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3200", "tid": 35568, "ts": 11130337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3130", "tid": 35568, "ts": 11130423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4cd0", "tid": 35568, "ts": 11130509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5eb0", "tid": 35568, "ts": 11130595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5830", "tid": 35568, "ts": 11130682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5690", "tid": 35568, "ts": 11130768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4b30", "tid": 35568, "ts": 11130854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4990", "tid": 35568, "ts": 11130941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5c40", "tid": 35568, "ts": 11131027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c61f0", "tid": 35568, "ts": 11131113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4580", "tid": 35568, "ts": 11131200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5b70", "tid": 35568, "ts": 11131285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4f40", "tid": 35568, "ts": 11131372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5280", "tid": 35568, "ts": 11131458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c44b0", "tid": 35568, "ts": 11131545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4310", "tid": 35568, "ts": 11131631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5d10", "tid": 35568, "ts": 11131718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4650", "tid": 35568, "ts": 11131804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5420", "tid": 35568, "ts": 11131890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c43e0", "tid": 35568, "ts": 11131976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5aa0", "tid": 35568, "ts": 11132063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4170", "tid": 35568, "ts": 11132150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c40a0", "tid": 35568, "ts": 11132236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c50e0", "tid": 35568, "ts": 11132322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c59d0", "tid": 35568, "ts": 11132409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5010", "tid": 35568, "ts": 11132496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1b40", "tid": 35568, "ts": 11132582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1180", "tid": 35568, "ts": 11132668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0d70", "tid": 35568, "ts": 11132755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2f90", "tid": 35568, "ts": 11132842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2ab0", "tid": 35568, "ts": 11132928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0ca0", "tid": 35568, "ts": 11133014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1800", "tid": 35568, "ts": 11133101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c29e0", "tid": 35568, "ts": 11133187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1730", "tid": 35568, "ts": 11133273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1db0", "tid": 35568, "ts": 11133360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1660", "tid": 35568, "ts": 11133446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2910", "tid": 35568, "ts": 11133533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2840", "tid": 35568, "ts": 11133618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0550", "tid": 35568, "ts": 11133705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2290", "tid": 35568, "ts": 11133792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2770", "tid": 35568, "ts": 11133878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c21c0", "tid": 35568, "ts": 11133964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2020", "tid": 35568, "ts": 11134050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c14c0", "tid": 35568, "ts": 11134137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c26a0", "tid": 35568, "ts": 11134223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0fe0", "tid": 35568, "ts": 11134309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c25d0", "tid": 35568, "ts": 11134396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0210", "tid": 35568, "ts": 11134482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1c10", "tid": 35568, "ts": 11134569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0140", "tid": 35568, "ts": 11134655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c20f0", "tid": 35568, "ts": 11134742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2430", "tid": 35568, "ts": 11134829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2d20", "tid": 35568, "ts": 11134915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0960", "tid": 35568, "ts": 11135001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0620", "tid": 35568, "ts": 11135088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bffa0", "tid": 35568, "ts": 11135174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0890", "tid": 35568, "ts": 11135261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be9b0", "tid": 35568, "ts": 11135348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be400", "tid": 35568, "ts": 11135434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfac0", "tid": 35568, "ts": 11135522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be260", "tid": 35568, "ts": 11135607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdd80", "tid": 35568, "ts": 11135693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdbe0", "tid": 35568, "ts": 11135779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcad0", "tid": 35568, "ts": 11135866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf780", "tid": 35568, "ts": 11135952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be0c0", "tid": 35568, "ts": 11136038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdb10", "tid": 35568, "ts": 11136124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bedc0", "tid": 35568, "ts": 11136212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bca00", "tid": 35568, "ts": 11136298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd560", "tid": 35568, "ts": 11136385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdff0", "tid": 35568, "ts": 11136471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf5e0", "tid": 35568, "ts": 11136558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc930", "tid": 35568, "ts": 11136644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bce10", "tid": 35568, "ts": 11136731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfc60", "tid": 35568, "ts": 11136817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd080", "tid": 35568, "ts": 11136904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcd40", "tid": 35568, "ts": 11136990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bea80", "tid": 35568, "ts": 11137076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be810", "tid": 35568, "ts": 11137162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd630", "tid": 35568, "ts": 11137269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdf20", "tid": 35568, "ts": 11137399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf370", "tid": 35568, "ts": 11137486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcba0", "tid": 35568, "ts": 11137573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bef60", "tid": 35568, "ts": 11137660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd8a0", "tid": 35568, "ts": 11137747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bec20", "tid": 35568, "ts": 11137834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcee0", "tid": 35568, "ts": 11137919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bda40", "tid": 35568, "ts": 11138006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd970", "tid": 35568, "ts": 11138092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbd00", "tid": 35568, "ts": 11138178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb750", "tid": 35568, "ts": 11138265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb5b0", "tid": 35568, "ts": 11138352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb340", "tid": 35568, "ts": 11138439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33baf30", "tid": 35568, "ts": 11138525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb680", "tid": 35568, "ts": 11138611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bacc0", "tid": 35568, "ts": 11138698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9e20", "tid": 35568, "ts": 11138784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc520", "tid": 35568, "ts": 11138871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9ae0", "tid": 35568, "ts": 11138957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9bb0", "tid": 35568, "ts": 11139045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9940", "tid": 35568, "ts": 11139131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc790", "tid": 35568, "ts": 11139218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc2b0", "tid": 35568, "ts": 11139305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33babf0", "tid": 35568, "ts": 11139392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc5f0", "tid": 35568, "ts": 11139478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc040", "tid": 35568, "ts": 11139565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbea0", "tid": 35568, "ts": 11139651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb1a0", "tid": 35568, "ts": 11139738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9530", "tid": 35568, "ts": 11139826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbdd0", "tid": 35568, "ts": 11139913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc1e0", "tid": 35568, "ts": 11139999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b96d0", "tid": 35568, "ts": 11140087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33baa50", "tid": 35568, "ts": 11140173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc860", "tid": 35568, "ts": 11140260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc380", "tid": 35568, "ts": 11140347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9d50", "tid": 35568, "ts": 11140434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc450", "tid": 35568, "ts": 11140520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba570", "tid": 35568, "ts": 11140607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba7e0", "tid": 35568, "ts": 11140694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc110", "tid": 35568, "ts": 11140781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbb60", "tid": 35568, "ts": 11140868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b70a0", "tid": 35568, "ts": 11140955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6470", "tid": 35568, "ts": 11141041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b66e0", "tid": 35568, "ts": 11141128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8690", "tid": 35568, "ts": 11141215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7da0", "tid": 35568, "ts": 11141301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6200", "tid": 35568, "ts": 11141387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6f00", "tid": 35568, "ts": 11141475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6610", "tid": 35568, "ts": 11141561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8830", "tid": 35568, "ts": 11141649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9120", "tid": 35568, "ts": 11141735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8d10", "tid": 35568, "ts": 11141824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7b30", "tid": 35568, "ts": 11141910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7990", "tid": 35568, "ts": 11141997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6a20", "tid": 35568, "ts": 11142083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7580", "tid": 35568, "ts": 11142170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b67b0", "tid": 35568, "ts": 11142256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b62d0", "tid": 35568, "ts": 11142343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b80e0", "tid": 35568, "ts": 11142430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6fd0", "tid": 35568, "ts": 11142517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b63a0", "tid": 35568, "ts": 11142603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b78c0", "tid": 35568, "ts": 11142690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b77f0", "tid": 35568, "ts": 11142776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8c40", "tid": 35568, "ts": 11142863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b89d0", "tid": 35568, "ts": 11142950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8eb0", "tid": 35568, "ts": 11143037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6c90", "tid": 35568, "ts": 11143123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8010", "tid": 35568, "ts": 11143211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8b70", "tid": 35568, "ts": 11143298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8aa0", "tid": 35568, "ts": 11143384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8de0", "tid": 35568, "ts": 11143471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7720", "tid": 35568, "ts": 11143557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7e70", "tid": 35568, "ts": 11143644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066de0", "tid": 35568, "ts": 11143730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068cc0", "tid": 35568, "ts": 11143816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068b20", "tid": 35568, "ts": 11143903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068980", "tid": 35568, "ts": 11143990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30665c0", "tid": 35568, "ts": 11144077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069410", "tid": 35568, "ts": 11144163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066d10", "tid": 35568, "ts": 11144250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069340", "tid": 35568, "ts": 11144337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30688b0", "tid": 35568, "ts": 11144424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068090", "tid": 35568, "ts": 11144510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067a10", "tid": 35568, "ts": 11144598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067600", "tid": 35568, "ts": 11144684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30683d0", "tid": 35568, "ts": 11144771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066f80", "tid": 35568, "ts": 11144858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067530", "tid": 35568, "ts": 11144945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066c40", "tid": 35568, "ts": 11145032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067e20", "tid": 35568, "ts": 11145119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30660e0", "tid": 35568, "ts": 11145206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066350", "tid": 35568, "ts": 11145293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30669d0", "tid": 35568, "ts": 11145379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30672c0", "tid": 35568, "ts": 11145466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067bb0", "tid": 35568, "ts": 11145552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069000", "tid": 35568, "ts": 11145639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066eb0", "tid": 35568, "ts": 11145726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067fc0", "tid": 35568, "ts": 11145812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30671f0", "tid": 35568, "ts": 11145899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068e60", "tid": 35568, "ts": 11145986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30676d0", "tid": 35568, "ts": 11146073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068f30", "tid": 35568, "ts": 11146159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068570", "tid": 35568, "ts": 11146245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069270", "tid": 35568, "ts": 11146332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068300", "tid": 35568, "ts": 11146418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30835b0", "tid": 35568, "ts": 11146505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30858a0", "tid": 35568, "ts": 11146591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085a40", "tid": 35568, "ts": 11146678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084c70", "tid": 35568, "ts": 11146764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084ad0", "tid": 35568, "ts": 11146850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30852f0", "tid": 35568, "ts": 11146937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084040", "tid": 35568, "ts": 11147024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085630", "tid": 35568, "ts": 11147111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30846c0", "tid": 35568, "ts": 11147197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084a00", "tid": 35568, "ts": 11147285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084520", "tid": 35568, "ts": 11147372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30857d0", "tid": 35568, "ts": 11147458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084380", "tid": 35568, "ts": 11147544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085220", "tid": 35568, "ts": 11147630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30838f0", "tid": 35568, "ts": 11147717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083820", "tid": 35568, "ts": 11147803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083dd0", "tid": 35568, "ts": 11147890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085d80", "tid": 35568, "ts": 11147976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083d00", "tid": 35568, "ts": 11148063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30841e0", "tid": 35568, "ts": 11148149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30834e0", "tid": 35568, "ts": 11148236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083c30", "tid": 35568, "ts": 11148322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085080", "tid": 35568, "ts": 11148409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30845f0", "tid": 35568, "ts": 11148495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083b60", "tid": 35568, "ts": 11148582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084fb0", "tid": 35568, "ts": 11148669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085b10", "tid": 35568, "ts": 11148756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30827e0", "tid": 35568, "ts": 11148843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30823d0", "tid": 35568, "ts": 11148929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082160", "tid": 35568, "ts": 11149016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081e20", "tid": 35568, "ts": 11149103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081ae0", "tid": 35568, "ts": 11149189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082570", "tid": 35568, "ts": 11149276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081870", "tid": 35568, "ts": 11149362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081390", "tid": 35568, "ts": 11149449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080eb0", "tid": 35568, "ts": 11149536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080de0", "tid": 35568, "ts": 11149623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080c40", "tid": 35568, "ts": 11149709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30809d0", "tid": 35568, "ts": 11149796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30816d0", "tid": 35568, "ts": 11149882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081ef0", "tid": 35568, "ts": 11149969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30812c0", "tid": 35568, "ts": 11150055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080420", "tid": 35568, "ts": 11150142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30800e0", "tid": 35568, "ts": 11150228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080aa0", "tid": 35568, "ts": 11150314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083340", "tid": 35568, "ts": 11150401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081600", "tid": 35568, "ts": 11150487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080350", "tid": 35568, "ts": 11150573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082d90", "tid": 35568, "ts": 11150660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082bf0", "tid": 35568, "ts": 11150746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30830d0", "tid": 35568, "ts": 11150833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082b20", "tid": 35568, "ts": 11150919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081bb0", "tid": 35568, "ts": 11151005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30811f0", "tid": 35568, "ts": 11151091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083000", "tid": 35568, "ts": 11151178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30824a0", "tid": 35568, "ts": 11151265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081530", "tid": 35568, "ts": 11151351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081120", "tid": 35568, "ts": 11151438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081460", "tid": 35568, "ts": 11151525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f990", "tid": 35568, "ts": 11151612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f7f0", "tid": 35568, "ts": 11151699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f4b0", "tid": 35568, "ts": 11151785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f170", "tid": 35568, "ts": 11151872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f0a0", "tid": 35568, "ts": 11151958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e130", "tid": 35568, "ts": 11152044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d020", "tid": 35568, "ts": 11152131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f720", "tid": 35568, "ts": 11152219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307df90", "tid": 35568, "ts": 11152306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ee30", "tid": 35568, "ts": 11152393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ed60", "tid": 35568, "ts": 11152481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e880", "tid": 35568, "ts": 11152611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e6e0", "tid": 35568, "ts": 11152701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f650", "tid": 35568, "ts": 11152788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d910", "tid": 35568, "ts": 11152897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d840", "tid": 35568, "ts": 11152998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d5d0", "tid": 35568, "ts": 11153084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ce80", "tid": 35568, "ts": 11153171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fda0", "tid": 35568, "ts": 11153258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e7b0", "tid": 35568, "ts": 11153344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fcd0", "tid": 35568, "ts": 11153430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e610", "tid": 35568, "ts": 11153517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e470", "tid": 35568, "ts": 11153603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e950", "tid": 35568, "ts": 11153690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ea20", "tid": 35568, "ts": 11153776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d290", "tid": 35568, "ts": 11153862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cce0", "tid": 35568, "ts": 11153948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d770", "tid": 35568, "ts": 11154035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e2d0", "tid": 35568, "ts": 11154121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ebc0", "tid": 35568, "ts": 11154208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fc00", "tid": 35568, "ts": 11154294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dab0", "tid": 35568, "ts": 11154381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b620", "tid": 35568, "ts": 11154467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b480", "tid": 35568, "ts": 11154554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b3b0", "tid": 35568, "ts": 11154640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079a80", "tid": 35568, "ts": 11154727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ab90", "tid": 35568, "ts": 11154814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bb00", "tid": 35568, "ts": 11154900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ac60", "tid": 35568, "ts": 11154986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c4c0", "tid": 35568, "ts": 11155073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c320", "tid": 35568, "ts": 11155159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a850", "tid": 35568, "ts": 11155246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a780", "tid": 35568, "ts": 11155332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cb40", "tid": 35568, "ts": 11155418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a5e0", "tid": 35568, "ts": 11155504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ae00", "tid": 35568, "ts": 11155590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c800", "tid": 35568, "ts": 11155676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307aac0", "tid": 35568, "ts": 11155763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c9a0", "tid": 35568, "ts": 11155849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c180", "tid": 35568, "ts": 11155935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307afa0", "tid": 35568, "ts": 11156022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079e90", "tid": 35568, "ts": 11156108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c8d0", "tid": 35568, "ts": 11156195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307aed0", "tid": 35568, "ts": 11156281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30798e0", "tid": 35568, "ts": 11156367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ba30", "tid": 35568, "ts": 11156455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b890", "tid": 35568, "ts": 11156541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079b50", "tid": 35568, "ts": 11156628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a510", "tid": 35568, "ts": 11156714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c660", "tid": 35568, "ts": 11156801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bd70", "tid": 35568, "ts": 11156887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bca0", "tid": 35568, "ts": 11156974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a9f0", "tid": 35568, "ts": 11157061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bbd0", "tid": 35568, "ts": 11157147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079330", "tid": 35568, "ts": 11157233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078b10", "tid": 35568, "ts": 11157319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077ee0", "tid": 35568, "ts": 11157406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076820", "tid": 35568, "ts": 11157492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078970", "tid": 35568, "ts": 11157578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077d40", "tid": 35568, "ts": 11157664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078f20", "tid": 35568, "ts": 11157750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077930", "tid": 35568, "ts": 11157837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077c70", "tid": 35568, "ts": 11157923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30771e0", "tid": 35568, "ts": 11158009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078d80", "tid": 35568, "ts": 11158096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30783c0", "tid": 35568, "ts": 11158183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077110", "tid": 35568, "ts": 11158270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076b60", "tid": 35568, "ts": 11158356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077520", "tid": 35568, "ts": 11158442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077860", "tid": 35568, "ts": 11158529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30768f0", "tid": 35568, "ts": 11158615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077790", "tid": 35568, "ts": 11158701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076f70", "tid": 35568, "ts": 11158788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077a00", "tid": 35568, "ts": 11158874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30795a0", "tid": 35568, "ts": 11158960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30788a0", "tid": 35568, "ts": 11159046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30775f0", "tid": 35568, "ts": 11159132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077e10", "tid": 35568, "ts": 11159218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076ea0", "tid": 35568, "ts": 11159304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30782f0", "tid": 35568, "ts": 11159390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079810", "tid": 35568, "ts": 11159477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30765b0", "tid": 35568, "ts": 11159563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30787d0", "tid": 35568, "ts": 11159650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30769c0", "tid": 35568, "ts": 11159736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30772b0", "tid": 35568, "ts": 11159823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30764e0", "tid": 35568, "ts": 11159910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074ef0", "tid": 35568, "ts": 11159997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074d50", "tid": 35568, "ts": 11160084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074390", "tid": 35568, "ts": 11160170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074600", "tid": 35568, "ts": 11160256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073de0", "tid": 35568, "ts": 11160343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073830", "tid": 35568, "ts": 11160429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076270", "tid": 35568, "ts": 11160515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075230", "tid": 35568, "ts": 11160602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074940", "tid": 35568, "ts": 11160689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074530", "tid": 35568, "ts": 11160776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074870", "tid": 35568, "ts": 11160862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075160", "tid": 35568, "ts": 11160948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30735c0", "tid": 35568, "ts": 11161035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074460", "tid": 35568, "ts": 11161121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30741f0", "tid": 35568, "ts": 11161208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075090", "tid": 35568, "ts": 11161294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075980", "tid": 35568, "ts": 11161381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30758b0", "tid": 35568, "ts": 11161468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30757e0", "tid": 35568, "ts": 11161554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073420", "tid": 35568, "ts": 11161641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075710", "tid": 35568, "ts": 11161728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076410", "tid": 35568, "ts": 11161814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075640", "tid": 35568, "ts": 11161900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075f30", "tid": 35568, "ts": 11161987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30761a0", "tid": 35568, "ts": 11162073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075a50", "tid": 35568, "ts": 11162160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30734f0", "tid": 35568, "ts": 11162246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076340", "tid": 35568, "ts": 11162332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30760d0", "tid": 35568, "ts": 11162419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074050", "tid": 35568, "ts": 11162505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073b70", "tid": 35568, "ts": 11162591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076000", "tid": 35568, "ts": 11162679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072310", "tid": 35568, "ts": 11162765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071950", "tid": 35568, "ts": 11162851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30716e0", "tid": 35568, "ts": 11162938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30700f0", "tid": 35568, "ts": 11163024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071060", "tid": 35568, "ts": 11163111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ff50", "tid": 35568, "ts": 11163197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fe80", "tid": 35568, "ts": 11163283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070d20", "tid": 35568, "ts": 11163370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fdb0", "tid": 35568, "ts": 11163456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072990", "tid": 35568, "ts": 11163542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072170", "tid": 35568, "ts": 11163629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070b80", "tid": 35568, "ts": 11163717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30720a0", "tid": 35568, "ts": 11163804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30712d0", "tid": 35568, "ts": 11163891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30709e0", "tid": 35568, "ts": 11163978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072da0", "tid": 35568, "ts": 11164065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070910", "tid": 35568, "ts": 11164151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070360", "tid": 35568, "ts": 11164238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071af0", "tid": 35568, "ts": 11164323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30705d0", "tid": 35568, "ts": 11164409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072c00", "tid": 35568, "ts": 11164496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070df0", "tid": 35568, "ts": 11164582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072650", "tid": 35568, "ts": 11164669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070770", "tid": 35568, "ts": 11164756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071d60", "tid": 35568, "ts": 11164842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30706a0", "tid": 35568, "ts": 11164929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071a20", "tid": 35568, "ts": 11165015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070430", "tid": 35568, "ts": 11165102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071880", "tid": 35568, "ts": 11165188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071fd0", "tid": 35568, "ts": 11165275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fce0", "tid": 35568, "ts": 11165361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070020", "tid": 35568, "ts": 11165448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f590", "tid": 35568, "ts": 11165534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f250", "tid": 35568, "ts": 11165621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ef10", "tid": 35568, "ts": 11165707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ed70", "tid": 35568, "ts": 11165794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306eca0", "tid": 35568, "ts": 11165880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e2e0", "tid": 35568, "ts": 11165966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d2a0", "tid": 35568, "ts": 11166052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e890", "tid": 35568, "ts": 11166139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dfa0", "tid": 35568, "ts": 11166225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f320", "tid": 35568, "ts": 11166311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d920", "tid": 35568, "ts": 11166397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d030", "tid": 35568, "ts": 11166484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cf60", "tid": 35568, "ts": 11166570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ded0", "tid": 35568, "ts": 11166656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e6f0", "tid": 35568, "ts": 11166743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d9f0", "tid": 35568, "ts": 11166829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d6b0", "tid": 35568, "ts": 11166916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f0b0", "tid": 35568, "ts": 11167003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fc10", "tid": 35568, "ts": 11167089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ee40", "tid": 35568, "ts": 11167175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e480", "tid": 35568, "ts": 11167261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e210", "tid": 35568, "ts": 11167347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e550", "tid": 35568, "ts": 11167433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d440", "tid": 35568, "ts": 11167521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f730", "tid": 35568, "ts": 11167607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f9a0", "tid": 35568, "ts": 11167693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e960", "tid": 35568, "ts": 11167779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cdc0", "tid": 35568, "ts": 11167866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306de00", "tid": 35568, "ts": 11167952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e620", "tid": 35568, "ts": 11168038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c9b0", "tid": 35568, "ts": 11168125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f8d0", "tid": 35568, "ts": 11168211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ba40", "tid": 35568, "ts": 11168298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b7d0", "tid": 35568, "ts": 11168384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aee0", "tid": 35568, "ts": 11168470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aad0", "tid": 35568, "ts": 11168640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a930", "tid": 35568, "ts": 11168745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a380", "tid": 35568, "ts": 11168833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069ea0", "tid": 35568, "ts": 11168921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b630", "tid": 35568, "ts": 11169009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a1e0", "tid": 35568, "ts": 11169095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b2f0", "tid": 35568, "ts": 11169183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c740", "tid": 35568, "ts": 11169269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069680", "tid": 35568, "ts": 11169356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a520", "tid": 35568, "ts": 11169443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c190", "tid": 35568, "ts": 11169529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c0c0", "tid": 35568, "ts": 11169617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a790", "tid": 35568, "ts": 11169704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a6c0", "tid": 35568, "ts": 11169790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b490", "tid": 35568, "ts": 11169877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30695b0", "tid": 35568, "ts": 11169965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bbe0", "tid": 35568, "ts": 11170052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069b60", "tid": 35568, "ts": 11170138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a2b0", "tid": 35568, "ts": 11170225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069820", "tid": 35568, "ts": 11170312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306afb0", "tid": 35568, "ts": 11170399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c810", "tid": 35568, "ts": 11170486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306be50", "tid": 35568, "ts": 11170573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bd80", "tid": 35568, "ts": 11170660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b560", "tid": 35568, "ts": 11170747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ac70", "tid": 35568, "ts": 11170834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c5a0", "tid": 35568, "ts": 11170920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b8a0", "tid": 35568, "ts": 11171006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069a90", "tid": 35568, "ts": 11171093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f1f0", "tid": 35568, "ts": 11171180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f530", "tid": 35568, "ts": 11171267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01210d0", "tid": 35568, "ts": 11171353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120e60", "tid": 35568, "ts": 11171441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ef80", "tid": 35568, "ts": 11171527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120160", "tid": 35568, "ts": 11171614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e420", "tid": 35568, "ts": 11171701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f460", "tid": 35568, "ts": 11171788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e1b0", "tid": 35568, "ts": 11171875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e9d0", "tid": 35568, "ts": 11171961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e4f0", "tid": 35568, "ts": 11172048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120570", "tid": 35568, "ts": 11172135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120300", "tid": 35568, "ts": 11172222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121000", "tid": 35568, "ts": 11172309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01211a0", "tid": 35568, "ts": 11172395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120090", "tid": 35568, "ts": 11172483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fae0", "tid": 35568, "ts": 11172570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01204a0", "tid": 35568, "ts": 11172657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e0e0", "tid": 35568, "ts": 11172743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f120", "tid": 35568, "ts": 11172831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121340", "tid": 35568, "ts": 11172917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ffc0", "tid": 35568, "ts": 11173003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fbb0", "tid": 35568, "ts": 11173090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01203d0", "tid": 35568, "ts": 11173177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120cc0", "tid": 35568, "ts": 11173263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011eb70", "tid": 35568, "ts": 11173349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f390", "tid": 35568, "ts": 11173435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121410", "tid": 35568, "ts": 11173522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011eaa0", "tid": 35568, "ts": 11173608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121270", "tid": 35568, "ts": 11173695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f940", "tid": 35568, "ts": 11173781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f870", "tid": 35568, "ts": 11173869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d700", "tid": 35568, "ts": 11173955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cba0", "tid": 35568, "ts": 11174042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ca00", "tid": 35568, "ts": 11174128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cd40", "tid": 35568, "ts": 11174215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c380", "tid": 35568, "ts": 11174302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d150", "tid": 35568, "ts": 11174389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cc70", "tid": 35568, "ts": 11174476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d080", "tid": 35568, "ts": 11174563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b5b0", "tid": 35568, "ts": 11174650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c790", "tid": 35568, "ts": 11174737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013df20", "tid": 35568, "ts": 11174823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c6c0", "tid": 35568, "ts": 11174911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b820", "tid": 35568, "ts": 11174998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b750", "tid": 35568, "ts": 11175085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d490", "tid": 35568, "ts": 11175171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013da40", "tid": 35568, "ts": 11175259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d630", "tid": 35568, "ts": 11175345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b8f0", "tid": 35568, "ts": 11175431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013dbe0", "tid": 35568, "ts": 11175518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c1e0", "tid": 35568, "ts": 11175605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ba90", "tid": 35568, "ts": 11175692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013dcb0", "tid": 35568, "ts": 11175779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c110", "tid": 35568, "ts": 11175866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d2f0", "tid": 35568, "ts": 11175953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d7d0", "tid": 35568, "ts": 11176040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cfb0", "tid": 35568, "ts": 11176126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013acc0", "tid": 35568, "ts": 11176212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a160", "tid": 35568, "ts": 11176299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139fc0", "tid": 35568, "ts": 11176386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139d50", "tid": 35568, "ts": 11176472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01396d0", "tid": 35568, "ts": 11176559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139c80", "tid": 35568, "ts": 11176647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01392c0", "tid": 35568, "ts": 11176734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139120", "tid": 35568, "ts": 11176820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139600", "tid": 35568, "ts": 11176907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a980", "tid": 35568, "ts": 11176993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01391f0", "tid": 35568, "ts": 11177080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138900", "tid": 35568, "ts": 11177166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a7e0", "tid": 35568, "ts": 11177253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139940", "tid": 35568, "ts": 11177340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138280", "tid": 35568, "ts": 11177426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01381b0", "tid": 35568, "ts": 11177514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01397a0", "tid": 35568, "ts": 11177600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a4a0", "tid": 35568, "ts": 11177687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138c40", "tid": 35568, "ts": 11177773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139870", "tid": 35568, "ts": 11177859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a3d0", "tid": 35568, "ts": 11177946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a230", "tid": 35568, "ts": 11178034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a570", "tid": 35568, "ts": 11178120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138b70", "tid": 35568, "ts": 11178207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138690", "tid": 35568, "ts": 11178293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138f80", "tid": 35568, "ts": 11178380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138aa0", "tid": 35568, "ts": 11178467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01385c0", "tid": 35568, "ts": 11178553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01384f0", "tid": 35568, "ts": 11178640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139bb0", "tid": 35568, "ts": 11178727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b000", "tid": 35568, "ts": 11178814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139e20", "tid": 35568, "ts": 11178902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136e30", "tid": 35568, "ts": 11178988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01355d0", "tid": 35568, "ts": 11179075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135500", "tid": 35568, "ts": 11179162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134f50", "tid": 35568, "ts": 11179248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135c50", "tid": 35568, "ts": 11179336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137240", "tid": 35568, "ts": 11179423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134ce0", "tid": 35568, "ts": 11179510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138010", "tid": 35568, "ts": 11179596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136c90", "tid": 35568, "ts": 11179683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135430", "tid": 35568, "ts": 11179770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01378c0", "tid": 35568, "ts": 11179856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137720", "tid": 35568, "ts": 11179944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01370a0", "tid": 35568, "ts": 11180031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136a20", "tid": 35568, "ts": 11180118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137da0", "tid": 35568, "ts": 11180205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137c00", "tid": 35568, "ts": 11180291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136fd0", "tid": 35568, "ts": 11180378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135840", "tid": 35568, "ts": 11180465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135020", "tid": 35568, "ts": 11180552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137b30", "tid": 35568, "ts": 11180639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137e70", "tid": 35568, "ts": 11180726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01356a0", "tid": 35568, "ts": 11180813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01377f0", "tid": 35568, "ts": 11180899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136af0", "tid": 35568, "ts": 11180986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137cd0", "tid": 35568, "ts": 11181074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134e80", "tid": 35568, "ts": 11181161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135f90", "tid": 35568, "ts": 11181247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137170", "tid": 35568, "ts": 11181335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136060", "tid": 35568, "ts": 11181421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134db0", "tid": 35568, "ts": 11181508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136540", "tid": 35568, "ts": 11181594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135360", "tid": 35568, "ts": 11181681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133ca0", "tid": 35568, "ts": 11181767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133960", "tid": 35568, "ts": 11181854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01340b0", "tid": 35568, "ts": 11181940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01333b0", "tid": 35568, "ts": 11182027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132d30", "tid": 35568, "ts": 11182113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132b90", "tid": 35568, "ts": 11182201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01332e0", "tid": 35568, "ts": 11182288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01329f0", "tid": 35568, "ts": 11182375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132780", "tid": 35568, "ts": 11182461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133070", "tid": 35568, "ts": 11182548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132440", "tid": 35568, "ts": 11182634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131f60", "tid": 35568, "ts": 11182721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133f10", "tid": 35568, "ts": 11182807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132030", "tid": 35568, "ts": 11182893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131c20", "tid": 35568, "ts": 11182980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01325e0", "tid": 35568, "ts": 11183067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131b50", "tid": 35568, "ts": 11183154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133890", "tid": 35568, "ts": 11183240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01318e0", "tid": 35568, "ts": 11183326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134c10", "tid": 35568, "ts": 11183413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01322a0", "tid": 35568, "ts": 11183501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01319b0", "tid": 35568, "ts": 11183588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134320", "tid": 35568, "ts": 11183674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134730", "tid": 35568, "ts": 11183762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134b40", "tid": 35568, "ts": 11183848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134180", "tid": 35568, "ts": 11183935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134a70", "tid": 35568, "ts": 11184022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134590", "tid": 35568, "ts": 11184109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132850", "tid": 35568, "ts": 11184297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01348d0", "tid": 35568, "ts": 11184489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01336f0", "tid": 35568, "ts": 11184587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133a30", "tid": 35568, "ts": 11184738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130ff0", "tid": 35568, "ts": 11184863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130a40", "tid": 35568, "ts": 11184961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01303c0", "tid": 35568, "ts": 11185081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fd40", "tid": 35568, "ts": 11185252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fad0", "tid": 35568, "ts": 11185352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f790", "tid": 35568, "ts": 11185439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130970", "tid": 35568, "ts": 11185526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f5f0", "tid": 35568, "ts": 11185612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f520", "tid": 35568, "ts": 11185699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012eea0", "tid": 35568, "ts": 11185786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012edd0", "tid": 35568, "ts": 11185872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e750", "tid": 35568, "ts": 11185959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fee0", "tid": 35568, "ts": 11186045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130be0", "tid": 35568, "ts": 11186132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fa00", "tid": 35568, "ts": 11186219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f450", "tid": 35568, "ts": 11186305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e5b0", "tid": 35568, "ts": 11186391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01307d0", "tid": 35568, "ts": 11186478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01315a0", "tid": 35568, "ts": 11186565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f1e0", "tid": 35568, "ts": 11186652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131330", "tid": 35568, "ts": 11186737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e9c0", "tid": 35568, "ts": 11186825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131190", "tid": 35568, "ts": 11186911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130080", "tid": 35568, "ts": 11186998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131740", "tid": 35568, "ts": 11187084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f040", "tid": 35568, "ts": 11187170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01310c0", "tid": 35568, "ts": 11187257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ea90", "tid": 35568, "ts": 11187343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ef70", "tid": 35568, "ts": 11187430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e8f0", "tid": 35568, "ts": 11187517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131810", "tid": 35568, "ts": 11187605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130150", "tid": 35568, "ts": 11187692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cc80", "tid": 35568, "ts": 11187779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c530", "tid": 35568, "ts": 11187868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c390", "tid": 35568, "ts": 11187955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c120", "tid": 35568, "ts": 11188090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ca10", "tid": 35568, "ts": 11188192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d640", "tid": 35568, "ts": 11188280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b9d0", "tid": 35568, "ts": 11188366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b760", "tid": 35568, "ts": 11188453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b420", "tid": 35568, "ts": 11188541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c940", "tid": 35568, "ts": 11188627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d3d0", "tid": 35568, "ts": 11188713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d4a0", "tid": 35568, "ts": 11188800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cd50", "tid": 35568, "ts": 11188886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012dcc0", "tid": 35568, "ts": 11188973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bd10", "tid": 35568, "ts": 11189059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e000", "tid": 35568, "ts": 11189145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d160", "tid": 35568, "ts": 11189232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012df30", "tid": 35568, "ts": 11189318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b5c0", "tid": 35568, "ts": 11189405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b280", "tid": 35568, "ts": 11189491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e410", "tid": 35568, "ts": 11189577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c6d0", "tid": 35568, "ts": 11189664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012db20", "tid": 35568, "ts": 11189750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d090", "tid": 35568, "ts": 11189837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d8b0", "tid": 35568, "ts": 11189923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012baa0", "tid": 35568, "ts": 11190010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c600", "tid": 35568, "ts": 11190096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b350", "tid": 35568, "ts": 11190182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b830", "tid": 35568, "ts": 11190268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ce20", "tid": 35568, "ts": 11190355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e0d0", "tid": 35568, "ts": 11190441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a8c0", "tid": 35568, "ts": 11190527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129880", "tid": 35568, "ts": 11190613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128770", "tid": 35568, "ts": 11190700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01297b0", "tid": 35568, "ts": 11190786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128ec0", "tid": 35568, "ts": 11190872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a720", "tid": 35568, "ts": 11190958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128c50", "tid": 35568, "ts": 11191045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a3e0", "tid": 35568, "ts": 11191131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129d60", "tid": 35568, "ts": 11191218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129bc0", "tid": 35568, "ts": 11191304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a650", "tid": 35568, "ts": 11191390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128360", "tid": 35568, "ts": 11191476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127e80", "tid": 35568, "ts": 11191563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b010", "tid": 35568, "ts": 11191649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129fd0", "tid": 35568, "ts": 11191735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129c90", "tid": 35568, "ts": 11191822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127f50", "tid": 35568, "ts": 11191908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a170", "tid": 35568, "ts": 11191994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129f00", "tid": 35568, "ts": 11192081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01285d0", "tid": 35568, "ts": 11192167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128910", "tid": 35568, "ts": 11192254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128d20", "tid": 35568, "ts": 11192340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ae70", "tid": 35568, "ts": 11192426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ada0", "tid": 35568, "ts": 11192512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a990", "tid": 35568, "ts": 11192598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129130", "tid": 35568, "ts": 11192684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012acd0", "tid": 35568, "ts": 11192771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01280f0", "tid": 35568, "ts": 11192857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01286a0", "tid": 35568, "ts": 11192943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128430", "tid": 35568, "ts": 11193029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129e30", "tid": 35568, "ts": 11193115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127db0", "tid": 35568, "ts": 11193201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01274c0", "tid": 35568, "ts": 11193288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127320", "tid": 35568, "ts": 11193375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01270b0", "tid": 35568, "ts": 11193461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126b00", "tid": 35568, "ts": 11193547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01266f0", "tid": 35568, "ts": 11193633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125510", "tid": 35568, "ts": 11193719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126620", "tid": 35568, "ts": 11193806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126480", "tid": 35568, "ts": 11193893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126890", "tid": 35568, "ts": 11193979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01252a0", "tid": 35568, "ts": 11194065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125370", "tid": 35568, "ts": 11194152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126bd0", "tid": 35568, "ts": 11194238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01259f0", "tid": 35568, "ts": 11194324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01279a0", "tid": 35568, "ts": 11194410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125920", "tid": 35568, "ts": 11194497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124f60", "tid": 35568, "ts": 11194583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125fa0", "tid": 35568, "ts": 11194692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126960", "tid": 35568, "ts": 11194778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01262e0", "tid": 35568, "ts": 11194864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124e90", "tid": 35568, "ts": 11194951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01267c0", "tid": 35568, "ts": 11195036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125ac0", "tid": 35568, "ts": 11195122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01255e0", "tid": 35568, "ts": 11195210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126550", "tid": 35568, "ts": 11195296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127730", "tid": 35568, "ts": 11195382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126d70", "tid": 35568, "ts": 11195468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124cf0", "tid": 35568, "ts": 11195555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125780", "tid": 35568, "ts": 11195640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124dc0", "tid": 35568, "ts": 11195726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01248e0", "tid": 35568, "ts": 11195812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125ed0", "tid": 35568, "ts": 11195899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126fe0", "tid": 35568, "ts": 11195986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121dd0", "tid": 35568, "ts": 11196072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121820", "tid": 35568, "ts": 11196158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121680", "tid": 35568, "ts": 11196244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124190", "tid": 35568, "ts": 11196331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123cb0", "tid": 35568, "ts": 11196418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123970", "tid": 35568, "ts": 11196504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01215b0", "tid": 35568, "ts": 11196592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01214e0", "tid": 35568, "ts": 11196678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123220", "tid": 35568, "ts": 11196764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124670", "tid": 35568, "ts": 11196850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01232f0", "tid": 35568, "ts": 11196937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01244d0", "tid": 35568, "ts": 11197023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01233c0", "tid": 35568, "ts": 11197109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01226c0", "tid": 35568, "ts": 11197195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123ff0", "tid": 35568, "ts": 11197281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123560", "tid": 35568, "ts": 11197368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01240c0", "tid": 35568, "ts": 11197454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122fb0", "tid": 35568, "ts": 11197540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123700", "tid": 35568, "ts": 11197625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122110", "tid": 35568, "ts": 11197711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124810", "tid": 35568, "ts": 11197798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122520", "tid": 35568, "ts": 11197884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123b10", "tid": 35568, "ts": 11197971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122380", "tid": 35568, "ts": 11198057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122c70", "tid": 35568, "ts": 11198143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122790", "tid": 35568, "ts": 11198230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122450", "tid": 35568, "ts": 11198316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122040", "tid": 35568, "ts": 11198401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122a00", "tid": 35568, "ts": 11198488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121f70", "tid": 35568, "ts": 11198574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124330", "tid": 35568, "ts": 11198660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01222b0", "tid": 35568, "ts": 11198747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a390", "tid": 35568, "ts": 11198833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792e20", "tid": 35568, "ts": 11198920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792c80", "tid": 35568, "ts": 11199007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793300", "tid": 35568, "ts": 11199093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1e60", "tid": 35568, "ts": 11199180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1cc0", "tid": 35568, "ts": 11199266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1b20", "tid": 35568, "ts": 11199353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e13d0", "tid": 35568, "ts": 11199439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1230", "tid": 35568, "ts": 11199525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1640", "tid": 35568, "ts": 11199611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1980", "tid": 35568, "ts": 11199697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0fc0", "tid": 35568, "ts": 11199822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0c80", "tid": 35568, "ts": 11199910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0530", "tid": 35568, "ts": 11199996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0050", "tid": 35568, "ts": 11200084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df760", "tid": 35568, "ts": 11200170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e01f0", "tid": 35568, "ts": 11200257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df5c0", "tid": 35568, "ts": 11200343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0e20", "tid": 35568, "ts": 11200430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfeb0", "tid": 35568, "ts": 11200516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfc40", "tid": 35568, "ts": 11200603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e18b0", "tid": 35568, "ts": 11200690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0940", "tid": 35568, "ts": 11200777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfde0", "tid": 35568, "ts": 11200863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfaa0", "tid": 35568, "ts": 11200950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df4f0", "tid": 35568, "ts": 11201036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e17e0", "tid": 35568, "ts": 11201123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0870", "tid": 35568, "ts": 11201210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1bf0", "tid": 35568, "ts": 11201296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df900", "tid": 35568, "ts": 11201383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfb70", "tid": 35568, "ts": 11201469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcf90", "tid": 35568, "ts": 11201556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcd20", "tid": 35568, "ts": 11201642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcb80", "tid": 35568, "ts": 11201729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de650", "tid": 35568, "ts": 11201815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de580", "tid": 35568, "ts": 11201902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df0e0", "tid": 35568, "ts": 11201988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de310", "tid": 35568, "ts": 11202075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd880", "tid": 35568, "ts": 11202161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc770", "tid": 35568, "ts": 11202247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddd60", "tid": 35568, "ts": 11202334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df420", "tid": 35568, "ts": 11202420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de8c0", "tid": 35568, "ts": 11202507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc290", "tid": 35568, "ts": 11202593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddbc0", "tid": 35568, "ts": 11202680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc6a0", "tid": 35568, "ts": 11202767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df1b0", "tid": 35568, "ts": 11202853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd3a0", "tid": 35568, "ts": 11202939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dee70", "tid": 35568, "ts": 11203025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de170", "tid": 35568, "ts": 11203112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc1c0", "tid": 35568, "ts": 11203198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc9e0", "tid": 35568, "ts": 11203285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd060", "tid": 35568, "ts": 11203372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddaf0", "tid": 35568, "ts": 11203458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de0a0", "tid": 35568, "ts": 11203545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd200", "tid": 35568, "ts": 11203631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc910", "tid": 35568, "ts": 11203718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddfd0", "tid": 35568, "ts": 11203805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd6e0", "tid": 35568, "ts": 11203891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9510", "tid": 35568, "ts": 11203977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d92a0", "tid": 35568, "ts": 11204064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9100", "tid": 35568, "ts": 11204150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8dc0", "tid": 35568, "ts": 11204236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8cf0", "tid": 35568, "ts": 11204323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09daa30", "tid": 35568, "ts": 11204410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbf50", "tid": 35568, "ts": 11204496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9440", "tid": 35568, "ts": 11204583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db800", "tid": 35568, "ts": 11204670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbc10", "tid": 35568, "ts": 11204756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db730", "tid": 35568, "ts": 11204843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbce0", "tid": 35568, "ts": 11204930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db4c0", "tid": 35568, "ts": 11205017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8f60", "tid": 35568, "ts": 11205103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dafe0", "tid": 35568, "ts": 11205190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da550", "tid": 35568, "ts": 11205277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09daf10", "tid": 35568, "ts": 11205363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da480", "tid": 35568, "ts": 11205449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9780", "tid": 35568, "ts": 11205535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dad70", "tid": 35568, "ts": 11205622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da2e0", "tid": 35568, "ts": 11205710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dba70", "tid": 35568, "ts": 11205796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da620", "tid": 35568, "ts": 11205882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db320", "tid": 35568, "ts": 11205970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9ac0", "tid": 35568, "ts": 11206056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da140", "tid": 35568, "ts": 11206142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9ed0", "tid": 35568, "ts": 11206228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9e00", "tid": 35568, "ts": 11206316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09daca0", "tid": 35568, "ts": 11206402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db180", "tid": 35568, "ts": 11206488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d99f0", "tid": 35568, "ts": 11206574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db8d0", "tid": 35568, "ts": 11206661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6450", "tid": 35568, "ts": 11206747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6c70", "tid": 35568, "ts": 11206834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8c20", "tid": 35568, "ts": 11206920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d59c0", "tid": 35568, "ts": 11207007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8b50", "tid": 35568, "ts": 11207093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6380", "tid": 35568, "ts": 11207180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7490", "tid": 35568, "ts": 11207266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5f70", "tid": 35568, "ts": 11207352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d73c0", "tid": 35568, "ts": 11207438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5ea0", "tid": 35568, "ts": 11207525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8400", "tid": 35568, "ts": 11207610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8330", "tid": 35568, "ts": 11207697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d66c0", "tid": 35568, "ts": 11207783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6ad0", "tid": 35568, "ts": 11207870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7a40", "tid": 35568, "ts": 11207956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6a00", "tid": 35568, "ts": 11208042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6fb0", "tid": 35568, "ts": 11208129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7080", "tid": 35568, "ts": 11208215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7970", "tid": 35568, "ts": 11208301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6110", "tid": 35568, "ts": 11208388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d85a0", "tid": 35568, "ts": 11208475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d65f0", "tid": 35568, "ts": 11208561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d78a0", "tid": 35568, "ts": 11208647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5a90", "tid": 35568, "ts": 11208734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8190", "tid": 35568, "ts": 11208820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6930", "tid": 35568, "ts": 11208906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6520", "tid": 35568, "ts": 11208992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5dd0", "tid": 35568, "ts": 11209080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7220", "tid": 35568, "ts": 11209166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7cb0", "tid": 35568, "ts": 11209252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7150", "tid": 35568, "ts": 11209338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8810", "tid": 35568, "ts": 11209425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2de0", "tid": 35568, "ts": 11209512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2b70", "tid": 35568, "ts": 11209597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5410", "tid": 35568, "ts": 11209684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4b20", "tid": 35568, "ts": 11209771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2aa0", "tid": 35568, "ts": 11209858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d47e0", "tid": 35568, "ts": 11209944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d29d0", "tid": 35568, "ts": 11210030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5340", "tid": 35568, "ts": 11210117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3c80", "tid": 35568, "ts": 11210204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d48b0", "tid": 35568, "ts": 11210291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3bb0", "tid": 35568, "ts": 11210377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3ae0", "tid": 35568, "ts": 11210464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4090", "tid": 35568, "ts": 11210551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2760", "tid": 35568, "ts": 11210637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2eb0", "tid": 35568, "ts": 11210724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3a10", "tid": 35568, "ts": 11210810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2690", "tid": 35568, "ts": 11210897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d25c0", "tid": 35568, "ts": 11210983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d44a0", "tid": 35568, "ts": 11211070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3fc0", "tid": 35568, "ts": 11211157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4cc0", "tid": 35568, "ts": 11211243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3390", "tid": 35568, "ts": 11211329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5680", "tid": 35568, "ts": 11211415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2900", "tid": 35568, "ts": 11211501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d55b0", "tid": 35568, "ts": 11211587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5750", "tid": 35568, "ts": 11211673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3e20", "tid": 35568, "ts": 11211760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2d10", "tid": 35568, "ts": 11211847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4230", "tid": 35568, "ts": 11211933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3870", "tid": 35568, "ts": 11212019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3120", "tid": 35568, "ts": 11212105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5000", "tid": 35568, "ts": 11212192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1720", "tid": 35568, "ts": 11212279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1580", "tid": 35568, "ts": 11212365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d13e0", "tid": 35568, "ts": 11212451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfec0", "tid": 35568, "ts": 11212538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0f00", "tid": 35568, "ts": 11212624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfdf0", "tid": 35568, "ts": 11212711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfd20", "tid": 35568, "ts": 11212797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0060", "tid": 35568, "ts": 11212883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfb80", "tid": 35568, "ts": 11212969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0200", "tid": 35568, "ts": 11213055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d17f0", "tid": 35568, "ts": 11213142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf6a0", "tid": 35568, "ts": 11213229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0610", "tid": 35568, "ts": 11213316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf500", "tid": 35568, "ts": 11213402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1240", "tid": 35568, "ts": 11213488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf360", "tid": 35568, "ts": 11213575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0470", "tid": 35568, "ts": 11213661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf1c0", "tid": 35568, "ts": 11213748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1990", "tid": 35568, "ts": 11213834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf9e0", "tid": 35568, "ts": 11213922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0bc0", "tid": 35568, "ts": 11214008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d10a0", "tid": 35568, "ts": 11214095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2350", "tid": 35568, "ts": 11214182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1b30", "tid": 35568, "ts": 11214269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1cd0", "tid": 35568, "ts": 11214355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2280", "tid": 35568, "ts": 11214441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0950", "tid": 35568, "ts": 11214527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0af0", "tid": 35568, "ts": 11214615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d06e0", "tid": 35568, "ts": 11214701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1e70", "tid": 35568, "ts": 11214787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d21b0", "tid": 35568, "ts": 11214873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1f40", "tid": 35568, "ts": 11214959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cedb0", "tid": 35568, "ts": 11215045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccc60", "tid": 35568, "ts": 11215132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce250", "tid": 35568, "ts": 11215218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce0b0", "tid": 35568, "ts": 11215305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdf10", "tid": 35568, "ts": 11215427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd3b0", "tid": 35568, "ts": 11215540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc510", "tid": 35568, "ts": 11215642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc100", "tid": 35568, "ts": 11215810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccb90", "tid": 35568, "ts": 11215995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbdc0", "tid": 35568, "ts": 11216109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc1d0", "tid": 35568, "ts": 11216237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd210", "tid": 35568, "ts": 11216377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbcf0", "tid": 35568, "ts": 11216464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce730", "tid": 35568, "ts": 11216551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc5e0", "tid": 35568, "ts": 11216638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd070", "tid": 35568, "ts": 11216725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce4c0", "tid": 35568, "ts": 11216811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbe90", "tid": 35568, "ts": 11216898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc030", "tid": 35568, "ts": 11216984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce180", "tid": 35568, "ts": 11217070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf020", "tid": 35568, "ts": 11217156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd7c0", "tid": 35568, "ts": 11217242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc850", "tid": 35568, "ts": 11217328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce9a0", "tid": 35568, "ts": 11217415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cef50", "tid": 35568, "ts": 11217502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce800", "tid": 35568, "ts": 11217588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc2a0", "tid": 35568, "ts": 11217674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd960", "tid": 35568, "ts": 11217762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce660", "tid": 35568, "ts": 11217848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cee80", "tid": 35568, "ts": 11217935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd480", "tid": 35568, "ts": 11218022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cce00", "tid": 35568, "ts": 11218109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9930", "tid": 35568, "ts": 11218195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c96c0", "tid": 35568, "ts": 11218282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c92b0", "tid": 35568, "ts": 11218369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c95f0", "tid": 35568, "ts": 11218456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb4d0", "tid": 35568, "ts": 11218543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb400", "tid": 35568, "ts": 11218629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8f70", "tid": 35568, "ts": 11218717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09caa40", "tid": 35568, "ts": 11218803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca560", "tid": 35568, "ts": 11218890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8ea0", "tid": 35568, "ts": 11218977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca490", "tid": 35568, "ts": 11219064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca700", "tid": 35568, "ts": 11219151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cacb0", "tid": 35568, "ts": 11219237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca3c0", "tid": 35568, "ts": 11219323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8dd0", "tid": 35568, "ts": 11219410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb740", "tid": 35568, "ts": 11219497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c89c0", "tid": 35568, "ts": 11219583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8d00", "tid": 35568, "ts": 11219670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9040", "tid": 35568, "ts": 11219757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbc20", "tid": 35568, "ts": 11219843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09caff0", "tid": 35568, "ts": 11219930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca2f0", "tid": 35568, "ts": 11220017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9ee0", "tid": 35568, "ts": 11220103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cabe0", "tid": 35568, "ts": 11220190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8c30", "tid": 35568, "ts": 11220277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cba80", "tid": 35568, "ts": 11220364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9520", "tid": 35568, "ts": 11220449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca220", "tid": 35568, "ts": 11220537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9d40", "tid": 35568, "ts": 11220623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9a00", "tid": 35568, "ts": 11220709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb8e0", "tid": 35568, "ts": 11220797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca8a0", "tid": 35568, "ts": 11220884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6530", "tid": 35568, "ts": 11220971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7230", "tid": 35568, "ts": 11221057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6120", "tid": 35568, "ts": 11221144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6a10", "tid": 35568, "ts": 11221231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c81a0", "tid": 35568, "ts": 11221318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c80d0", "tid": 35568, "ts": 11221405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5eb0", "tid": 35568, "ts": 11221491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5d10", "tid": 35568, "ts": 11221578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7d90", "tid": 35568, "ts": 11221664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c55c0", "tid": 35568, "ts": 11221751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c54f0", "tid": 35568, "ts": 11221837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7e60", "tid": 35568, "ts": 11221925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5aa0", "tid": 35568, "ts": 11222012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7640", "tid": 35568, "ts": 11222098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8000", "tid": 35568, "ts": 11222184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5f80", "tid": 35568, "ts": 11222271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5900", "tid": 35568, "ts": 11222357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c85b0", "tid": 35568, "ts": 11222444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8410", "tid": 35568, "ts": 11222530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c78b0", "tid": 35568, "ts": 11222617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8340", "tid": 35568, "ts": 11222703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7090", "tid": 35568, "ts": 11222790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c62c0", "tid": 35568, "ts": 11222878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7a50", "tid": 35568, "ts": 11222966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8750", "tid": 35568, "ts": 11223054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c84e0", "tid": 35568, "ts": 11223141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6bb0", "tid": 35568, "ts": 11223269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7cc0", "tid": 35568, "ts": 11223358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c67a0", "tid": 35568, "ts": 11223445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5830", "tid": 35568, "ts": 11223532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c74a0", "tid": 35568, "ts": 11223619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c73d0", "tid": 35568, "ts": 11223705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2b80", "tid": 35568, "ts": 11223792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2ab0", "tid": 35568, "ts": 11223879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2910", "tid": 35568, "ts": 11223965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2840", "tid": 35568, "ts": 11224052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4c00", "tid": 35568, "ts": 11224138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2500", "tid": 35568, "ts": 11224225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4720", "tid": 35568, "ts": 11224311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2430", "tid": 35568, "ts": 11224398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3470", "tid": 35568, "ts": 11224485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c48c0", "tid": 35568, "ts": 11224571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4650", "tid": 35568, "ts": 11224658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c33a0", "tid": 35568, "ts": 11224745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2df0", "tid": 35568, "ts": 11224831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c32d0", "tid": 35568, "ts": 11224917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4990", "tid": 35568, "ts": 11225004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2360", "tid": 35568, "ts": 11225090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2290", "tid": 35568, "ts": 11225177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c21c0", "tid": 35568, "ts": 11225264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3fd0", "tid": 35568, "ts": 11225350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2ec0", "tid": 35568, "ts": 11225438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3200", "tid": 35568, "ts": 11225524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3f00", "tid": 35568, "ts": 11225610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4580", "tid": 35568, "ts": 11225697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3880", "tid": 35568, "ts": 11225784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4170", "tid": 35568, "ts": 11225870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4310", "tid": 35568, "ts": 11225957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4a60", "tid": 35568, "ts": 11226043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5350", "tid": 35568, "ts": 11226130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5280", "tid": 35568, "ts": 11226217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4b30", "tid": 35568, "ts": 11226304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c51b0", "tid": 35568, "ts": 11226390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2770", "tid": 35568, "ts": 11226477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f950", "tid": 35568, "ts": 11226564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f200", "tid": 35568, "ts": 11226651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f130", "tid": 35568, "ts": 11226738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ec50", "tid": 35568, "ts": 11226849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06600a0", "tid": 35568, "ts": 11226935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ef90", "tid": 35568, "ts": 11227022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fc90", "tid": 35568, "ts": 11227108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e360", "tid": 35568, "ts": 11227196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e290", "tid": 35568, "ts": 11227283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065edf0", "tid": 35568, "ts": 11227369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660580", "tid": 35568, "ts": 11227456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661420", "tid": 35568, "ts": 11227543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06603e0", "tid": 35568, "ts": 11227629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06611b0", "tid": 35568, "ts": 11227716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ffd0", "tid": 35568, "ts": 11227802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fbc0", "tid": 35568, "ts": 11227889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065eab0", "tid": 35568, "ts": 11227975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f470", "tid": 35568, "ts": 11228062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065eb80", "tid": 35568, "ts": 11228148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660cd0", "tid": 35568, "ts": 11228235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661280", "tid": 35568, "ts": 11228322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660c00", "tid": 35568, "ts": 11228409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660170", "tid": 35568, "ts": 11228495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660240", "tid": 35568, "ts": 11228582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660f40", "tid": 35568, "ts": 11228668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ed20", "tid": 35568, "ts": 11228755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660da0", "tid": 35568, "ts": 11228841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660a60", "tid": 35568, "ts": 11228928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f540", "tid": 35568, "ts": 11229014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660990", "tid": 35568, "ts": 11229101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065faf0", "tid": 35568, "ts": 11229188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660650", "tid": 35568, "ts": 11229275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bde0", "tid": 35568, "ts": 11229362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b9d0", "tid": 35568, "ts": 11229449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b690", "tid": 35568, "ts": 11229536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cef0", "tid": 35568, "ts": 11229623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b830", "tid": 35568, "ts": 11229710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d4a0", "tid": 35568, "ts": 11229797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c120", "tid": 35568, "ts": 11229884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b4f0", "tid": 35568, "ts": 11229971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067df30", "tid": 35568, "ts": 11230057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ca10", "tid": 35568, "ts": 11230144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067dbf0", "tid": 35568, "ts": 11230231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c530", "tid": 35568, "ts": 11230317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c940", "tid": 35568, "ts": 11230404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067de60", "tid": 35568, "ts": 11230490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067beb0", "tid": 35568, "ts": 11230577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c2c0", "tid": 35568, "ts": 11230664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b900", "tid": 35568, "ts": 11230750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bb70", "tid": 35568, "ts": 11230836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d230", "tid": 35568, "ts": 11230922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d7e0", "tid": 35568, "ts": 11231043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d640", "tid": 35568, "ts": 11231159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c460", "tid": 35568, "ts": 11231246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d300", "tid": 35568, "ts": 11231333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067baa0", "tid": 35568, "ts": 11231420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067db20", "tid": 35568, "ts": 11231506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067dcc0", "tid": 35568, "ts": 11231593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b0e0", "tid": 35568, "ts": 11231679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067acd0", "tid": 35568, "ts": 11231767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679a20", "tid": 35568, "ts": 11231853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06781c0", "tid": 35568, "ts": 11231940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678ab0", "tid": 35568, "ts": 11232026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679bc0", "tid": 35568, "ts": 11232113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a7f0", "tid": 35568, "ts": 11232199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678500", "tid": 35568, "ts": 11232286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b010", "tid": 35568, "ts": 11232372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ac00", "tid": 35568, "ts": 11232458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ab30", "tid": 35568, "ts": 11232544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678770", "tid": 35568, "ts": 11232631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a990", "tid": 35568, "ts": 11232717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a3e0", "tid": 35568, "ts": 11232805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06796e0", "tid": 35568, "ts": 11232891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06797b0", "tid": 35568, "ts": 11232978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a720", "tid": 35568, "ts": 11233079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679200", "tid": 35568, "ts": 11233167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b280", "tid": 35568, "ts": 11233254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679540", "tid": 35568, "ts": 11233340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678b80", "tid": 35568, "ts": 11233427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679130", "tid": 35568, "ts": 11233514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679fd0", "tid": 35568, "ts": 11233601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678290", "tid": 35568, "ts": 11233687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ae70", "tid": 35568, "ts": 11233774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a310", "tid": 35568, "ts": 11233861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06793a0", "tid": 35568, "ts": 11233947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679e30", "tid": 35568, "ts": 11234034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ada0", "tid": 35568, "ts": 11234121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067af40", "tid": 35568, "ts": 11234208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06780f0", "tid": 35568, "ts": 11234295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06751d0", "tid": 35568, "ts": 11234382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676d70", "tid": 35568, "ts": 11234468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675030", "tid": 35568, "ts": 11234555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676960", "tid": 35568, "ts": 11234642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06767c0", "tid": 35568, "ts": 11234729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674cf0", "tid": 35568, "ts": 11234815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678020", "tid": 35568, "ts": 11234902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677f50", "tid": 35568, "ts": 11234988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676620", "tid": 35568, "ts": 11235075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676b00", "tid": 35568, "ts": 11235160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675d30", "tid": 35568, "ts": 11235248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676550", "tid": 35568, "ts": 11235335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676480", "tid": 35568, "ts": 11235421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677db0", "tid": 35568, "ts": 11235508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676ca0", "tid": 35568, "ts": 11235595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676fe0", "tid": 35568, "ts": 11235681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06778d0", "tid": 35568, "ts": 11235768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674f60", "tid": 35568, "ts": 11235855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675510", "tid": 35568, "ts": 11235941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676210", "tid": 35568, "ts": 11236027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677b40", "tid": 35568, "ts": 11236115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675850", "tid": 35568, "ts": 11236201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676070", "tid": 35568, "ts": 11236287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675780", "tid": 35568, "ts": 11236374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677a70", "tid": 35568, "ts": 11236460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677180", "tid": 35568, "ts": 11236546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677320", "tid": 35568, "ts": 11236633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06752a0", "tid": 35568, "ts": 11236720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06756b0", "tid": 35568, "ts": 11236806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677590", "tid": 35568, "ts": 11236893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675440", "tid": 35568, "ts": 11236979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676140", "tid": 35568, "ts": 11237066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672930", "tid": 35568, "ts": 11237152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06726c0", "tid": 35568, "ts": 11237239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672520", "tid": 35568, "ts": 11237326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06721e0", "tid": 35568, "ts": 11237412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671f70", "tid": 35568, "ts": 11237499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671c30", "tid": 35568, "ts": 11237585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06738a0", "tid": 35568, "ts": 11237673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671ea0", "tid": 35568, "ts": 11237759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674190", "tid": 35568, "ts": 11237845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06732f0", "tid": 35568, "ts": 11237931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06719c0", "tid": 35568, "ts": 11238017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673d80", "tid": 35568, "ts": 11238104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673f20", "tid": 35568, "ts": 11238190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06745a0", "tid": 35568, "ts": 11238276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06718f0", "tid": 35568, "ts": 11238362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673e50", "tid": 35568, "ts": 11238448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674740", "tid": 35568, "ts": 11238534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672c70", "tid": 35568, "ts": 11238621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674a80", "tid": 35568, "ts": 11238709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06744d0", "tid": 35568, "ts": 11238795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672450", "tid": 35568, "ts": 11238882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672e10", "tid": 35568, "ts": 11238968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673220", "tid": 35568, "ts": 11239056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671dd0", "tid": 35568, "ts": 11239141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672a00", "tid": 35568, "ts": 11239228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673490", "tid": 35568, "ts": 11239315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672ba0", "tid": 35568, "ts": 11239402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674260", "tid": 35568, "ts": 11239488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06733c0", "tid": 35568, "ts": 11239574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674400", "tid": 35568, "ts": 11239662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673700", "tid": 35568, "ts": 11239749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673970", "tid": 35568, "ts": 11239835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066eb70", "tid": 35568, "ts": 11239922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e900", "tid": 35568, "ts": 11240009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671820", "tid": 35568, "ts": 11240097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fe20", "tid": 35568, "ts": 11240184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670230", "tid": 35568, "ts": 11240270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670090", "tid": 35568, "ts": 11240357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e830", "tid": 35568, "ts": 11240444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fc80", "tid": 35568, "ts": 11240530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fbb0", "tid": 35568, "ts": 11240617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06703d0", "tid": 35568, "ts": 11240704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670e60", "tid": 35568, "ts": 11240790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f870", "tid": 35568, "ts": 11240878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f530", "tid": 35568, "ts": 11240965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f7a0", "tid": 35568, "ts": 11241051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f600", "tid": 35568, "ts": 11241137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06707e0", "tid": 35568, "ts": 11241223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f1f0", "tid": 35568, "ts": 11241310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f120", "tid": 35568, "ts": 11241396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670710", "tid": 35568, "ts": 11241483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ed10", "tid": 35568, "ts": 11241570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670b20", "tid": 35568, "ts": 11241657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670160", "tid": 35568, "ts": 11241743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671680", "tid": 35568, "ts": 11241830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066eeb0", "tid": 35568, "ts": 11241916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670980", "tid": 35568, "ts": 11242003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06710d0", "tid": 35568, "ts": 11242089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066eaa0", "tid": 35568, "ts": 11242176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f050", "tid": 35568, "ts": 11242262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f940", "tid": 35568, "ts": 11242349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671750", "tid": 35568, "ts": 11242435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670570", "tid": 35568, "ts": 11242523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ede0", "tid": 35568, "ts": 11242609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b770", "tid": 35568, "ts": 11242695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d990", "tid": 35568, "ts": 11242781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d580", "tid": 35568, "ts": 11242869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d3e0", "tid": 35568, "ts": 11242955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d170", "tid": 35568, "ts": 11243042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cbc0", "tid": 35568, "ts": 11243128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b290", "tid": 35568, "ts": 11243215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b0f0", "tid": 35568, "ts": 11243301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d720", "tid": 35568, "ts": 11243388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066caf0", "tid": 35568, "ts": 11243475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b500", "tid": 35568, "ts": 11243561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cc90", "tid": 35568, "ts": 11243648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c6e0", "tid": 35568, "ts": 11243735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c540", "tid": 35568, "ts": 11243821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b6a0", "tid": 35568, "ts": 11243908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e1b0", "tid": 35568, "ts": 11243994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e280", "tid": 35568, "ts": 11244080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c130", "tid": 35568, "ts": 11244167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c3a0", "tid": 35568, "ts": 11244254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c470", "tid": 35568, "ts": 11244341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066df40", "tid": 35568, "ts": 11244428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066de70", "tid": 35568, "ts": 11244515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e010", "tid": 35568, "ts": 11244602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066dda0", "tid": 35568, "ts": 11244688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066dcd0", "tid": 35568, "ts": 11244774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bec0", "tid": 35568, "ts": 11244860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bdf0", "tid": 35568, "ts": 11244947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ce30", "tid": 35568, "ts": 11245033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bab0", "tid": 35568, "ts": 11245120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b9e0", "tid": 35568, "ts": 11245206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b840", "tid": 35568, "ts": 11245293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cd60", "tid": 35568, "ts": 11245380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668440", "tid": 35568, "ts": 11245466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667cf0", "tid": 35568, "ts": 11245553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a4c0", "tid": 35568, "ts": 11245639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669d70", "tid": 35568, "ts": 11245726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669ca0", "tid": 35568, "ts": 11245812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066adb0", "tid": 35568, "ts": 11245898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669960", "tid": 35568, "ts": 11245986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06689f0", "tid": 35568, "ts": 11246072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06686b0", "tid": 35568, "ts": 11246159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668100", "tid": 35568, "ts": 11246246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669890", "tid": 35568, "ts": 11246333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06696f0", "tid": 35568, "ts": 11246419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669620", "tid": 35568, "ts": 11246505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669e40", "tid": 35568, "ts": 11246591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06685e0", "tid": 35568, "ts": 11246717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668920", "tid": 35568, "ts": 11246804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668e00", "tid": 35568, "ts": 11246891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06693b0", "tid": 35568, "ts": 11246978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a0b0", "tid": 35568, "ts": 11247065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667e90", "tid": 35568, "ts": 11247152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ab40", "tid": 35568, "ts": 11247238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066aa70", "tid": 35568, "ts": 11247324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06692e0", "tid": 35568, "ts": 11247412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669140", "tid": 35568, "ts": 11247498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669a30", "tid": 35568, "ts": 11247584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ace0", "tid": 35568, "ts": 11247671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ac10", "tid": 35568, "ts": 11247758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668370", "tid": 35568, "ts": 11247844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a180", "tid": 35568, "ts": 11247931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066af50", "tid": 35568, "ts": 11248018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668fa0", "tid": 35568, "ts": 11248105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a660", "tid": 35568, "ts": 11248191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667c20", "tid": 35568, "ts": 11248278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06679b0", "tid": 35568, "ts": 11248364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666ff0", "tid": 35568, "ts": 11248451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667b50", "tid": 35568, "ts": 11248538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666d80", "tid": 35568, "ts": 11248624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06668a0", "tid": 35568, "ts": 11248710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06674d0", "tid": 35568, "ts": 11248797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666700", "tid": 35568, "ts": 11248883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666150", "tid": 35568, "ts": 11248969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664b60", "tid": 35568, "ts": 11249055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665ee0", "tid": 35568, "ts": 11249141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666be0", "tid": 35568, "ts": 11249228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666220", "tid": 35568, "ts": 11249314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666b10", "tid": 35568, "ts": 11249401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06675a0", "tid": 35568, "ts": 11249488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665c70", "tid": 35568, "ts": 11249575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06656c0", "tid": 35568, "ts": 11249661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667190", "tid": 35568, "ts": 11249747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666560", "tid": 35568, "ts": 11249834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06652b0", "tid": 35568, "ts": 11249920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06670c0", "tid": 35568, "ts": 11250007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667400", "tid": 35568, "ts": 11250094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665520", "tid": 35568, "ts": 11250181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666cb0", "tid": 35568, "ts": 11250267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665930", "tid": 35568, "ts": 11250352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665ad0", "tid": 35568, "ts": 11250439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665450", "tid": 35568, "ts": 11250525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06649c0", "tid": 35568, "ts": 11250613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665860", "tid": 35568, "ts": 11250699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06648f0", "tid": 35568, "ts": 11250785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664ea0", "tid": 35568, "ts": 11250872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666630", "tid": 35568, "ts": 11250958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06644e0", "tid": 35568, "ts": 11251044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06640d0", "tid": 35568, "ts": 11251129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663e60", "tid": 35568, "ts": 11251217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663bf0", "tid": 35568, "ts": 11251303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663a50", "tid": 35568, "ts": 11251389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06638b0", "tid": 35568, "ts": 11251475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661690", "tid": 35568, "ts": 11251562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663710", "tid": 35568, "ts": 11251649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661760", "tid": 35568, "ts": 11251735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06645b0", "tid": 35568, "ts": 11251821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664750", "tid": 35568, "ts": 11251908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663230", "tid": 35568, "ts": 11251994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662d50", "tid": 35568, "ts": 11252080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06621f0", "tid": 35568, "ts": 11252166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662a10", "tid": 35568, "ts": 11252252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661eb0", "tid": 35568, "ts": 11252339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664340", "tid": 35568, "ts": 11252424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663160", "tid": 35568, "ts": 11252511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662940", "tid": 35568, "ts": 11252597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661900", "tid": 35568, "ts": 11252683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662bb0", "tid": 35568, "ts": 11252769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663300", "tid": 35568, "ts": 11252855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661aa0", "tid": 35568, "ts": 11252941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06619d0", "tid": 35568, "ts": 11253027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664270", "tid": 35568, "ts": 11253114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661de0", "tid": 35568, "ts": 11253200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662050", "tid": 35568, "ts": 11253287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662ae0", "tid": 35568, "ts": 11253373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661c40", "tid": 35568, "ts": 11253460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662e20", "tid": 35568, "ts": 11253546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06615c0", "tid": 35568, "ts": 11253632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661830", "tid": 35568, "ts": 11253718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae450", "tid": 35568, "ts": 11253805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae380", "tid": 35568, "ts": 11253891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae2b0", "tid": 35568, "ts": 11253979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0400", "tid": 35568, "ts": 11254065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af700", "tid": 35568, "ts": 11254151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae110", "tid": 35568, "ts": 11254237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af080", "tid": 35568, "ts": 11254324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aff20", "tid": 35568, "ts": 11254411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aeee0", "tid": 35568, "ts": 11254497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aec70", "tid": 35568, "ts": 11254583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afcb0", "tid": 35568, "ts": 11254669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af490", "tid": 35568, "ts": 11254756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0670", "tid": 35568, "ts": 11254842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aee10", "tid": 35568, "ts": 11254928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aed40", "tid": 35568, "ts": 11255014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afff0", "tid": 35568, "ts": 11255101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b05a0", "tid": 35568, "ts": 11255188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aeba0", "tid": 35568, "ts": 11255273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b04d0", "tid": 35568, "ts": 11255361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afa40", "tid": 35568, "ts": 11255447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae5f0", "tid": 35568, "ts": 11255534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aea00", "tid": 35568, "ts": 11255620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b00c0", "tid": 35568, "ts": 11255707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae860", "tid": 35568, "ts": 11255793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af8a0", "tid": 35568, "ts": 11255880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af970", "tid": 35568, "ts": 11255966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0cf0", "tid": 35568, "ts": 11256052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae1e0", "tid": 35568, "ts": 11256138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af150", "tid": 35568, "ts": 11256225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adf70", "tid": 35568, "ts": 11256311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adb60", "tid": 35568, "ts": 11256398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad8f0", "tid": 35568, "ts": 11256484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad750", "tid": 35568, "ts": 11256570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad270", "tid": 35568, "ts": 11256656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad1a0", "tid": 35568, "ts": 11256743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad000", "tid": 35568, "ts": 11256828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aca50", "tid": 35568, "ts": 11256914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac710", "tid": 35568, "ts": 11257000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad5b0", "tid": 35568, "ts": 11257086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abae0", "tid": 35568, "ts": 11257173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac640", "tid": 35568, "ts": 11257259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab870", "tid": 35568, "ts": 11257346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac8b0", "tid": 35568, "ts": 11257432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab600", "tid": 35568, "ts": 11257518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad4e0", "tid": 35568, "ts": 11257604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac3d0", "tid": 35568, "ts": 11257691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad680", "tid": 35568, "ts": 11257778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab390", "tid": 35568, "ts": 11257865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acf30", "tid": 35568, "ts": 11257954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac7e0", "tid": 35568, "ts": 11258042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abe20", "tid": 35568, "ts": 11258174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aade0", "tid": 35568, "ts": 11258264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aad10", "tid": 35568, "ts": 11258350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aba10", "tid": 35568, "ts": 11258437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab2c0", "tid": 35568, "ts": 11258523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acd90", "tid": 35568, "ts": 11258609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adc30", "tid": 35568, "ts": 11258695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac160", "tid": 35568, "ts": 11258781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac090", "tid": 35568, "ts": 11258868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab050", "tid": 35568, "ts": 11258953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad410", "tid": 35568, "ts": 11259040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9170", "tid": 35568, "ts": 11259126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8fd0", "tid": 35568, "ts": 11259213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7b80", "tid": 35568, "ts": 11259299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa760", "tid": 35568, "ts": 11259385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa010", "tid": 35568, "ts": 11259471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9650", "tid": 35568, "ts": 11259558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8e30", "tid": 35568, "ts": 11259644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a82d0", "tid": 35568, "ts": 11259730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aaaa0", "tid": 35568, "ts": 11259816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8af0", "tid": 35568, "ts": 11259903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8c90", "tid": 35568, "ts": 11259988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7ec0", "tid": 35568, "ts": 11260074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa350", "tid": 35568, "ts": 11260160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8950", "tid": 35568, "ts": 11260247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8880", "tid": 35568, "ts": 11260333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8200", "tid": 35568, "ts": 11260419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9310", "tid": 35568, "ts": 11260505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a87b0", "tid": 35568, "ts": 11260591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8a20", "tid": 35568, "ts": 11260678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa1b0", "tid": 35568, "ts": 11260764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9a60", "tid": 35568, "ts": 11260850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa690", "tid": 35568, "ts": 11260937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7d20", "tid": 35568, "ts": 11261023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa5c0", "tid": 35568, "ts": 11261110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8060", "tid": 35568, "ts": 11261196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a86e0", "tid": 35568, "ts": 11261282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7c50", "tid": 35568, "ts": 11261368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7840", "tid": 35568, "ts": 11261454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7df0", "tid": 35568, "ts": 11261540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa4f0", "tid": 35568, "ts": 11261626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7910", "tid": 35568, "ts": 11261712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a98c0", "tid": 35568, "ts": 11261799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a71c0", "tid": 35568, "ts": 11261884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6ce0", "tid": 35568, "ts": 11261970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6b40", "tid": 35568, "ts": 11262056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a68d0", "tid": 35568, "ts": 11262142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6250", "tid": 35568, "ts": 11262228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5fe0", "tid": 35568, "ts": 11262354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5ca0", "tid": 35568, "ts": 11262439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5bd0", "tid": 35568, "ts": 11262526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5960", "tid": 35568, "ts": 11262613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6320", "tid": 35568, "ts": 11262699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5550", "tid": 35568, "ts": 11262785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5480", "tid": 35568, "ts": 11262871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5070", "tid": 35568, "ts": 11262958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7430", "tid": 35568, "ts": 11263044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5e40", "tid": 35568, "ts": 11263130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4e00", "tid": 35568, "ts": 11263217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6db0", "tid": 35568, "ts": 11263303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7020", "tid": 35568, "ts": 11263390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a46b0", "tid": 35568, "ts": 11263475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a57c0", "tid": 35568, "ts": 11263561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a75d0", "tid": 35568, "ts": 11263647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4b90", "tid": 35568, "ts": 11263734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a45e0", "tid": 35568, "ts": 11263820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a49f0", "tid": 35568, "ts": 11263906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4fa0", "tid": 35568, "ts": 11263991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6660", "tid": 35568, "ts": 11264077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7360", "tid": 35568, "ts": 11264163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a69a0", "tid": 35568, "ts": 11264249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4c60", "tid": 35568, "ts": 11264335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6f50", "tid": 35568, "ts": 11264421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6590", "tid": 35568, "ts": 11264507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4510", "tid": 35568, "ts": 11264593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a30c0", "tid": 35568, "ts": 11264679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2970", "tid": 35568, "ts": 11264765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1040", "tid": 35568, "ts": 11264851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2630", "tid": 35568, "ts": 11264937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2560", "tid": 35568, "ts": 11265024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2080", "tid": 35568, "ts": 11265111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1fb0", "tid": 35568, "ts": 11265196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1ee0", "tid": 35568, "ts": 11265282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a15f0", "tid": 35568, "ts": 11265368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a34d0", "tid": 35568, "ts": 11265455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1520", "tid": 35568, "ts": 11265541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1450", "tid": 35568, "ts": 11265627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4370", "tid": 35568, "ts": 11265713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a27d0", "tid": 35568, "ts": 11265799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3810", "tid": 35568, "ts": 11265886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a42a0", "tid": 35568, "ts": 11265972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a23c0", "tid": 35568, "ts": 11266059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2d80", "tid": 35568, "ts": 11266145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1c70", "tid": 35568, "ts": 11266230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2150", "tid": 35568, "ts": 11266317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2cb0", "tid": 35568, "ts": 11266403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2b10", "tid": 35568, "ts": 11266490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2be0", "tid": 35568, "ts": 11266576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3260", "tid": 35568, "ts": 11266663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3190", "tid": 35568, "ts": 11266749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3670", "tid": 35568, "ts": 11266835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1a00", "tid": 35568, "ts": 11266921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3b50", "tid": 35568, "ts": 11267008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3a80", "tid": 35568, "ts": 11267094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1790", "tid": 35568, "ts": 11267181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1860", "tid": 35568, "ts": 11267267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3e90", "tid": 35568, "ts": 11267353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333100", "tid": 35568, "ts": 11267440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03332a0", "tid": 35568, "ts": 11267526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333030", "tid": 35568, "ts": 11267612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333920", "tid": 35568, "ts": 11267698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334a30", "tid": 35568, "ts": 11267784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03324d0", "tid": 35568, "ts": 11267871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03343b0", "tid": 35568, "ts": 11267957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332b50", "tid": 35568, "ts": 11268043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334960", "tid": 35568, "ts": 11268129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03336b0", "tid": 35568, "ts": 11268215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332f60", "tid": 35568, "ts": 11268302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03342e0", "tid": 35568, "ts": 11268388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332400", "tid": 35568, "ts": 11268473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334620", "tid": 35568, "ts": 11268560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334480", "tid": 35568, "ts": 11268647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334140", "tid": 35568, "ts": 11268733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03347c0", "tid": 35568, "ts": 11268819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332810", "tid": 35568, "ts": 11268905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333d30", "tid": 35568, "ts": 11268991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332670", "tid": 35568, "ts": 11269077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332e90", "tid": 35568, "ts": 11269164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332a80", "tid": 35568, "ts": 11269251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335250", "tid": 35568, "ts": 11269336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334890", "tid": 35568, "ts": 11269422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332c20", "tid": 35568, "ts": 11269508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333c60", "tid": 35568, "ts": 11269595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333b90", "tid": 35568, "ts": 11269682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335180", "tid": 35568, "ts": 11269769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03346f0", "tid": 35568, "ts": 11269855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332190", "tid": 35568, "ts": 11269941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03329b0", "tid": 35568, "ts": 11270028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03331d0", "tid": 35568, "ts": 11270113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f4d0", "tid": 35568, "ts": 11270200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341ca0", "tid": 35568, "ts": 11270286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341960", "tid": 35568, "ts": 11270373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03417c0", "tid": 35568, "ts": 11270458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341480", "tid": 35568, "ts": 11270544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340ed0", "tid": 35568, "ts": 11270630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340780", "tid": 35568, "ts": 11270717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03413b0", "tid": 35568, "ts": 11270803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03412e0", "tid": 35568, "ts": 11270889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340370", "tid": 35568, "ts": 11270975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ff60", "tid": 35568, "ts": 11271061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341b00", "tid": 35568, "ts": 11271147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341140", "tid": 35568, "ts": 11271233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03402a0", "tid": 35568, "ts": 11271320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340fa0", "tid": 35568, "ts": 11271406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340b90", "tid": 35568, "ts": 11271492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03409f0", "tid": 35568, "ts": 11271577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fc20", "tid": 35568, "ts": 11271664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341890", "tid": 35568, "ts": 11271750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fb50", "tid": 35568, "ts": 11271837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341210", "tid": 35568, "ts": 11271922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f5a0", "tid": 35568, "ts": 11272009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f670", "tid": 35568, "ts": 11272095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340850", "tid": 35568, "ts": 11272181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f9b0", "tid": 35568, "ts": 11272267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f810", "tid": 35568, "ts": 11272352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fe90", "tid": 35568, "ts": 11272439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340440", "tid": 35568, "ts": 11272525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03416f0", "tid": 35568, "ts": 11272610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e700", "tid": 35568, "ts": 11272697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e220", "tid": 35568, "ts": 11272783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e080", "tid": 35568, "ts": 11272869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dee0", "tid": 35568, "ts": 11272955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cea0", "tid": 35568, "ts": 11273041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e560", "tid": 35568, "ts": 11273127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cc30", "tid": 35568, "ts": 11273213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d1e0", "tid": 35568, "ts": 11273299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c9c0", "tid": 35568, "ts": 11273386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c4e0", "tid": 35568, "ts": 11273472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c820", "tid": 35568, "ts": 11273559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c270", "tid": 35568, "ts": 11273644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ca90", "tid": 35568, "ts": 11273730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e630", "tid": 35568, "ts": 11273816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dd40", "tid": 35568, "ts": 11273902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d450", "tid": 35568, "ts": 11273989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dc70", "tid": 35568, "ts": 11274075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e2f0", "tid": 35568, "ts": 11274161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dfb0", "tid": 35568, "ts": 11274248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bd90", "tid": 35568, "ts": 11274334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c410", "tid": 35568, "ts": 11274420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033da00", "tid": 35568, "ts": 11274506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ea40", "tid": 35568, "ts": 11274592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d930", "tid": 35568, "ts": 11274678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e490", "tid": 35568, "ts": 11274766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ebe0", "tid": 35568, "ts": 11274853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d790", "tid": 35568, "ts": 11274940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ee50", "tid": 35568, "ts": 11275026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033eff0", "tid": 35568, "ts": 11275113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ef20", "tid": 35568, "ts": 11275198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033eb10", "tid": 35568, "ts": 11275285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ed80", "tid": 35568, "ts": 11275371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ac80", "tid": 35568, "ts": 11275458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033aae0", "tid": 35568, "ts": 11275545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a940", "tid": 35568, "ts": 11275631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a7a0", "tid": 35568, "ts": 11275717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339de0", "tid": 35568, "ts": 11275804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339d10", "tid": 35568, "ts": 11275890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a6d0", "tid": 35568, "ts": 11275976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03399d0", "tid": 35568, "ts": 11276063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339eb0", "tid": 35568, "ts": 11276150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a870", "tid": 35568, "ts": 11276237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03388c0", "tid": 35568, "ts": 11276323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bbf0", "tid": 35568, "ts": 11276410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ba50", "tid": 35568, "ts": 11276496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03394f0", "tid": 35568, "ts": 11276582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a530", "tid": 35568, "ts": 11276668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b8b0", "tid": 35568, "ts": 11276755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b3d0", "tid": 35568, "ts": 11276842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339350", "tid": 35568, "ts": 11276928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a460", "tid": 35568, "ts": 11277015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ad50", "tid": 35568, "ts": 11277101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338f40", "tid": 35568, "ts": 11277189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033aef0", "tid": 35568, "ts": 11277275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339690", "tid": 35568, "ts": 11277361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a1f0", "tid": 35568, "ts": 11277458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339420", "tid": 35568, "ts": 11277548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b090", "tid": 35568, "ts": 11277634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339f80", "tid": 35568, "ts": 11277721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339c40", "tid": 35568, "ts": 11277807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338e70", "tid": 35568, "ts": 11277937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339010", "tid": 35568, "ts": 11278043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b160", "tid": 35568, "ts": 11278131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336430", "tid": 35568, "ts": 11278218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03361c0", "tid": 35568, "ts": 11278304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03354c0", "tid": 35568, "ts": 11278390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337950", "tid": 35568, "ts": 11278477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03377b0", "tid": 35568, "ts": 11278563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03387f0", "tid": 35568, "ts": 11278650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336020", "tid": 35568, "ts": 11278737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03373a0", "tid": 35568, "ts": 11278823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336df0", "tid": 35568, "ts": 11278908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336ec0", "tid": 35568, "ts": 11278996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03372d0", "tid": 35568, "ts": 11279082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336c50", "tid": 35568, "ts": 11279169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337130", "tid": 35568, "ts": 11279256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335e80", "tid": 35568, "ts": 11279342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335b40", "tid": 35568, "ts": 11279428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335c10", "tid": 35568, "ts": 11279514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03380a0", "tid": 35568, "ts": 11279601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338580", "tid": 35568, "ts": 11279688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03384b0", "tid": 35568, "ts": 11279775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337fd0", "tid": 35568, "ts": 11279862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03365d0", "tid": 35568, "ts": 11279948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337540", "tid": 35568, "ts": 11280034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337e30", "tid": 35568, "ts": 11280121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336500", "tid": 35568, "ts": 11280208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335730", "tid": 35568, "ts": 11280294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335800", "tid": 35568, "ts": 11280381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337af0", "tid": 35568, "ts": 11280467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336770", "tid": 35568, "ts": 11280553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335590", "tid": 35568, "ts": 11280640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336ab0", "tid": 35568, "ts": 11280726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336360", "tid": 35568, "ts": 11280812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335ce0", "tid": 35568, "ts": 11280898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915320", "tid": 35568, "ts": 11280984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879150b0", "tid": 35568, "ts": 11281071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914960", "tid": 35568, "ts": 11281157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914140", "tid": 35568, "ts": 11281244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913ed0", "tid": 35568, "ts": 11281331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879139f0", "tid": 35568, "ts": 11281418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879147c0", "tid": 35568, "ts": 11281505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913780", "tid": 35568, "ts": 11281591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913d30", "tid": 35568, "ts": 11281678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913370", "tid": 35568, "ts": 11281766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912cf0", "tid": 35568, "ts": 11281852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912740", "tid": 35568, "ts": 11281939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879146f0", "tid": 35568, "ts": 11282025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879125a0", "tid": 35568, "ts": 11282112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914620", "tid": 35568, "ts": 11282198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914550", "tid": 35568, "ts": 11282285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914480", "tid": 35568, "ts": 11282372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912c20", "tid": 35568, "ts": 11282458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913c60", "tid": 35568, "ts": 11282545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913510", "tid": 35568, "ts": 11282632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913b90", "tid": 35568, "ts": 11282718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913920", "tid": 35568, "ts": 11282804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912330", "tid": 35568, "ts": 11282890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913100", "tid": 35568, "ts": 11282977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879143b0", "tid": 35568, "ts": 11283064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879120c0", "tid": 35568, "ts": 11283151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914210", "tid": 35568, "ts": 11283238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879153f0", "tid": 35568, "ts": 11283325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914a30", "tid": 35568, "ts": 11283411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914890", "tid": 35568, "ts": 11283498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914ca0", "tid": 35568, "ts": 11283585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912190", "tid": 35568, "ts": 11283671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921a30", "tid": 35568, "ts": 11283758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921210", "tid": 35568, "ts": 11283844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920100", "tid": 35568, "ts": 11283931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920920", "tid": 35568, "ts": 11284018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920780", "tid": 35568, "ts": 11284104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fdc0", "tid": 35568, "ts": 11284191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879205e0", "tid": 35568, "ts": 11284278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879212e0", "tid": 35568, "ts": 11284364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921620", "tid": 35568, "ts": 11284451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921e40", "tid": 35568, "ts": 11284538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f0c0", "tid": 35568, "ts": 11284624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920030", "tid": 35568, "ts": 11284710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f740", "tid": 35568, "ts": 11284796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920850", "tid": 35568, "ts": 11284883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f4d0", "tid": 35568, "ts": 11284969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f670", "tid": 35568, "ts": 11285055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879202a0", "tid": 35568, "ts": 11285141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f260", "tid": 35568, "ts": 11285228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879216f0", "tid": 35568, "ts": 11285315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921bd0", "tid": 35568, "ts": 11285402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920370", "tid": 35568, "ts": 11285489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921890", "tid": 35568, "ts": 11285575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f400", "tid": 35568, "ts": 11285662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f190", "tid": 35568, "ts": 11285748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879201d0", "tid": 35568, "ts": 11285834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879213b0", "tid": 35568, "ts": 11285921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921f10", "tid": 35568, "ts": 11286008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921d70", "tid": 35568, "ts": 11286094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920ac0", "tid": 35568, "ts": 11286181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d860", "tid": 35568, "ts": 11286268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d6c0", "tid": 35568, "ts": 11286354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cf70", "tid": 35568, "ts": 11286440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c4e0", "tid": 35568, "ts": 11286528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c410", "tid": 35568, "ts": 11286614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791eff0", "tid": 35568, "ts": 11286700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bf30", "tid": 35568, "ts": 11286786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d450", "tid": 35568, "ts": 11286873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d380", "tid": 35568, "ts": 11286960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e970", "tid": 35568, "ts": 11287046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cea0", "tid": 35568, "ts": 11287133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e220", "tid": 35568, "ts": 11287219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e7d0", "tid": 35568, "ts": 11287308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ed80", "tid": 35568, "ts": 11287394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ea40", "tid": 35568, "ts": 11287481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cdd0", "tid": 35568, "ts": 11287568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dd40", "tid": 35568, "ts": 11287655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d040", "tid": 35568, "ts": 11287741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e630", "tid": 35568, "ts": 11287828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cc30", "tid": 35568, "ts": 11287914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c1a0", "tid": 35568, "ts": 11288001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c8f0", "tid": 35568, "ts": 11288087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dba0", "tid": 35568, "ts": 11288174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dad0", "tid": 35568, "ts": 11288260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cd00", "tid": 35568, "ts": 11288346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e490", "tid": 35568, "ts": 11288432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791da00", "tid": 35568, "ts": 11288519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dee0", "tid": 35568, "ts": 11288605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791eb10", "tid": 35568, "ts": 11288694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791de10", "tid": 35568, "ts": 11288780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c340", "tid": 35568, "ts": 11288867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c9c0", "tid": 35568, "ts": 11288954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ae20", "tid": 35568, "ts": 11289041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ac80", "tid": 35568, "ts": 11289127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791aae0", "tid": 35568, "ts": 11289214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a870", "tid": 35568, "ts": 11289300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a2c0", "tid": 35568, "ts": 11289387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919c40", "tid": 35568, "ts": 11289474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919830", "tid": 35568, "ts": 11289561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919760", "tid": 35568, "ts": 11289647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918e70", "tid": 35568, "ts": 11289733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918c00", "tid": 35568, "ts": 11289820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879190e0", "tid": 35568, "ts": 11289906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918b30", "tid": 35568, "ts": 11289993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879199d0", "tid": 35568, "ts": 11290079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b4a0", "tid": 35568, "ts": 11290166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b300", "tid": 35568, "ts": 11290252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b8b0", "tid": 35568, "ts": 11290338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b3d0", "tid": 35568, "ts": 11290425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a050", "tid": 35568, "ts": 11290511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b640", "tid": 35568, "ts": 11290598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879195c0", "tid": 35568, "ts": 11290684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b570", "tid": 35568, "ts": 11290772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919eb0", "tid": 35568, "ts": 11290858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918990", "tid": 35568, "ts": 11290945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919900", "tid": 35568, "ts": 11291031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b710", "tid": 35568, "ts": 11291117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a600", "tid": 35568, "ts": 11291204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879188c0", "tid": 35568, "ts": 11291290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919420", "tid": 35568, "ts": 11291377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879191b0", "tid": 35568, "ts": 11291463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791afc0", "tid": 35568, "ts": 11291550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919f80", "tid": 35568, "ts": 11291636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919280", "tid": 35568, "ts": 11291723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918240", "tid": 35568, "ts": 11291810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917af0", "tid": 35568, "ts": 11291897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916ec0", "tid": 35568, "ts": 11291984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916910", "tid": 35568, "ts": 11292070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917060", "tid": 35568, "ts": 11292157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916430", "tid": 35568, "ts": 11292244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918170", "tid": 35568, "ts": 11292331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879161c0", "tid": 35568, "ts": 11292417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916df0", "tid": 35568, "ts": 11292505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917d60", "tid": 35568, "ts": 11292592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916b80", "tid": 35568, "ts": 11292679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916360", "tid": 35568, "ts": 11292766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879173a0", "tid": 35568, "ts": 11292855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879160f0", "tid": 35568, "ts": 11292942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916d20", "tid": 35568, "ts": 11293070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915e80", "tid": 35568, "ts": 11293160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879183e0", "tid": 35568, "ts": 11293247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915ce0", "tid": 35568, "ts": 11293333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917950", "tid": 35568, "ts": 11293420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918310", "tid": 35568, "ts": 11293563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916290", "tid": 35568, "ts": 11293769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917130", "tid": 35568, "ts": 11293943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916f90", "tid": 35568, "ts": 11294071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918650", "tid": 35568, "ts": 11294212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879184b0", "tid": 35568, "ts": 11294313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916ab0", "tid": 35568, "ts": 11294412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917fd0", "tid": 35568, "ts": 11294546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879169e0", "tid": 35568, "ts": 11294800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879166a0", "tid": 35568, "ts": 11294888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917e30", "tid": 35568, "ts": 11294975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879177b0", "tid": 35568, "ts": 11295062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879159a0", "tid": 35568, "ts": 11295149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e2c0", "tid": 35568, "ts": 11295236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8580", "tid": 35568, "ts": 11295323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa870", "tid": 35568, "ts": 11295410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786cc0", "tid": 35568, "ts": 11295497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786230", "tid": 35568, "ts": 11295584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785ef0", "tid": 35568, "ts": 11295671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785870", "tid": 35568, "ts": 11295758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785530", "tid": 35568, "ts": 11295844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7852c0", "tid": 35568, "ts": 11295931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785e20", "tid": 35568, "ts": 11296018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785050", "tid": 35568, "ts": 11296104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785d50", "tid": 35568, "ts": 11296190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784900", "tid": 35568, "ts": 11296277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784d10", "tid": 35568, "ts": 11296364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784830", "tid": 35568, "ts": 11296450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7864a0", "tid": 35568, "ts": 11296537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784690", "tid": 35568, "ts": 11296624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784420", "tid": 35568, "ts": 11296711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784280", "tid": 35568, "ts": 11296797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785390", "tid": 35568, "ts": 11296883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787410", "tid": 35568, "ts": 11296970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785c80", "tid": 35568, "ts": 11297057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784c40", "tid": 35568, "ts": 11297143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786a50", "tid": 35568, "ts": 11297230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7863d0", "tid": 35568, "ts": 11297316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786b20", "tid": 35568, "ts": 11297403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785ae0", "tid": 35568, "ts": 11297489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784aa0", "tid": 35568, "ts": 11297576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786710", "tid": 35568, "ts": 11297663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786980", "tid": 35568, "ts": 11297749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784f80", "tid": 35568, "ts": 11297836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787270", "tid": 35568, "ts": 11297923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786d90", "tid": 35568, "ts": 11298009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7871a0", "tid": 35568, "ts": 11298096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7841b0", "tid": 35568, "ts": 11298183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7933d0", "tid": 35568, "ts": 11298270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793e60", "tid": 35568, "ts": 11298356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792050", "tid": 35568, "ts": 11298443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793160", "tid": 35568, "ts": 11298529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791eb0", "tid": 35568, "ts": 11298616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792390", "tid": 35568, "ts": 11298702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7919d0", "tid": 35568, "ts": 11298789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7934a0", "tid": 35568, "ts": 11298876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791d10", "tid": 35568, "ts": 11298962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792ef0", "tid": 35568, "ts": 11299050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7915c0", "tid": 35568, "ts": 11299137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793b20", "tid": 35568, "ts": 11299224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792ae0", "tid": 35568, "ts": 11299310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793090", "tid": 35568, "ts": 11299397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7911b0", "tid": 35568, "ts": 11299483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792870", "tid": 35568, "ts": 11299570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791280", "tid": 35568, "ts": 11299656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792fc0", "tid": 35568, "ts": 11299743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7937e0", "tid": 35568, "ts": 11299830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7927a0", "tid": 35568, "ts": 11299916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791350", "tid": 35568, "ts": 11300003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791de0", "tid": 35568, "ts": 11300090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791420", "tid": 35568, "ts": 11300177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7921f0", "tid": 35568, "ts": 11300264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792460", "tid": 35568, "ts": 11300364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790c00", "tid": 35568, "ts": 11300453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7907f0", "tid": 35568, "ts": 11300539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e6a0", "tid": 35568, "ts": 11300625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f610", "tid": 35568, "ts": 11300712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f200", "tid": 35568, "ts": 11300798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e500", "tid": 35568, "ts": 11300885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f2d0", "tid": 35568, "ts": 11300971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78eb80", "tid": 35568, "ts": 11301057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e430", "tid": 35568, "ts": 11301145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e840", "tid": 35568, "ts": 11301231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e1c0", "tid": 35568, "ts": 11301318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790650", "tid": 35568, "ts": 11301405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790170", "tid": 35568, "ts": 11301492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ddb0", "tid": 35568, "ts": 11301579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78edf0", "tid": 35568, "ts": 11301666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790cd0", "tid": 35568, "ts": 11301751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f470", "tid": 35568, "ts": 11301838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790720", "tid": 35568, "ts": 11301924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f3a0", "tid": 35568, "ts": 11302011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fe30", "tid": 35568, "ts": 11302097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78faf0", "tid": 35568, "ts": 11302183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790a60", "tid": 35568, "ts": 11302269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78dce0", "tid": 35568, "ts": 11302356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78df50", "tid": 35568, "ts": 11302442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7904b0", "tid": 35568, "ts": 11302529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e910", "tid": 35568, "ts": 11302616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fc90", "tid": 35568, "ts": 11302703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791010", "tid": 35568, "ts": 11302790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f7b0", "tid": 35568, "ts": 11302877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f6e0", "tid": 35568, "ts": 11302963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e770", "tid": 35568, "ts": 11303049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790e70", "tid": 35568, "ts": 11303136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b030", "tid": 35568, "ts": 11303223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a8e0", "tid": 35568, "ts": 11303309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bb90", "tid": 35568, "ts": 11303395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b920", "tid": 35568, "ts": 11303482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cf10", "tid": 35568, "ts": 11303569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b850", "tid": 35568, "ts": 11303656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c550", "tid": 35568, "ts": 11303743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bed0", "tid": 35568, "ts": 11303829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d9a0", "tid": 35568, "ts": 11303916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c6f0", "tid": 35568, "ts": 11304002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b5e0", "tid": 35568, "ts": 11304089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d3f0", "tid": 35568, "ts": 11304176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d250", "tid": 35568, "ts": 11304263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c3b0", "tid": 35568, "ts": 11304350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cbd0", "tid": 35568, "ts": 11304436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d800", "tid": 35568, "ts": 11304523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ca30", "tid": 35568, "ts": 11304610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d730", "tid": 35568, "ts": 11304697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c890", "tid": 35568, "ts": 11304784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d180", "tid": 35568, "ts": 11304870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c2e0", "tid": 35568, "ts": 11304956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bac0", "tid": 35568, "ts": 11305043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d8d0", "tid": 35568, "ts": 11305129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bc60", "tid": 35568, "ts": 11305216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c620", "tid": 35568, "ts": 11305302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c140", "tid": 35568, "ts": 11305388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ac20", "tid": 35568, "ts": 11305474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b1d0", "tid": 35568, "ts": 11305561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ce40", "tid": 35568, "ts": 11305648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c960", "tid": 35568, "ts": 11305734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ab50", "tid": 35568, "ts": 11305821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b370", "tid": 35568, "ts": 11305907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a670", "tid": 35568, "ts": 11305995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a400", "tid": 35568, "ts": 11306081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a190", "tid": 35568, "ts": 11306168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789970", "tid": 35568, "ts": 11306254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789080", "tid": 35568, "ts": 11306342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788e10", "tid": 35568, "ts": 11306428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7897d0", "tid": 35568, "ts": 11306515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789f20", "tid": 35568, "ts": 11306602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789be0", "tid": 35568, "ts": 11306688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a740", "tid": 35568, "ts": 11306774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787c30", "tid": 35568, "ts": 11306860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787b60", "tid": 35568, "ts": 11306946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788930", "tid": 35568, "ts": 11307033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7882b0", "tid": 35568, "ts": 11307119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788860", "tid": 35568, "ts": 11307206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789630", "tid": 35568, "ts": 11307292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788ad0", "tid": 35568, "ts": 11307381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789490", "tid": 35568, "ts": 11307467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788380", "tid": 35568, "ts": 11307554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7893c0", "tid": 35568, "ts": 11307640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787820", "tid": 35568, "ts": 11307726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a0c0", "tid": 35568, "ts": 11307812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a260", "tid": 35568, "ts": 11307899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787f70", "tid": 35568, "ts": 11307985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788a00", "tid": 35568, "ts": 11308071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787750", "tid": 35568, "ts": 11308158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789700", "tid": 35568, "ts": 11308245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7892f0", "tid": 35568, "ts": 11308331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788790", "tid": 35568, "ts": 11308418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7878f0", "tid": 35568, "ts": 11308504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787dd0", "tid": 35568, "ts": 11308590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789d80", "tid": 35568, "ts": 11308677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946181d0", "tid": 35568, "ts": 11308765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617e90", "tid": 35568, "ts": 11308851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617a80", "tid": 35568, "ts": 11308937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946178e0", "tid": 35568, "ts": 11309023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618440", "tid": 35568, "ts": 11309111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946182a0", "tid": 35568, "ts": 11309290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618b90", "tid": 35568, "ts": 11309420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617670", "tid": 35568, "ts": 11309579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946179b0", "tid": 35568, "ts": 11309669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617c20", "tid": 35568, "ts": 11309758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617810", "tid": 35568, "ts": 11309845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946186b0", "tid": 35568, "ts": 11309933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618ac0", "tid": 35568, "ts": 11310021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617740", "tid": 35568, "ts": 11310107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618850", "tid": 35568, "ts": 11310194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614b60", "tid": 35568, "ts": 11310281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946140d0", "tid": 35568, "ts": 11310369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614a90", "tid": 35568, "ts": 11310456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614d00", "tid": 35568, "ts": 11310544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617260", "tid": 35568, "ts": 11310631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617190", "tid": 35568, "ts": 11310718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615fb0", "tid": 35568, "ts": 11310804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616cb0", "tid": 35568, "ts": 11310892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616490", "tid": 35568, "ts": 11310979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615ad0", "tid": 35568, "ts": 11311066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946170c0", "tid": 35568, "ts": 11311152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616700", "tid": 35568, "ts": 11311238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614680", "tid": 35568, "ts": 11311324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615040", "tid": 35568, "ts": 11311412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615930", "tid": 35568, "ts": 11311498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614f70", "tid": 35568, "ts": 11311585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946151e0", "tid": 35568, "ts": 11311671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615ee0", "tid": 35568, "ts": 11311758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616a40", "tid": 35568, "ts": 11311844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946163c0", "tid": 35568, "ts": 11311930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946141a0", "tid": 35568, "ts": 11312016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946167d0", "tid": 35568, "ts": 11312104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615380", "tid": 35568, "ts": 11312190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946155f0", "tid": 35568, "ts": 11312277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615790", "tid": 35568, "ts": 11312363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616d80", "tid": 35568, "ts": 11312449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615e10", "tid": 35568, "ts": 11312536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946156c0", "tid": 35568, "ts": 11312622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616150", "tid": 35568, "ts": 11312709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946168a0", "tid": 35568, "ts": 11312796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946148f0", "tid": 35568, "ts": 11312883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616e50", "tid": 35568, "ts": 11312969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613980", "tid": 35568, "ts": 11313055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946126d0", "tid": 35568, "ts": 11313142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612600", "tid": 35568, "ts": 11313227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611b70", "tid": 35568, "ts": 11313314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946119d0", "tid": 35568, "ts": 11313401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611900", "tid": 35568, "ts": 11313488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946110e0", "tid": 35568, "ts": 11313574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611830", "tid": 35568, "ts": 11313660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613230", "tid": 35568, "ts": 11313747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611350", "tid": 35568, "ts": 11313834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610e70", "tid": 35568, "ts": 11313920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612120", "tid": 35568, "ts": 11314007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611760", "tid": 35568, "ts": 11314093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613300", "tid": 35568, "ts": 11314179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611aa0", "tid": 35568, "ts": 11314265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946115c0", "tid": 35568, "ts": 11314351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611010", "tid": 35568, "ts": 11314438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612d50", "tid": 35568, "ts": 11314525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612530", "tid": 35568, "ts": 11314611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612c80", "tid": 35568, "ts": 11314697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612ef0", "tid": 35568, "ts": 11314783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612ae0", "tid": 35568, "ts": 11314869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611280", "tid": 35568, "ts": 11314956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613e60", "tid": 35568, "ts": 11315042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946133d0", "tid": 35568, "ts": 11315128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613d90", "tid": 35568, "ts": 11315215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611eb0", "tid": 35568, "ts": 11315301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612fc0", "tid": 35568, "ts": 11315388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611de0", "tid": 35568, "ts": 11315474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946122c0", "tid": 35568, "ts": 11315560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612940", "tid": 35568, "ts": 11315646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613570", "tid": 35568, "ts": 11315733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879295c0", "tid": 35568, "ts": 11315819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928990", "tid": 35568, "ts": 11315907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929f80", "tid": 35568, "ts": 11315993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879290e0", "tid": 35568, "ts": 11316080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929b70", "tid": 35568, "ts": 11316167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928da0", "tid": 35568, "ts": 11316254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879288c0", "tid": 35568, "ts": 11316340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879291b0", "tid": 35568, "ts": 11316427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929900", "tid": 35568, "ts": 11316513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929420", "tid": 35568, "ts": 11316600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929de0", "tid": 35568, "ts": 11316687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929010", "tid": 35568, "ts": 11316773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928a60", "tid": 35568, "ts": 11316859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928f40", "tid": 35568, "ts": 11316946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928580", "tid": 35568, "ts": 11317033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928170", "tid": 35568, "ts": 11317119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927e30", "tid": 35568, "ts": 11317205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927bc0", "tid": 35568, "ts": 11317292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927060", "tid": 35568, "ts": 11317379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926df0", "tid": 35568, "ts": 11317465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927a20", "tid": 35568, "ts": 11317552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926360", "tid": 35568, "ts": 11317639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879261c0", "tid": 35568, "ts": 11317725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926d20", "tid": 35568, "ts": 11317811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926020", "tid": 35568, "ts": 11317897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925b40", "tid": 35568, "ts": 11317984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879276e0", "tid": 35568, "ts": 11318070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927880", "tid": 35568, "ts": 11318157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926500", "tid": 35568, "ts": 11318243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926f90", "tid": 35568, "ts": 11318329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879269e0", "tid": 35568, "ts": 11318415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927610", "tid": 35568, "ts": 11318501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879254c0", "tid": 35568, "ts": 11318587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925660", "tid": 35568, "ts": 11318673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879273a0", "tid": 35568, "ts": 11318760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925c10", "tid": 35568, "ts": 11318847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879284b0", "tid": 35568, "ts": 11318933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927af0", "tid": 35568, "ts": 11319020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926840", "tid": 35568, "ts": 11319107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927540", "tid": 35568, "ts": 11319193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879265d0", "tid": 35568, "ts": 11319279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925590", "tid": 35568, "ts": 11319365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925e80", "tid": 35568, "ts": 11319451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928310", "tid": 35568, "ts": 11319536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927950", "tid": 35568, "ts": 11319623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879258d0", "tid": 35568, "ts": 11319708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924480", "tid": 35568, "ts": 11319794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879242e0", "tid": 35568, "ts": 11319881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923ed0", "tid": 35568, "ts": 11319967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923d30", "tid": 35568, "ts": 11320055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923fa0", "tid": 35568, "ts": 11320141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923850", "tid": 35568, "ts": 11320227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925320", "tid": 35568, "ts": 11320314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922dc0", "tid": 35568, "ts": 11320401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879253f0", "tid": 35568, "ts": 11320487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922260", "tid": 35568, "ts": 11320573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879228e0", "tid": 35568, "ts": 11320659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923b90", "tid": 35568, "ts": 11320746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924fe0", "tid": 35568, "ts": 11320832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922c20", "tid": 35568, "ts": 11320918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925250", "tid": 35568, "ts": 11321005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879236b0", "tid": 35568, "ts": 11321092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879247c0", "tid": 35568, "ts": 11321179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923ac0", "tid": 35568, "ts": 11321265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923370", "tid": 35568, "ts": 11321352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924ca0", "tid": 35568, "ts": 11321440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922f60", "tid": 35568, "ts": 11321526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922670", "tid": 35568, "ts": 11321613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924620", "tid": 35568, "ts": 11321700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924a30", "tid": 35568, "ts": 11321786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922400", "tid": 35568, "ts": 11321872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924210", "tid": 35568, "ts": 11321959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924140", "tid": 35568, "ts": 11322045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879220c0", "tid": 35568, "ts": 11322132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923440", "tid": 35568, "ts": 11322218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924550", "tid": 35568, "ts": 11322304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879250b0", "tid": 35568, "ts": 11322391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924b00", "tid": 35568, "ts": 11322477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9420", "tid": 35568, "ts": 11322564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8da0", "tid": 35568, "ts": 11322650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8cd0", "tid": 35568, "ts": 11322747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8b30", "tid": 35568, "ts": 11322836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8990", "tid": 35568, "ts": 11322923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9c40", "tid": 35568, "ts": 11323009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9f80", "tid": 35568, "ts": 11323095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9eb0", "tid": 35568, "ts": 11323181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9830", "tid": 35568, "ts": 11323268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d94f0", "tid": 35568, "ts": 11323354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9aa0", "tid": 35568, "ts": 11323440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d95c0", "tid": 35568, "ts": 11323527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9690", "tid": 35568, "ts": 11323613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8f40", "tid": 35568, "ts": 11323699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7200", "tid": 35568, "ts": 11323786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6d20", "tid": 35568, "ts": 11323873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6c50", "tid": 35568, "ts": 11323959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6840", "tid": 35568, "ts": 11324045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6770", "tid": 35568, "ts": 11324131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d65d0", "tid": 35568, "ts": 11324218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5a70", "tid": 35568, "ts": 11324304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d61c0", "tid": 35568, "ts": 11324390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d80a0", "tid": 35568, "ts": 11324476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d58d0", "tid": 35568, "ts": 11324563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5660", "tid": 35568, "ts": 11324649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6020", "tid": 35568, "ts": 11324763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7c90", "tid": 35568, "ts": 11324877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5f50", "tid": 35568, "ts": 11324964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6ec0", "tid": 35568, "ts": 11325050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5e80", "tid": 35568, "ts": 11325137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6430", "tid": 35568, "ts": 11325224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8720", "tid": 35568, "ts": 11325310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d72d0", "tid": 35568, "ts": 11325396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7540", "tid": 35568, "ts": 11325482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8240", "tid": 35568, "ts": 11325568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d84b0", "tid": 35568, "ts": 11325655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6290", "tid": 35568, "ts": 11325741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5db0", "tid": 35568, "ts": 11325828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d87f0", "tid": 35568, "ts": 11325913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7130", "tid": 35568, "ts": 11326001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7d60", "tid": 35568, "ts": 11326087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7a20", "tid": 35568, "ts": 11326172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d76e0", "tid": 35568, "ts": 11326258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8170", "tid": 35568, "ts": 11326344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7f00", "tid": 35568, "ts": 11326430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5c10", "tid": 35568, "ts": 11326516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3850", "tid": 35568, "ts": 11326601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3510", "tid": 35568, "ts": 11326688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d35e0", "tid": 35568, "ts": 11326774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3030", "tid": 35568, "ts": 11326860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2330", "tid": 35568, "ts": 11326946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3370", "tid": 35568, "ts": 11327033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5180", "tid": 35568, "ts": 11327119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4bd0", "tid": 35568, "ts": 11327206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3e00", "tid": 35568, "ts": 11327292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2e90", "tid": 35568, "ts": 11327379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4fe0", "tid": 35568, "ts": 11327466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2dc0", "tid": 35568, "ts": 11327552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3d30", "tid": 35568, "ts": 11327637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d47c0", "tid": 35568, "ts": 11327723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2c20", "tid": 35568, "ts": 11327809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d46f0", "tid": 35568, "ts": 11327896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3c60", "tid": 35568, "ts": 11327982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2740", "tid": 35568, "ts": 11328068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2810", "tid": 35568, "ts": 11328154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4890", "tid": 35568, "ts": 11328242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d32a0", "tid": 35568, "ts": 11328328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2a80", "tid": 35568, "ts": 11328416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d42e0", "tid": 35568, "ts": 11328503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d24d0", "tid": 35568, "ts": 11328590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d39f0", "tid": 35568, "ts": 11328724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4f10", "tid": 35568, "ts": 11328813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2190", "tid": 35568, "ts": 11328899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4d70", "tid": 35568, "ts": 11328987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5320", "tid": 35568, "ts": 11329073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4960", "tid": 35568, "ts": 11329160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3100", "tid": 35568, "ts": 11329246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d29b0", "tid": 35568, "ts": 11329332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22cb0", "tid": 35568, "ts": 11329419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22970", "tid": 35568, "ts": 11329505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23e90", "tid": 35568, "ts": 11329591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23c20", "tid": 35568, "ts": 11329677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22be0", "tid": 35568, "ts": 11329763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22f20", "tid": 35568, "ts": 11329850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22ff0", "tid": 35568, "ts": 11329936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c235a0", "tid": 35568, "ts": 11330022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23a80", "tid": 35568, "ts": 11330108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c230c0", "tid": 35568, "ts": 11330195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23670", "tid": 35568, "ts": 11330281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23740", "tid": 35568, "ts": 11330367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c234d0", "tid": 35568, "ts": 11330454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22b10", "tid": 35568, "ts": 11330540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f640", "tid": 35568, "ts": 11330626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22490", "tid": 35568, "ts": 11330712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c222f0", "tid": 35568, "ts": 11330799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f570", "tid": 35568, "ts": 11330886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21ee0", "tid": 35568, "ts": 11330971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20680", "tid": 35568, "ts": 11331057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21e10", "tid": 35568, "ts": 11331143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21d40", "tid": 35568, "ts": 11331231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f7e0", "tid": 35568, "ts": 11331317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20270", "tid": 35568, "ts": 11331403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c201a0", "tid": 35568, "ts": 11331490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21ad0", "tid": 35568, "ts": 11331577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20000", "tid": 35568, "ts": 11331663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20410", "tid": 35568, "ts": 11331748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21930", "tid": 35568, "ts": 11331835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c216c0", "tid": 35568, "ts": 11331921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21520", "tid": 35568, "ts": 11332007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c212b0", "tid": 35568, "ts": 11332094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c211e0", "tid": 35568, "ts": 11332179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20c30", "tid": 35568, "ts": 11332266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20a90", "tid": 35568, "ts": 11332352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21a00", "tid": 35568, "ts": 11332439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f8b0", "tid": 35568, "ts": 11332524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f4a0", "tid": 35568, "ts": 11332611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c208f0", "tid": 35568, "ts": 11332698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21110", "tid": 35568, "ts": 11332785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20340", "tid": 35568, "ts": 11332871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21ba0", "tid": 35568, "ts": 11332957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21790", "tid": 35568, "ts": 11333043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fe60", "tid": 35568, "ts": 11333129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20ea0", "tid": 35568, "ts": 11333216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c215f0", "tid": 35568, "ts": 11333302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c3e0", "tid": 35568, "ts": 11333388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f3d0", "tid": 35568, "ts": 11333474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f160", "tid": 35568, "ts": 11333560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ed50", "tid": 35568, "ts": 11333646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e870", "tid": 35568, "ts": 11333733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e120", "tid": 35568, "ts": 11333819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c240", "tid": 35568, "ts": 11333916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1daa0", "tid": 35568, "ts": 11334005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d9d0", "tid": 35568, "ts": 11334092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e7a0", "tid": 35568, "ts": 11334178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1df80", "tid": 35568, "ts": 11334264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cc00", "tid": 35568, "ts": 11334351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cb30", "tid": 35568, "ts": 11334438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d760", "tid": 35568, "ts": 11334524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d1b0", "tid": 35568, "ts": 11334610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e6d0", "tid": 35568, "ts": 11334697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d900", "tid": 35568, "ts": 11334783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d420", "tid": 35568, "ts": 11334870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d350", "tid": 35568, "ts": 11334956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1dd10", "tid": 35568, "ts": 11335043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e1f0", "tid": 35568, "ts": 11335129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ca60", "tid": 35568, "ts": 11335215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e050", "tid": 35568, "ts": 11335302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cf40", "tid": 35568, "ts": 11335389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f300", "tid": 35568, "ts": 11335476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c990", "tid": 35568, "ts": 11335562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c650", "tid": 35568, "ts": 11335648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c8c0", "tid": 35568, "ts": 11335735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ec80", "tid": 35568, "ts": 11335821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c580", "tid": 35568, "ts": 11335907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1dde0", "tid": 35568, "ts": 11335993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37560", "tid": 35568, "ts": 11336080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37be0", "tid": 35568, "ts": 11336166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37e50", "tid": 35568, "ts": 11336252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37700", "tid": 35568, "ts": 11336339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37b10", "tid": 35568, "ts": 11336425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37630", "tid": 35568, "ts": 11336511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37f20", "tid": 35568, "ts": 11336597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d350d0", "tid": 35568, "ts": 11336683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34300", "tid": 35568, "ts": 11336770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34160", "tid": 35568, "ts": 11336856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d373c0", "tid": 35568, "ts": 11336942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36d40", "tid": 35568, "ts": 11337028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36c70", "tid": 35568, "ts": 11337115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36860", "tid": 35568, "ts": 11337201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d366c0", "tid": 35568, "ts": 11337288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34e60", "tid": 35568, "ts": 11337374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36450", "tid": 35568, "ts": 11337460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35820", "tid": 35568, "ts": 11337547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37080", "tid": 35568, "ts": 11337633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d365f0", "tid": 35568, "ts": 11337719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d372f0", "tid": 35568, "ts": 11337805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34b20", "tid": 35568, "ts": 11337892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34980", "tid": 35568, "ts": 11337977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d361e0", "tid": 35568, "ts": 11338064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35750", "tid": 35568, "ts": 11338152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36040", "tid": 35568, "ts": 11338238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d359c0", "tid": 35568, "ts": 11338325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34710", "tid": 35568, "ts": 11338412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36e10", "tid": 35568, "ts": 11338498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36930", "tid": 35568, "ts": 11338584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34640", "tid": 35568, "ts": 11338670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34a50", "tid": 35568, "ts": 11338756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35a90", "tid": 35568, "ts": 11338842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35dd0", "tid": 35568, "ts": 11338929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35ea0", "tid": 35568, "ts": 11339016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35d00", "tid": 35568, "ts": 11339103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34230", "tid": 35568, "ts": 11339190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d344a0", "tid": 35568, "ts": 11339276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35410", "tid": 35568, "ts": 11339362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abbe0", "tid": 35568, "ts": 11339448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab970", "tid": 35568, "ts": 11339535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab8a0", "tid": 35568, "ts": 11339621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab700", "tid": 35568, "ts": 11339708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab560", "tid": 35568, "ts": 11339793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abf20", "tid": 35568, "ts": 11339880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abcb0", "tid": 35568, "ts": 11339967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa380", "tid": 35568, "ts": 11340053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8980", "tid": 35568, "ts": 11340139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a87e0", "tid": 35568, "ts": 11340225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8710", "tid": 35568, "ts": 11340311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8570", "tid": 35568, "ts": 11340461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab080", "tid": 35568, "ts": 11340549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aafb0", "tid": 35568, "ts": 11340635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9750", "tid": 35568, "ts": 11340722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa1e0", "tid": 35568, "ts": 11340808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaee0", "tid": 35568, "ts": 11340893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa450", "tid": 35568, "ts": 11340980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9c30", "tid": 35568, "ts": 11341066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a88b0", "tid": 35568, "ts": 11341152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9f70", "tid": 35568, "ts": 11341238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab3c0", "tid": 35568, "ts": 11341324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaa00", "tid": 35568, "ts": 11341410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab2f0", "tid": 35568, "ts": 11341496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9410", "tid": 35568, "ts": 11341582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aae10", "tid": 35568, "ts": 11341669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8640", "tid": 35568, "ts": 11341755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a94e0", "tid": 35568, "ts": 11341841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a91a0", "tid": 35568, "ts": 11341927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8a50", "tid": 35568, "ts": 11342013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab150", "tid": 35568, "ts": 11342099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaad0", "tid": 35568, "ts": 11342185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa6c0", "tid": 35568, "ts": 11342272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8cc0", "tid": 35568, "ts": 11342359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa860", "tid": 35568, "ts": 11342445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9680", "tid": 35568, "ts": 11342531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8160", "tid": 35568, "ts": 11342618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9270", "tid": 35568, "ts": 11342705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a99c0", "tid": 35568, "ts": 11342791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e770", "tid": 35568, "ts": 11342877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abcc0", "tid": 35568, "ts": 11342962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abb20", "tid": 35568, "ts": 11343048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab980", "tid": 35568, "ts": 11343134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab8b0", "tid": 35568, "ts": 11343220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abf30", "tid": 35568, "ts": 11343306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab7e0", "tid": 35568, "ts": 11343393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab640", "tid": 35568, "ts": 11343480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8da0", "tid": 35568, "ts": 11343565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab3d0", "tid": 35568, "ts": 11343651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab230", "tid": 35568, "ts": 11343738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8c00", "tid": 35568, "ts": 11343824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa530", "tid": 35568, "ts": 11343910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab160", "tid": 35568, "ts": 11343996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa120", "tid": 35568, "ts": 11344083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa460", "tid": 35568, "ts": 11344169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8990", "tid": 35568, "ts": 11344255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a88c0", "tid": 35568, "ts": 11344341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9d10", "tid": 35568, "ts": 11344427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9760", "tid": 35568, "ts": 11344514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a95c0", "tid": 35568, "ts": 11344600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8240", "tid": 35568, "ts": 11344686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aafc0", "tid": 35568, "ts": 11344773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aaef0", "tid": 35568, "ts": 11344859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9de0", "tid": 35568, "ts": 11344945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9830", "tid": 35568, "ts": 11345041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a87f0", "tid": 35568, "ts": 11345128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9350", "tid": 35568, "ts": 11345214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8f40", "tid": 35568, "ts": 11345301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9aa0", "tid": 35568, "ts": 11345387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9690", "tid": 35568, "ts": 11345474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8720", "tid": 35568, "ts": 11345560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa1f0", "tid": 35568, "ts": 11345647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a90e0", "tid": 35568, "ts": 11345733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8e70", "tid": 35568, "ts": 11345819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a80a0", "tid": 35568, "ts": 11345905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a91b0", "tid": 35568, "ts": 11345992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8310", "tid": 35568, "ts": 11346078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b570", "tid": 35568, "ts": 11346165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b640", "tid": 35568, "ts": 11346251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b4a0", "tid": 35568, "ts": 11346337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74be60", "tid": 35568, "ts": 11346423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bd90", "tid": 35568, "ts": 11346510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b980", "tid": 35568, "ts": 11346597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b8b0", "tid": 35568, "ts": 11346682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748c00", "tid": 35568, "ts": 11346768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748240", "tid": 35568, "ts": 11346854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b3d0", "tid": 35568, "ts": 11346940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a390", "tid": 35568, "ts": 11347026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b230", "tid": 35568, "ts": 11347113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749f80", "tid": 35568, "ts": 11347199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749760", "tid": 35568, "ts": 11347286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b090", "tid": 35568, "ts": 11347372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748a60", "tid": 35568, "ts": 11347458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748650", "tid": 35568, "ts": 11347543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748580", "tid": 35568, "ts": 11347629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74afc0", "tid": 35568, "ts": 11347715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ac80", "tid": 35568, "ts": 11347801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a460", "tid": 35568, "ts": 11347887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7491b0", "tid": 35568, "ts": 11347973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748310", "tid": 35568, "ts": 11348059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7499d0", "tid": 35568, "ts": 11348145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749c40", "tid": 35568, "ts": 11348232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7490e0", "tid": 35568, "ts": 11348318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74aa10", "tid": 35568, "ts": 11348405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a530", "tid": 35568, "ts": 11348490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7487f0", "tid": 35568, "ts": 11348576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a940", "tid": 35568, "ts": 11348662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7483e0", "tid": 35568, "ts": 11348748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748da0", "tid": 35568, "ts": 11348833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748990", "tid": 35568, "ts": 11348919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748e70", "tid": 35568, "ts": 11349005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b160", "tid": 35568, "ts": 11349091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749830", "tid": 35568, "ts": 11349178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749350", "tid": 35568, "ts": 11349265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74aef0", "tid": 35568, "ts": 11349351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74aae0", "tid": 35568, "ts": 11349437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719010", "tid": 35568, "ts": 11349522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718f40", "tid": 35568, "ts": 11349609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7191b0", "tid": 35568, "ts": 11349695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718b30", "tid": 35568, "ts": 11349781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718990", "tid": 35568, "ts": 11349868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7183e0", "tid": 35568, "ts": 11349955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719420", "tid": 35568, "ts": 11350041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719c40", "tid": 35568, "ts": 11350127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718e70", "tid": 35568, "ts": 11350213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719d10", "tid": 35568, "ts": 11350299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7190e0", "tid": 35568, "ts": 11350385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718240", "tid": 35568, "ts": 11350472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718da0", "tid": 35568, "ts": 11350558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7188c0", "tid": 35568, "ts": 11350645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718580", "tid": 35568, "ts": 11350731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719eb0", "tid": 35568, "ts": 11350818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718650", "tid": 35568, "ts": 11350904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719760", "tid": 35568, "ts": 11350990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718a60", "tid": 35568, "ts": 11351076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d03e0", "tid": 35568, "ts": 11351162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0720", "tid": 35568, "ts": 11351249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d08c0", "tid": 35568, "ts": 11351335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d14f0", "tid": 35568, "ts": 11351421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0da0", "tid": 35568, "ts": 11351508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0240", "tid": 35568, "ts": 11351594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d04b0", "tid": 35568, "ts": 11351681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0cd0", "tid": 35568, "ts": 11351768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d15c0", "tid": 35568, "ts": 11351854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0a60", "tid": 35568, "ts": 11351941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1350", "tid": 35568, "ts": 11352027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0e70", "tid": 35568, "ts": 11352113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0c00", "tid": 35568, "ts": 11352198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d11b0", "tid": 35568, "ts": 11352285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d00a0", "tid": 35568, "ts": 11352371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1b70", "tid": 35568, "ts": 11352457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1f80", "tid": 35568, "ts": 11352543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1010", "tid": 35568, "ts": 11352630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d07f0", "tid": 35568, "ts": 11352715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0990", "tid": 35568, "ts": 11352802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23486958650", "tid": 35568, "ts": 11352888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d399d0", "tid": 35568, "ts": 11352974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39420", "tid": 35568, "ts": 11353060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38cd0", "tid": 35568, "ts": 11353146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39690", "tid": 35568, "ts": 11353233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38990", "tid": 35568, "ts": 11353319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39280", "tid": 35568, "ts": 11353405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38f40", "tid": 35568, "ts": 11353492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d394f0", "tid": 35568, "ts": 11353578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818acd10", "tid": 35568, "ts": 11353665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b13f0", "tid": 35568, "ts": 11353754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac4f0", "tid": 35568, "ts": 11353843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d9a0", "tid": 35568, "ts": 11353929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80900", "tid": 35568, "ts": 11354016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1660", "tid": 35568, "ts": 11354104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80690", "tid": 35568, "ts": 11354191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e804f0", "tid": 35568, "ts": 11354295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f7f0", "tid": 35568, "ts": 11354381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f240", "tid": 35568, "ts": 11354468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0f10", "tid": 35568, "ts": 11354554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80aa0", "tid": 35568, "ts": 11354641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f7f0", "tid": 35568, "ts": 11354728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80830", "tid": 35568, "ts": 11354815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f0a0", "tid": 35568, "ts": 11354901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80c40", "tid": 35568, "ts": 11354987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80830", "tid": 35568, "ts": 11355073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fc00", "tid": 35568, "ts": 11355160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80010", "tid": 35568, "ts": 11355246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f720", "tid": 35568, "ts": 11355332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fe70", "tid": 35568, "ts": 11355418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f580", "tid": 35568, "ts": 11355505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fda0", "tid": 35568, "ts": 11355591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fa60", "tid": 35568, "ts": 11355677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80aa0", "tid": 35568, "ts": 11355763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e805c0", "tid": 35568, "ts": 11355850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fcd0", "tid": 35568, "ts": 11355936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b1b40", "tid": 35568, "ts": 11356080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fda0", "tid": 35568, "ts": 11356167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fb30", "tid": 35568, "ts": 11356254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f990", "tid": 35568, "ts": 11356339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d801b0", "tid": 35568, "ts": 11356425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f650", "tid": 35568, "ts": 11356512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80f80", "tid": 35568, "ts": 11356598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f310", "tid": 35568, "ts": 11356685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f720", "tid": 35568, "ts": 11356771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f8c0", "tid": 35568, "ts": 11356857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80760", "tid": 35568, "ts": 11356944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80350", "tid": 35568, "ts": 11357030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fc00", "tid": 35568, "ts": 11357116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f170", "tid": 35568, "ts": 11357203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d800e0", "tid": 35568, "ts": 11357289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fcd0", "tid": 35568, "ts": 11357376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80690", "tid": 35568, "ts": 11357463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80420", "tid": 35568, "ts": 11357549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80c40", "tid": 35568, "ts": 11357635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80010", "tid": 35568, "ts": 11357721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7ff40", "tid": 35568, "ts": 11357808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e80280", "tid": 35568, "ts": 11357895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80eb0", "tid": 35568, "ts": 11357981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f0a0", "tid": 35568, "ts": 11358067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b2b80", "tid": 35568, "ts": 11358153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03b0bd0", "tid": 35568, "ts": 11358240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad080", "tid": 35568, "ts": 11358326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acee0", "tid": 35568, "ts": 11358412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aca00", "tid": 35568, "ts": 11358498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac930", "tid": 35568, "ts": 11358584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af920", "tid": 35568, "ts": 11358671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af5e0", "tid": 35568, "ts": 11358757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af510", "tid": 35568, "ts": 11358844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae810", "tid": 35568, "ts": 11358930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae5a0", "tid": 35568, "ts": 11359016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad490", "tid": 35568, "ts": 11359102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae4d0", "tid": 35568, "ts": 11359188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad3c0", "tid": 35568, "ts": 11359275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae0c0", "tid": 35568, "ts": 11359361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad2f0", "tid": 35568, "ts": 11359447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adff0", "tid": 35568, "ts": 11359533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae330", "tid": 35568, "ts": 11359619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03adb10", "tid": 35568, "ts": 11359705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aee90", "tid": 35568, "ts": 11359791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae190", "tid": 35568, "ts": 11359877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aea80", "tid": 35568, "ts": 11359964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03acc70", "tid": 35568, "ts": 11360050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ae9b0", "tid": 35568, "ts": 11360137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad560", "tid": 35568, "ts": 11360224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af6b0", "tid": 35568, "ts": 11360310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af1d0", "tid": 35568, "ts": 11360397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad8a0", "tid": 35568, "ts": 11360484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aef60", "tid": 35568, "ts": 11360570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03add80", "tid": 35568, "ts": 11360657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ad630", "tid": 35568, "ts": 11360744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af100", "tid": 35568, "ts": 11360830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03af780", "tid": 35568, "ts": 11360917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03afb90", "tid": 35568, "ts": 11361004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9d50", "tid": 35568, "ts": 11361090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aacc0", "tid": 35568, "ts": 11361177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9c80", "tid": 35568, "ts": 11361262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9a10", "tid": 35568, "ts": 11361348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a97a0", "tid": 35568, "ts": 11361435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac5f0", "tid": 35568, "ts": 11361521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab8f0", "tid": 35568, "ts": 11361607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab000", "tid": 35568, "ts": 11361693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abdd0", "tid": 35568, "ts": 11361779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aabf0", "tid": 35568, "ts": 11361865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac1e0", "tid": 35568, "ts": 11361951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a96d0", "tid": 35568, "ts": 11362037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aad90", "tid": 35568, "ts": 11362123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab820", "tid": 35568, "ts": 11362210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa230", "tid": 35568, "ts": 11362296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac520", "tid": 35568, "ts": 11362382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab680", "tid": 35568, "ts": 11362469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa640", "tid": 35568, "ts": 11362556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa570", "tid": 35568, "ts": 11362642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab5b0", "tid": 35568, "ts": 11362729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aab20", "tid": 35568, "ts": 11362816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab410", "tid": 35568, "ts": 11362903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abf70", "tid": 35568, "ts": 11362990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa7e0", "tid": 35568, "ts": 11363078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab0d0", "tid": 35568, "ts": 11363165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03abc30", "tid": 35568, "ts": 11363254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aa980", "tid": 35568, "ts": 11363341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab340", "tid": 35568, "ts": 11363429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ab270", "tid": 35568, "ts": 11363559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03ac380", "tid": 35568, "ts": 11363648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03aae60", "tid": 35568, "ts": 11363734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9530", "tid": 35568, "ts": 11363821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7c00", "tid": 35568, "ts": 11363907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7b30", "tid": 35568, "ts": 11363993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7650", "tid": 35568, "ts": 11364079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6a20", "tid": 35568, "ts": 11364165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6c90", "tid": 35568, "ts": 11364252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6880", "tid": 35568, "ts": 11364338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6bc0", "tid": 35568, "ts": 11364424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6540", "tid": 35568, "ts": 11364510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a81b0", "tid": 35568, "ts": 11364597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8350", "tid": 35568, "ts": 11364683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7a60", "tid": 35568, "ts": 11364770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8eb0", "tid": 35568, "ts": 11364856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7170", "tid": 35568, "ts": 11364942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8c40", "tid": 35568, "ts": 11365028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7310", "tid": 35568, "ts": 11365114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6610", "tid": 35568, "ts": 11365201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a67b0", "tid": 35568, "ts": 11365287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a92c0", "tid": 35568, "ts": 11365373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6fd0", "tid": 35568, "ts": 11365460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8900", "tid": 35568, "ts": 11365546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8830", "tid": 35568, "ts": 11365632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8690", "tid": 35568, "ts": 11365718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6f00", "tid": 35568, "ts": 11365804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6d60", "tid": 35568, "ts": 11365889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8420", "tid": 35568, "ts": 11365976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a9050", "tid": 35568, "ts": 11366062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a7cd0", "tid": 35568, "ts": 11366148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8010", "tid": 35568, "ts": 11366234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8d10", "tid": 35568, "ts": 11366321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8de0", "tid": 35568, "ts": 11366408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a8760", "tid": 35568, "ts": 11366495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a6e30", "tid": 35568, "ts": 11366581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3550", "tid": 35568, "ts": 11366668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3480", "tid": 35568, "ts": 11366755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a33b0", "tid": 35568, "ts": 11366841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3210", "tid": 35568, "ts": 11366927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4320", "tid": 35568, "ts": 11367013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3e40", "tid": 35568, "ts": 11367100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3b00", "tid": 35568, "ts": 11367186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5360", "tid": 35568, "ts": 11367272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a49a0", "tid": 35568, "ts": 11367359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2fa0", "tid": 35568, "ts": 11367446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5290", "tid": 35568, "ts": 11367532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4250", "tid": 35568, "ts": 11367618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4730", "tid": 35568, "ts": 11367705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3620", "tid": 35568, "ts": 11367791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4db0", "tid": 35568, "ts": 11367877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5b80", "tid": 35568, "ts": 11367964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2e00", "tid": 35568, "ts": 11368050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4c10", "tid": 35568, "ts": 11368136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5430", "tid": 35568, "ts": 11368223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5840", "tid": 35568, "ts": 11368309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3890", "tid": 35568, "ts": 11368396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4f50", "tid": 35568, "ts": 11368482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a4800", "tid": 35568, "ts": 11368567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5f90", "tid": 35568, "ts": 11368653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a51c0", "tid": 35568, "ts": 11368740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a55d0", "tid": 35568, "ts": 11368826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a37c0", "tid": 35568, "ts": 11368912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5d20", "tid": 35568, "ts": 11368999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3960", "tid": 35568, "ts": 11369085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a5ab0", "tid": 35568, "ts": 11369172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a36f0", "tid": 35568, "ts": 11369258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a3fe0", "tid": 35568, "ts": 11369344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1330", "tid": 35568, "ts": 11369430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1190", "tid": 35568, "ts": 11369516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0ff0", "tid": 35568, "ts": 11369602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0490", "tid": 35568, "ts": 11369688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a03c0", "tid": 35568, "ts": 11369774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a08a0", "tid": 35568, "ts": 11369861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0a40", "tid": 35568, "ts": 11369947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fee0", "tid": 35568, "ts": 11370033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0f20", "tid": 35568, "ts": 11370120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0be0", "tid": 35568, "ts": 11370206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fe10", "tid": 35568, "ts": 11370293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039fd40", "tid": 35568, "ts": 11370379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1c20", "tid": 35568, "ts": 11370467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2440", "tid": 35568, "ts": 11370553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2850", "tid": 35568, "ts": 11370640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2ac0", "tid": 35568, "ts": 11370726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f930", "tid": 35568, "ts": 11370813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a18e0", "tid": 35568, "ts": 11370899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a29f0", "tid": 35568, "ts": 11370986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0560", "tid": 35568, "ts": 11371072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0080", "tid": 35568, "ts": 11371158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1f60", "tid": 35568, "ts": 11371245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ffb0", "tid": 35568, "ts": 11371330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2c60", "tid": 35568, "ts": 11371418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2510", "tid": 35568, "ts": 11371504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1a80", "tid": 35568, "ts": 11371591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a1810", "tid": 35568, "ts": 11371736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0e50", "tid": 35568, "ts": 11371823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a15a0", "tid": 35568, "ts": 11371908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a2b90", "tid": 35568, "ts": 11371994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a19b0", "tid": 35568, "ts": 11372081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03a0700", "tid": 35568, "ts": 11372168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cc80", "tid": 35568, "ts": 11372254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cae0", "tid": 35568, "ts": 11372340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c940", "tid": 35568, "ts": 11372426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d7e0", "tid": 35568, "ts": 11372512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d090", "tid": 35568, "ts": 11372598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d640", "tid": 35568, "ts": 11372685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e9c0", "tid": 35568, "ts": 11372771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e340", "tid": 35568, "ts": 11372857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c7a0", "tid": 35568, "ts": 11372943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c530", "tid": 35568, "ts": 11373029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f2b0", "tid": 35568, "ts": 11373116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e8f0", "tid": 35568, "ts": 11373202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d570", "tid": 35568, "ts": 11373288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f860", "tid": 35568, "ts": 11373374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039eb60", "tid": 35568, "ts": 11373460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d3d0", "tid": 35568, "ts": 11373546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d710", "tid": 35568, "ts": 11373633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ea90", "tid": 35568, "ts": 11373720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039dd90", "tid": 35568, "ts": 11373806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e1a0", "tid": 35568, "ts": 11373893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e0d0", "tid": 35568, "ts": 11373980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039cef0", "tid": 35568, "ts": 11374066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e000", "tid": 35568, "ts": 11374152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f450", "tid": 35568, "ts": 11374238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d300", "tid": 35568, "ts": 11374325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039e5b0", "tid": 35568, "ts": 11374412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d160", "tid": 35568, "ts": 11374498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039db20", "tid": 35568, "ts": 11374584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039da50", "tid": 35568, "ts": 11374671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039f380", "tid": 35568, "ts": 11374757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d230", "tid": 35568, "ts": 11374843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039d8b0", "tid": 35568, "ts": 11374929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399880", "tid": 35568, "ts": 11375015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399610", "tid": 35568, "ts": 11375102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399bc0", "tid": 35568, "ts": 11375187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03996e0", "tid": 35568, "ts": 11375274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bde0", "tid": 35568, "ts": 11375360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03993a0", "tid": 35568, "ts": 11375446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bb70", "tid": 35568, "ts": 11375532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039beb0", "tid": 35568, "ts": 11375618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399a20", "tid": 35568, "ts": 11375705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03992d0", "tid": 35568, "ts": 11375792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b420", "tid": 35568, "ts": 11375879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b830", "tid": 35568, "ts": 11375966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399c90", "tid": 35568, "ts": 11376052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c460", "tid": 35568, "ts": 11376138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c390", "tid": 35568, "ts": 11376224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039bd10", "tid": 35568, "ts": 11376311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ab30", "tid": 35568, "ts": 11376397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a990", "tid": 35568, "ts": 11376483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a8c0", "tid": 35568, "ts": 11376569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a650", "tid": 35568, "ts": 11376655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ae70", "tid": 35568, "ts": 11376742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039b0e0", "tid": 35568, "ts": 11376828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a4b0", "tid": 35568, "ts": 11376913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a310", "tid": 35568, "ts": 11376999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039ada0", "tid": 35568, "ts": 11377087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039af40", "tid": 35568, "ts": 11377172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c1f0", "tid": 35568, "ts": 11377258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a170", "tid": 35568, "ts": 11377345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a240", "tid": 35568, "ts": 11377431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039acd0", "tid": 35568, "ts": 11377517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039a0a0", "tid": 35568, "ts": 11377603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c039c2c0", "tid": 35568, "ts": 11377689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396620", "tid": 35568, "ts": 11377776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03962e0", "tid": 35568, "ts": 11377862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395d30", "tid": 35568, "ts": 11377947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398290", "tid": 35568, "ts": 11378033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396070", "tid": 35568, "ts": 11378119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03981c0", "tid": 35568, "ts": 11378205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03986a0", "tid": 35568, "ts": 11378291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398b80", "tid": 35568, "ts": 11378377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398770", "tid": 35568, "ts": 11378463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0399060", "tid": 35568, "ts": 11378550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03978d0", "tid": 35568, "ts": 11378636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396f10", "tid": 35568, "ts": 11378722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03989e0", "tid": 35568, "ts": 11378807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397800", "tid": 35568, "ts": 11378894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396e40", "tid": 35568, "ts": 11378980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397590", "tid": 35568, "ts": 11379067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397320", "tid": 35568, "ts": 11379152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398c50", "tid": 35568, "ts": 11379239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396960", "tid": 35568, "ts": 11379325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396890", "tid": 35568, "ts": 11379411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398430", "tid": 35568, "ts": 11379497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03974c0", "tid": 35568, "ts": 11379583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397f50", "tid": 35568, "ts": 11379669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396a30", "tid": 35568, "ts": 11379755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0398f90", "tid": 35568, "ts": 11379841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395ed0", "tid": 35568, "ts": 11379927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397730", "tid": 35568, "ts": 11380014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0396210", "tid": 35568, "ts": 11380101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03985d0", "tid": 35568, "ts": 11380186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397c10", "tid": 35568, "ts": 11380273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397e80", "tid": 35568, "ts": 11380358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0397b40", "tid": 35568, "ts": 11380444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393080", "tid": 35568, "ts": 11380530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392a00", "tid": 35568, "ts": 11380616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395c60", "tid": 35568, "ts": 11380702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03959f0", "tid": 35568, "ts": 11380787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03952a0", "tid": 35568, "ts": 11380873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392ba0", "tid": 35568, "ts": 11380959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394f60", "tid": 35568, "ts": 11381045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392c70", "tid": 35568, "ts": 11381131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03938a0", "tid": 35568, "ts": 11381217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393970", "tid": 35568, "ts": 11381304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393f20", "tid": 35568, "ts": 11381389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394c20", "tid": 35568, "ts": 11381476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03949b0", "tid": 35568, "ts": 11381562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03932f0", "tid": 35568, "ts": 11381648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03948e0", "tid": 35568, "ts": 11381735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394400", "tid": 35568, "ts": 11381822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392e10", "tid": 35568, "ts": 11381908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392fb0", "tid": 35568, "ts": 11381995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392ad0", "tid": 35568, "ts": 11382081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393d80", "tid": 35568, "ts": 11382167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393cb0", "tid": 35568, "ts": 11382253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393700", "tid": 35568, "ts": 11382339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393150", "tid": 35568, "ts": 11382425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393be0", "tid": 35568, "ts": 11382512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394b50", "tid": 35568, "ts": 11382598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395510", "tid": 35568, "ts": 11382685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393b10", "tid": 35568, "ts": 11382771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03951d0", "tid": 35568, "ts": 11382857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0393a40", "tid": 35568, "ts": 11382944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395850", "tid": 35568, "ts": 11383030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0394670", "tid": 35568, "ts": 11383116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0395b90", "tid": 35568, "ts": 11383202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390090", "tid": 35568, "ts": 11383288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390160", "tid": 35568, "ts": 11383374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fa10", "tid": 35568, "ts": 11383460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f940", "tid": 35568, "ts": 11383547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390bf0", "tid": 35568, "ts": 11383633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392520", "tid": 35568, "ts": 11383719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03907e0", "tid": 35568, "ts": 11383804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03921e0", "tid": 35568, "ts": 11383890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fef0", "tid": 35568, "ts": 11383976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390b20", "tid": 35568, "ts": 11384062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03918f0", "tid": 35568, "ts": 11384148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391dd0", "tid": 35568, "ts": 11384235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03919c0", "tid": 35568, "ts": 11384320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03904a0", "tid": 35568, "ts": 11384406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391f70", "tid": 35568, "ts": 11384492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390e60", "tid": 35568, "ts": 11384578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03903d0", "tid": 35568, "ts": 11384665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03926c0", "tid": 35568, "ts": 11384751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391680", "tid": 35568, "ts": 11384837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392380", "tid": 35568, "ts": 11384923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390300", "tid": 35568, "ts": 11385010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391340", "tid": 35568, "ts": 11385096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f870", "tid": 35568, "ts": 11385181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03911a0", "tid": 35568, "ts": 11385267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038fbb0", "tid": 35568, "ts": 11385353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f7a0", "tid": 35568, "ts": 11385439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0392790", "tid": 35568, "ts": 11385525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391000", "tid": 35568, "ts": 11385611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03910d0", "tid": 35568, "ts": 11385697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0390640", "tid": 35568, "ts": 11385783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03925f0", "tid": 35568, "ts": 11385869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0391ea0", "tid": 35568, "ts": 11385956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e830", "tid": 35568, "ts": 11386043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c3a0", "tid": 35568, "ts": 11386129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c2d0", "tid": 35568, "ts": 11386216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d310", "tid": 35568, "ts": 11386302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c130", "tid": 35568, "ts": 11386388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038f390", "tid": 35568, "ts": 11386475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d240", "tid": 35568, "ts": 11386561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038dcd0", "tid": 35568, "ts": 11386647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038eb70", "tid": 35568, "ts": 11386734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d170", "tid": 35568, "ts": 11386820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c880", "tid": 35568, "ts": 11386906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cfd0", "tid": 35568, "ts": 11386992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e280", "tid": 35568, "ts": 11387078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038cf00", "tid": 35568, "ts": 11387164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e0e0", "tid": 35568, "ts": 11387279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038df40", "tid": 35568, "ts": 11387392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d580", "tid": 35568, "ts": 11387478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e690", "tid": 35568, "ts": 11387565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038dc00", "tid": 35568, "ts": 11387651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038db30", "tid": 35568, "ts": 11387737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d0a0", "tid": 35568, "ts": 11387823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c6e0", "tid": 35568, "ts": 11387909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038de70", "tid": 35568, "ts": 11387996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ef80", "tid": 35568, "ts": 11388082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ed10", "tid": 35568, "ts": 11388169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038d990", "tid": 35568, "ts": 11388255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038c7b0", "tid": 35568, "ts": 11388341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e010", "tid": 35568, "ts": 11388427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e420", "tid": 35568, "ts": 11388514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e900", "tid": 35568, "ts": 11388599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038e5c0", "tid": 35568, "ts": 11388685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038caf0", "tid": 35568, "ts": 11388772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03893b0", "tid": 35568, "ts": 11388857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a180", "tid": 35568, "ts": 11388943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389bd0", "tid": 35568, "ts": 11389029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a660", "tid": 35568, "ts": 11389116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388fa0", "tid": 35568, "ts": 11389202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388ed0", "tid": 35568, "ts": 11389289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b430", "tid": 35568, "ts": 11389374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ae80", "tid": 35568, "ts": 11389461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bdf0", "tid": 35568, "ts": 11389547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389e40", "tid": 35568, "ts": 11389633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389960", "tid": 35568, "ts": 11389719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b9e0", "tid": 35568, "ts": 11389805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b910", "tid": 35568, "ts": 11389891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bb80", "tid": 35568, "ts": 11389978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ace0", "tid": 35568, "ts": 11390064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038bab0", "tid": 35568, "ts": 11390150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389890", "tid": 35568, "ts": 11390236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389d70", "tid": 35568, "ts": 11390322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b770", "tid": 35568, "ts": 11390407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389b00", "tid": 35568, "ts": 11390494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389ca0", "tid": 35568, "ts": 11390581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389a30", "tid": 35568, "ts": 11390667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a250", "tid": 35568, "ts": 11390753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a8d0", "tid": 35568, "ts": 11390839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038aa70", "tid": 35568, "ts": 11390925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389620", "tid": 35568, "ts": 11391011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038ab40", "tid": 35568, "ts": 11391097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0389550", "tid": 35568, "ts": 11391184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b5d0", "tid": 35568, "ts": 11391269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a730", "tid": 35568, "ts": 11391355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038b840", "tid": 35568, "ts": 11391442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c038a590", "tid": 35568, "ts": 11391527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387400", "tid": 35568, "ts": 11391614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386ff0", "tid": 35568, "ts": 11391700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387260", "tid": 35568, "ts": 11391786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385930", "tid": 35568, "ts": 11391872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388c60", "tid": 35568, "ts": 11391958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387f60", "tid": 35568, "ts": 11392044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388780", "tid": 35568, "ts": 11392129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387b50", "tid": 35568, "ts": 11392216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387dc0", "tid": 35568, "ts": 11392302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388ac0", "tid": 35568, "ts": 11392389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387a80", "tid": 35568, "ts": 11392474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388370", "tid": 35568, "ts": 11392561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388b90", "tid": 35568, "ts": 11392648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386080", "tid": 35568, "ts": 11392733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387cf0", "tid": 35568, "ts": 11392819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386e50", "tid": 35568, "ts": 11392905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385e10", "tid": 35568, "ts": 11392991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386490", "tid": 35568, "ts": 11393078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03878e0", "tid": 35568, "ts": 11393164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03882a0", "tid": 35568, "ts": 11393250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387670", "tid": 35568, "ts": 11393336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0387c20", "tid": 35568, "ts": 11393422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385ba0", "tid": 35568, "ts": 11393508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385d40", "tid": 35568, "ts": 11393595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386700", "tid": 35568, "ts": 11393682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385c70", "tid": 35568, "ts": 11393768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0388850", "tid": 35568, "ts": 11393854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03868a0", "tid": 35568, "ts": 11393941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03862f0", "tid": 35568, "ts": 11394027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03881d0", "tid": 35568, "ts": 11394114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386d80", "tid": 35568, "ts": 11394200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0386be0", "tid": 35568, "ts": 11394287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384dd0", "tid": 35568, "ts": 11394373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03844e0", "tid": 35568, "ts": 11394458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384340", "tid": 35568, "ts": 11394550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383710", "tid": 35568, "ts": 11394673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384270", "tid": 35568, "ts": 11394761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383a50", "tid": 35568, "ts": 11394848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384a90", "tid": 35568, "ts": 11394935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382940", "tid": 35568, "ts": 11395021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382bb0", "tid": 35568, "ts": 11395108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384750", "tid": 35568, "ts": 11395195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382c80", "tid": 35568, "ts": 11395281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03827a0", "tid": 35568, "ts": 11395368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383230", "tid": 35568, "ts": 11395454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383cc0", "tid": 35568, "ts": 11395541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382530", "tid": 35568, "ts": 11395626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03856c0", "tid": 35568, "ts": 11395713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385110", "tid": 35568, "ts": 11395799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382fc0", "tid": 35568, "ts": 11395886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03855f0", "tid": 35568, "ts": 11395972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383bf0", "tid": 35568, "ts": 11396059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382ef0", "tid": 35568, "ts": 11396145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382e20", "tid": 35568, "ts": 11396232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03833d0", "tid": 35568, "ts": 11396318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03851e0", "tid": 35568, "ts": 11396405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03838b0", "tid": 35568, "ts": 11396492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385520", "tid": 35568, "ts": 11396578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0383160", "tid": 35568, "ts": 11396664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03852b0", "tid": 35568, "ts": 11396751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385040", "tid": 35568, "ts": 11396838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0385380", "tid": 35568, "ts": 11396925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0384d00", "tid": 35568, "ts": 11397011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382ae0", "tid": 35568, "ts": 11397097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ff00", "tid": 35568, "ts": 11397183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fd60", "tid": 35568, "ts": 11397270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037faf0", "tid": 35568, "ts": 11397360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f950", "tid": 35568, "ts": 11397449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f880", "tid": 35568, "ts": 11397535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037fbc0", "tid": 35568, "ts": 11397622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f3a0", "tid": 35568, "ts": 11397708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03822c0", "tid": 35568, "ts": 11397794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381de0", "tid": 35568, "ts": 11397882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03807f0", "tid": 35568, "ts": 11397968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381420", "tid": 35568, "ts": 11398056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380b30", "tid": 35568, "ts": 11398144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380720", "tid": 35568, "ts": 11398231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380310", "tid": 35568, "ts": 11398327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381d10", "tid": 35568, "ts": 11398414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380e70", "tid": 35568, "ts": 11398500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381760", "tid": 35568, "ts": 11398587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f200", "tid": 35568, "ts": 11398673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380a60", "tid": 35568, "ts": 11398759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380240", "tid": 35568, "ts": 11398846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382120", "tid": 35568, "ts": 11398932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380990", "tid": 35568, "ts": 11399019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0382390", "tid": 35568, "ts": 11399106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0380cd0", "tid": 35568, "ts": 11399192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03810e0", "tid": 35568, "ts": 11399279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03800a0", "tid": 35568, "ts": 11399365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03811b0", "tid": 35568, "ts": 11399451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03808c0", "tid": 35568, "ts": 11399537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381eb0", "tid": 35568, "ts": 11399623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03814f0", "tid": 35568, "ts": 11399709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381c40", "tid": 35568, "ts": 11399795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0381b70", "tid": 35568, "ts": 11399882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d250", "tid": 35568, "ts": 11399969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e430", "tid": 35568, "ts": 11400055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037df50", "tid": 35568, "ts": 11400141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d180", "tid": 35568, "ts": 11400227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d730", "tid": 35568, "ts": 11400314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c210", "tid": 35568, "ts": 11400400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ddb0", "tid": 35568, "ts": 11400487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bfa0", "tid": 35568, "ts": 11400573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e360", "tid": 35568, "ts": 11400659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e290", "tid": 35568, "ts": 11400745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037be00", "tid": 35568, "ts": 11400831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d660", "tid": 35568, "ts": 11400918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c6f0", "tid": 35568, "ts": 11401004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bd30", "tid": 35568, "ts": 11401092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037edf0", "tid": 35568, "ts": 11401178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037dce0", "tid": 35568, "ts": 11401264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c960", "tid": 35568, "ts": 11401351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e0f0", "tid": 35568, "ts": 11401437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037dc10", "tid": 35568, "ts": 11401523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037eab0", "tid": 35568, "ts": 11401610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c620", "tid": 35568, "ts": 11401696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d4c0", "tid": 35568, "ts": 11401783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037f060", "tid": 35568, "ts": 11401870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e910", "tid": 35568, "ts": 11401956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d8d0", "tid": 35568, "ts": 11402043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e840", "tid": 35568, "ts": 11402129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037c3b0", "tid": 35568, "ts": 11402215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037cf10", "tid": 35568, "ts": 11402301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e5d0", "tid": 35568, "ts": 11402387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e020", "tid": 35568, "ts": 11402474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037e500", "tid": 35568, "ts": 11402560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037d590", "tid": 35568, "ts": 11402647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a670", "tid": 35568, "ts": 11402733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037ab50", "tid": 35568, "ts": 11402819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b030", "tid": 35568, "ts": 11403015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379be0", "tid": 35568, "ts": 11403207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379560", "tid": 35568, "ts": 11403322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b370", "tid": 35568, "ts": 11403458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378ba0", "tid": 35568, "ts": 11403572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a4d0", "tid": 35568, "ts": 11403669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379b10", "tid": 35568, "ts": 11403789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b2a0", "tid": 35568, "ts": 11403943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03793c0", "tid": 35568, "ts": 11404052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379f20", "tid": 35568, "ts": 11404139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378c70", "tid": 35568, "ts": 11404226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379970", "tid": 35568, "ts": 11404312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379080", "tid": 35568, "ts": 11404399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b1d0", "tid": 35568, "ts": 11404485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378ee0", "tid": 35568, "ts": 11404571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bac0", "tid": 35568, "ts": 11404658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378a00", "tid": 35568, "ts": 11404744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03798a0", "tid": 35568, "ts": 11404830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037b850", "tid": 35568, "ts": 11404916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a330", "tid": 35568, "ts": 11405003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03797d0", "tid": 35568, "ts": 11405089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379150", "tid": 35568, "ts": 11405175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037bb90", "tid": 35568, "ts": 11405262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379cb0", "tid": 35568, "ts": 11405348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a810", "tid": 35568, "ts": 11405435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379700", "tid": 35568, "ts": 11405521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037acf0", "tid": 35568, "ts": 11405608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c037a260", "tid": 35568, "ts": 11405694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0379ff0", "tid": 35568, "ts": 11405781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03792f0", "tid": 35568, "ts": 11405866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376bf0", "tid": 35568, "ts": 11405953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376a50", "tid": 35568, "ts": 11406039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03768b0", "tid": 35568, "ts": 11406125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376160", "tid": 35568, "ts": 11406211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375ae0", "tid": 35568, "ts": 11406298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375940", "tid": 35568, "ts": 11406384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378040", "tid": 35568, "ts": 11406469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377f70", "tid": 35568, "ts": 11406556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375600", "tid": 35568, "ts": 11406641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377820", "tid": 35568, "ts": 11406727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03785f0", "tid": 35568, "ts": 11406814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378520", "tid": 35568, "ts": 11406900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377750", "tid": 35568, "ts": 11406987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375530", "tid": 35568, "ts": 11407074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378860", "tid": 35568, "ts": 11407160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375fc0", "tid": 35568, "ts": 11407245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03756d0", "tid": 35568, "ts": 11407332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03774e0", "tid": 35568, "ts": 11407418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377000", "tid": 35568, "ts": 11407505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0378790", "tid": 35568, "ts": 11407591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03763d0", "tid": 35568, "ts": 11407677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377270", "tid": 35568, "ts": 11407763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375e20", "tid": 35568, "ts": 11407849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0377410", "tid": 35568, "ts": 11407935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376e60", "tid": 35568, "ts": 11408021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376640", "tid": 35568, "ts": 11408107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03757a0", "tid": 35568, "ts": 11408194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376230", "tid": 35568, "ts": 11408280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0375bb0", "tid": 35568, "ts": 11408366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c0376090", "tid": 35568, "ts": 11408453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03779c0", "tid": 35568, "ts": 11408539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234c03775b0", "tid": 35568, "ts": 11408625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126aa0", "tid": 35568, "ts": 11408712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126690", "tid": 35568, "ts": 11408798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1271f0", "tid": 35568, "ts": 11408884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125da0", "tid": 35568, "ts": 11408971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126f80", "tid": 35568, "ts": 11409056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125c00", "tid": 35568, "ts": 11409143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125b30", "tid": 35568, "ts": 11409229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126280", "tid": 35568, "ts": 11409315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124130", "tid": 35568, "ts": 11409402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127120", "tid": 35568, "ts": 11409487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124880", "tid": 35568, "ts": 11409574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127460", "tid": 35568, "ts": 11409661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1246e0", "tid": 35568, "ts": 11409747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125f40", "tid": 35568, "ts": 11409833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124540", "tid": 35568, "ts": 11409920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1243a0", "tid": 35568, "ts": 11410007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1253e0", "tid": 35568, "ts": 11410093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126de0", "tid": 35568, "ts": 11410179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126d10", "tid": 35568, "ts": 11410266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1265c0", "tid": 35568, "ts": 11410352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125170", "tid": 35568, "ts": 11410439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125990", "tid": 35568, "ts": 11410525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125a60", "tid": 35568, "ts": 11410611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1247b0", "tid": 35568, "ts": 11410697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126830", "tid": 35568, "ts": 11410785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124470", "tid": 35568, "ts": 11410871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126c40", "tid": 35568, "ts": 11410957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124fd0", "tid": 35568, "ts": 11411044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae125650", "tid": 35568, "ts": 11411129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae124f00", "tid": 35568, "ts": 11411216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126900", "tid": 35568, "ts": 11411302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae126010", "tid": 35568, "ts": 11411389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164290", "tid": 35568, "ts": 11411474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163ce0", "tid": 35568, "ts": 11411560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164500", "tid": 35568, "ts": 11411647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1634c0", "tid": 35568, "ts": 11411734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163180", "tid": 35568, "ts": 11411820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162ca0", "tid": 35568, "ts": 11411906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163a70", "tid": 35568, "ts": 11411992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162b00", "tid": 35568, "ts": 11412078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1633f0", "tid": 35568, "ts": 11412165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163c10", "tid": 35568, "ts": 11412251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1641c0", "tid": 35568, "ts": 11412337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164df0", "tid": 35568, "ts": 11412423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163f50", "tid": 35568, "ts": 11412509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164430", "tid": 35568, "ts": 11412597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162480", "tid": 35568, "ts": 11412683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1623b0", "tid": 35568, "ts": 11412769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1630b0", "tid": 35568, "ts": 11412855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164ab0", "tid": 35568, "ts": 11412941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162620", "tid": 35568, "ts": 11413027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164910", "tid": 35568, "ts": 11413113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164020", "tid": 35568, "ts": 11413199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162e40", "tid": 35568, "ts": 11413285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae162d70", "tid": 35568, "ts": 11413372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164c50", "tid": 35568, "ts": 11413458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164d20", "tid": 35568, "ts": 11413544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164ec0", "tid": 35568, "ts": 11413631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae164b80", "tid": 35568, "ts": 11413717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161ed0", "tid": 35568, "ts": 11413803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1649e0", "tid": 35568, "ts": 11413889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161e00", "tid": 35568, "ts": 11413975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae163590", "tid": 35568, "ts": 11414061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fe50", "tid": 35568, "ts": 11414147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fb10", "tid": 35568, "ts": 11414233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f7d0", "tid": 35568, "ts": 11414319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160400", "tid": 35568, "ts": 11414406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f700", "tid": 35568, "ts": 11414492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f2f0", "tid": 35568, "ts": 11414579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f560", "tid": 35568, "ts": 11414665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f150", "tid": 35568, "ts": 11414751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ed40", "tid": 35568, "ts": 11414837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ec70", "tid": 35568, "ts": 11414923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1616b0", "tid": 35568, "ts": 11415010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160670", "tid": 35568, "ts": 11415096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15eba0", "tid": 35568, "ts": 11415182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e930", "tid": 35568, "ts": 11415268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1611d0", "tid": 35568, "ts": 11415355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161920", "tid": 35568, "ts": 11415440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160dc0", "tid": 35568, "ts": 11415526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fa40", "tid": 35568, "ts": 11415613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ff20", "tid": 35568, "ts": 11415699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161850", "tid": 35568, "ts": 11415785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160cf0", "tid": 35568, "ts": 11415870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1615e0", "tid": 35568, "ts": 11415957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1605a0", "tid": 35568, "ts": 11416043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161b90", "tid": 35568, "ts": 11416129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161ac0", "tid": 35568, "ts": 11416215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f970", "tid": 35568, "ts": 11416301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fcb0", "tid": 35568, "ts": 11416387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160260", "tid": 35568, "ts": 11416472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15fff0", "tid": 35568, "ts": 11416562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae160e90", "tid": 35568, "ts": 11416648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15f8a0", "tid": 35568, "ts": 11416734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae161780", "tid": 35568, "ts": 11416821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c3d0", "tid": 35568, "ts": 11416907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bfc0", "tid": 35568, "ts": 11416993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e450", "tid": 35568, "ts": 11417080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15dc30", "tid": 35568, "ts": 11417166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d000", "tid": 35568, "ts": 11417252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e2b0", "tid": 35568, "ts": 11417338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bbb0", "tid": 35568, "ts": 11417425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ce60", "tid": 35568, "ts": 11417512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15df70", "tid": 35568, "ts": 11417598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cd90", "tid": 35568, "ts": 11417687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d750", "tid": 35568, "ts": 11417774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c300", "tid": 35568, "ts": 11417861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ccc0", "tid": 35568, "ts": 11417947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ba10", "tid": 35568, "ts": 11418034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15bd50", "tid": 35568, "ts": 11418120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15cbf0", "tid": 35568, "ts": 11418206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d4e0", "tid": 35568, "ts": 11418292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b530", "tid": 35568, "ts": 11418378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15be20", "tid": 35568, "ts": 11418465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15db60", "tid": 35568, "ts": 11418590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b870", "tid": 35568, "ts": 11418677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e5f0", "tid": 35568, "ts": 11418764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b7a0", "tid": 35568, "ts": 11418850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c710", "tid": 35568, "ts": 11418936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c640", "tid": 35568, "ts": 11419023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d5b0", "tid": 35568, "ts": 11419109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d1a0", "tid": 35568, "ts": 11419196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e6c0", "tid": 35568, "ts": 11419283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c8b0", "tid": 35568, "ts": 11419473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15c7e0", "tid": 35568, "ts": 11419581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15d0d0", "tid": 35568, "ts": 11419763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15e860", "tid": 35568, "ts": 11419949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159e70", "tid": 35568, "ts": 11420045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159cd0", "tid": 35568, "ts": 11420133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1597f0", "tid": 35568, "ts": 11420220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159310", "tid": 35568, "ts": 11420306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159240", "tid": 35568, "ts": 11420393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158950", "tid": 35568, "ts": 11420479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15aeb0", "tid": 35568, "ts": 11420565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ab70", "tid": 35568, "ts": 11420652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1587b0", "tid": 35568, "ts": 11420738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1586e0", "tid": 35568, "ts": 11420824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15ade0", "tid": 35568, "ts": 11420910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158af0", "tid": 35568, "ts": 11420997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158d60", "tid": 35568, "ts": 11421083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a5c0", "tid": 35568, "ts": 11421169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a900", "tid": 35568, "ts": 11421256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159580", "tid": 35568, "ts": 11421342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b1f0", "tid": 35568, "ts": 11421428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158c90", "tid": 35568, "ts": 11421514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1594b0", "tid": 35568, "ts": 11421601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a4f0", "tid": 35568, "ts": 11421687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1582d0", "tid": 35568, "ts": 11421773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae159b30", "tid": 35568, "ts": 11421859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b460", "tid": 35568, "ts": 11421946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158bc0", "tid": 35568, "ts": 11422032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158200", "tid": 35568, "ts": 11422118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158470", "tid": 35568, "ts": 11422205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15b390", "tid": 35568, "ts": 11422291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a350", "tid": 35568, "ts": 11422378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a0e0", "tid": 35568, "ts": 11422464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1598c0", "tid": 35568, "ts": 11422550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a280", "tid": 35568, "ts": 11422637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae15a9d0", "tid": 35568, "ts": 11422722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156db0", "tid": 35568, "ts": 11422809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156800", "tid": 35568, "ts": 11422895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156660", "tid": 35568, "ts": 11422981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1563f0", "tid": 35568, "ts": 11423067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155fe0", "tid": 35568, "ts": 11423153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157840", "tid": 35568, "ts": 11423239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157ab0", "tid": 35568, "ts": 11423325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156f50", "tid": 35568, "ts": 11423411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155a30", "tid": 35568, "ts": 11423498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1556f0", "tid": 35568, "ts": 11423584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155960", "tid": 35568, "ts": 11423670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157ec0", "tid": 35568, "ts": 11423756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156250", "tid": 35568, "ts": 11423843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155550", "tid": 35568, "ts": 11423929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156b40", "tid": 35568, "ts": 11424016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154e00", "tid": 35568, "ts": 11424101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157770", "tid": 35568, "ts": 11424188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155070", "tid": 35568, "ts": 11424273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157500", "tid": 35568, "ts": 11424359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156a70", "tid": 35568, "ts": 11424445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1560b0", "tid": 35568, "ts": 11424532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae156590", "tid": 35568, "ts": 11424619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155480", "tid": 35568, "ts": 11424705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157df0", "tid": 35568, "ts": 11424792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157c50", "tid": 35568, "ts": 11424878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae158060", "tid": 35568, "ts": 11424965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157910", "tid": 35568, "ts": 11425051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1552e0", "tid": 35568, "ts": 11425137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1568d0", "tid": 35568, "ts": 11425223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae157360", "tid": 35568, "ts": 11425309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155d70", "tid": 35568, "ts": 11425395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae155ca0", "tid": 35568, "ts": 11425481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153b50", "tid": 35568, "ts": 11425567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153a80", "tid": 35568, "ts": 11425653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151fb0", "tid": 35568, "ts": 11425740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151ee0", "tid": 35568, "ts": 11425826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1534d0", "tid": 35568, "ts": 11425912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151d40", "tid": 35568, "ts": 11425998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153190", "tid": 35568, "ts": 11426084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1530c0", "tid": 35568, "ts": 11426172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153260", "tid": 35568, "ts": 11426259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153dc0", "tid": 35568, "ts": 11426345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153740", "tid": 35568, "ts": 11426432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151ad0", "tid": 35568, "ts": 11426518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152ff0", "tid": 35568, "ts": 11426605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae153c20", "tid": 35568, "ts": 11426691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151930", "tid": 35568, "ts": 11426778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1545e0", "tid": 35568, "ts": 11426952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152970", "tid": 35568, "ts": 11427040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154b90", "tid": 35568, "ts": 11427128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1542a0", "tid": 35568, "ts": 11427215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152d80", "tid": 35568, "ts": 11427301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1522f0", "tid": 35568, "ts": 11427388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1528a0", "tid": 35568, "ts": 11427474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152f20", "tid": 35568, "ts": 11427560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152cb0", "tid": 35568, "ts": 11427646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154100", "tid": 35568, "ts": 11427732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152490", "tid": 35568, "ts": 11427819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154510", "tid": 35568, "ts": 11427906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154ac0", "tid": 35568, "ts": 11427992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152be0", "tid": 35568, "ts": 11428078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1549f0", "tid": 35568, "ts": 11428165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae152630", "tid": 35568, "ts": 11428251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae154440", "tid": 35568, "ts": 11428337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ea10", "tid": 35568, "ts": 11428423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151520", "tid": 35568, "ts": 11428510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151380", "tid": 35568, "ts": 11428597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ff30", "tid": 35568, "ts": 11428683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fa50", "tid": 35568, "ts": 11428769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1511e0", "tid": 35568, "ts": 11428855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151110", "tid": 35568, "ts": 11428940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f710", "tid": 35568, "ts": 11429027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151860", "tid": 35568, "ts": 11429113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e870", "tid": 35568, "ts": 11429200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fd90", "tid": 35568, "ts": 11429287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f640", "tid": 35568, "ts": 11429376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae151040", "tid": 35568, "ts": 11429463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e940", "tid": 35568, "ts": 11429550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1504e0", "tid": 35568, "ts": 11429636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e6d0", "tid": 35568, "ts": 11429722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1509c0", "tid": 35568, "ts": 11429809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ebb0", "tid": 35568, "ts": 11429896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f4a0", "tid": 35568, "ts": 11429982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f7e0", "tid": 35568, "ts": 11430068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f570", "tid": 35568, "ts": 11430155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f230", "tid": 35568, "ts": 11430241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150680", "tid": 35568, "ts": 11430327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ec80", "tid": 35568, "ts": 11430412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1515f0", "tid": 35568, "ts": 11430499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150340", "tid": 35568, "ts": 11430585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14efc0", "tid": 35568, "ts": 11430672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150b60", "tid": 35568, "ts": 11430758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae150410", "tid": 35568, "ts": 11430845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f090", "tid": 35568, "ts": 11430931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14f160", "tid": 35568, "ts": 11431017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14fb20", "tid": 35568, "ts": 11431103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ba20", "tid": 35568, "ts": 11431189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b540", "tid": 35568, "ts": 11431276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b3a0", "tid": 35568, "ts": 11431363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b950", "tid": 35568, "ts": 11431449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14be30", "tid": 35568, "ts": 11431536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14dde0", "tid": 35568, "ts": 11431622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b610", "tid": 35568, "ts": 11431708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cf40", "tid": 35568, "ts": 11431795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d350", "tid": 35568, "ts": 11431882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14bfd0", "tid": 35568, "ts": 11431968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14deb0", "tid": 35568, "ts": 11432055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c7f0", "tid": 35568, "ts": 11432141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b130", "tid": 35568, "ts": 11432228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c720", "tid": 35568, "ts": 11432314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c310", "tid": 35568, "ts": 11432401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14df80", "tid": 35568, "ts": 11432487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d5c0", "tid": 35568, "ts": 11432573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14daa0", "tid": 35568, "ts": 11432659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e120", "tid": 35568, "ts": 11432745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d9d0", "tid": 35568, "ts": 11432832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c580", "tid": 35568, "ts": 11432918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c4b0", "tid": 35568, "ts": 11433005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14c240", "tid": 35568, "ts": 11433090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d830", "tid": 35568, "ts": 11433176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e050", "tid": 35568, "ts": 11433262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14e390", "tid": 35568, "ts": 11433349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d420", "tid": 35568, "ts": 11433436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d760", "tid": 35568, "ts": 11433522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d4f0", "tid": 35568, "ts": 11433610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14b880", "tid": 35568, "ts": 11433697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14d280", "tid": 35568, "ts": 11433789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14cda0", "tid": 35568, "ts": 11433885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a430", "tid": 35568, "ts": 11433973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147d30", "tid": 35568, "ts": 11434060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1499a0", "tid": 35568, "ts": 11434203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a840", "tid": 35568, "ts": 11434320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149e80", "tid": 35568, "ts": 11434407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a770", "tid": 35568, "ts": 11434495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149800", "tid": 35568, "ts": 11434582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149590", "tid": 35568, "ts": 11434669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a1c0", "tid": 35568, "ts": 11434756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14aab0", "tid": 35568, "ts": 11434843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1490b0", "tid": 35568, "ts": 11434930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ab80", "tid": 35568, "ts": 11435017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14adf0", "tid": 35568, "ts": 11435105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ad20", "tid": 35568, "ts": 11435191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14ac50", "tid": 35568, "ts": 11435278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a9e0", "tid": 35568, "ts": 11435365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a5d0", "tid": 35568, "ts": 11435455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1493f0", "tid": 35568, "ts": 11435571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147fa0", "tid": 35568, "ts": 11435662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a500", "tid": 35568, "ts": 11435750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148210", "tid": 35568, "ts": 11435837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a6a0", "tid": 35568, "ts": 11435923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae14a0f0", "tid": 35568, "ts": 11436010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148140", "tid": 35568, "ts": 11436097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148ca0", "tid": 35568, "ts": 11436183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae149320", "tid": 35568, "ts": 11436270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148bd0", "tid": 35568, "ts": 11436357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1487c0", "tid": 35568, "ts": 11436444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148480", "tid": 35568, "ts": 11436530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148fe0", "tid": 35568, "ts": 11436617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148a30", "tid": 35568, "ts": 11436703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae148890", "tid": 35568, "ts": 11436790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145a40", "tid": 35568, "ts": 11436876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1457d0", "tid": 35568, "ts": 11436963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1453c0", "tid": 35568, "ts": 11437050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144fb0", "tid": 35568, "ts": 11437137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144ba0", "tid": 35568, "ts": 11437223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146400", "tid": 35568, "ts": 11437310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144930", "tid": 35568, "ts": 11437397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147780", "tid": 35568, "ts": 11437483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1476b0", "tid": 35568, "ts": 11437569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1458a0", "tid": 35568, "ts": 11437656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1471d0", "tid": 35568, "ts": 11437742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147100", "tid": 35568, "ts": 11437828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144e10", "tid": 35568, "ts": 11437915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146810", "tid": 35568, "ts": 11438002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1469b0", "tid": 35568, "ts": 11438088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146330", "tid": 35568, "ts": 11438174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145d80", "tid": 35568, "ts": 11438260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146c20", "tid": 35568, "ts": 11438346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146260", "tid": 35568, "ts": 11438433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145630", "tid": 35568, "ts": 11438519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1475e0", "tid": 35568, "ts": 11438606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146740", "tid": 35568, "ts": 11438692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145e50", "tid": 35568, "ts": 11438778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae146e90", "tid": 35568, "ts": 11438865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145700", "tid": 35568, "ts": 11438952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144ee0", "tid": 35568, "ts": 11439038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145f20", "tid": 35568, "ts": 11439125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145cb0", "tid": 35568, "ts": 11439211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1472a0", "tid": 35568, "ts": 11439298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1460c0", "tid": 35568, "ts": 11439384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae147ac0", "tid": 35568, "ts": 11439471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae145080", "tid": 35568, "ts": 11439558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143ea0", "tid": 35568, "ts": 11439645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143d00", "tid": 35568, "ts": 11439731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143c30", "tid": 35568, "ts": 11439817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1431a0", "tid": 35568, "ts": 11439903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141fc0", "tid": 35568, "ts": 11439990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1416d0", "tid": 35568, "ts": 11440076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143000", "tid": 35568, "ts": 11440163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144860", "tid": 35568, "ts": 11440250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142d90", "tid": 35568, "ts": 11440336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142bf0", "tid": 35568, "ts": 11440423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1445f0", "tid": 35568, "ts": 11440509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144790", "tid": 35568, "ts": 11440596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141ef0", "tid": 35568, "ts": 11440683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141a10", "tid": 35568, "ts": 11440769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142640", "tid": 35568, "ts": 11440857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1423d0", "tid": 35568, "ts": 11440944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143b60", "tid": 35568, "ts": 11441030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143820", "tid": 35568, "ts": 11441117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1427e0", "tid": 35568, "ts": 11441204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144110", "tid": 35568, "ts": 11441291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1434e0", "tid": 35568, "ts": 11441377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142570", "tid": 35568, "ts": 11441463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143680", "tid": 35568, "ts": 11441549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141870", "tid": 35568, "ts": 11441636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144380", "tid": 35568, "ts": 11441722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae143340", "tid": 35568, "ts": 11441809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1430d0", "tid": 35568, "ts": 11441896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1438f0", "tid": 35568, "ts": 11441982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141c80", "tid": 35568, "ts": 11442069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141530", "tid": 35568, "ts": 11442160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae142160", "tid": 35568, "ts": 11442246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae144450", "tid": 35568, "ts": 11442332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fb30", "tid": 35568, "ts": 11442418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f7f0", "tid": 35568, "ts": 11442505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f580", "tid": 35568, "ts": 11442591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f170", "tid": 35568, "ts": 11442677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f240", "tid": 35568, "ts": 11442764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13eaf0", "tid": 35568, "ts": 11442850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ea20", "tid": 35568, "ts": 11442935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e6e0", "tid": 35568, "ts": 11443022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f990", "tid": 35568, "ts": 11443108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141120", "tid": 35568, "ts": 11443195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140de0", "tid": 35568, "ts": 11443281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f0a0", "tid": 35568, "ts": 11443367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140b70", "tid": 35568, "ts": 11443454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140eb0", "tid": 35568, "ts": 11443540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e470", "tid": 35568, "ts": 11443627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140aa0", "tid": 35568, "ts": 11443714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140d10", "tid": 35568, "ts": 11443801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1409d0", "tid": 35568, "ts": 11443887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e3a0", "tid": 35568, "ts": 11443977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141050", "tid": 35568, "ts": 11444094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e2d0", "tid": 35568, "ts": 11444182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ef00", "tid": 35568, "ts": 11444268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e7b0", "tid": 35568, "ts": 11444354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1405c0", "tid": 35568, "ts": 11444440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae141460", "tid": 35568, "ts": 11444526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae140280", "tid": 35568, "ts": 11444613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1400e0", "tid": 35568, "ts": 11444699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13f3e0", "tid": 35568, "ts": 11444785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13fcd0", "tid": 35568, "ts": 11444872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1412c0", "tid": 35568, "ts": 11444958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13e880", "tid": 35568, "ts": 11445044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ff40", "tid": 35568, "ts": 11445130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cce0", "tid": 35568, "ts": 11445221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c9a0", "tid": 35568, "ts": 11445309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c800", "tid": 35568, "ts": 11445395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c590", "tid": 35568, "ts": 11445482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c3f0", "tid": 35568, "ts": 11445568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d0f0", "tid": 35568, "ts": 11445655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c180", "tid": 35568, "ts": 11445741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bfe0", "tid": 35568, "ts": 11445828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dab0", "tid": 35568, "ts": 11445914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bd70", "tid": 35568, "ts": 11446000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d9e0", "tid": 35568, "ts": 11446103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d910", "tid": 35568, "ts": 11446207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b7c0", "tid": 35568, "ts": 11446327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b480", "tid": 35568, "ts": 11446462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b140", "tid": 35568, "ts": 11446602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13aed0", "tid": 35568, "ts": 11446753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c0b0", "tid": 35568, "ts": 11446874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13dec0", "tid": 35568, "ts": 11447011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ddf0", "tid": 35568, "ts": 11447148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b2e0", "tid": 35568, "ts": 11447282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d840", "tid": 35568, "ts": 11447422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13afa0", "tid": 35568, "ts": 11447543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d500", "tid": 35568, "ts": 11447663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13b070", "tid": 35568, "ts": 11447815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ad30", "tid": 35568, "ts": 11447938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13cb40", "tid": 35568, "ts": 11448088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13db80", "tid": 35568, "ts": 11448210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d5d0", "tid": 35568, "ts": 11448358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13c660", "tid": 35568, "ts": 11448495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13d290", "tid": 35568, "ts": 11448635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13df90", "tid": 35568, "ts": 11448784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13bf10", "tid": 35568, "ts": 11448920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1383c0", "tid": 35568, "ts": 11449057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138150", "tid": 35568, "ts": 11449193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137ee0", "tid": 35568, "ts": 11449303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a850", "tid": 35568, "ts": 11449446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a780", "tid": 35568, "ts": 11449533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a440", "tid": 35568, "ts": 11449620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137c70", "tid": 35568, "ts": 11449706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138560", "tid": 35568, "ts": 11449872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139810", "tid": 35568, "ts": 11449962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1388a0", "tid": 35568, "ts": 11450050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1394d0", "tid": 35568, "ts": 11450138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a100", "tid": 35568, "ts": 11450225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137d40", "tid": 35568, "ts": 11450312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139670", "tid": 35568, "ts": 11450399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139a80", "tid": 35568, "ts": 11450486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a370", "tid": 35568, "ts": 11450573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a5e0", "tid": 35568, "ts": 11450660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138ff0", "tid": 35568, "ts": 11450747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13ab90", "tid": 35568, "ts": 11450838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139dc0", "tid": 35568, "ts": 11450926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138970", "tid": 35568, "ts": 11451013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138e50", "tid": 35568, "ts": 11451100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1387d0", "tid": 35568, "ts": 11451187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1390c0", "tid": 35568, "ts": 11451273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139c20", "tid": 35568, "ts": 11451361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138490", "tid": 35568, "ts": 11451448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138a40", "tid": 35568, "ts": 11451535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a510", "tid": 35568, "ts": 11451621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae139330", "tid": 35568, "ts": 11451708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1398e0", "tid": 35568, "ts": 11451794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae13a1d0", "tid": 35568, "ts": 11451881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae138be0", "tid": 35568, "ts": 11451968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136270", "tid": 35568, "ts": 11452055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135d90", "tid": 35568, "ts": 11452143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135bf0", "tid": 35568, "ts": 11452230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1371e0", "tid": 35568, "ts": 11452317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135090", "tid": 35568, "ts": 11452403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135640", "tid": 35568, "ts": 11452490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134c80", "tid": 35568, "ts": 11452576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134a10", "tid": 35568, "ts": 11452662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134ae0", "tid": 35568, "ts": 11452749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1357e0", "tid": 35568, "ts": 11452835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134940", "tid": 35568, "ts": 11452922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1347a0", "tid": 35568, "ts": 11453008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135980", "tid": 35568, "ts": 11453095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134e20", "tid": 35568, "ts": 11453182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137790", "tid": 35568, "ts": 11453268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1376c0", "tid": 35568, "ts": 11453355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135710", "tid": 35568, "ts": 11453442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1361a0", "tid": 35568, "ts": 11453529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae137380", "tid": 35568, "ts": 11453615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135570", "tid": 35568, "ts": 11453701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136820", "tid": 35568, "ts": 11453788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae135160", "tid": 35568, "ts": 11453874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136ea0", "tid": 35568, "ts": 11453960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1375f0", "tid": 35568, "ts": 11454047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1364e0", "tid": 35568, "ts": 11454133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1354a0", "tid": 35568, "ts": 11454220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134600", "tid": 35568, "ts": 11454307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1358b0", "tid": 35568, "ts": 11454394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136340", "tid": 35568, "ts": 11454481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae136410", "tid": 35568, "ts": 11454568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1369c0", "tid": 35568, "ts": 11454653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1346d0", "tid": 35568, "ts": 11454740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1317b0", "tid": 35568, "ts": 11454827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131610", "tid": 35568, "ts": 11454914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1313a0", "tid": 35568, "ts": 11455001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133350", "tid": 35568, "ts": 11455087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133280", "tid": 35568, "ts": 11455174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131880", "tid": 35568, "ts": 11455260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1330e0", "tid": 35568, "ts": 11455346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1328c0", "tid": 35568, "ts": 11455433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1327f0", "tid": 35568, "ts": 11455519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131f00", "tid": 35568, "ts": 11455609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132650", "tid": 35568, "ts": 11455696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132310", "tid": 35568, "ts": 11455783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134050", "tid": 35568, "ts": 11455869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133de0", "tid": 35568, "ts": 11455956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133760", "tid": 35568, "ts": 11456042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131e30", "tid": 35568, "ts": 11456128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133690", "tid": 35568, "ts": 11456215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132c00", "tid": 35568, "ts": 11456301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133b70", "tid": 35568, "ts": 11456388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131a20", "tid": 35568, "ts": 11456474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131950", "tid": 35568, "ts": 11456561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1334f0", "tid": 35568, "ts": 11456648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133d10", "tid": 35568, "ts": 11456735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1339d0", "tid": 35568, "ts": 11456821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133830", "tid": 35568, "ts": 11456908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133900", "tid": 35568, "ts": 11456995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae132f40", "tid": 35568, "ts": 11457082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131af0", "tid": 35568, "ts": 11457168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131fd0", "tid": 35568, "ts": 11457255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1342c0", "tid": 35568, "ts": 11457341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae133eb0", "tid": 35568, "ts": 11457428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae134120", "tid": 35568, "ts": 11457514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e6f0", "tid": 35568, "ts": 11457600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e3b0", "tid": 35568, "ts": 11457686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130ec0", "tid": 35568, "ts": 11457773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130d20", "tid": 35568, "ts": 11457859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1309e0", "tid": 35568, "ts": 11457946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130020", "tid": 35568, "ts": 11458032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fc10", "tid": 35568, "ts": 11458119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fa70", "tid": 35568, "ts": 11458206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130770", "tid": 35568, "ts": 11458293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1305d0", "tid": 35568, "ts": 11458380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1306a0", "tid": 35568, "ts": 11458467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1301c0", "tid": 35568, "ts": 11458553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130500", "tid": 35568, "ts": 11458640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e210", "tid": 35568, "ts": 11458727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fe80", "tid": 35568, "ts": 11458813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f590", "tid": 35568, "ts": 11458899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e480", "tid": 35568, "ts": 11458986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f0b0", "tid": 35568, "ts": 11459072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1300f0", "tid": 35568, "ts": 11459159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fb40", "tid": 35568, "ts": 11459246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae130430", "tid": 35568, "ts": 11459333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e140", "tid": 35568, "ts": 11459420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ebd0", "tid": 35568, "ts": 11459507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fce0", "tid": 35568, "ts": 11459594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12eca0", "tid": 35568, "ts": 11459681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f4c0", "tid": 35568, "ts": 11459768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae131060", "tid": 35568, "ts": 11459853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12fdb0", "tid": 35568, "ts": 11459939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e2e0", "tid": 35568, "ts": 11460026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12f800", "tid": 35568, "ts": 11460112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12e960", "tid": 35568, "ts": 11460199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ee40", "tid": 35568, "ts": 11460285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d510", "tid": 35568, "ts": 11460372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cb50", "tid": 35568, "ts": 11460458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c260", "tid": 35568, "ts": 11460545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ca80", "tid": 35568, "ts": 11460631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ba40", "tid": 35568, "ts": 11460717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b080", "tid": 35568, "ts": 11460804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d2a0", "tid": 35568, "ts": 11460890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b8a0", "tid": 35568, "ts": 11460976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aba0", "tid": 35568, "ts": 11461063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d370", "tid": 35568, "ts": 11461150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aa00", "tid": 35568, "ts": 11461237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c8e0", "tid": 35568, "ts": 11461324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d9f0", "tid": 35568, "ts": 11461411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12be50", "tid": 35568, "ts": 11461498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b700", "tid": 35568, "ts": 11461584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c740", "tid": 35568, "ts": 11461671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bd80", "tid": 35568, "ts": 11461757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d920", "tid": 35568, "ts": 11461844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12aee0", "tid": 35568, "ts": 11461930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bbe0", "tid": 35568, "ts": 11462017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cdc0", "tid": 35568, "ts": 11462104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c5a0", "tid": 35568, "ts": 11462190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cf60", "tid": 35568, "ts": 11462277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b3c0", "tid": 35568, "ts": 11462363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ccf0", "tid": 35568, "ts": 11462451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b490", "tid": 35568, "ts": 11462538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12d100", "tid": 35568, "ts": 11462625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12ad40", "tid": 35568, "ts": 11462711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12b2f0", "tid": 35568, "ts": 11462798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12c9b0", "tid": 35568, "ts": 11462884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12cc20", "tid": 35568, "ts": 11462970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12bb10", "tid": 35568, "ts": 11463057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127ae0", "tid": 35568, "ts": 11463144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127870", "tid": 35568, "ts": 11463230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1277a0", "tid": 35568, "ts": 11463316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a5f0", "tid": 35568, "ts": 11463403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a520", "tid": 35568, "ts": 11463489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129000", "tid": 35568, "ts": 11463576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128f30", "tid": 35568, "ts": 11463663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127fc0", "tid": 35568, "ts": 11463750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a450", "tid": 35568, "ts": 11463837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a1e0", "tid": 35568, "ts": 11463923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127bb0", "tid": 35568, "ts": 11464010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129c30", "tid": 35568, "ts": 11464097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128640", "tid": 35568, "ts": 11464183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a040", "tid": 35568, "ts": 11464270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128570", "tid": 35568, "ts": 11464356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1299c0", "tid": 35568, "ts": 11464443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127e20", "tid": 35568, "ts": 11464530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129820", "tid": 35568, "ts": 11464617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae127d50", "tid": 35568, "ts": 11464704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129680", "tid": 35568, "ts": 11464790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128a50", "tid": 35568, "ts": 11464878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128300", "tid": 35568, "ts": 11464965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128980", "tid": 35568, "ts": 11465052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae12a380", "tid": 35568, "ts": 11465138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1288b0", "tid": 35568, "ts": 11465225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1290d0", "tid": 35568, "ts": 11465312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128e60", "tid": 35568, "ts": 11465410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae128b20", "tid": 35568, "ts": 11465498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1276d0", "tid": 35568, "ts": 11465585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129270", "tid": 35568, "ts": 11465671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae1284a0", "tid": 35568, "ts": 11465758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae129410", "tid": 35568, "ts": 11465845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2669d0", "tid": 35568, "ts": 11465935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a92d0", "tid": 35568, "ts": 11466023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8360", "tid": 35568, "ts": 11466111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8770", "tid": 35568, "ts": 11466199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6140", "tid": 35568, "ts": 11466286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7800", "tid": 35568, "ts": 11466373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbce40", "tid": 35568, "ts": 11466460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcca0", "tid": 35568, "ts": 11466546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbdb40", "tid": 35568, "ts": 11466634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcb00", "tid": 35568, "ts": 11466721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbca30", "tid": 35568, "ts": 11466808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc890", "tid": 35568, "ts": 11466894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbda70", "tid": 35568, "ts": 11466981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd9a0", "tid": 35568, "ts": 11467068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe0f0", "tid": 35568, "ts": 11467155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd8d0", "tid": 35568, "ts": 11467241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc7c0", "tid": 35568, "ts": 11467329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd730", "tid": 35568, "ts": 11467415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe360", "tid": 35568, "ts": 11467502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe910", "tid": 35568, "ts": 11467588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd590", "tid": 35568, "ts": 11467675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe5d0", "tid": 35568, "ts": 11467762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf060", "tid": 35568, "ts": 11467848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd0b0", "tid": 35568, "ts": 11467935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf2d0", "tid": 35568, "ts": 11468027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd4c0", "tid": 35568, "ts": 11468115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf200", "tid": 35568, "ts": 11468201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcd70", "tid": 35568, "ts": 11468288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe770", "tid": 35568, "ts": 11468375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc550", "tid": 35568, "ts": 11468462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc3b0", "tid": 35568, "ts": 11468549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbe6a0", "tid": 35568, "ts": 11468635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd3f0", "tid": 35568, "ts": 11468722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbc480", "tid": 35568, "ts": 11468809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd320", "tid": 35568, "ts": 11468896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbd800", "tid": 35568, "ts": 11468983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbcfe0", "tid": 35568, "ts": 11469070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbeab0", "tid": 35568, "ts": 11469157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa700", "tid": 35568, "ts": 11469244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa560", "tid": 35568, "ts": 11469330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa3c0", "tid": 35568, "ts": 11469417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa970", "tid": 35568, "ts": 11469504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa2f0", "tid": 35568, "ts": 11469591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfaa40", "tid": 35568, "ts": 11469678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9fb0", "tid": 35568, "ts": 11469766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa8a0", "tid": 35568, "ts": 11469854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb5a0", "tid": 35568, "ts": 11469941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc780", "tid": 35568, "ts": 11470033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb4d0", "tid": 35568, "ts": 11470122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb400", "tid": 35568, "ts": 11470218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb190", "tid": 35568, "ts": 11470306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa150", "tid": 35568, "ts": 11470393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb260", "tid": 35568, "ts": 11470480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc030", "tid": 35568, "ts": 11470568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfa7d0", "tid": 35568, "ts": 11470654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbf60", "tid": 35568, "ts": 11470741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc370", "tid": 35568, "ts": 11470828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfced0", "tid": 35568, "ts": 11470914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbdc0", "tid": 35568, "ts": 11471000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbcf0", "tid": 35568, "ts": 11471086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfbc20", "tid": 35568, "ts": 11471173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfaf20", "tid": 35568, "ts": 11471260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfcb90", "tid": 35568, "ts": 11471347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfce00", "tid": 35568, "ts": 11471433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb0c0", "tid": 35568, "ts": 11471520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfacb0", "tid": 35568, "ts": 11471607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfc9f0", "tid": 35568, "ts": 11471694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfb740", "tid": 35568, "ts": 11471781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dfaff0", "tid": 35568, "ts": 11471868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9a00", "tid": 35568, "ts": 11471954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9860", "tid": 35568, "ts": 11472040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df85b0", "tid": 35568, "ts": 11472127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8340", "tid": 35568, "ts": 11472214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9450", "tid": 35568, "ts": 11472300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9380", "tid": 35568, "ts": 11472387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7160", "tid": 35568, "ts": 11472473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7d90", "tid": 35568, "ts": 11472559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7bf0", "tid": 35568, "ts": 11472646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7a50", "tid": 35568, "ts": 11472733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df84e0", "tid": 35568, "ts": 11472819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6ae0", "tid": 35568, "ts": 11472906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df78b0", "tid": 35568, "ts": 11472993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df77e0", "tid": 35568, "ts": 11473080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9040", "tid": 35568, "ts": 11473166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8d00", "tid": 35568, "ts": 11473253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7710", "tid": 35568, "ts": 11473339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8c30", "tid": 35568, "ts": 11473426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8000", "tid": 35568, "ts": 11473513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7e60", "tid": 35568, "ts": 11473600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df95f0", "tid": 35568, "ts": 11473686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8dd0", "tid": 35568, "ts": 11473773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9ad0", "tid": 35568, "ts": 11473859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6ef0", "tid": 35568, "ts": 11473946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df7090", "tid": 35568, "ts": 11474033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df8b60", "tid": 35568, "ts": 11474120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df91e0", "tid": 35568, "ts": 11474206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df9ba0", "tid": 35568, "ts": 11474292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df88f0", "tid": 35568, "ts": 11474379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6e20", "tid": 35568, "ts": 11474466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df74a0", "tid": 35568, "ts": 11474552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df73d0", "tid": 35568, "ts": 11474638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df67a0", "tid": 35568, "ts": 11474725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6120", "tid": 35568, "ts": 11474812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5de0", "tid": 35568, "ts": 11474899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5c40", "tid": 35568, "ts": 11474986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5010", "tid": 35568, "ts": 11475072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4f40", "tid": 35568, "ts": 11475159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5b70", "tid": 35568, "ts": 11475245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5f80", "tid": 35568, "ts": 11475333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5350", "tid": 35568, "ts": 11475420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df55c0", "tid": 35568, "ts": 11475507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4a60", "tid": 35568, "ts": 11475594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4650", "tid": 35568, "ts": 11475680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3af0", "tid": 35568, "ts": 11475767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4580", "tid": 35568, "ts": 11475853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df66d0", "tid": 35568, "ts": 11475939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5eb0", "tid": 35568, "ts": 11476025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df51b0", "tid": 35568, "ts": 11476112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4720", "tid": 35568, "ts": 11476199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df50e0", "tid": 35568, "ts": 11476286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df4170", "tid": 35568, "ts": 11476373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3880", "tid": 35568, "ts": 11476460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3f00", "tid": 35568, "ts": 11476546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df54f0", "tid": 35568, "ts": 11476632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6390", "tid": 35568, "ts": 11476719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df6870", "tid": 35568, "ts": 11476805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df44b0", "tid": 35568, "ts": 11476892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3d60", "tid": 35568, "ts": 11476979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df62c0", "tid": 35568, "ts": 11477066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3c90", "tid": 35568, "ts": 11477153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df36e0", "tid": 35568, "ts": 11477239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3e30", "tid": 35568, "ts": 11477326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df5420", "tid": 35568, "ts": 11477412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2ec0", "tid": 35568, "ts": 11477498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df33a0", "tid": 35568, "ts": 11477585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2c50", "tid": 35568, "ts": 11477672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3130", "tid": 35568, "ts": 11477759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2500", "tid": 35568, "ts": 11477846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df06f0", "tid": 35568, "ts": 11477933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3200", "tid": 35568, "ts": 11478019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1db0", "tid": 35568, "ts": 11478106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1b40", "tid": 35568, "ts": 11478193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1a70", "tid": 35568, "ts": 11478280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df25d0", "tid": 35568, "ts": 11478370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0d70", "tid": 35568, "ts": 11478458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df07c0", "tid": 35568, "ts": 11478544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0960", "tid": 35568, "ts": 11478631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df02e0", "tid": 35568, "ts": 11478718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df19a0", "tid": 35568, "ts": 11478805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0550", "tid": 35568, "ts": 11478892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2430", "tid": 35568, "ts": 11478979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2df0", "tid": 35568, "ts": 11479066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1250", "tid": 35568, "ts": 11479152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df29e0", "tid": 35568, "ts": 11479240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1ce0", "tid": 35568, "ts": 11479326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0890", "tid": 35568, "ts": 11479412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df18d0", "tid": 35568, "ts": 11479498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1180", "tid": 35568, "ts": 11479585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df14c0", "tid": 35568, "ts": 11479671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2290", "tid": 35568, "ts": 11479757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df21c0", "tid": 35568, "ts": 11479844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df3470", "tid": 35568, "ts": 11479931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df03b0", "tid": 35568, "ts": 11480018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df2f90", "tid": 35568, "ts": 11480103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df1590", "tid": 35568, "ts": 11480190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedbe0", "tid": 35568, "ts": 11480276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dece10", "tid": 35568, "ts": 11480364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedd80", "tid": 35568, "ts": 11480450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedb10", "tid": 35568, "ts": 11480536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deda40", "tid": 35568, "ts": 11480624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def920", "tid": 35568, "ts": 11480710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def780", "tid": 35568, "ts": 11480796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def6b0", "tid": 35568, "ts": 11480883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def9f0", "tid": 35568, "ts": 11480970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def5e0", "tid": 35568, "ts": 11481120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee740", "tid": 35568, "ts": 11481208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5def370", "tid": 35568, "ts": 11481295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deec20", "tid": 35568, "ts": 11481381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deef60", "tid": 35568, "ts": 11481468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dedcb0", "tid": 35568, "ts": 11481554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deffa0", "tid": 35568, "ts": 11481641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee670", "tid": 35568, "ts": 11481728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee400", "tid": 35568, "ts": 11481815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deea80", "tid": 35568, "ts": 11481901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee190", "tid": 35568, "ts": 11481988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded560", "tid": 35568, "ts": 11482074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5df0070", "tid": 35568, "ts": 11482160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded150", "tid": 35568, "ts": 11482247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deeb50", "tid": 35568, "ts": 11482334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deedc0", "tid": 35568, "ts": 11482421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded630", "tid": 35568, "ts": 11482508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decee0", "tid": 35568, "ts": 11482595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ded2f0", "tid": 35568, "ts": 11482682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee330", "tid": 35568, "ts": 11482769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee260", "tid": 35568, "ts": 11482856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deee90", "tid": 35568, "ts": 11482942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dee8e0", "tid": 35568, "ts": 11483029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea300", "tid": 35568, "ts": 11483116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9bb0", "tid": 35568, "ts": 11483202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decc70", "tid": 35568, "ts": 11483289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5decba0", "tid": 35568, "ts": 11483376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deca00", "tid": 35568, "ts": 11483463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec6c0", "tid": 35568, "ts": 11483550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec5f0", "tid": 35568, "ts": 11483636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea160", "tid": 35568, "ts": 11483724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9fc0", "tid": 35568, "ts": 11483811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9940", "tid": 35568, "ts": 11483898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb000", "tid": 35568, "ts": 11483985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec1e0", "tid": 35568, "ts": 11484072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb410", "tid": 35568, "ts": 11484159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec040", "tid": 35568, "ts": 11484246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb340", "tid": 35568, "ts": 11484333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debea0", "tid": 35568, "ts": 11484419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea640", "tid": 35568, "ts": 11484506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dec930", "tid": 35568, "ts": 11484592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea4a0", "tid": 35568, "ts": 11484679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debdd0", "tid": 35568, "ts": 11484765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb5b0", "tid": 35568, "ts": 11484852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debf70", "tid": 35568, "ts": 11484939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deaa50", "tid": 35568, "ts": 11485026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb8f0", "tid": 35568, "ts": 11485112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb820", "tid": 35568, "ts": 11485199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb4e0", "tid": 35568, "ts": 11485285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9e20", "tid": 35568, "ts": 11485372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deb0d0", "tid": 35568, "ts": 11485459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dea7e0", "tid": 35568, "ts": 11485546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5debc30", "tid": 35568, "ts": 11485633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5deacc0", "tid": 35568, "ts": 11485719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9c80", "tid": 35568, "ts": 11485806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7cd0", "tid": 35568, "ts": 11485892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de78c0", "tid": 35568, "ts": 11485979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de73e0", "tid": 35568, "ts": 11486066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7240", "tid": 35568, "ts": 11486153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6f00", "tid": 35568, "ts": 11486240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de74b0", "tid": 35568, "ts": 11486330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7990", "tid": 35568, "ts": 11486416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6af0", "tid": 35568, "ts": 11486504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de92c0", "tid": 35568, "ts": 11486591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7b30", "tid": 35568, "ts": 11486677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de91f0", "tid": 35568, "ts": 11486764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6d60", "tid": 35568, "ts": 11486850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8de0", "tid": 35568, "ts": 11486937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6880", "tid": 35568, "ts": 11487024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7f40", "tid": 35568, "ts": 11487110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8900", "tid": 35568, "ts": 11487196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6a20", "tid": 35568, "ts": 11487282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de77f0", "tid": 35568, "ts": 11487369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7720", "tid": 35568, "ts": 11487455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de67b0", "tid": 35568, "ts": 11487542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de97a0", "tid": 35568, "ts": 11487629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9120", "tid": 35568, "ts": 11487716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8280", "tid": 35568, "ts": 11487802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8f80", "tid": 35568, "ts": 11487889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de96d0", "tid": 35568, "ts": 11487976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8350", "tid": 35568, "ts": 11488062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7310", "tid": 35568, "ts": 11488149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de81b0", "tid": 35568, "ts": 11488235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de9600", "tid": 35568, "ts": 11488321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6fd0", "tid": 35568, "ts": 11488408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de7da0", "tid": 35568, "ts": 11488495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de8eb0", "tid": 35568, "ts": 11488582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4c10", "tid": 35568, "ts": 11488668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4730", "tid": 35568, "ts": 11488755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4180", "tid": 35568, "ts": 11488842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de33b0", "tid": 35568, "ts": 11488928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6470", "tid": 35568, "ts": 11489015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3620", "tid": 35568, "ts": 11489101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4b40", "tid": 35568, "ts": 11489187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5f90", "tid": 35568, "ts": 11489274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5d20", "tid": 35568, "ts": 11489361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3fe0", "tid": 35568, "ts": 11489447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5ec0", "tid": 35568, "ts": 11489533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4590", "tid": 35568, "ts": 11489620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5c50", "tid": 35568, "ts": 11489706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5b80", "tid": 35568, "ts": 11489792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5910", "tid": 35568, "ts": 11489878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3ca0", "tid": 35568, "ts": 11489964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3b00", "tid": 35568, "ts": 11490050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de56a0", "tid": 35568, "ts": 11490136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5360", "tid": 35568, "ts": 11490223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de55d0", "tid": 35568, "ts": 11490309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de32e0", "tid": 35568, "ts": 11490396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5020", "tid": 35568, "ts": 11490483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4a70", "tid": 35568, "ts": 11490570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de4320", "tid": 35568, "ts": 11490656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6200", "tid": 35568, "ts": 11490743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de43f0", "tid": 35568, "ts": 11490830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de6130", "tid": 35568, "ts": 11490916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de36f0", "tid": 35568, "ts": 11491003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de49a0", "tid": 35568, "ts": 11491089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de5430", "tid": 35568, "ts": 11491176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3bd0", "tid": 35568, "ts": 11491262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3890", "tid": 35568, "ts": 11491348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1c20", "tid": 35568, "ts": 11491435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1b50", "tid": 35568, "ts": 11491521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de02f0", "tid": 35568, "ts": 11491608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1a80", "tid": 35568, "ts": 11491695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de14d0", "tid": 35568, "ts": 11491781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0f20", "tid": 35568, "ts": 11491868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2ac0", "tid": 35568, "ts": 11491954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de3070", "tid": 35568, "ts": 11492040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de08a0", "tid": 35568, "ts": 11492126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2510", "tid": 35568, "ts": 11492213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1cf0", "tid": 35568, "ts": 11492300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2920", "tid": 35568, "ts": 11492386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1f60", "tid": 35568, "ts": 11492473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1190", "tid": 35568, "ts": 11492560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2fa0", "tid": 35568, "ts": 11492646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0ff0", "tid": 35568, "ts": 11492733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1260", "tid": 35568, "ts": 11492820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0080", "tid": 35568, "ts": 11492906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfee0", "tid": 35568, "ts": 11492992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2780", "tid": 35568, "ts": 11493078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2e00", "tid": 35568, "ts": 11493164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de25e0", "tid": 35568, "ts": 11493251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0be0", "tid": 35568, "ts": 11493338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de22a0", "tid": 35568, "ts": 11493424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0700", "tid": 35568, "ts": 11493514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de21d0", "tid": 35568, "ts": 11493602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2100", "tid": 35568, "ts": 11493688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2d30", "tid": 35568, "ts": 11493775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de1330", "tid": 35568, "ts": 11493862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de0cb0", "tid": 35568, "ts": 11493948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfd40", "tid": 35568, "ts": 11494034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5de2030", "tid": 35568, "ts": 11494121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde340", "tid": 35568, "ts": 11494208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde1a0", "tid": 35568, "ts": 11494294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddf30", "tid": 35568, "ts": 11494380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddcc0", "tid": 35568, "ts": 11494466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd8b0", "tid": 35568, "ts": 11494576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd710", "tid": 35568, "ts": 11494675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcfc0", "tid": 35568, "ts": 11494762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcd50", "tid": 35568, "ts": 11494849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcbb0", "tid": 35568, "ts": 11494936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfc70", "tid": 35568, "ts": 11495023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfba0", "tid": 35568, "ts": 11495109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf5f0", "tid": 35568, "ts": 11495196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf2b0", "tid": 35568, "ts": 11495283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf040", "tid": 35568, "ts": 11495369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddde60", "tid": 35568, "ts": 11495455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddec30", "tid": 35568, "ts": 11495541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd230", "tid": 35568, "ts": 11495627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddeb60", "tid": 35568, "ts": 11495714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf380", "tid": 35568, "ts": 11495800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde5b0", "tid": 35568, "ts": 11495887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcef0", "tid": 35568, "ts": 11495973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddedd0", "tid": 35568, "ts": 11496061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd4a0", "tid": 35568, "ts": 11496151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dddbf0", "tid": 35568, "ts": 11496238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde680", "tid": 35568, "ts": 11496325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddcae0", "tid": 35568, "ts": 11496411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde750", "tid": 35568, "ts": 11496497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddf790", "tid": 35568, "ts": 11496583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddfa00", "tid": 35568, "ts": 11496701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddd160", "tid": 35568, "ts": 11496788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddea90", "tid": 35568, "ts": 11496874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dde9c0", "tid": 35568, "ts": 11496960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda990", "tid": 35568, "ts": 11497047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbc40", "tid": 35568, "ts": 11497133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda240", "tid": 35568, "ts": 11497219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc2c0", "tid": 35568, "ts": 11497306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9bc0", "tid": 35568, "ts": 11497392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbde0", "tid": 35568, "ts": 11497478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb690", "tid": 35568, "ts": 11497565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb0e0", "tid": 35568, "ts": 11497651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb010", "tid": 35568, "ts": 11497738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbaa0", "tid": 35568, "ts": 11497823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9f00", "tid": 35568, "ts": 11497909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc120", "tid": 35568, "ts": 11497996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9880", "tid": 35568, "ts": 11498084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd97b0", "tid": 35568, "ts": 11498170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddae70", "tid": 35568, "ts": 11498255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9fd0", "tid": 35568, "ts": 11498342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc050", "tid": 35568, "ts": 11498429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbf80", "tid": 35568, "ts": 11498515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbeb0", "tid": 35568, "ts": 11498601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb900", "tid": 35568, "ts": 11498688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb9d0", "tid": 35568, "ts": 11498773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc600", "tid": 35568, "ts": 11498860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda650", "tid": 35568, "ts": 11498947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9950", "tid": 35568, "ts": 11499033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddacd0", "tid": 35568, "ts": 11499120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddbd10", "tid": 35568, "ts": 11499206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddb830", "tid": 35568, "ts": 11499293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9d60", "tid": 35568, "ts": 11499379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda170", "tid": 35568, "ts": 11499466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dda3e0", "tid": 35568, "ts": 11499552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc530", "tid": 35568, "ts": 11499638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5ddc390", "tid": 35568, "ts": 11499725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd74c0", "tid": 35568, "ts": 11499812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7180", "tid": 35568, "ts": 11499899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6ca0", "tid": 35568, "ts": 11499984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd67c0", "tid": 35568, "ts": 11500070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6550", "tid": 35568, "ts": 11500157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7b40", "tid": 35568, "ts": 11500243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd92d0", "tid": 35568, "ts": 11500329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9200", "tid": 35568, "ts": 11500416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8840", "tid": 35568, "ts": 11500502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7a70", "tid": 35568, "ts": 11500589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd79a0", "tid": 35568, "ts": 11500676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8f90", "tid": 35568, "ts": 11500762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8290", "tid": 35568, "ts": 11500848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd78d0", "tid": 35568, "ts": 11500935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8b80", "tid": 35568, "ts": 11501021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd73f0", "tid": 35568, "ts": 11501107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6d70", "tid": 35568, "ts": 11501193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9470", "tid": 35568, "ts": 11501279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd9130", "tid": 35568, "ts": 11501365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd66f0", "tid": 35568, "ts": 11501451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8d20", "tid": 35568, "ts": 11501538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd62e0", "tid": 35568, "ts": 11501624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8430", "tid": 35568, "ts": 11501710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8500", "tid": 35568, "ts": 11501796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8c50", "tid": 35568, "ts": 11501882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7ce0", "tid": 35568, "ts": 11501969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd8df0", "tid": 35568, "ts": 11502055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6f10", "tid": 35568, "ts": 11502141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7660", "tid": 35568, "ts": 11502227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd7590", "tid": 35568, "ts": 11502313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd86a0", "tid": 35568, "ts": 11502399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6620", "tid": 35568, "ts": 11502485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2fb0", "tid": 35568, "ts": 11502572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd59f0", "tid": 35568, "ts": 11502658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5440", "tid": 35568, "ts": 11502745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5c60", "tid": 35568, "ts": 11502831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5850", "tid": 35568, "ts": 11502917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd52a0", "tid": 35568, "ts": 11503003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd49b0", "tid": 35568, "ts": 11503089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4740", "tid": 35568, "ts": 11503176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5030", "tid": 35568, "ts": 11503262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd6070", "tid": 35568, "ts": 11503348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd40c0", "tid": 35568, "ts": 11503434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4f60", "tid": 35568, "ts": 11503520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4dc0", "tid": 35568, "ts": 11503606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3e50", "tid": 35568, "ts": 11503693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd44d0", "tid": 35568, "ts": 11503779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd33c0", "tid": 35568, "ts": 11503865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3a40", "tid": 35568, "ts": 11503951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3970", "tid": 35568, "ts": 11504037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd38a0", "tid": 35568, "ts": 11504123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5fa0", "tid": 35568, "ts": 11504209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3ff0", "tid": 35568, "ts": 11504295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3150", "tid": 35568, "ts": 11504381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4330", "tid": 35568, "ts": 11504467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2ee0", "tid": 35568, "ts": 11504554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5e00", "tid": 35568, "ts": 11504641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd37d0", "tid": 35568, "ts": 11504728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4c20", "tid": 35568, "ts": 11504816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4260", "tid": 35568, "ts": 11504904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd4b50", "tid": 35568, "ts": 11504991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3560", "tid": 35568, "ts": 11505087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd5b90", "tid": 35568, "ts": 11505174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd3220", "tid": 35568, "ts": 11505260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd26c0", "tid": 35568, "ts": 11505347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1820", "tid": 35568, "ts": 11505433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1340", "tid": 35568, "ts": 11505519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1dd0", "tid": 35568, "ts": 11505605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0f30", "tid": 35568, "ts": 11505691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0a50", "tid": 35568, "ts": 11505778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfef0", "tid": 35568, "ts": 11505864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd21e0", "tid": 35568, "ts": 11505950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf940", "tid": 35568, "ts": 11506041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0710", "tid": 35568, "ts": 11506128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1c30", "tid": 35568, "ts": 11506214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0bf0", "tid": 35568, "ts": 11506300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0980", "tid": 35568, "ts": 11506387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfa10", "tid": 35568, "ts": 11506473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2450", "tid": 35568, "ts": 11506559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2860", "tid": 35568, "ts": 11506645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0b20", "tid": 35568, "ts": 11506731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0570", "tid": 35568, "ts": 11506818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0300", "tid": 35568, "ts": 11506904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1750", "tid": 35568, "ts": 11506991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd22b0", "tid": 35568, "ts": 11507077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2040", "tid": 35568, "ts": 11507163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd19c0", "tid": 35568, "ts": 11507249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd04a0", "tid": 35568, "ts": 11507336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1ea0", "tid": 35568, "ts": 11507422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1000", "tid": 35568, "ts": 11507509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd0230", "tid": 35568, "ts": 11507595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcfc80", "tid": 35568, "ts": 11507681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd11a0", "tid": 35568, "ts": 11507768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd18f0", "tid": 35568, "ts": 11507853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd1f70", "tid": 35568, "ts": 11507939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dd2790", "tid": 35568, "ts": 11508026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdda0", "tid": 35568, "ts": 11508112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd650", "tid": 35568, "ts": 11508198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd3e0", "tid": 35568, "ts": 11508284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd240", "tid": 35568, "ts": 11508370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dceaa0", "tid": 35568, "ts": 11508456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdc00", "tid": 35568, "ts": 11508542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccaf0", "tid": 35568, "ts": 11508629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc610", "tid": 35568, "ts": 11508715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce760", "tid": 35568, "ts": 11508801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcd170", "tid": 35568, "ts": 11508887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf050", "tid": 35568, "ts": 11508974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcef80", "tid": 35568, "ts": 11509060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc540", "tid": 35568, "ts": 11509146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce690", "tid": 35568, "ts": 11509232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf7a0", "tid": 35568, "ts": 11509318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdb30", "tid": 35568, "ts": 11509404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc880", "tid": 35568, "ts": 11509490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dced10", "tid": 35568, "ts": 11509576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf870", "tid": 35568, "ts": 11509662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce1b0", "tid": 35568, "ts": 11509748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf1f0", "tid": 35568, "ts": 11509834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dccf00", "tid": 35568, "ts": 11509920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce830", "tid": 35568, "ts": 11510005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcf2c0", "tid": 35568, "ts": 11510092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dce280", "tid": 35568, "ts": 11510178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcdf40", "tid": 35568, "ts": 11510264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9d70", "tid": 35568, "ts": 11510351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9bd0", "tid": 35568, "ts": 11510438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb9e0", "tid": 35568, "ts": 11510524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb430", "tid": 35568, "ts": 11510610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc470", "tid": 35568, "ts": 11510696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcadb0", "tid": 35568, "ts": 11510782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbd20", "tid": 35568, "ts": 11510868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc200", "tid": 35568, "ts": 11510954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb5d0", "tid": 35568, "ts": 11511039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb360", "tid": 35568, "ts": 11511125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9a30", "tid": 35568, "ts": 11511212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcac10", "tid": 35568, "ts": 11511298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca4c0", "tid": 35568, "ts": 11511383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca9a0", "tid": 35568, "ts": 11511469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc130", "tid": 35568, "ts": 11511556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca3f0", "tid": 35568, "ts": 11511642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcaa70", "tid": 35568, "ts": 11511728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca800", "tid": 35568, "ts": 11511815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc3a0", "tid": 35568, "ts": 11511901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb910", "tid": 35568, "ts": 11511987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb020", "tid": 35568, "ts": 11512073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca730", "tid": 35568, "ts": 11512159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc9890", "tid": 35568, "ts": 11512298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcc060", "tid": 35568, "ts": 11512473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcb1c0", "tid": 35568, "ts": 11512582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbdf0", "tid": 35568, "ts": 11512724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcbb80", "tid": 35568, "ts": 11512861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca320", "tid": 35568, "ts": 11512974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca180", "tid": 35568, "ts": 11513083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca250", "tid": 35568, "ts": 11513221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dca0b0", "tid": 35568, "ts": 11513387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dcae80", "tid": 35568, "ts": 11513473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6cb0", "tid": 35568, "ts": 11513560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6630", "tid": 35568, "ts": 11513646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc78e0", "tid": 35568, "ts": 11513732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6490", "tid": 35568, "ts": 11513819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc63c0", "tid": 35568, "ts": 11513905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc62f0", "tid": 35568, "ts": 11513991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5fb0", "tid": 35568, "ts": 11514081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc68a0", "tid": 35568, "ts": 11514168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6220", "tid": 35568, "ts": 11514256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8b90", "tid": 35568, "ts": 11514342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc89f0", "tid": 35568, "ts": 11514428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8510", "tid": 35568, "ts": 11514514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8ed0", "tid": 35568, "ts": 11514601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc81d0", "tid": 35568, "ts": 11514687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6be0", "tid": 35568, "ts": 11514774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7f60", "tid": 35568, "ts": 11514860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6d80", "tid": 35568, "ts": 11514946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5e10", "tid": 35568, "ts": 11515032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc82a0", "tid": 35568, "ts": 11515118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6700", "tid": 35568, "ts": 11515204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7190", "tid": 35568, "ts": 11515291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5d40", "tid": 35568, "ts": 11515378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7cf0", "tid": 35568, "ts": 11515465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6080", "tid": 35568, "ts": 11515551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7330", "tid": 35568, "ts": 11515637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6f20", "tid": 35568, "ts": 11515723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc70c0", "tid": 35568, "ts": 11515810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8850", "tid": 35568, "ts": 11515896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc6ff0", "tid": 35568, "ts": 11515983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7a80", "tid": 35568, "ts": 11516071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc7670", "tid": 35568, "ts": 11516157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc8440", "tid": 35568, "ts": 11516244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4820", "tid": 35568, "ts": 11516330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4680", "tid": 35568, "ts": 11516417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc38b0", "tid": 35568, "ts": 11516503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc44e0", "tid": 35568, "ts": 11516590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3570", "tid": 35568, "ts": 11516676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc34a0", "tid": 35568, "ts": 11516763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc40d0", "tid": 35568, "ts": 11516849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4340", "tid": 35568, "ts": 11516935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3640", "tid": 35568, "ts": 11517021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3230", "tid": 35568, "ts": 11517107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3160", "tid": 35568, "ts": 11517193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3a50", "tid": 35568, "ts": 11517279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc3f30", "tid": 35568, "ts": 11517366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4d00", "tid": 35568, "ts": 11517456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5ba0", "tid": 35568, "ts": 11517543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc37e0", "tid": 35568, "ts": 11517630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5a00", "tid": 35568, "ts": 11517716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2ae0", "tid": 35568, "ts": 11517802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2a10", "tid": 35568, "ts": 11517890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4b60", "tid": 35568, "ts": 11517976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2940", "tid": 35568, "ts": 11518062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc41a0", "tid": 35568, "ts": 11518153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4a90", "tid": 35568, "ts": 11518240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc56c0", "tid": 35568, "ts": 11518327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5790", "tid": 35568, "ts": 11518413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc49c0", "tid": 35568, "ts": 11518499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5040", "tid": 35568, "ts": 11518585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc52b0", "tid": 35568, "ts": 11518671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc5520", "tid": 35568, "ts": 11518757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2c80", "tid": 35568, "ts": 11518843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4f70", "tid": 35568, "ts": 11518930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc4000", "tid": 35568, "ts": 11519015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0650", "tid": 35568, "ts": 11519102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0240", "tid": 35568, "ts": 11519188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0170", "tid": 35568, "ts": 11519274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbffd0", "tid": 35568, "ts": 11519360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfe30", "tid": 35568, "ts": 11519446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc27a0", "tid": 35568, "ts": 11519533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2460", "tid": 35568, "ts": 11519619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc26d0", "tid": 35568, "ts": 11519706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2390", "tid": 35568, "ts": 11519792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2050", "tid": 35568, "ts": 11519879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf7b0", "tid": 35568, "ts": 11519965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1de0", "tid": 35568, "ts": 11520051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf6e0", "tid": 35568, "ts": 11520136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1760", "tid": 35568, "ts": 11520223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf540", "tid": 35568, "ts": 11520309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0e70", "tid": 35568, "ts": 11520396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc14f0", "tid": 35568, "ts": 11520482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc22c0", "tid": 35568, "ts": 11520568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbfa20", "tid": 35568, "ts": 11520654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1c40", "tid": 35568, "ts": 11520740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0da0", "tid": 35568, "ts": 11520826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0f40", "tid": 35568, "ts": 11520912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0310", "tid": 35568, "ts": 11520998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc2530", "tid": 35568, "ts": 11521085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1420", "tid": 35568, "ts": 11521170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0a60", "tid": 35568, "ts": 11521256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc0b30", "tid": 35568, "ts": 11521342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dbf610", "tid": 35568, "ts": 11521428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc07f0", "tid": 35568, "ts": 11521515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1690", "tid": 35568, "ts": 11521601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1900", "tid": 35568, "ts": 11521688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234e5dc1280", "tid": 35568, "ts": 11521774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270020", "tid": 35568, "ts": 11521860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f180", "tid": 35568, "ts": 11521946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fdb0", "tid": 35568, "ts": 11522032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f0b0", "tid": 35568, "ts": 11522119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e960", "tid": 35568, "ts": 11522204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f730", "tid": 35568, "ts": 11522290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e620", "tid": 35568, "ts": 11522377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e480", "tid": 35568, "ts": 11522462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f320", "tid": 35568, "ts": 11522549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e6f0", "tid": 35568, "ts": 11522635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f4c0", "tid": 35568, "ts": 11522722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f800", "tid": 35568, "ts": 11522808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fc10", "tid": 35568, "ts": 11522894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270ec0", "tid": 35568, "ts": 11522980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ee40", "tid": 35568, "ts": 11523067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26f8d0", "tid": 35568, "ts": 11523153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e3b0", "tid": 35568, "ts": 11523239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270d20", "tid": 35568, "ts": 11523326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26eca0", "tid": 35568, "ts": 11523412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270910", "tid": 35568, "ts": 11523498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270c50", "tid": 35568, "ts": 11523585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26fe80", "tid": 35568, "ts": 11523671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ef10", "tid": 35568, "ts": 11523758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dd30", "tid": 35568, "ts": 11523844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270b80", "tid": 35568, "ts": 11523931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270ab0", "tid": 35568, "ts": 11524017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26e210", "tid": 35568, "ts": 11524105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2709e0", "tid": 35568, "ts": 11524191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270770", "tid": 35568, "ts": 11524277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae270290", "tid": 35568, "ts": 11524364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26eb00", "tid": 35568, "ts": 11524451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c810", "tid": 35568, "ts": 11524538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c330", "tid": 35568, "ts": 11524624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b490", "tid": 35568, "ts": 11524710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c190", "tid": 35568, "ts": 11524796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c740", "tid": 35568, "ts": 11524883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b080", "tid": 35568, "ts": 11524969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bff0", "tid": 35568, "ts": 11525055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26be50", "tid": 35568, "ts": 11525141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ca80", "tid": 35568, "ts": 11525228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bcb0", "tid": 35568, "ts": 11525314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c0c0", "tid": 35568, "ts": 11525400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ae10", "tid": 35568, "ts": 11525487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ccf0", "tid": 35568, "ts": 11525574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d9f0", "tid": 35568, "ts": 11525660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bd80", "tid": 35568, "ts": 11525747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bb10", "tid": 35568, "ts": 11525833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c9b0", "tid": 35568, "ts": 11525920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a930", "tid": 35568, "ts": 11526006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26bbe0", "tid": 35568, "ts": 11526092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cf60", "tid": 35568, "ts": 11526179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b970", "tid": 35568, "ts": 11526265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c5a0", "tid": 35568, "ts": 11526352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cc20", "tid": 35568, "ts": 11526438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26ce90", "tid": 35568, "ts": 11526525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b7d0", "tid": 35568, "ts": 11526611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d5e0", "tid": 35568, "ts": 11526697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dc60", "tid": 35568, "ts": 11526783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26c400", "tid": 35568, "ts": 11526870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26cdc0", "tid": 35568, "ts": 11526956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26b700", "tid": 35568, "ts": 11527046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26dac0", "tid": 35568, "ts": 11527133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26d440", "tid": 35568, "ts": 11527219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268570", "tid": 35568, "ts": 11527306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267bb0", "tid": 35568, "ts": 11527392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2698f0", "tid": 35568, "ts": 11527478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267870", "tid": 35568, "ts": 11527565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267d50", "tid": 35568, "ts": 11527652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269680", "tid": 35568, "ts": 11527738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2694e0", "tid": 35568, "ts": 11527825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2684a0", "tid": 35568, "ts": 11527953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269820", "tid": 35568, "ts": 11528039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267ef0", "tid": 35568, "ts": 11528126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269410", "tid": 35568, "ts": 11528213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2683d0", "tid": 35568, "ts": 11528300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a6c0", "tid": 35568, "ts": 11528386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269340", "tid": 35568, "ts": 11528472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269270", "tid": 35568, "ts": 11528558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a5f0", "tid": 35568, "ts": 11528644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268cc0", "tid": 35568, "ts": 11528730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a1e0", "tid": 35568, "ts": 11528817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268b20", "tid": 35568, "ts": 11528903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268980", "tid": 35568, "ts": 11528989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a520", "tid": 35568, "ts": 11529075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267940", "tid": 35568, "ts": 11529161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae26a040", "tid": 35568, "ts": 11529247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269000", "tid": 35568, "ts": 11529333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267fc0", "tid": 35568, "ts": 11529420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269a90", "tid": 35568, "ts": 11529505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268f30", "tid": 35568, "ts": 11529592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269c30", "tid": 35568, "ts": 11529678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2699c0", "tid": 35568, "ts": 11529765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae269750", "tid": 35568, "ts": 11529851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae268a50", "tid": 35568, "ts": 11529938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2688b0", "tid": 35568, "ts": 11530024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2664f0", "tid": 35568, "ts": 11530110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266280", "tid": 35568, "ts": 11530196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265da0", "tid": 35568, "ts": 11530282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265e70", "tid": 35568, "ts": 11530368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265b30", "tid": 35568, "ts": 11530454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265990", "tid": 35568, "ts": 11530540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2657f0", "tid": 35568, "ts": 11530627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265310", "tid": 35568, "ts": 11530714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265240", "tid": 35568, "ts": 11530801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266aa0", "tid": 35568, "ts": 11530887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266760", "tid": 35568, "ts": 11530974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264d60", "tid": 35568, "ts": 11531081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266900", "tid": 35568, "ts": 11531169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266010", "tid": 35568, "ts": 11531256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264470", "tid": 35568, "ts": 11531343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265580", "tid": 35568, "ts": 11531429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264fd0", "tid": 35568, "ts": 11531515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264130", "tid": 35568, "ts": 11531602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae265170", "tid": 35568, "ts": 11531688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266f80", "tid": 35568, "ts": 11531774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266d10", "tid": 35568, "ts": 11531860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264e30", "tid": 35568, "ts": 11531947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266690", "tid": 35568, "ts": 11532033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2647b0", "tid": 35568, "ts": 11532120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267390", "tid": 35568, "ts": 11532206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2672c0", "tid": 35568, "ts": 11532293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae266de0", "tid": 35568, "ts": 11532379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264950", "tid": 35568, "ts": 11532466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267120", "tid": 35568, "ts": 11532552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae267050", "tid": 35568, "ts": 11532639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae264540", "tid": 35568, "ts": 11532726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263020", "tid": 35568, "ts": 11532812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262730", "tid": 35568, "ts": 11532899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261d70", "tid": 35568, "ts": 11532986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261bd0", "tid": 35568, "ts": 11533072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2639e0", "tid": 35568, "ts": 11533159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263840", "tid": 35568, "ts": 11533245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263b80", "tid": 35568, "ts": 11533331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261890", "tid": 35568, "ts": 11533417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262180", "tid": 35568, "ts": 11533503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261a30", "tid": 35568, "ts": 11533590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2629a0", "tid": 35568, "ts": 11533678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261960", "tid": 35568, "ts": 11533764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261fe0", "tid": 35568, "ts": 11533850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2636a0", "tid": 35568, "ts": 11533937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260d30", "tid": 35568, "ts": 11534024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2623f0", "tid": 35568, "ts": 11534110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263ab0", "tid": 35568, "ts": 11534197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262ce0", "tid": 35568, "ts": 11534284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263360", "tid": 35568, "ts": 11534371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263f90", "tid": 35568, "ts": 11534457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261f10", "tid": 35568, "ts": 11534543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2628d0", "tid": 35568, "ts": 11534629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263290", "tid": 35568, "ts": 11534715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263500", "tid": 35568, "ts": 11534801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263ec0", "tid": 35568, "ts": 11534888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262320", "tid": 35568, "ts": 11534975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263430", "tid": 35568, "ts": 11535061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae261550", "tid": 35568, "ts": 11535148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262800", "tid": 35568, "ts": 11535235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae263c50", "tid": 35568, "ts": 11535321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262660", "tid": 35568, "ts": 11535407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae262a70", "tid": 35568, "ts": 11535493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dd40", "tid": 35568, "ts": 11535579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f4d0", "tid": 35568, "ts": 11535667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d930", "tid": 35568, "ts": 11535753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260c60", "tid": 35568, "ts": 11535839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260ac0", "tid": 35568, "ts": 11535926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2609f0", "tid": 35568, "ts": 11536013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260780", "tid": 35568, "ts": 11536100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260b90", "tid": 35568, "ts": 11536187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ee50", "tid": 35568, "ts": 11536274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dfb0", "tid": 35568, "ts": 11536361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fcf0", "tid": 35568, "ts": 11536447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25eb10", "tid": 35568, "ts": 11536533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fe90", "tid": 35568, "ts": 11536620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ea40", "tid": 35568, "ts": 11536707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ecb0", "tid": 35568, "ts": 11536794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25dba0", "tid": 35568, "ts": 11536880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260440", "tid": 35568, "ts": 11536966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260100", "tid": 35568, "ts": 11537053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e220", "tid": 35568, "ts": 11537140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e150", "tid": 35568, "ts": 11537227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e8a0", "tid": 35568, "ts": 11537313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f810", "tid": 35568, "ts": 11537400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2602a0", "tid": 35568, "ts": 11537486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fa80", "tid": 35568, "ts": 11537573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25de10", "tid": 35568, "ts": 11537660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25e560", "tid": 35568, "ts": 11537746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25fc20", "tid": 35568, "ts": 11537833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ff60", "tid": 35568, "ts": 11537919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f260", "tid": 35568, "ts": 11538006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2606b0", "tid": 35568, "ts": 11538092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25f5a0", "tid": 35568, "ts": 11538178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae260920", "tid": 35568, "ts": 11538264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c9c0", "tid": 35568, "ts": 11538350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c820", "tid": 35568, "ts": 11538437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b710", "tid": 35568, "ts": 11538522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ca90", "tid": 35568, "ts": 11538609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ad50", "tid": 35568, "ts": 11538694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b8b0", "tid": 35568, "ts": 11538781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c1a0", "tid": 35568, "ts": 11538868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d040", "tid": 35568, "ts": 11538955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a7a0", "tid": 35568, "ts": 11539042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d520", "tid": 35568, "ts": 11539128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a530", "tid": 35568, "ts": 11539215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c0d0", "tid": 35568, "ts": 11539301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c4e0", "tid": 35568, "ts": 11539388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d5f0", "tid": 35568, "ts": 11539474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b3d0", "tid": 35568, "ts": 11539560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d110", "tid": 35568, "ts": 11539648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cc30", "tid": 35568, "ts": 11539734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bd90", "tid": 35568, "ts": 11539821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c270", "tid": 35568, "ts": 11539908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b160", "tid": 35568, "ts": 11539995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b230", "tid": 35568, "ts": 11540082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c000", "tid": 35568, "ts": 11540169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25afc0", "tid": 35568, "ts": 11540266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c680", "tid": 35568, "ts": 11540353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25cdd0", "tid": 35568, "ts": 11540440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c410", "tid": 35568, "ts": 11540526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25c340", "tid": 35568, "ts": 11540612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b090", "tid": 35568, "ts": 11540698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25d450", "tid": 35568, "ts": 11540784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25bbf0", "tid": 35568, "ts": 11540871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25b980", "tid": 35568, "ts": 11540958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25ba50", "tid": 35568, "ts": 11541044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257880", "tid": 35568, "ts": 11541130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259c40", "tid": 35568, "ts": 11541216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259aa0", "tid": 35568, "ts": 11541303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259eb0", "tid": 35568, "ts": 11541389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2599d0", "tid": 35568, "ts": 11541475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259690", "tid": 35568, "ts": 11541561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259420", "tid": 35568, "ts": 11541648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259010", "tid": 35568, "ts": 11541734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2580a0", "tid": 35568, "ts": 11541820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257fd0", "tid": 35568, "ts": 11541905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2594f0", "tid": 35568, "ts": 11541991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257540", "tid": 35568, "ts": 11542078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258a60", "tid": 35568, "ts": 11542164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a460", "tid": 35568, "ts": 11542251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259d10", "tid": 35568, "ts": 11542338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257470", "tid": 35568, "ts": 11542425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2573a0", "tid": 35568, "ts": 11542511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259b70", "tid": 35568, "ts": 11542597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259350", "tid": 35568, "ts": 11542684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2588c0", "tid": 35568, "ts": 11542770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258e70", "tid": 35568, "ts": 11542857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2595c0", "tid": 35568, "ts": 11542943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259830", "tid": 35568, "ts": 11543030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259280", "tid": 35568, "ts": 11543116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257af0", "tid": 35568, "ts": 11543202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258720", "tid": 35568, "ts": 11543289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257a20", "tid": 35568, "ts": 11543375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258c00", "tid": 35568, "ts": 11543462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae259760", "tid": 35568, "ts": 11543596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae258310", "tid": 35568, "ts": 11543683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae257130", "tid": 35568, "ts": 11543770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae25a390", "tid": 35568, "ts": 11543857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254070", "tid": 35568, "ts": 11543944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253ed0", "tid": 35568, "ts": 11544030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2559a0", "tid": 35568, "ts": 11544117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256ec0", "tid": 35568, "ts": 11544203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256df0", "tid": 35568, "ts": 11544290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255ce0", "tid": 35568, "ts": 11544376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255800", "tid": 35568, "ts": 11544462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2547c0", "tid": 35568, "ts": 11544549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2542e0", "tid": 35568, "ts": 11544636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254480", "tid": 35568, "ts": 11544723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255730", "tid": 35568, "ts": 11544809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2553f0", "tid": 35568, "ts": 11544895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256500", "tid": 35568, "ts": 11544982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256f90", "tid": 35568, "ts": 11545069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256d20", "tid": 35568, "ts": 11545156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255f50", "tid": 35568, "ts": 11545242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255c10", "tid": 35568, "ts": 11545329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255180", "tid": 35568, "ts": 11545416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256b80", "tid": 35568, "ts": 11545502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae255b40", "tid": 35568, "ts": 11545589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2550b0", "tid": 35568, "ts": 11545675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256ab0", "tid": 35568, "ts": 11545765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254210", "tid": 35568, "ts": 11545852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2569e0", "tid": 35568, "ts": 11545938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256430", "tid": 35568, "ts": 11546025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2558d0", "tid": 35568, "ts": 11546112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254960", "tid": 35568, "ts": 11546198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254a30", "tid": 35568, "ts": 11546285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2561c0", "tid": 35568, "ts": 11546373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae254620", "tid": 35568, "ts": 11546459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae256910", "tid": 35568, "ts": 11546546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2543b0", "tid": 35568, "ts": 11546632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2535e0", "tid": 35568, "ts": 11546718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253440", "tid": 35568, "ts": 11546804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252cf0", "tid": 35568, "ts": 11546889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251cb0", "tid": 35568, "ts": 11546976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252e90", "tid": 35568, "ts": 11547062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2531d0", "tid": 35568, "ts": 11547149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252b50", "tid": 35568, "ts": 11547235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251490", "tid": 35568, "ts": 11547321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251be0", "tid": 35568, "ts": 11547408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2513c0", "tid": 35568, "ts": 11547495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252810", "tid": 35568, "ts": 11547581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251a40", "tid": 35568, "ts": 11547667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251080", "tid": 35568, "ts": 11547754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251560", "tid": 35568, "ts": 11547840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250fb0", "tid": 35568, "ts": 11547926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251150", "tid": 35568, "ts": 11548013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250d40", "tid": 35568, "ts": 11548100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253780", "tid": 35568, "ts": 11548186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252740", "tid": 35568, "ts": 11548273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252670", "tid": 35568, "ts": 11548359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251d80", "tid": 35568, "ts": 11548445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2518a0", "tid": 35568, "ts": 11548532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250ee0", "tid": 35568, "ts": 11548619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250ad0", "tid": 35568, "ts": 11548705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252dc0", "tid": 35568, "ts": 11548791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252190", "tid": 35568, "ts": 11548877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250930", "tid": 35568, "ts": 11548963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253c60", "tid": 35568, "ts": 11549049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae253b90", "tid": 35568, "ts": 11549135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae251e50", "tid": 35568, "ts": 11549222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae252f60", "tid": 35568, "ts": 11549308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2512f0", "tid": 35568, "ts": 11549393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e4a0", "tid": 35568, "ts": 11549480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e300", "tid": 35568, "ts": 11549566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e160", "tid": 35568, "ts": 11549653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24de20", "tid": 35568, "ts": 11549738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e090", "tid": 35568, "ts": 11549825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24da10", "tid": 35568, "ts": 11549911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d7a0", "tid": 35568, "ts": 11549997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f8f0", "tid": 35568, "ts": 11550083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2506c0", "tid": 35568, "ts": 11550169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f820", "tid": 35568, "ts": 11550256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e640", "tid": 35568, "ts": 11550342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f750", "tid": 35568, "ts": 11550428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f000", "tid": 35568, "ts": 11550515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e710", "tid": 35568, "ts": 11550601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250860", "tid": 35568, "ts": 11550688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f410", "tid": 35568, "ts": 11550774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250790", "tid": 35568, "ts": 11550861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d940", "tid": 35568, "ts": 11550947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e570", "tid": 35568, "ts": 11551033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f5b0", "tid": 35568, "ts": 11551119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ee60", "tid": 35568, "ts": 11551205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ebf0", "tid": 35568, "ts": 11551293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dbb0", "tid": 35568, "ts": 11551380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24dd50", "tid": 35568, "ts": 11551466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24fc30", "tid": 35568, "ts": 11551552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ef30", "tid": 35568, "ts": 11551639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250520", "tid": 35568, "ts": 11551725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e7e0", "tid": 35568, "ts": 11551811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d6d0", "tid": 35568, "ts": 11551897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24e980", "tid": 35568, "ts": 11551984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae250380", "tid": 35568, "ts": 11552071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24f0d0", "tid": 35568, "ts": 11552158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a7b0", "tid": 35568, "ts": 11552245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a610", "tid": 35568, "ts": 11552331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d460", "tid": 35568, "ts": 11552418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24caa0", "tid": 35568, "ts": 11552504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b310", "tid": 35568, "ts": 11552590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ad60", "tid": 35568, "ts": 11552677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c9d0", "tid": 35568, "ts": 11552763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b0a0", "tid": 35568, "ts": 11552849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b7f0", "tid": 35568, "ts": 11552935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d1f0", "tid": 35568, "ts": 11553021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24abc0", "tid": 35568, "ts": 11553107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ae30", "tid": 35568, "ts": 11553194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d120", "tid": 35568, "ts": 11553281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b3e0", "tid": 35568, "ts": 11553367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c760", "tid": 35568, "ts": 11553454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ceb0", "tid": 35568, "ts": 11553541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24aaf0", "tid": 35568, "ts": 11553627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24d050", "tid": 35568, "ts": 11553713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c900", "tid": 35568, "ts": 11553799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a470", "tid": 35568, "ts": 11553886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cb70", "tid": 35568, "ts": 11553972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b720", "tid": 35568, "ts": 11554058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b650", "tid": 35568, "ts": 11554144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b240", "tid": 35568, "ts": 11554231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24ac90", "tid": 35568, "ts": 11554317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a2d0", "tid": 35568, "ts": 11554404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bda0", "tid": 35568, "ts": 11554490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c830", "tid": 35568, "ts": 11554576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24bcd0", "tid": 35568, "ts": 11554663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24c1b0", "tid": 35568, "ts": 11554748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24cde0", "tid": 35568, "ts": 11554834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24b990", "tid": 35568, "ts": 11554920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249290", "tid": 35568, "ts": 11555007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2490f0", "tid": 35568, "ts": 11555093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2488d0", "tid": 35568, "ts": 11555180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248e80", "tid": 35568, "ts": 11555266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2480b0", "tid": 35568, "ts": 11555353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247f10", "tid": 35568, "ts": 11555440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247a30", "tid": 35568, "ts": 11555531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247e40", "tid": 35568, "ts": 11555619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248660", "tid": 35568, "ts": 11555705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2476f0", "tid": 35568, "ts": 11555791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2477c0", "tid": 35568, "ts": 11555877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246d30", "tid": 35568, "ts": 11555963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249b80", "tid": 35568, "ts": 11556049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248b40", "tid": 35568, "ts": 11556136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248db0", "tid": 35568, "ts": 11556223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248ce0", "tid": 35568, "ts": 11556309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247d70", "tid": 35568, "ts": 11556395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247070", "tid": 35568, "ts": 11556481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae24a060", "tid": 35568, "ts": 11556567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246e00", "tid": 35568, "ts": 11556654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247620", "tid": 35568, "ts": 11556741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249d20", "tid": 35568, "ts": 11556827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae248a70", "tid": 35568, "ts": 11556913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249ab0", "tid": 35568, "ts": 11557000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2489a0", "tid": 35568, "ts": 11557086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae247480", "tid": 35568, "ts": 11557173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249770", "tid": 35568, "ts": 11557259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2484c0", "tid": 35568, "ts": 11557346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249430", "tid": 35568, "ts": 11557433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae249c50", "tid": 35568, "ts": 11557518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2499e0", "tid": 35568, "ts": 11557604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2473b0", "tid": 35568, "ts": 11557691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244e50", "tid": 35568, "ts": 11557776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244cb0", "tid": 35568, "ts": 11557862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244be0", "tid": 35568, "ts": 11557948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2448a0", "tid": 35568, "ts": 11558034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245dc0", "tid": 35568, "ts": 11558120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243c70", "tid": 35568, "ts": 11558206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2447d0", "tid": 35568, "ts": 11558292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245c20", "tid": 35568, "ts": 11558378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245b50", "tid": 35568, "ts": 11558464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2459b0", "tid": 35568, "ts": 11558550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243ad0", "tid": 35568, "ts": 11558636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2443c0", "tid": 35568, "ts": 11558722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245260", "tid": 35568, "ts": 11558809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244560", "tid": 35568, "ts": 11558894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243ee0", "tid": 35568, "ts": 11558981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246100", "tid": 35568, "ts": 11559067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244150", "tid": 35568, "ts": 11559255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2450c0", "tid": 35568, "ts": 11559342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245a80", "tid": 35568, "ts": 11559428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2466b0", "tid": 35568, "ts": 11559515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2454d0", "tid": 35568, "ts": 11559601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246370", "tid": 35568, "ts": 11559687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243fb0", "tid": 35568, "ts": 11559773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246920", "tid": 35568, "ts": 11559860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae244490", "tid": 35568, "ts": 11559946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246b90", "tid": 35568, "ts": 11560033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243930", "tid": 35568, "ts": 11560119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245810", "tid": 35568, "ts": 11560205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2458e0", "tid": 35568, "ts": 11560291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae246ac0", "tid": 35568, "ts": 11560377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245190", "tid": 35568, "ts": 11560463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae245740", "tid": 35568, "ts": 11560550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242410", "tid": 35568, "ts": 11560636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240940", "tid": 35568, "ts": 11560723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242270", "tid": 35568, "ts": 11560809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241a50", "tid": 35568, "ts": 11560895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240600", "tid": 35568, "ts": 11560982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241230", "tid": 35568, "ts": 11561074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243860", "tid": 35568, "ts": 11561161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243380", "tid": 35568, "ts": 11561247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2431e0", "tid": 35568, "ts": 11561334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242dd0", "tid": 35568, "ts": 11561420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240ef0", "tid": 35568, "ts": 11561507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2414a0", "tid": 35568, "ts": 11561593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240e20", "tid": 35568, "ts": 11561679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241980", "tid": 35568, "ts": 11561765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2432b0", "tid": 35568, "ts": 11561851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242000", "tid": 35568, "ts": 11561938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2418b0", "tid": 35568, "ts": 11562024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae243040", "tid": 35568, "ts": 11562111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240d50", "tid": 35568, "ts": 11562197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2435f0", "tid": 35568, "ts": 11562283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241f30", "tid": 35568, "ts": 11562369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241bf0", "tid": 35568, "ts": 11562455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240bb0", "tid": 35568, "ts": 11562542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2425b0", "tid": 35568, "ts": 11562629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae241160", "tid": 35568, "ts": 11562716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2424e0", "tid": 35568, "ts": 11562802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2428f0", "tid": 35568, "ts": 11562889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242c30", "tid": 35568, "ts": 11562975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242f70", "tid": 35568, "ts": 11563062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2407a0", "tid": 35568, "ts": 11563149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242750", "tid": 35568, "ts": 11563235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae242b60", "tid": 35568, "ts": 11563321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f690", "tid": 35568, "ts": 11563407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f420", "tid": 35568, "ts": 11563493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f350", "tid": 35568, "ts": 11563579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f280", "tid": 35568, "ts": 11563665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ea60", "tid": 35568, "ts": 11563752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ee70", "tid": 35568, "ts": 11563838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d470", "tid": 35568, "ts": 11563923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e580", "tid": 35568, "ts": 11564009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d6e0", "tid": 35568, "ts": 11564096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f9d0", "tid": 35568, "ts": 11564182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d2d0", "tid": 35568, "ts": 11564268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ec00", "tid": 35568, "ts": 11564355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23fd10", "tid": 35568, "ts": 11564441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23eb30", "tid": 35568, "ts": 11564528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f5c0", "tid": 35568, "ts": 11564613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d7b0", "tid": 35568, "ts": 11564700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23dbc0", "tid": 35568, "ts": 11564786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d130", "tid": 35568, "ts": 11564871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f1b0", "tid": 35568, "ts": 11564957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d540", "tid": 35568, "ts": 11565043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f0e0", "tid": 35568, "ts": 11565131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240050", "tid": 35568, "ts": 11565217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d950", "tid": 35568, "ts": 11565303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e3e0", "tid": 35568, "ts": 11565390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e240", "tid": 35568, "ts": 11565476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e650", "tid": 35568, "ts": 11565562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e170", "tid": 35568, "ts": 11565648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240460", "tid": 35568, "ts": 11565734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23f010", "tid": 35568, "ts": 11565821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae240120", "tid": 35568, "ts": 11565907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23feb0", "tid": 35568, "ts": 11565993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23e7f0", "tid": 35568, "ts": 11566080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b730", "tid": 35568, "ts": 11566167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a890", "tid": 35568, "ts": 11566252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a620", "tid": 35568, "ts": 11566340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a2e0", "tid": 35568, "ts": 11566426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b250", "tid": 35568, "ts": 11566512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239fa0", "tid": 35568, "ts": 11566598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bc10", "tid": 35568, "ts": 11566683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b180", "tid": 35568, "ts": 11566770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23d060", "tid": 35568, "ts": 11566856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cf90", "tid": 35568, "ts": 11566943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c1c0", "tid": 35568, "ts": 11567029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c020", "tid": 35568, "ts": 11567115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b320", "tid": 35568, "ts": 11567201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c9e0", "tid": 35568, "ts": 11567288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a550", "tid": 35568, "ts": 11567374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bf50", "tid": 35568, "ts": 11567461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cc50", "tid": 35568, "ts": 11567548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a3b0", "tid": 35568, "ts": 11567633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23cec0", "tid": 35568, "ts": 11567719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ad70", "tid": 35568, "ts": 11567809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bdb0", "tid": 35568, "ts": 11567896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23bce0", "tid": 35568, "ts": 11567982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b3f0", "tid": 35568, "ts": 11568069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23a480", "tid": 35568, "ts": 11568155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23abd0", "tid": 35568, "ts": 11568241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c5d0", "tid": 35568, "ts": 11568327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c430", "tid": 35568, "ts": 11568413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23c290", "tid": 35568, "ts": 11568499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ab00", "tid": 35568, "ts": 11568586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23ae40", "tid": 35568, "ts": 11568673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23afe0", "tid": 35568, "ts": 11568759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae23b800", "tid": 35568, "ts": 11568845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239030", "tid": 35568, "ts": 11568931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238c20", "tid": 35568, "ts": 11569017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237cb0", "tid": 35568, "ts": 11569103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237d80", "tid": 35568, "ts": 11569190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2389b0", "tid": 35568, "ts": 11569277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238b50", "tid": 35568, "ts": 11569363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236a00", "tid": 35568, "ts": 11569449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2388e0", "tid": 35568, "ts": 11569535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237a40", "tid": 35568, "ts": 11569621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2378a0", "tid": 35568, "ts": 11569707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237630", "tid": 35568, "ts": 11569794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237f20", "tid": 35568, "ts": 11569880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239ac0", "tid": 35568, "ts": 11569967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238a80", "tid": 35568, "ts": 11570053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238190", "tid": 35568, "ts": 11570139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237220", "tid": 35568, "ts": 11570225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237700", "tid": 35568, "ts": 11570311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237080", "tid": 35568, "ts": 11570397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237e50", "tid": 35568, "ts": 11570483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2396b0", "tid": 35568, "ts": 11570569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238670", "tid": 35568, "ts": 11570654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236ba0", "tid": 35568, "ts": 11570741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239510", "tid": 35568, "ts": 11570827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2373c0", "tid": 35568, "ts": 11570914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae238740", "tid": 35568, "ts": 11571000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2377d0", "tid": 35568, "ts": 11571085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239440", "tid": 35568, "ts": 11571172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae237560", "tid": 35568, "ts": 11571258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2395e0", "tid": 35568, "ts": 11571344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239370", "tid": 35568, "ts": 11571430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236d40", "tid": 35568, "ts": 11571516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae239780", "tid": 35568, "ts": 11571602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234230", "tid": 35568, "ts": 11571689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236450", "tid": 35568, "ts": 11571775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233e20", "tid": 35568, "ts": 11571861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235dd0", "tid": 35568, "ts": 11571947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233870", "tid": 35568, "ts": 11572034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2354e0", "tid": 35568, "ts": 11572120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235000", "tid": 35568, "ts": 11572206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233600", "tid": 35568, "ts": 11572292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234d90", "tid": 35568, "ts": 11572378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233530", "tid": 35568, "ts": 11572464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235d00", "tid": 35568, "ts": 11572550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234980", "tid": 35568, "ts": 11572637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234160", "tid": 35568, "ts": 11572723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233d50", "tid": 35568, "ts": 11572809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234cc0", "tid": 35568, "ts": 11572895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2347e0", "tid": 35568, "ts": 11572982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234f30", "tid": 35568, "ts": 11573068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235750", "tid": 35568, "ts": 11573155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235ea0", "tid": 35568, "ts": 11573241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235680", "tid": 35568, "ts": 11573327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235c30", "tid": 35568, "ts": 11573414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234bf0", "tid": 35568, "ts": 11573500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2358f0", "tid": 35568, "ts": 11573586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234570", "tid": 35568, "ts": 11573672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233c80", "tid": 35568, "ts": 11573758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae234090", "tid": 35568, "ts": 11573844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233ef0", "tid": 35568, "ts": 11573931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae235340", "tid": 35568, "ts": 11574017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae236790", "tid": 35568, "ts": 11574104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233940", "tid": 35568, "ts": 11574190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233bb0", "tid": 35568, "ts": 11574277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2366c0", "tid": 35568, "ts": 11574364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230a20", "tid": 35568, "ts": 11574450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2307b0", "tid": 35568, "ts": 11574536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230470", "tid": 35568, "ts": 11574623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2302d0", "tid": 35568, "ts": 11574710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232b70", "tid": 35568, "ts": 11574838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232830", "tid": 35568, "ts": 11574926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230610", "tid": 35568, "ts": 11575013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231da0", "tid": 35568, "ts": 11575108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2331f0", "tid": 35568, "ts": 11575195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231c00", "tid": 35568, "ts": 11575281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233390", "tid": 35568, "ts": 11575367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232eb0", "tid": 35568, "ts": 11575453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231a60", "tid": 35568, "ts": 11575540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230e30", "tid": 35568, "ts": 11575626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232350", "tid": 35568, "ts": 11575712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2332c0", "tid": 35568, "ts": 11575800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230540", "tid": 35568, "ts": 11575886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230200", "tid": 35568, "ts": 11575972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232280", "tid": 35568, "ts": 11576059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2320e0", "tid": 35568, "ts": 11576144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231580", "tid": 35568, "ts": 11576231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2313e0", "tid": 35568, "ts": 11576316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230fd0", "tid": 35568, "ts": 11576401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232010", "tid": 35568, "ts": 11576487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231e70", "tid": 35568, "ts": 11576573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231f40", "tid": 35568, "ts": 11576663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae233050", "tid": 35568, "ts": 11576750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae230950", "tid": 35568, "ts": 11576836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae2314b0", "tid": 35568, "ts": 11576922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231720", "tid": 35568, "ts": 11577008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae232f80", "tid": 35568, "ts": 11577094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ae231170", "tid": 35568, "ts": 11577180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50d60", "tid": 35568, "ts": 11577266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50bc0", "tid": 35568, "ts": 11577352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50610", "tid": 35568, "ts": 11577438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb503a0", "tid": 35568, "ts": 11577524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb524f0", "tid": 35568, "ts": 11577610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53460", "tid": 35568, "ts": 11577696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52d10", "tid": 35568, "ts": 11577782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52420", "tid": 35568, "ts": 11577868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb521b0", "tid": 35568, "ts": 11577954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb520e0", "tid": 35568, "ts": 11578040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb514b0", "tid": 35568, "ts": 11578125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51a60", "tid": 35568, "ts": 11578212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50950", "tid": 35568, "ts": 11578298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb518c0", "tid": 35568, "ts": 11578383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50880", "tid": 35568, "ts": 11578470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb502d0", "tid": 35568, "ts": 11578556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52690", "tid": 35568, "ts": 11578643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50200", "tid": 35568, "ts": 11578729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51e70", "tid": 35568, "ts": 11578814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb50f00", "tid": 35568, "ts": 11578900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb529d0", "tid": 35568, "ts": 11578987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51240", "tid": 35568, "ts": 11579073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52eb0", "tid": 35568, "ts": 11579159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52b70", "tid": 35568, "ts": 11579245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51650", "tid": 35568, "ts": 11579330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51580", "tid": 35568, "ts": 11579417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52aa0", "tid": 35568, "ts": 11579502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51b30", "tid": 35568, "ts": 11579588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb51cd0", "tid": 35568, "ts": 11579675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb531f0", "tid": 35568, "ts": 11579762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53120", "tid": 35568, "ts": 11579848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb52de0", "tid": 35568, "ts": 11579934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8de00", "tid": 35568, "ts": 11580020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90910", "tid": 35568, "ts": 11580106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90840", "tid": 35568, "ts": 11580197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb906a0", "tid": 35568, "ts": 11580284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fb40", "tid": 35568, "ts": 11580370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ef10", "tid": 35568, "ts": 11580456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90ec0", "tid": 35568, "ts": 11580542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb905d0", "tid": 35568, "ts": 11580628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e960", "tid": 35568, "ts": 11580714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f800", "tid": 35568, "ts": 11580800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ee40", "tid": 35568, "ts": 11580886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e7c0", "tid": 35568, "ts": 11580973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e6f0", "tid": 35568, "ts": 11581059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fa70", "tid": 35568, "ts": 11581144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e210", "tid": 35568, "ts": 11581231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ff50", "tid": 35568, "ts": 11581317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fe80", "tid": 35568, "ts": 11581403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb90360", "tid": 35568, "ts": 11581490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8fc10", "tid": 35568, "ts": 11581575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e620", "tid": 35568, "ts": 11581661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8eb00", "tid": 35568, "ts": 11581748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dfa0", "tid": 35568, "ts": 11581834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e140", "tid": 35568, "ts": 11581920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f8d0", "tid": 35568, "ts": 11582006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f3f0", "tid": 35568, "ts": 11582092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e550", "tid": 35568, "ts": 11582178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ebd0", "tid": 35568, "ts": 11582264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f180", "tid": 35568, "ts": 11582350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8f250", "tid": 35568, "ts": 11582436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb900f0", "tid": 35568, "ts": 11582522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8e2e0", "tid": 35568, "ts": 11582608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bbe0", "tid": 35568, "ts": 11582694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b8a0", "tid": 35568, "ts": 11582781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b630", "tid": 35568, "ts": 11582867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cf60", "tid": 35568, "ts": 11582953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cdc0", "tid": 35568, "ts": 11583039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b3c0", "tid": 35568, "ts": 11583126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8b150", "tid": 35568, "ts": 11583212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8cc20", "tid": 35568, "ts": 11583298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aee0", "tid": 35568, "ts": 11583385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c4d0", "tid": 35568, "ts": 11583471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c400", "tid": 35568, "ts": 11583558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ae10", "tid": 35568, "ts": 11583644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8aad0", "tid": 35568, "ts": 11583730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d510", "tid": 35568, "ts": 11583816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d2a0", "tid": 35568, "ts": 11583902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c9b0", "tid": 35568, "ts": 11583989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c670", "tid": 35568, "ts": 11584075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c810", "tid": 35568, "ts": 11584162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a930", "tid": 35568, "ts": 11584247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c260", "tid": 35568, "ts": 11584334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d1d0", "tid": 35568, "ts": 11584420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dac0", "tid": 35568, "ts": 11584506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d780", "tid": 35568, "ts": 11584591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d370", "tid": 35568, "ts": 11584677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8dc60", "tid": 35568, "ts": 11584763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bff0", "tid": 35568, "ts": 11584849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8c5a0", "tid": 35568, "ts": 11584935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d850", "tid": 35568, "ts": 11585021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8ad40", "tid": 35568, "ts": 11585107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8bd80", "tid": 35568, "ts": 11585194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8d9f0", "tid": 35568, "ts": 11585280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8db90", "tid": 35568, "ts": 11585366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89d00", "tid": 35568, "ts": 11585452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87ef0", "tid": 35568, "ts": 11585538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89820", "tid": 35568, "ts": 11585624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87ae0", "tid": 35568, "ts": 11585710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87600", "tid": 35568, "ts": 11585796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb894e0", "tid": 35568, "ts": 11585882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a860", "tid": 35568, "ts": 11585968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a110", "tid": 35568, "ts": 11586055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a5f0", "tid": 35568, "ts": 11586142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87e20", "tid": 35568, "ts": 11586228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a040", "tid": 35568, "ts": 11586314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a450", "tid": 35568, "ts": 11586400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb884a0", "tid": 35568, "ts": 11586487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88e60", "tid": 35568, "ts": 11586573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89750", "tid": 35568, "ts": 11586660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87a10", "tid": 35568, "ts": 11586746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89ea0", "tid": 35568, "ts": 11586832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88090", "tid": 35568, "ts": 11586918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87c80", "tid": 35568, "ts": 11587003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88980", "tid": 35568, "ts": 11587090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89dd0", "tid": 35568, "ts": 11587176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb888b0", "tid": 35568, "ts": 11587262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89270", "tid": 35568, "ts": 11587348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb877a0", "tid": 35568, "ts": 11587435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87d50", "tid": 35568, "ts": 11587521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb8a520", "tid": 35568, "ts": 11587607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87530", "tid": 35568, "ts": 11587693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87940", "tid": 35568, "ts": 11587779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb895b0", "tid": 35568, "ts": 11587866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88230", "tid": 35568, "ts": 11587952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb89680", "tid": 35568, "ts": 11588038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb88a50", "tid": 35568, "ts": 11588124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86420", "tid": 35568, "ts": 11588210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85e70", "tid": 35568, "ts": 11588296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85a60", "tid": 35568, "ts": 11588382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb857f0", "tid": 35568, "ts": 11588469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85720", "tid": 35568, "ts": 11588555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84e30", "tid": 35568, "ts": 11588642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb842d0", "tid": 35568, "ts": 11588728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84200", "tid": 35568, "ts": 11588814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85310", "tid": 35568, "ts": 11588900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84d60", "tid": 35568, "ts": 11588985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86010", "tid": 35568, "ts": 11589071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85170", "tid": 35568, "ts": 11589158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84bc0", "tid": 35568, "ts": 11589243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84fd0", "tid": 35568, "ts": 11589330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87120", "tid": 35568, "ts": 11589416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84a20", "tid": 35568, "ts": 11589502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86f80", "tid": 35568, "ts": 11589589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86de0", "tid": 35568, "ts": 11589675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86aa0", "tid": 35568, "ts": 11589762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84880", "tid": 35568, "ts": 11589848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85650", "tid": 35568, "ts": 11589934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84f00", "tid": 35568, "ts": 11590020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86760", "tid": 35568, "ts": 11590106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb872c0", "tid": 35568, "ts": 11590191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86690", "tid": 35568, "ts": 11590278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb846e0", "tid": 35568, "ts": 11590401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb87460", "tid": 35568, "ts": 11590500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb86900", "tid": 35568, "ts": 11590586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb865c0", "tid": 35568, "ts": 11590673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb85b30", "tid": 35568, "ts": 11590760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb84610", "tid": 35568, "ts": 11590846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb853e0", "tid": 35568, "ts": 11590933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81a30", "tid": 35568, "ts": 11591019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb817c0", "tid": 35568, "ts": 11591106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb813b0", "tid": 35568, "ts": 11591192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb816f0", "tid": 35568, "ts": 11591278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80ed0", "tid": 35568, "ts": 11591364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83f90", "tid": 35568, "ts": 11591451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83b80", "tid": 35568, "ts": 11591537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83ab0", "tid": 35568, "ts": 11591623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81480", "tid": 35568, "ts": 11591709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81ca0", "tid": 35568, "ts": 11591795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83500", "tid": 35568, "ts": 11591882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83430", "tid": 35568, "ts": 11591969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83290", "tid": 35568, "ts": 11592056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82800", "tid": 35568, "ts": 11592142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83840", "tid": 35568, "ts": 11592229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81140", "tid": 35568, "ts": 11592319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81070", "tid": 35568, "ts": 11592406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82660", "tid": 35568, "ts": 11592493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82590", "tid": 35568, "ts": 11592583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb824c0", "tid": 35568, "ts": 11592670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82250", "tid": 35568, "ts": 11592757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb820b0", "tid": 35568, "ts": 11592843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83020", "tid": 35568, "ts": 11592930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82b40", "tid": 35568, "ts": 11593015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb81bd0", "tid": 35568, "ts": 11593102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb828d0", "tid": 35568, "ts": 11593189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82180", "tid": 35568, "ts": 11593275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83360", "tid": 35568, "ts": 11593362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83d20", "tid": 35568, "ts": 11593448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb83770", "tid": 35568, "ts": 11593535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb82e80", "tid": 35568, "ts": 11593621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb836a0", "tid": 35568, "ts": 11593708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e7d0", "tid": 35568, "ts": 11593794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e220", "tid": 35568, "ts": 11593881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dc70", "tid": 35568, "ts": 11593967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7dad0", "tid": 35568, "ts": 11594054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d930", "tid": 35568, "ts": 11594140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80850", "tid": 35568, "ts": 11594226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80370", "tid": 35568, "ts": 11594312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e630", "tid": 35568, "ts": 11594399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80780", "tid": 35568, "ts": 11594485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb806b0", "tid": 35568, "ts": 11594650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80440", "tid": 35568, "ts": 11594745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fe90", "tid": 35568, "ts": 11594832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7fc20", "tid": 35568, "ts": 11594920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f8e0", "tid": 35568, "ts": 11595007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ea40", "tid": 35568, "ts": 11595094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f740", "tid": 35568, "ts": 11595180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ecb0", "tid": 35568, "ts": 11595266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f4d0", "tid": 35568, "ts": 11595352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f400", "tid": 35568, "ts": 11595439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f190", "tid": 35568, "ts": 11595526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ef20", "tid": 35568, "ts": 11595612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ebe0", "tid": 35568, "ts": 11595699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e490", "tid": 35568, "ts": 11595786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb80c60", "tid": 35568, "ts": 11595872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb805e0", "tid": 35568, "ts": 11595959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7e970", "tid": 35568, "ts": 11596045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb809f0", "tid": 35568, "ts": 11596132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ed80", "tid": 35568, "ts": 11596218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f810", "tid": 35568, "ts": 11596304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f670", "tid": 35568, "ts": 11596391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb801d0", "tid": 35568, "ts": 11596477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7f260", "tid": 35568, "ts": 11596564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7abb0", "tid": 35568, "ts": 11596650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a7a0", "tid": 35568, "ts": 11596736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d450", "tid": 35568, "ts": 11596822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d380", "tid": 35568, "ts": 11596908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cb60", "tid": 35568, "ts": 11596995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c340", "tid": 35568, "ts": 11597081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c270", "tid": 35568, "ts": 11597167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c0d0", "tid": 35568, "ts": 11597253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d110", "tid": 35568, "ts": 11597339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7be60", "tid": 35568, "ts": 11597425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a940", "tid": 35568, "ts": 11597511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c410", "tid": 35568, "ts": 11597598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b710", "tid": 35568, "ts": 11597684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b300", "tid": 35568, "ts": 11597771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bb20", "tid": 35568, "ts": 11597858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b230", "tid": 35568, "ts": 11597944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cf70", "tid": 35568, "ts": 11598030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b640", "tid": 35568, "ts": 11598115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7cea0", "tid": 35568, "ts": 11598202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7bcc0", "tid": 35568, "ts": 11598288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7aef0", "tid": 35568, "ts": 11598374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ad50", "tid": 35568, "ts": 11598461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ca90", "tid": 35568, "ts": 11598547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c1a0", "tid": 35568, "ts": 11598634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b3d0", "tid": 35568, "ts": 11598719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7b160", "tid": 35568, "ts": 11598806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d5f0", "tid": 35568, "ts": 11598893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7ba50", "tid": 35568, "ts": 11598978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7aa10", "tid": 35568, "ts": 11599064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c750", "tid": 35568, "ts": 11599151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7c9c0", "tid": 35568, "ts": 11599237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7d520", "tid": 35568, "ts": 11599323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb780a0", "tid": 35568, "ts": 11599410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77e30", "tid": 35568, "ts": 11599496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77c90", "tid": 35568, "ts": 11599582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77a20", "tid": 35568, "ts": 11599668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77950", "tid": 35568, "ts": 11599755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a050", "tid": 35568, "ts": 11599841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79f80", "tid": 35568, "ts": 11599928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79eb0", "tid": 35568, "ts": 11600014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79280", "tid": 35568, "ts": 11600101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb791b0", "tid": 35568, "ts": 11600187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79d10", "tid": 35568, "ts": 11600273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb777b0", "tid": 35568, "ts": 11600359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79830", "tid": 35568, "ts": 11600445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb794f0", "tid": 35568, "ts": 11600531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77540", "tid": 35568, "ts": 11600618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77470", "tid": 35568, "ts": 11600704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78da0", "tid": 35568, "ts": 11600791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78c00", "tid": 35568, "ts": 11600877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb77130", "tid": 35568, "ts": 11600964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78b30", "tid": 35568, "ts": 11601050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb784b0", "tid": 35568, "ts": 11601137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a460", "tid": 35568, "ts": 11601223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79c40", "tid": 35568, "ts": 11601309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78a60", "tid": 35568, "ts": 11601396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb788c0", "tid": 35568, "ts": 11601483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb78f40", "tid": 35568, "ts": 11601568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb773a0", "tid": 35568, "ts": 11601654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79350", "tid": 35568, "ts": 11601741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb799d0", "tid": 35568, "ts": 11601827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb7a390", "tid": 35568, "ts": 11601914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb772d0", "tid": 35568, "ts": 11602001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb79760", "tid": 35568, "ts": 11602087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74fe0", "tid": 35568, "ts": 11602174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74f10", "tid": 35568, "ts": 11602260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74ca0", "tid": 35568, "ts": 11602347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74620", "tid": 35568, "ts": 11602434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74480", "tid": 35568, "ts": 11602521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74070", "tid": 35568, "ts": 11602608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb765d0", "tid": 35568, "ts": 11602694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76430", "tid": 35568, "ts": 11602780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74b00", "tid": 35568, "ts": 11602866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75a70", "tid": 35568, "ts": 11602953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75800", "tid": 35568, "ts": 11603039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76360", "tid": 35568, "ts": 11603125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76500", "tid": 35568, "ts": 11603212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75660", "tid": 35568, "ts": 11603299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75f50", "tid": 35568, "ts": 11603385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb758d0", "tid": 35568, "ts": 11603472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73fa0", "tid": 35568, "ts": 11603558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76290", "tid": 35568, "ts": 11603644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76c50", "tid": 35568, "ts": 11603731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74a30", "tid": 35568, "ts": 11603816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76df0", "tid": 35568, "ts": 11603903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb75180", "tid": 35568, "ts": 11603989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76b80", "tid": 35568, "ts": 11604075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb761c0", "tid": 35568, "ts": 11604161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76020", "tid": 35568, "ts": 11604247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb750b0", "tid": 35568, "ts": 11604333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb74d70", "tid": 35568, "ts": 11604419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb746f0", "tid": 35568, "ts": 11604505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76ec0", "tid": 35568, "ts": 11604592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb747c0", "tid": 35568, "ts": 11604678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb76f90", "tid": 35568, "ts": 11604764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb742e0", "tid": 35568, "ts": 11604854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb713c0", "tid": 35568, "ts": 11604941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70ba0", "tid": 35568, "ts": 11605028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73c60", "tid": 35568, "ts": 11605115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb712f0", "tid": 35568, "ts": 11605201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73780", "tid": 35568, "ts": 11605287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb736b0", "tid": 35568, "ts": 11605373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb724d0", "tid": 35568, "ts": 11605459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb735e0", "tid": 35568, "ts": 11605545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72260", "tid": 35568, "ts": 11605631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73370", "tid": 35568, "ts": 11605719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72b50", "tid": 35568, "ts": 11605805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71b10", "tid": 35568, "ts": 11605891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72190", "tid": 35568, "ts": 11606021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70fb0", "tid": 35568, "ts": 11606149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73100", "tid": 35568, "ts": 11606237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71150", "tid": 35568, "ts": 11606324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb717d0", "tid": 35568, "ts": 11606411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73030", "tid": 35568, "ts": 11606498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb728e0", "tid": 35568, "ts": 11606585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73920", "tid": 35568, "ts": 11606670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb73ac0", "tid": 35568, "ts": 11606756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71d80", "tid": 35568, "ts": 11606841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72740", "tid": 35568, "ts": 11606928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71970", "tid": 35568, "ts": 11607015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71be0", "tid": 35568, "ts": 11607101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71cb0", "tid": 35568, "ts": 11607188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb718a0", "tid": 35568, "ts": 11607273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70a00", "tid": 35568, "ts": 11607359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71e50", "tid": 35568, "ts": 11607445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb71700", "tid": 35568, "ts": 11607532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb72cf0", "tid": 35568, "ts": 11607618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70d40", "tid": 35568, "ts": 11607704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d940", "tid": 35568, "ts": 11607790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ed90", "tid": 35568, "ts": 11607877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6d530", "tid": 35568, "ts": 11607963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70860", "tid": 35568, "ts": 11608050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f750", "tid": 35568, "ts": 11608137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ebf0", "tid": 35568, "ts": 11608224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f270", "tid": 35568, "ts": 11608310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fdd0", "tid": 35568, "ts": 11608396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fa90", "tid": 35568, "ts": 11608482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6de20", "tid": 35568, "ts": 11608568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dc80", "tid": 35568, "ts": 11608654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e640", "tid": 35568, "ts": 11608740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6def0", "tid": 35568, "ts": 11608827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ef30", "tid": 35568, "ts": 11608913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6dbb0", "tid": 35568, "ts": 11609000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f0d0", "tid": 35568, "ts": 11609086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e160", "tid": 35568, "ts": 11609173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb706c0", "tid": 35568, "ts": 11609259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f5b0", "tid": 35568, "ts": 11609344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f8f0", "tid": 35568, "ts": 11609430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb701e0", "tid": 35568, "ts": 11609516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f4e0", "tid": 35568, "ts": 11609603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb705f0", "tid": 35568, "ts": 11609690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6e090", "tid": 35568, "ts": 11609777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70450", "tid": 35568, "ts": 11609865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6da10", "tid": 35568, "ts": 11609959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f820", "tid": 35568, "ts": 11610047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fea0", "tid": 35568, "ts": 11610133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6fb60", "tid": 35568, "ts": 11610220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70040", "tid": 35568, "ts": 11610306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6f9c0", "tid": 35568, "ts": 11610392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb70790", "tid": 35568, "ts": 11610478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a950", "tid": 35568, "ts": 11610564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a200", "tid": 35568, "ts": 11610651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a880", "tid": 35568, "ts": 11610736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cf80", "tid": 35568, "ts": 11610822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c420", "tid": 35568, "ts": 11610908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c280", "tid": 35568, "ts": 11610994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c1b0", "tid": 35568, "ts": 11611079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6abc0", "tid": 35568, "ts": 11611165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bf40", "tid": 35568, "ts": 11611251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cc40", "tid": 35568, "ts": 11611342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6aaf0", "tid": 35568, "ts": 11611429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bda0", "tid": 35568, "ts": 11611515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cb70", "tid": 35568, "ts": 11611601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bcd0", "tid": 35568, "ts": 11611688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6bc00", "tid": 35568, "ts": 11611774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6ae30", "tid": 35568, "ts": 11611860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a130", "tid": 35568, "ts": 11611946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a610", "tid": 35568, "ts": 11612032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b990", "tid": 35568, "ts": 11612118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c830", "tid": 35568, "ts": 11612204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b0a0", "tid": 35568, "ts": 11612290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b720", "tid": 35568, "ts": 11612375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c690", "tid": 35568, "ts": 11612461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b650", "tid": 35568, "ts": 11612548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6afd0", "tid": 35568, "ts": 11612634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b3e0", "tid": 35568, "ts": 11612721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a3a0", "tid": 35568, "ts": 11612807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6cd10", "tid": 35568, "ts": 11612894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b310", "tid": 35568, "ts": 11612980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6b580", "tid": 35568, "ts": 11613067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a7b0", "tid": 35568, "ts": 11613153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6c4f0", "tid": 35568, "ts": 11613238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67960", "tid": 35568, "ts": 11613325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb690f0", "tid": 35568, "ts": 11613411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67890", "tid": 35568, "ts": 11613497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67620", "tid": 35568, "ts": 11613582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67d70", "tid": 35568, "ts": 11613669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67070", "tid": 35568, "ts": 11613755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68590", "tid": 35568, "ts": 11613842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66fa0", "tid": 35568, "ts": 11613928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66d30", "tid": 35568, "ts": 11614014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb696a0", "tid": 35568, "ts": 11614105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67ca0", "tid": 35568, "ts": 11614192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69c50", "tid": 35568, "ts": 11614279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68e80", "tid": 35568, "ts": 11614366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69360", "tid": 35568, "ts": 11614452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69290", "tid": 35568, "ts": 11614538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69770", "tid": 35568, "ts": 11614624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb691c0", "tid": 35568, "ts": 11614711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb683f0", "tid": 35568, "ts": 11614797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb689a0", "tid": 35568, "ts": 11614883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69500", "tid": 35568, "ts": 11614970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb673b0", "tid": 35568, "ts": 11615056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69430", "tid": 35568, "ts": 11615141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb68180", "tid": 35568, "ts": 11615227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb6a060", "tid": 35568, "ts": 11615313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67b00", "tid": 35568, "ts": 11615400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69ec0", "tid": 35568, "ts": 11615486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67210", "tid": 35568, "ts": 11615573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb680b0", "tid": 35568, "ts": 11615659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb69840", "tid": 35568, "ts": 11615745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb672e0", "tid": 35568, "ts": 11615832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67f10", "tid": 35568, "ts": 11615918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb67fe0", "tid": 35568, "ts": 11616004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65b50", "tid": 35568, "ts": 11616090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb659b0", "tid": 35568, "ts": 11616176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65810", "tid": 35568, "ts": 11616263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64ff0", "tid": 35568, "ts": 11616349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64970", "tid": 35568, "ts": 11616435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb655a0", "tid": 35568, "ts": 11616521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb647d0", "tid": 35568, "ts": 11616607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64560", "tid": 35568, "ts": 11616692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65400", "tid": 35568, "ts": 11616779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb650c0", "tid": 35568, "ts": 11616865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64490", "tid": 35568, "ts": 11616951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65e90", "tid": 35568, "ts": 11617037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64e50", "tid": 35568, "ts": 11617124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64d80", "tid": 35568, "ts": 11617210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66440", "tid": 35568, "ts": 11617296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63fb0", "tid": 35568, "ts": 11617381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63e10", "tid": 35568, "ts": 11617473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63d40", "tid": 35568, "ts": 11617559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb669f0", "tid": 35568, "ts": 11617646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66b90", "tid": 35568, "ts": 11617731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66850", "tid": 35568, "ts": 11617818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65dc0", "tid": 35568, "ts": 11617903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63c70", "tid": 35568, "ts": 11617990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63ad0", "tid": 35568, "ts": 11618076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66780", "tid": 35568, "ts": 11618162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb65f60", "tid": 35568, "ts": 11618248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb666b0", "tid": 35568, "ts": 11618334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64a40", "tid": 35568, "ts": 11618420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb64cb0", "tid": 35568, "ts": 11618507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb66510", "tid": 35568, "ts": 11618593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb643c0", "tid": 35568, "ts": 11618679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63ba0", "tid": 35568, "ts": 11618764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb606d0", "tid": 35568, "ts": 11618850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63450", "tid": 35568, "ts": 11618936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61160", "tid": 35568, "ts": 11619023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62820", "tid": 35568, "ts": 11619109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62750", "tid": 35568, "ts": 11619195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb625b0", "tid": 35568, "ts": 11619281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61090", "tid": 35568, "ts": 11619367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63040", "tid": 35568, "ts": 11619453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63790", "tid": 35568, "ts": 11619539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61e60", "tid": 35568, "ts": 11619626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63380", "tid": 35568, "ts": 11619713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60e20", "tid": 35568, "ts": 11619799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62f70", "tid": 35568, "ts": 11619885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61d90", "tid": 35568, "ts": 11619971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb617e0", "tid": 35568, "ts": 11620057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62dd0", "tid": 35568, "ts": 11620143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb62270", "tid": 35568, "ts": 11620229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61f30", "tid": 35568, "ts": 11620315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60ae0", "tid": 35568, "ts": 11620401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb607a0", "tid": 35568, "ts": 11620487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb63520", "tid": 35568, "ts": 11620573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb613d0", "tid": 35568, "ts": 11620659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61bf0", "tid": 35568, "ts": 11620745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61570", "tid": 35568, "ts": 11620830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb618b0", "tid": 35568, "ts": 11620917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60940", "tid": 35568, "ts": 11621003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60600", "tid": 35568, "ts": 11621089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb631e0", "tid": 35568, "ts": 11621175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb61cc0", "tid": 35568, "ts": 11621261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb614a0", "tid": 35568, "ts": 11621346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60c80", "tid": 35568, "ts": 11621433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb620d0", "tid": 35568, "ts": 11621518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f0e0", "tid": 35568, "ts": 11621666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ef40", "tid": 35568, "ts": 11621906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dbc0", "tid": 35568, "ts": 11622082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d470", "tid": 35568, "ts": 11622187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d3a0", "tid": 35568, "ts": 11622302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb601f0", "tid": 35568, "ts": 11622403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60120", "tid": 35568, "ts": 11622527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e8c0", "tid": 35568, "ts": 11622670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e650", "tid": 35568, "ts": 11622757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e310", "tid": 35568, "ts": 11622844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e240", "tid": 35568, "ts": 11622931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e580", "tid": 35568, "ts": 11623017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5fc40", "tid": 35568, "ts": 11623104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5da20", "tid": 35568, "ts": 11623190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dfd0", "tid": 35568, "ts": 11623277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f9d0", "tid": 35568, "ts": 11623363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e4b0", "tid": 35568, "ts": 11623449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d2d0", "tid": 35568, "ts": 11623535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f830", "tid": 35568, "ts": 11623622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d610", "tid": 35568, "ts": 11623708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb602c0", "tid": 35568, "ts": 11623794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5e3e0", "tid": 35568, "ts": 11623880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d200", "tid": 35568, "ts": 11623966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb60390", "tid": 35568, "ts": 11624052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f5c0", "tid": 35568, "ts": 11624139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5df00", "tid": 35568, "ts": 11624226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ff80", "tid": 35568, "ts": 11624312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f4f0", "tid": 35568, "ts": 11624397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5f690", "tid": 35568, "ts": 11624484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5d540", "tid": 35568, "ts": 11624571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5feb0", "tid": 35568, "ts": 11624657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5dd60", "tid": 35568, "ts": 11624743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a140", "tid": 35568, "ts": 11624829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bdb0", "tid": 35568, "ts": 11624916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bce0", "tid": 35568, "ts": 11625002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bb40", "tid": 35568, "ts": 11625087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b9a0", "tid": 35568, "ts": 11625173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b800", "tid": 35568, "ts": 11625259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b660", "tid": 35568, "ts": 11625345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b590", "tid": 35568, "ts": 11625431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a890", "tid": 35568, "ts": 11625517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5bc10", "tid": 35568, "ts": 11625603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cb80", "tid": 35568, "ts": 11625690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cab0", "tid": 35568, "ts": 11625777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c9e0", "tid": 35568, "ts": 11625864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b180", "tid": 35568, "ts": 11625950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a210", "tid": 35568, "ts": 11626036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b0b0", "tid": 35568, "ts": 11626122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a480", "tid": 35568, "ts": 11626208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cf90", "tid": 35568, "ts": 11626294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c910", "tid": 35568, "ts": 11626380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ad70", "tid": 35568, "ts": 11626466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c770", "tid": 35568, "ts": 11626552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c6a0", "tid": 35568, "ts": 11626637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5cdf0", "tid": 35568, "ts": 11626724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5a960", "tid": 35568, "ts": 11626810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c360", "tid": 35568, "ts": 11626897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5af10", "tid": 35568, "ts": 11626983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c0f0", "tid": 35568, "ts": 11627107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59fa0", "tid": 35568, "ts": 11627204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5ae40", "tid": 35568, "ts": 11627290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5aca0", "tid": 35568, "ts": 11627377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5b320", "tid": 35568, "ts": 11627463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb5c1c0", "tid": 35568, "ts": 11627549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb591d0", "tid": 35568, "ts": 11627635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59030", "tid": 35568, "ts": 11627721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb573c0", "tid": 35568, "ts": 11627806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58f60", "tid": 35568, "ts": 11627892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59c60", "tid": 35568, "ts": 11627978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb599f0", "tid": 35568, "ts": 11628063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58e90", "tid": 35568, "ts": 11628150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb572f0", "tid": 35568, "ts": 11628236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58330", "tid": 35568, "ts": 11628322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb585a0", "tid": 35568, "ts": 11628408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59920", "tid": 35568, "ts": 11628493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb589b0", "tid": 35568, "ts": 11628580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57ff0", "tid": 35568, "ts": 11628666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57630", "tid": 35568, "ts": 11628752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56e10", "tid": 35568, "ts": 11628838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57f20", "tid": 35568, "ts": 11628924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56d40", "tid": 35568, "ts": 11629011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56c70", "tid": 35568, "ts": 11629096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59370", "tid": 35568, "ts": 11629182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57150", "tid": 35568, "ts": 11629268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56ba0", "tid": 35568, "ts": 11629354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58cf0", "tid": 35568, "ts": 11629440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58dc0", "tid": 35568, "ts": 11629526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb578a0", "tid": 35568, "ts": 11629612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57970", "tid": 35568, "ts": 11629698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb59b90", "tid": 35568, "ts": 11629784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57be0", "tid": 35568, "ts": 11629870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb58b50", "tid": 35568, "ts": 11629956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb596b0", "tid": 35568, "ts": 11630042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb595e0", "tid": 35568, "ts": 11630128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56a00", "tid": 35568, "ts": 11630214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb57cb0", "tid": 35568, "ts": 11630307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55ea0", "tid": 35568, "ts": 11630394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb543d0", "tid": 35568, "ts": 11630481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54230", "tid": 35568, "ts": 11630567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb554e0", "tid": 35568, "ts": 11630651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53e20", "tid": 35568, "ts": 11630738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb551a0", "tid": 35568, "ts": 11630824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54300", "tid": 35568, "ts": 11630909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53d50", "tid": 35568, "ts": 11630996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54f30", "tid": 35568, "ts": 11631081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb565f0", "tid": 35568, "ts": 11631168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55000", "tid": 35568, "ts": 11631254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56520", "tid": 35568, "ts": 11631339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54a50", "tid": 35568, "ts": 11631425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56450", "tid": 35568, "ts": 11631510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54980", "tid": 35568, "ts": 11631596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53fc0", "tid": 35568, "ts": 11631682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53940", "tid": 35568, "ts": 11631768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54bf0", "tid": 35568, "ts": 11631854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53bb0", "tid": 35568, "ts": 11631939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56040", "tid": 35568, "ts": 11632026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55750", "tid": 35568, "ts": 11632112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54160", "tid": 35568, "ts": 11632237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54640", "tid": 35568, "ts": 11632324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb547e0", "tid": 35568, "ts": 11632410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb56380", "tid": 35568, "ts": 11632495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb53600", "tid": 35568, "ts": 11632581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55270", "tid": 35568, "ts": 11632667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55c30", "tid": 35568, "ts": 11632753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55a90", "tid": 35568, "ts": 11632839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb561e0", "tid": 35568, "ts": 11632926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb55b60", "tid": 35568, "ts": 11633012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234adb54b20", "tid": 35568, "ts": 11633097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490d90", "tid": 35568, "ts": 11633184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fbb0", "tid": 35568, "ts": 11633270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f940", "tid": 35568, "ts": 11633357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f530", "tid": 35568, "ts": 11633443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f1f0", "tid": 35568, "ts": 11633529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f120", "tid": 35568, "ts": 11633615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f050", "tid": 35568, "ts": 11633701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490980", "tid": 35568, "ts": 11633787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48eeb0", "tid": 35568, "ts": 11633873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4908b0", "tid": 35568, "ts": 11633959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ec40", "tid": 35568, "ts": 11634044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ede0", "tid": 35568, "ts": 11634131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4904a0", "tid": 35568, "ts": 11634217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48dda0", "tid": 35568, "ts": 11634303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48eaa0", "tid": 35568, "ts": 11634390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f460", "tid": 35568, "ts": 11634476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490b20", "tid": 35568, "ts": 11634561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fa10", "tid": 35568, "ts": 11634648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e5c0", "tid": 35568, "ts": 11634733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e4f0", "tid": 35568, "ts": 11634824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490160", "tid": 35568, "ts": 11634911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad490710", "tid": 35568, "ts": 11634997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e900", "tid": 35568, "ts": 11635083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e010", "tid": 35568, "ts": 11635174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48fc80", "tid": 35568, "ts": 11635262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f390", "tid": 35568, "ts": 11635348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e760", "tid": 35568, "ts": 11635434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ffc0", "tid": 35568, "ts": 11635520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48e280", "tid": 35568, "ts": 11635606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f870", "tid": 35568, "ts": 11635693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48f6d0", "tid": 35568, "ts": 11635779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c880", "tid": 35568, "ts": 11635866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c610", "tid": 35568, "ts": 11635952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b1c0", "tid": 35568, "ts": 11636038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c2d0", "tid": 35568, "ts": 11636124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ae80", "tid": 35568, "ts": 11636210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ab40", "tid": 35568, "ts": 11636295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d240", "tid": 35568, "ts": 11636381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c200", "tid": 35568, "ts": 11636467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48da60", "tid": 35568, "ts": 11636552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c060", "tid": 35568, "ts": 11636639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d170", "tid": 35568, "ts": 11636725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d8c0", "tid": 35568, "ts": 11636811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d720", "tid": 35568, "ts": 11636896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d7f0", "tid": 35568, "ts": 11636982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48bec0", "tid": 35568, "ts": 11637068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d310", "tid": 35568, "ts": 11637154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c540", "tid": 35568, "ts": 11637275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cc90", "tid": 35568, "ts": 11637363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48cbc0", "tid": 35568, "ts": 11637450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ac10", "tid": 35568, "ts": 11637536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48dcd0", "tid": 35568, "ts": 11637622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48caf0", "tid": 35568, "ts": 11637708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48c6e0", "tid": 35568, "ts": 11637794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b430", "tid": 35568, "ts": 11637880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ce30", "tid": 35568, "ts": 11637966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d650", "tid": 35568, "ts": 11638052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b5d0", "tid": 35568, "ts": 11638139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b840", "tid": 35568, "ts": 11638225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d0a0", "tid": 35568, "ts": 11638312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48b770", "tid": 35568, "ts": 11638398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48ca20", "tid": 35568, "ts": 11638484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad48d580", "tid": 35568, "ts": 11638570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4875a0", "tid": 35568, "ts": 11638656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489fe0", "tid": 35568, "ts": 11638742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488b90", "tid": 35568, "ts": 11638828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488850", "tid": 35568, "ts": 11638913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488ac0", "tid": 35568, "ts": 11638998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489e40", "tid": 35568, "ts": 11639084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4882a0", "tid": 35568, "ts": 11639170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487740", "tid": 35568, "ts": 11639256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489d70", "tid": 35568, "ts": 11639341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488780", "tid": 35568, "ts": 11639427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4893b0", "tid": 35568, "ts": 11639513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489480", "tid": 35568, "ts": 11639599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489890", "tid": 35568, "ts": 11639685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488920", "tid": 35568, "ts": 11639772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4881d0", "tid": 35568, "ts": 11639858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4886b0", "tid": 35568, "ts": 11639944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488fa0", "tid": 35568, "ts": 11640030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488d30", "tid": 35568, "ts": 11640116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488ed0", "tid": 35568, "ts": 11640201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489070", "tid": 35568, "ts": 11640287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488100", "tid": 35568, "ts": 11640373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489620", "tid": 35568, "ts": 11640458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487a80", "tid": 35568, "ts": 11640544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487cf0", "tid": 35568, "ts": 11640630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487670", "tid": 35568, "ts": 11640716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4879b0", "tid": 35568, "ts": 11640802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487c20", "tid": 35568, "ts": 11640888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487810", "tid": 35568, "ts": 11640974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487f60", "tid": 35568, "ts": 11641060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488440", "tid": 35568, "ts": 11641146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad488030", "tid": 35568, "ts": 11641232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad489b00", "tid": 35568, "ts": 11641318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486cb0", "tid": 35568, "ts": 11641405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486b10", "tid": 35568, "ts": 11641490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486970", "tid": 35568, "ts": 11641575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484a90", "tid": 35568, "ts": 11641662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4849c0", "tid": 35568, "ts": 11641748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485a00", "tid": 35568, "ts": 11641834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4845b0", "tid": 35568, "ts": 11641920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484dd0", "tid": 35568, "ts": 11642005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4844e0", "tid": 35568, "ts": 11642092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485ba0", "tid": 35568, "ts": 11642179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484340", "tid": 35568, "ts": 11642265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486e50", "tid": 35568, "ts": 11642352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4874d0", "tid": 35568, "ts": 11642438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4868a0", "tid": 35568, "ts": 11642525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4856c0", "tid": 35568, "ts": 11642610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4851e0", "tid": 35568, "ts": 11642697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486150", "tid": 35568, "ts": 11642782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484270", "tid": 35568, "ts": 11642869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485110", "tid": 35568, "ts": 11642956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4855f0", "tid": 35568, "ts": 11643041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad487190", "tid": 35568, "ts": 11643128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484c30", "tid": 35568, "ts": 11643214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484b60", "tid": 35568, "ts": 11643300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486f20", "tid": 35568, "ts": 11643385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4870c0", "tid": 35568, "ts": 11643471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485040", "tid": 35568, "ts": 11643557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484820", "tid": 35568, "ts": 11643643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486080", "tid": 35568, "ts": 11643729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485380", "tid": 35568, "ts": 11643814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad486ff0", "tid": 35568, "ts": 11643900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad485450", "tid": 35568, "ts": 11643986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad484ea0", "tid": 35568, "ts": 11644072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482d50", "tid": 35568, "ts": 11644158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482a10", "tid": 35568, "ts": 11644245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482600", "tid": 35568, "ts": 11644331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481760", "tid": 35568, "ts": 11644417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482120", "tid": 35568, "ts": 11644503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482050", "tid": 35568, "ts": 11644589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483b20", "tid": 35568, "ts": 11644681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483d90", "tid": 35568, "ts": 11644768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4840d0", "tid": 35568, "ts": 11644854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483a50", "tid": 35568, "ts": 11644941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4821f0", "tid": 35568, "ts": 11645027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482390", "tid": 35568, "ts": 11645114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4838b0", "tid": 35568, "ts": 11645210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481c40", "tid": 35568, "ts": 11645296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4814f0", "tid": 35568, "ts": 11645382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483160", "tid": 35568, "ts": 11645467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481420", "tid": 35568, "ts": 11645553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480f40", "tid": 35568, "ts": 11645639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4833d0", "tid": 35568, "ts": 11645725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481280", "tid": 35568, "ts": 11645810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482ae0", "tid": 35568, "ts": 11645897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483230", "tid": 35568, "ts": 11645983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4810e0", "tid": 35568, "ts": 11646068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481d10", "tid": 35568, "ts": 11646155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483090", "tid": 35568, "ts": 11646240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482fc0", "tid": 35568, "ts": 11646327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483300", "tid": 35568, "ts": 11646412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4826d0", "tid": 35568, "ts": 11646498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad482ef0", "tid": 35568, "ts": 11646583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad483710", "tid": 35568, "ts": 11646669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480da0", "tid": 35568, "ts": 11646756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad481de0", "tid": 35568, "ts": 11646841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ec50", "tid": 35568, "ts": 11646928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e9e0", "tid": 35568, "ts": 11647014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f6e0", "tid": 35568, "ts": 11647099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f880", "tid": 35568, "ts": 11647185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47db40", "tid": 35568, "ts": 11647270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480b30", "tid": 35568, "ts": 11647356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4800a0", "tid": 35568, "ts": 11647442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e500", "tid": 35568, "ts": 11647528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fd60", "tid": 35568, "ts": 11647613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4807f0", "tid": 35568, "ts": 11647699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480a60", "tid": 35568, "ts": 11647784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f470", "tid": 35568, "ts": 11647870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47da70", "tid": 35568, "ts": 11647955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47dce0", "tid": 35568, "ts": 11648041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e1c0", "tid": 35568, "ts": 11648127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fc90", "tid": 35568, "ts": 11648213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e6a0", "tid": 35568, "ts": 11648299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e5d0", "tid": 35568, "ts": 11648385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f130", "tid": 35568, "ts": 11648471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ffd0", "tid": 35568, "ts": 11648557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e430", "tid": 35568, "ts": 11648643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47eec0", "tid": 35568, "ts": 11648729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480310", "tid": 35568, "ts": 11648815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f7b0", "tid": 35568, "ts": 11648901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47f950", "tid": 35568, "ts": 11648986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480720", "tid": 35568, "ts": 11649072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d9a0", "tid": 35568, "ts": 11649158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4803e0", "tid": 35568, "ts": 11649244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47fbc0", "tid": 35568, "ts": 11649329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ff00", "tid": 35568, "ts": 11649415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad480c00", "tid": 35568, "ts": 11649501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47e840", "tid": 35568, "ts": 11649586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d730", "tid": 35568, "ts": 11649673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d590", "tid": 35568, "ts": 11649758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c890", "tid": 35568, "ts": 11649844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c070", "tid": 35568, "ts": 11649930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bd30", "tid": 35568, "ts": 11650016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d3f0", "tid": 35568, "ts": 11650103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b920", "tid": 35568, "ts": 11650189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b850", "tid": 35568, "ts": 11650276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47acf0", "tid": 35568, "ts": 11650362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d180", "tid": 35568, "ts": 11650448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cfe0", "tid": 35568, "ts": 11650533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c550", "tid": 35568, "ts": 11650619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b100", "tid": 35568, "ts": 11650705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47aa80", "tid": 35568, "ts": 11650790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cf10", "tid": 35568, "ts": 11650875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ce40", "tid": 35568, "ts": 11650961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c960", "tid": 35568, "ts": 11651047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47bfa0", "tid": 35568, "ts": 11651133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b6b0", "tid": 35568, "ts": 11651219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cd70", "tid": 35568, "ts": 11651305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ac20", "tid": 35568, "ts": 11651391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c210", "tid": 35568, "ts": 11651477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47d0b0", "tid": 35568, "ts": 11651562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b1d0", "tid": 35568, "ts": 11651647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47b370", "tid": 35568, "ts": 11651733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c3b0", "tid": 35568, "ts": 11651819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ca30", "tid": 35568, "ts": 11651905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47ae90", "tid": 35568, "ts": 11651991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47cca0", "tid": 35568, "ts": 11652077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47af60", "tid": 35568, "ts": 11652162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c2e0", "tid": 35568, "ts": 11652247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47c480", "tid": 35568, "ts": 11652334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4792f0", "tid": 35568, "ts": 11652419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478930", "tid": 35568, "ts": 11652505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478e10", "tid": 35568, "ts": 11652591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4786c0", "tid": 35568, "ts": 11652677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478520", "tid": 35568, "ts": 11652762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477c30", "tid": 35568, "ts": 11652895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4779c0", "tid": 35568, "ts": 11652995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477340", "tid": 35568, "ts": 11653080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479b10", "tid": 35568, "ts": 11653166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478c70", "tid": 35568, "ts": 11653252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477750", "tid": 35568, "ts": 11653338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478ba0", "tid": 35568, "ts": 11653424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4797d0", "tid": 35568, "ts": 11653510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4782b0", "tid": 35568, "ts": 11653597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479630", "tid": 35568, "ts": 11653682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477270", "tid": 35568, "ts": 11653768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a260", "tid": 35568, "ts": 11653854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479700", "tid": 35568, "ts": 11653940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479f20", "tid": 35568, "ts": 11654026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a190", "tid": 35568, "ts": 11654112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478ad0", "tid": 35568, "ts": 11654198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478a00", "tid": 35568, "ts": 11654284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479e50", "tid": 35568, "ts": 11654369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479490", "tid": 35568, "ts": 11654456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478450", "tid": 35568, "ts": 11654542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad47a0c0", "tid": 35568, "ts": 11654628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477d00", "tid": 35568, "ts": 11654714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478d40", "tid": 35568, "ts": 11654800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad479d80", "tid": 35568, "ts": 11654886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad477b60", "tid": 35568, "ts": 11654972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4771a0", "tid": 35568, "ts": 11655064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad478040", "tid": 35568, "ts": 11655151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476f30", "tid": 35568, "ts": 11655236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474760", "tid": 35568, "ts": 11655322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473f40", "tid": 35568, "ts": 11655413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476a50", "tid": 35568, "ts": 11655500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475050", "tid": 35568, "ts": 11655586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476710", "tid": 35568, "ts": 11655672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475940", "tid": 35568, "ts": 11655758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473e70", "tid": 35568, "ts": 11655844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476570", "tid": 35568, "ts": 11655930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475a10", "tid": 35568, "ts": 11656016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474d10", "tid": 35568, "ts": 11656102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4764a0", "tid": 35568, "ts": 11656188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4744f0", "tid": 35568, "ts": 11656274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4770d0", "tid": 35568, "ts": 11656359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476300", "tid": 35568, "ts": 11656446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475460", "tid": 35568, "ts": 11656532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475390", "tid": 35568, "ts": 11656618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476090", "tid": 35568, "ts": 11656704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4741b0", "tid": 35568, "ts": 11656790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476230", "tid": 35568, "ts": 11656876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476cc0", "tid": 35568, "ts": 11656961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475530", "tid": 35568, "ts": 11657047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475fc0", "tid": 35568, "ts": 11657133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474b70", "tid": 35568, "ts": 11657218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476bf0", "tid": 35568, "ts": 11657304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad476b20", "tid": 35568, "ts": 11657390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475e20", "tid": 35568, "ts": 11657476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad475600", "tid": 35568, "ts": 11657562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474010", "tid": 35568, "ts": 11657648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4756d0", "tid": 35568, "ts": 11657735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474350", "tid": 35568, "ts": 11657821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad474830", "tid": 35568, "ts": 11657908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472c90", "tid": 35568, "ts": 11657993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472af0", "tid": 35568, "ts": 11658079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472950", "tid": 35568, "ts": 11658166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4727b0", "tid": 35568, "ts": 11658252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471df0", "tid": 35568, "ts": 11658338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4733e0", "tid": 35568, "ts": 11658424, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4719e0", "tid": 35568, "ts": 11658510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4716a0", "tid": 35568, "ts": 11658596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4711c0", "tid": 35568, "ts": 11658683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473310", "tid": 35568, "ts": 11658769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470f50", "tid": 35568, "ts": 11658856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473240", "tid": 35568, "ts": 11658942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470b40", "tid": 35568, "ts": 11659027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4730a0", "tid": 35568, "ts": 11659113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472200", "tid": 35568, "ts": 11659200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471f90", "tid": 35568, "ts": 11659286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471d20", "tid": 35568, "ts": 11659371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad471500", "tid": 35568, "ts": 11659457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470e80", "tid": 35568, "ts": 11659544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473170", "tid": 35568, "ts": 11659631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473a60", "tid": 35568, "ts": 11659717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473b30", "tid": 35568, "ts": 11659802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472470", "tid": 35568, "ts": 11659888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473c00", "tid": 35568, "ts": 11659974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472d60", "tid": 35568, "ts": 11660059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4710f0", "tid": 35568, "ts": 11660145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4737f0", "tid": 35568, "ts": 11660231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad473650", "tid": 35568, "ts": 11660317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4738c0", "tid": 35568, "ts": 11660404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4722d0", "tid": 35568, "ts": 11660489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470c10", "tid": 35568, "ts": 11660576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad472f00", "tid": 35568, "ts": 11660662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ff10", "tid": 35568, "ts": 11660748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470320", "tid": 35568, "ts": 11660834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ed30", "tid": 35568, "ts": 11660919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e850", "tid": 35568, "ts": 11661006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e100", "tid": 35568, "ts": 11661092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e6b0", "tid": 35568, "ts": 11661178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d8e0", "tid": 35568, "ts": 11661264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ec60", "tid": 35568, "ts": 11661349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4708d0", "tid": 35568, "ts": 11661436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46df60", "tid": 35568, "ts": 11661521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470180", "tid": 35568, "ts": 11661607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f7c0", "tid": 35568, "ts": 11661694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46eac0", "tid": 35568, "ts": 11661780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ddc0", "tid": 35568, "ts": 11661866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f3b0", "tid": 35568, "ts": 11661952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f480", "tid": 35568, "ts": 11662038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470800", "tid": 35568, "ts": 11662124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e9f0", "tid": 35568, "ts": 11662209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fb00", "tid": 35568, "ts": 11662295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e370", "tid": 35568, "ts": 11662381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46eb90", "tid": 35568, "ts": 11662466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f2e0", "tid": 35568, "ts": 11662552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46fa30", "tid": 35568, "ts": 11662637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470730", "tid": 35568, "ts": 11662724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e2a0", "tid": 35568, "ts": 11662810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46f070", "tid": 35568, "ts": 11662896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46efa0", "tid": 35568, "ts": 11662982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad470590", "tid": 35568, "ts": 11663068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46eed0", "tid": 35568, "ts": 11663154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46db50", "tid": 35568, "ts": 11663240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d670", "tid": 35568, "ts": 11663326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46e1d0", "tid": 35568, "ts": 11663412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b520", "tid": 35568, "ts": 11663497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46add0", "tid": 35568, "ts": 11663583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c490", "tid": 35568, "ts": 11663669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ac30", "tid": 35568, "ts": 11663755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a410", "tid": 35568, "ts": 11663841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c2f0", "tid": 35568, "ts": 11663927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d190", "tid": 35568, "ts": 11664014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ba00", "tid": 35568, "ts": 11664100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46d4d0", "tid": 35568, "ts": 11664185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b380", "tid": 35568, "ts": 11664275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ca40", "tid": 35568, "ts": 11664362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c080", "tid": 35568, "ts": 11664448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b5f0", "tid": 35568, "ts": 11664533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c700", "tid": 35568, "ts": 11664620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bad0", "tid": 35568, "ts": 11664705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c630", "tid": 35568, "ts": 11664791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c560", "tid": 35568, "ts": 11664877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a5b0", "tid": 35568, "ts": 11664963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b790", "tid": 35568, "ts": 11665049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b1e0", "tid": 35568, "ts": 11665135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46c7d0", "tid": 35568, "ts": 11665221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46cd80", "tid": 35568, "ts": 11665307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bee0", "tid": 35568, "ts": 11665393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46be10", "tid": 35568, "ts": 11665479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a4e0", "tid": 35568, "ts": 11665565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46af70", "tid": 35568, "ts": 11665651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a820", "tid": 35568, "ts": 11665737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a270", "tid": 35568, "ts": 11665823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46aea0", "tid": 35568, "ts": 11665908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46bc70", "tid": 35568, "ts": 11665995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46ccb0", "tid": 35568, "ts": 11666080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46b110", "tid": 35568, "ts": 11666166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468e20", "tid": 35568, "ts": 11666252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468bb0", "tid": 35568, "ts": 11666337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468390", "tid": 35568, "ts": 11666423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468120", "tid": 35568, "ts": 11666509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469d90", "tid": 35568, "ts": 11666595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467eb0", "tid": 35568, "ts": 11666680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469cc0", "tid": 35568, "ts": 11666766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467b70", "tid": 35568, "ts": 11666852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4697e0", "tid": 35568, "ts": 11666937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467f80", "tid": 35568, "ts": 11667024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad46a0d0", "tid": 35568, "ts": 11667110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469640", "tid": 35568, "ts": 11667196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4693d0", "tid": 35568, "ts": 11667282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468600", "tid": 35568, "ts": 11667367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469710", "tid": 35568, "ts": 11667453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469230", "tid": 35568, "ts": 11667539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469160", "tid": 35568, "ts": 11667624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4674f0", "tid": 35568, "ts": 11667710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469090", "tid": 35568, "ts": 11667796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469980", "tid": 35568, "ts": 11667882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466e70", "tid": 35568, "ts": 11667968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467830", "tid": 35568, "ts": 11668054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad469bf0", "tid": 35568, "ts": 11668139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468ae0", "tid": 35568, "ts": 11668225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4670e0", "tid": 35568, "ts": 11668311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467420", "tid": 35568, "ts": 11668397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467280", "tid": 35568, "ts": 11668588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad468530", "tid": 35568, "ts": 11668720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466da0", "tid": 35568, "ts": 11668809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4671b0", "tid": 35568, "ts": 11668896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad467010", "tid": 35568, "ts": 11668984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4698b0", "tid": 35568, "ts": 11669070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465c90", "tid": 35568, "ts": 11669158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465af0", "tid": 35568, "ts": 11669245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466170", "tid": 35568, "ts": 11669331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465a20", "tid": 35568, "ts": 11669418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463b40", "tid": 35568, "ts": 11669504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465880", "tid": 35568, "ts": 11669590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465060", "tid": 35568, "ts": 11669676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464f90", "tid": 35568, "ts": 11669763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4660a0", "tid": 35568, "ts": 11669849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466cd0", "tid": 35568, "ts": 11669936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4639a0", "tid": 35568, "ts": 11670022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464ec0", "tid": 35568, "ts": 11670108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466720", "tid": 35568, "ts": 11670195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464c50", "tid": 35568, "ts": 11670280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466990", "tid": 35568, "ts": 11670367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464910", "tid": 35568, "ts": 11670453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465130", "tid": 35568, "ts": 11670539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464840", "tid": 35568, "ts": 11670626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463db0", "tid": 35568, "ts": 11670711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4653a0", "tid": 35568, "ts": 11670797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464430", "tid": 35568, "ts": 11670883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464b80", "tid": 35568, "ts": 11670970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad466c00", "tid": 35568, "ts": 11671061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4646a0", "tid": 35568, "ts": 11671149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4657b0", "tid": 35568, "ts": 11671236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad464290", "tid": 35568, "ts": 11671322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463e80", "tid": 35568, "ts": 11671409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad465e30", "tid": 35568, "ts": 11671496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4667f0", "tid": 35568, "ts": 11671584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4645d0", "tid": 35568, "ts": 11671670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4652d0", "tid": 35568, "ts": 11671756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4664b0", "tid": 35568, "ts": 11671843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462e40", "tid": 35568, "ts": 11671929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463660", "tid": 35568, "ts": 11672016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4623b0", "tid": 35568, "ts": 11672102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462ca0", "tid": 35568, "ts": 11672188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461b90", "tid": 35568, "ts": 11672274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4622e0", "tid": 35568, "ts": 11672360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4630b0", "tid": 35568, "ts": 11672446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4616b0", "tid": 35568, "ts": 11672533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462fe0", "tid": 35568, "ts": 11672619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461440", "tid": 35568, "ts": 11672705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4612a0", "tid": 35568, "ts": 11672791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462bd0", "tid": 35568, "ts": 11672877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462b00", "tid": 35568, "ts": 11672963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4638d0", "tid": 35568, "ts": 11673049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462140", "tid": 35568, "ts": 11673135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4633f0", "tid": 35568, "ts": 11673222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4619f0", "tid": 35568, "ts": 11673308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462960", "tid": 35568, "ts": 11673395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461920", "tid": 35568, "ts": 11673481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461030", "tid": 35568, "ts": 11673567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad462f10", "tid": 35568, "ts": 11673653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461c60", "tid": 35568, "ts": 11673739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460dc0", "tid": 35568, "ts": 11673826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad461d30", "tid": 35568, "ts": 11673913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460740", "tid": 35568, "ts": 11673999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4609b0", "tid": 35568, "ts": 11674086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463320", "tid": 35568, "ts": 11674177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4608e0", "tid": 35568, "ts": 11674264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4605a0", "tid": 35568, "ts": 11674351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463250", "tid": 35568, "ts": 11674437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460b50", "tid": 35568, "ts": 11674524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad463180", "tid": 35568, "ts": 11674610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460260", "tid": 35568, "ts": 11674697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45eba0", "tid": 35568, "ts": 11674783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460190", "tid": 35568, "ts": 11674869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d410", "tid": 35568, "ts": 11674955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ea00", "tid": 35568, "ts": 11675040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ddd0", "tid": 35568, "ts": 11675127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ec70", "tid": 35568, "ts": 11675213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e380", "tid": 35568, "ts": 11675299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fff0", "tid": 35568, "ts": 11675385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ff20", "tid": 35568, "ts": 11675471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f560", "tid": 35568, "ts": 11675557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f490", "tid": 35568, "ts": 11675643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f3c0", "tid": 35568, "ts": 11675729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e450", "tid": 35568, "ts": 11675815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f080", "tid": 35568, "ts": 11675901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4600c0", "tid": 35568, "ts": 11675987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fb10", "tid": 35568, "ts": 11676073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e2b0", "tid": 35568, "ts": 11676160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d8f0", "tid": 35568, "ts": 11676246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d270", "tid": 35568, "ts": 11676332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ead0", "tid": 35568, "ts": 11676419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45dc30", "tid": 35568, "ts": 11676505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d750", "tid": 35568, "ts": 11676592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45e6c0", "tid": 35568, "ts": 11676678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45f630", "tid": 35568, "ts": 11676764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad460400", "tid": 35568, "ts": 11676851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fcb0", "tid": 35568, "ts": 11676937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45dea0", "tid": 35568, "ts": 11677024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45da90", "tid": 35568, "ts": 11677109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45fe50", "tid": 35568, "ts": 11677196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45d4e0", "tid": 35568, "ts": 11677282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45dd00", "tid": 35568, "ts": 11677368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bd50", "tid": 35568, "ts": 11677454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bae0", "tid": 35568, "ts": 11677541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b7a0", "tid": 35568, "ts": 11677627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b530", "tid": 35568, "ts": 11677713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b460", "tid": 35568, "ts": 11677800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ade0", "tid": 35568, "ts": 11677886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c640", "tid": 35568, "ts": 11677973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c3d0", "tid": 35568, "ts": 11678060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c300", "tid": 35568, "ts": 11678145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c160", "tid": 35568, "ts": 11678232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c090", "tid": 35568, "ts": 11678318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b600", "tid": 35568, "ts": 11678404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ce60", "tid": 35568, "ts": 11678491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ccc0", "tid": 35568, "ts": 11678578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c570", "tid": 35568, "ts": 11678664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c7e0", "tid": 35568, "ts": 11678750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a760", "tid": 35568, "ts": 11678836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bc80", "tid": 35568, "ts": 11678923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a4f0", "tid": 35568, "ts": 11679009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45ca50", "tid": 35568, "ts": 11679095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45be20", "tid": 35568, "ts": 11679181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c8b0", "tid": 35568, "ts": 11679267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a350", "tid": 35568, "ts": 11679354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45bfc0", "tid": 35568, "ts": 11679441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b1f0", "tid": 35568, "ts": 11679527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459f40", "tid": 35568, "ts": 11679615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b050", "tid": 35568, "ts": 11679702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c230", "tid": 35568, "ts": 11679794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45a9d0", "tid": 35568, "ts": 11679882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45c4a0", "tid": 35568, "ts": 11679977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45b2c0", "tid": 35568, "ts": 11680065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad45cf30", "tid": 35568, "ts": 11680151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459650", "tid": 35568, "ts": 11680237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4593e0", "tid": 35568, "ts": 11680324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458540", "tid": 35568, "ts": 11680410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459170", "tid": 35568, "ts": 11680496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459580", "tid": 35568, "ts": 11680582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4576a0", "tid": 35568, "ts": 11680667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458200", "tid": 35568, "ts": 11680754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457430", "tid": 35568, "ts": 11680840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458af0", "tid": 35568, "ts": 11680925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459240", "tid": 35568, "ts": 11681011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4598c0", "tid": 35568, "ts": 11681097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458950", "tid": 35568, "ts": 11681184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457360", "tid": 35568, "ts": 11681270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4587b0", "tid": 35568, "ts": 11681355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4571c0", "tid": 35568, "ts": 11681442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4570f0", "tid": 35568, "ts": 11681528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4590a0", "tid": 35568, "ts": 11681614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458c90", "tid": 35568, "ts": 11681700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457f90", "tid": 35568, "ts": 11681785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459b30", "tid": 35568, "ts": 11681872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457770", "tid": 35568, "ts": 11681958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456b40", "tid": 35568, "ts": 11682044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458880", "tid": 35568, "ts": 11682130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457910", "tid": 35568, "ts": 11682216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456a70", "tid": 35568, "ts": 11682302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456e80", "tid": 35568, "ts": 11682388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad459720", "tid": 35568, "ts": 11682474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457b80", "tid": 35568, "ts": 11682560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad457020", "tid": 35568, "ts": 11682646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456f50", "tid": 35568, "ts": 11682732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad458d60", "tid": 35568, "ts": 11682818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4586e0", "tid": 35568, "ts": 11682905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456730", "tid": 35568, "ts": 11682990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455620", "tid": 35568, "ts": 11683076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455140", "tid": 35568, "ts": 11683161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4545e0", "tid": 35568, "ts": 11683247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454030", "tid": 35568, "ts": 11683333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453f60", "tid": 35568, "ts": 11683420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456320", "tid": 35568, "ts": 11683506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454ed0", "tid": 35568, "ts": 11683592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455480", "tid": 35568, "ts": 11683678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453dc0", "tid": 35568, "ts": 11683764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454d30", "tid": 35568, "ts": 11683850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453b50", "tid": 35568, "ts": 11683936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456660", "tid": 35568, "ts": 11684021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454440", "tid": 35568, "ts": 11684161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4553b0", "tid": 35568, "ts": 11684311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453a80", "tid": 35568, "ts": 11684401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453810", "tid": 35568, "ts": 11684489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4568d0", "tid": 35568, "ts": 11684578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454b90", "tid": 35568, "ts": 11684665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454920", "tid": 35568, "ts": 11684753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455890", "tid": 35568, "ts": 11684839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455ca0", "tid": 35568, "ts": 11684925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad454850", "tid": 35568, "ts": 11685012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4552e0", "tid": 35568, "ts": 11685099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453740", "tid": 35568, "ts": 11685185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4538e0", "tid": 35568, "ts": 11685272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad456590", "tid": 35568, "ts": 11685359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4535a0", "tid": 35568, "ts": 11685446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4557c0", "tid": 35568, "ts": 11685532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4560b0", "tid": 35568, "ts": 11685618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453c20", "tid": 35568, "ts": 11685705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad455550", "tid": 35568, "ts": 11685792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452630", "tid": 35568, "ts": 11685878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451ba0", "tid": 35568, "ts": 11685966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451860", "tid": 35568, "ts": 11686053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452cb0", "tid": 35568, "ts": 11686139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450680", "tid": 35568, "ts": 11686225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4516c0", "tid": 35568, "ts": 11686312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451fb0", "tid": 35568, "ts": 11686399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452a40", "tid": 35568, "ts": 11686486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451450", "tid": 35568, "ts": 11686572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4505b0", "tid": 35568, "ts": 11686658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452490", "tid": 35568, "ts": 11686745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4522f0", "tid": 35568, "ts": 11686836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4511e0", "tid": 35568, "ts": 11686923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450b60", "tid": 35568, "ts": 11687010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450f70", "tid": 35568, "ts": 11687096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451ee0", "tid": 35568, "ts": 11687183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451c70", "tid": 35568, "ts": 11687269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450dd0", "tid": 35568, "ts": 11687355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453400", "tid": 35568, "ts": 11687442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4523c0", "tid": 35568, "ts": 11687528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450c30", "tid": 35568, "ts": 11687619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450340", "tid": 35568, "ts": 11687707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450270", "tid": 35568, "ts": 11687793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4509c0", "tid": 35568, "ts": 11687879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad453260", "tid": 35568, "ts": 11687964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452700", "tid": 35568, "ts": 11688050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad452150", "tid": 35568, "ts": 11688137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451930", "tid": 35568, "ts": 11688223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad4501a0", "tid": 35568, "ts": 11688309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450d00", "tid": 35568, "ts": 11688396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad450ea0", "tid": 35568, "ts": 11688483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ad451d40", "tid": 35568, "ts": 11688569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd809f0", "tid": 35568, "ts": 11688655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80850", "tid": 35568, "ts": 11688742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80440", "tid": 35568, "ts": 11688828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80030", "tid": 35568, "ts": 11688914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80370", "tid": 35568, "ts": 11689000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fdc0", "tid": 35568, "ts": 11689086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fa80", "tid": 35568, "ts": 11689172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f400", "tid": 35568, "ts": 11689258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e700", "tid": 35568, "ts": 11689344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e490", "tid": 35568, "ts": 11689430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80c60", "tid": 35568, "ts": 11689517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f4d0", "tid": 35568, "ts": 11689604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e3c0", "tid": 35568, "ts": 11689690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e220", "tid": 35568, "ts": 11689777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ee50", "tid": 35568, "ts": 11689864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ed80", "tid": 35568, "ts": 11689950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ecb0", "tid": 35568, "ts": 11690036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ebe0", "tid": 35568, "ts": 11690122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f260", "tid": 35568, "ts": 11690209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dee0", "tid": 35568, "ts": 11690295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dd40", "tid": 35568, "ts": 11690382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fb50", "tid": 35568, "ts": 11690468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f670", "tid": 35568, "ts": 11690554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7fcf0", "tid": 35568, "ts": 11690640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e7d0", "tid": 35568, "ts": 11690726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7eb10", "tid": 35568, "ts": 11690812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80e00", "tid": 35568, "ts": 11690898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7f8e0", "tid": 35568, "ts": 11690985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e970", "tid": 35568, "ts": 11691070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd80ed0", "tid": 35568, "ts": 11691156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7e150", "tid": 35568, "ts": 11691243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c8f0", "tid": 35568, "ts": 11691329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c340", "tid": 35568, "ts": 11691416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d040", "tid": 35568, "ts": 11691502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c0d0", "tid": 35568, "ts": 11691589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bcc0", "tid": 35568, "ts": 11691674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c820", "tid": 35568, "ts": 11691760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cf70", "tid": 35568, "ts": 11691847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c680", "tid": 35568, "ts": 11691933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7aae0", "tid": 35568, "ts": 11692019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7ca90", "tid": 35568, "ts": 11692105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7bd90", "tid": 35568, "ts": 11692191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b230", "tid": 35568, "ts": 11692283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d2b0", "tid": 35568, "ts": 11692370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b7e0", "tid": 35568, "ts": 11692456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7cdd0", "tid": 35568, "ts": 11692543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d6c0", "tid": 35568, "ts": 11692629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d1e0", "tid": 35568, "ts": 11692716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b710", "tid": 35568, "ts": 11692802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c5b0", "tid": 35568, "ts": 11692889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d860", "tid": 35568, "ts": 11692976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c9c0", "tid": 35568, "ts": 11693062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d5f0", "tid": 35568, "ts": 11693148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7c410", "tid": 35568, "ts": 11693234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b160", "tid": 35568, "ts": 11693320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b640", "tid": 35568, "ts": 11693407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b090", "tid": 35568, "ts": 11693493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dc70", "tid": 35568, "ts": 11693580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7dba0", "tid": 35568, "ts": 11693666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d380", "tid": 35568, "ts": 11693752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7b570", "tid": 35568, "ts": 11693838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d110", "tid": 35568, "ts": 11693925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7d520", "tid": 35568, "ts": 11694011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79eb0", "tid": 35568, "ts": 11694097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd795c0", "tid": 35568, "ts": 11694184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd794f0", "tid": 35568, "ts": 11694271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77f00", "tid": 35568, "ts": 11694358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd790e0", "tid": 35568, "ts": 11694444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd776e0", "tid": 35568, "ts": 11694530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79900", "tid": 35568, "ts": 11694639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79b70", "tid": 35568, "ts": 11694725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79010", "tid": 35568, "ts": 11694811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a6d0", "tid": 35568, "ts": 11694897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78990", "tid": 35568, "ts": 11694983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd780a0", "tid": 35568, "ts": 11695069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79830", "tid": 35568, "ts": 11695155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd79280", "tid": 35568, "ts": 11695241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd791b0", "tid": 35568, "ts": 11695327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a1f0", "tid": 35568, "ts": 11695413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd787f0", "tid": 35568, "ts": 11695499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78cd0", "tid": 35568, "ts": 11695585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd799d0", "tid": 35568, "ts": 11695671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77fd0", "tid": 35568, "ts": 11695758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77e30", "tid": 35568, "ts": 11695844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a600", "tid": 35568, "ts": 11695931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78650", "tid": 35568, "ts": 11696017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd777b0", "tid": 35568, "ts": 11696103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78f40", "tid": 35568, "ts": 11696189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78240", "tid": 35568, "ts": 11696276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a2c0", "tid": 35568, "ts": 11696362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd78170", "tid": 35568, "ts": 11696447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd783e0", "tid": 35568, "ts": 11696533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd7a050", "tid": 35568, "ts": 11696618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77bc0", "tid": 35568, "ts": 11696705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77af0", "tid": 35568, "ts": 11696791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74bd0", "tid": 35568, "ts": 11696877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76770", "tid": 35568, "ts": 11696963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd765d0", "tid": 35568, "ts": 11697049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74a30", "tid": 35568, "ts": 11697135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76430", "tid": 35568, "ts": 11697221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd742e0", "tid": 35568, "ts": 11697306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77470", "tid": 35568, "ts": 11697393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd773a0", "tid": 35568, "ts": 11697479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75c10", "tid": 35568, "ts": 11697565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74960", "tid": 35568, "ts": 11697651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76290", "tid": 35568, "ts": 11697737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd761c0", "tid": 35568, "ts": 11697823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd77060", "tid": 35568, "ts": 11697909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76ec0", "tid": 35568, "ts": 11697995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74890", "tid": 35568, "ts": 11698081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd759a0", "tid": 35568, "ts": 11698167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76f90", "tid": 35568, "ts": 11698253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75660", "tid": 35568, "ts": 11698339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74e40", "tid": 35568, "ts": 11698425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76d20", "tid": 35568, "ts": 11698511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75b40", "tid": 35568, "ts": 11698596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75180", "tid": 35568, "ts": 11698682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75800", "tid": 35568, "ts": 11698768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd747c0", "tid": 35568, "ts": 11698854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd746f0", "tid": 35568, "ts": 11698940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74fe0", "tid": 35568, "ts": 11699027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd753f0", "tid": 35568, "ts": 11699113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd772d0", "tid": 35568, "ts": 11699199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd74480", "tid": 35568, "ts": 11699286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76840", "tid": 35568, "ts": 11699371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd75db0", "tid": 35568, "ts": 11699458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd76b80", "tid": 35568, "ts": 11699544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70fb0", "tid": 35568, "ts": 11699630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd739f0", "tid": 35568, "ts": 11699755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73780", "tid": 35568, "ts": 11699844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73b90", "tid": 35568, "ts": 11699930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd735e0", "tid": 35568, "ts": 11700016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73440", "tid": 35568, "ts": 11700103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd732a0", "tid": 35568, "ts": 11700189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73030", "tid": 35568, "ts": 11700275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd729b0", "tid": 35568, "ts": 11700362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73850", "tid": 35568, "ts": 11700447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72f60", "tid": 35568, "ts": 11700534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70e10", "tid": 35568, "ts": 11700620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72740", "tid": 35568, "ts": 11700706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd718a0", "tid": 35568, "ts": 11700792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72670", "tid": 35568, "ts": 11700878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71700", "tid": 35568, "ts": 11700965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd725a0", "tid": 35568, "ts": 11701051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73ac0", "tid": 35568, "ts": 11701138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70d40", "tid": 35568, "ts": 11701224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72dc0", "tid": 35568, "ts": 11701310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71b10", "tid": 35568, "ts": 11701396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd731d0", "tid": 35568, "ts": 11701482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71560", "tid": 35568, "ts": 11701568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71220", "tid": 35568, "ts": 11701654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71630", "tid": 35568, "ts": 11701740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71ff0", "tid": 35568, "ts": 11701826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd713c0", "tid": 35568, "ts": 11701912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71150", "tid": 35568, "ts": 11701998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd72e90", "tid": 35568, "ts": 11702084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71e50", "tid": 35568, "ts": 11702170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd71490", "tid": 35568, "ts": 11702256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd73fa0", "tid": 35568, "ts": 11702342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70040", "tid": 35568, "ts": 11702428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fd00", "tid": 35568, "ts": 11702515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f8f0", "tid": 35568, "ts": 11702602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70930", "tid": 35568, "ts": 11702687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fb60", "tid": 35568, "ts": 11702773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f1a0", "tid": 35568, "ts": 11702858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ef30", "tid": 35568, "ts": 11702944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e230", "tid": 35568, "ts": 11703030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e570", "tid": 35568, "ts": 11703117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e160", "tid": 35568, "ts": 11703203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70790", "tid": 35568, "ts": 11703289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fea0", "tid": 35568, "ts": 11703375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f9c0", "tid": 35568, "ts": 11703461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e710", "tid": 35568, "ts": 11703547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd705f0", "tid": 35568, "ts": 11703633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e3d0", "tid": 35568, "ts": 11703719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6de20", "tid": 35568, "ts": 11703811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70ba0", "tid": 35568, "ts": 11703897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70520", "tid": 35568, "ts": 11703983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f820", "tid": 35568, "ts": 11704070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e640", "tid": 35568, "ts": 11704156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f0d0", "tid": 35568, "ts": 11704241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f4e0", "tid": 35568, "ts": 11704327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dbb0", "tid": 35568, "ts": 11704413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6f410", "tid": 35568, "ts": 11704499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6e7e0", "tid": 35568, "ts": 11704585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70110", "tid": 35568, "ts": 11704676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d940", "tid": 35568, "ts": 11704764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd701e0", "tid": 35568, "ts": 11704850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd70450", "tid": 35568, "ts": 11704937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6fdd0", "tid": 35568, "ts": 11705022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6dd50", "tid": 35568, "ts": 11705108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b170", "tid": 35568, "ts": 11705195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c4f0", "tid": 35568, "ts": 11705281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a610", "tid": 35568, "ts": 11705367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d530", "tid": 35568, "ts": 11705454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bcd0", "tid": 35568, "ts": 11705539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d460", "tid": 35568, "ts": 11705630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a540", "tid": 35568, "ts": 11705718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ac90", "tid": 35568, "ts": 11705805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6ceb0", "tid": 35568, "ts": 11705891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b0a0", "tid": 35568, "ts": 11705976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d6d0", "tid": 35568, "ts": 11706062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6bda0", "tid": 35568, "ts": 11706148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6aaf0", "tid": 35568, "ts": 11706235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b650", "tid": 35568, "ts": 11706321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cc40", "tid": 35568, "ts": 11706407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6cb70", "tid": 35568, "ts": 11706493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6abc0", "tid": 35568, "ts": 11706579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b310", "tid": 35568, "ts": 11706665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c5c0", "tid": 35568, "ts": 11706752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c900", "tid": 35568, "ts": 11706838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c1b0", "tid": 35568, "ts": 11706924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d600", "tid": 35568, "ts": 11707009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c350", "tid": 35568, "ts": 11707096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b7f0", "tid": 35568, "ts": 11707182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6aa20", "tid": 35568, "ts": 11707269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d7a0", "tid": 35568, "ts": 11707355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b4b0", "tid": 35568, "ts": 11707441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6b8c0", "tid": 35568, "ts": 11707527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6d050", "tid": 35568, "ts": 11707613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c010", "tid": 35568, "ts": 11707699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c760", "tid": 35568, "ts": 11707786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6c690", "tid": 35568, "ts": 11707873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a2d0", "tid": 35568, "ts": 11707959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd695d0", "tid": 35568, "ts": 11708045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68800", "tid": 35568, "ts": 11708131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a200", "tid": 35568, "ts": 11708217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd684c0", "tid": 35568, "ts": 11708303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68ce0", "tid": 35568, "ts": 11708389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67d70", "tid": 35568, "ts": 11708476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd683f0", "tid": 35568, "ts": 11708562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd6a060", "tid": 35568, "ts": 11708648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68c10", "tid": 35568, "ts": 11708734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68b40", "tid": 35568, "ts": 11708820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68a70", "tid": 35568, "ts": 11708906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67960", "tid": 35568, "ts": 11708991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68250", "tid": 35568, "ts": 11709077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd689a0", "tid": 35568, "ts": 11709163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68f50", "tid": 35568, "ts": 11709270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69910", "tid": 35568, "ts": 11709358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68e80", "tid": 35568, "ts": 11709445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69df0", "tid": 35568, "ts": 11709532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd68180", "tid": 35568, "ts": 11709619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd691c0", "tid": 35568, "ts": 11709705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67b00", "tid": 35568, "ts": 11709791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69290", "tid": 35568, "ts": 11709877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd67fe0", "tid": 35568, "ts": 11709963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd690f0", "tid": 35568, "ts": 11710050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69ab0", "tid": 35568, "ts": 11710136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd688d0", "tid": 35568, "ts": 11710222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69840", "tid": 35568, "ts": 11710308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd699e0", "tid": 35568, "ts": 11710395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69b80", "tid": 35568, "ts": 11710480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd69c50", "tid": 35568, "ts": 11710566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65f60", "tid": 35568, "ts": 11710653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64490", "tid": 35568, "ts": 11710740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65670", "tid": 35568, "ts": 11710826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd655a0", "tid": 35568, "ts": 11710913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd661d0", "tid": 35568, "ts": 11710999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd654d0", "tid": 35568, "ts": 11711085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64080", "tid": 35568, "ts": 11711172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64cb0", "tid": 35568, "ts": 11711258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65b50", "tid": 35568, "ts": 11711344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66d30", "tid": 35568, "ts": 11711431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd658e0", "tid": 35568, "ts": 11711518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65190", "tid": 35568, "ts": 11711604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65e90", "tid": 35568, "ts": 11711690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65400", "tid": 35568, "ts": 11711777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64220", "tid": 35568, "ts": 11711864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66030", "tid": 35568, "ts": 11711950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd642f0", "tid": 35568, "ts": 11712035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66440", "tid": 35568, "ts": 11712122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66850", "tid": 35568, "ts": 11712208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66370", "tid": 35568, "ts": 11712294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64970", "tid": 35568, "ts": 11712380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64d80", "tid": 35568, "ts": 11712466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64f20", "tid": 35568, "ts": 11712553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd648a0", "tid": 35568, "ts": 11712639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65a80", "tid": 35568, "ts": 11712726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66780", "tid": 35568, "ts": 11712812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65c20", "tid": 35568, "ts": 11712899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd65260", "tid": 35568, "ts": 11712985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66ed0", "tid": 35568, "ts": 11713071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd647d0", "tid": 35568, "ts": 11713158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd66920", "tid": 35568, "ts": 11713244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd64630", "tid": 35568, "ts": 11713330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63110", "tid": 35568, "ts": 11713417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62f70", "tid": 35568, "ts": 11713503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62ea0", "tid": 35568, "ts": 11713590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd629c0", "tid": 35568, "ts": 11713676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd624e0", "tid": 35568, "ts": 11713762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60ef0", "tid": 35568, "ts": 11713848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63c70", "tid": 35568, "ts": 11713934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63930", "tid": 35568, "ts": 11714020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61710", "tid": 35568, "ts": 11714106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62410", "tid": 35568, "ts": 11714192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61570", "tid": 35568, "ts": 11714279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63790", "tid": 35568, "ts": 11714366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62820", "tid": 35568, "ts": 11714453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63520", "tid": 35568, "ts": 11714540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60ae0", "tid": 35568, "ts": 11714628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62680", "tid": 35568, "ts": 11714714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd632b0", "tid": 35568, "ts": 11714811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61cc0", "tid": 35568, "ts": 11714898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61f30", "tid": 35568, "ts": 11714984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61a50", "tid": 35568, "ts": 11715070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd625b0", "tid": 35568, "ts": 11715155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63ad0", "tid": 35568, "ts": 11715241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60fc0", "tid": 35568, "ts": 11715327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60c80", "tid": 35568, "ts": 11715490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd63380", "tid": 35568, "ts": 11715579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62270", "tid": 35568, "ts": 11715666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60940", "tid": 35568, "ts": 11715753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd61980", "tid": 35568, "ts": 11715840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60bb0", "tid": 35568, "ts": 11715926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60d50", "tid": 35568, "ts": 11716012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd617e0", "tid": 35568, "ts": 11716099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd62340", "tid": 35568, "ts": 11716186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d7b0", "tid": 35568, "ts": 11716273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f9d0", "tid": 35568, "ts": 11716359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f900", "tid": 35568, "ts": 11716446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f280", "tid": 35568, "ts": 11716532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f0e0", "tid": 35568, "ts": 11716618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60530", "tid": 35568, "ts": 11716705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ecd0", "tid": 35568, "ts": 11716792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fc40", "tid": 35568, "ts": 11716878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e170", "tid": 35568, "ts": 11716965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ec00", "tid": 35568, "ts": 11717052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd601f0", "tid": 35568, "ts": 11717138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f830", "tid": 35568, "ts": 11717225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f420", "tid": 35568, "ts": 11717311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e4b0", "tid": 35568, "ts": 11717398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60050", "tid": 35568, "ts": 11717485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f010", "tid": 35568, "ts": 11717572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e310", "tid": 35568, "ts": 11717658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e0a0", "tid": 35568, "ts": 11717745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5dfd0", "tid": 35568, "ts": 11717832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fd10", "tid": 35568, "ts": 11717919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f350", "tid": 35568, "ts": 11718005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5fde0", "tid": 35568, "ts": 11718092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5faa0", "tid": 35568, "ts": 11718178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d540", "tid": 35568, "ts": 11718265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d880", "tid": 35568, "ts": 11718351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e7f0", "tid": 35568, "ts": 11718438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5eda0", "tid": 35568, "ts": 11718523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd60870", "tid": 35568, "ts": 11718610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e240", "tid": 35568, "ts": 11718696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5ff80", "tid": 35568, "ts": 11718783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5e650", "tid": 35568, "ts": 11718869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5f690", "tid": 35568, "ts": 11718956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c910", "tid": 35568, "ts": 11719043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b800", "tid": 35568, "ts": 11719129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b4c0", "tid": 35568, "ts": 11719215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b730", "tid": 35568, "ts": 11719301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cf90", "tid": 35568, "ts": 11719387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c5d0", "tid": 35568, "ts": 11719473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5aca0", "tid": 35568, "ts": 11719559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c430", "tid": 35568, "ts": 11719646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a7c0", "tid": 35568, "ts": 11719732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d3a0", "tid": 35568, "ts": 11719818, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c360", "tid": 35568, "ts": 11719904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5abd0", "tid": 35568, "ts": 11719990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c1c0", "tid": 35568, "ts": 11720077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5be80", "tid": 35568, "ts": 11720163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cab0", "tid": 35568, "ts": 11720249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a480", "tid": 35568, "ts": 11720335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5afe0", "tid": 35568, "ts": 11720421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b180", "tid": 35568, "ts": 11720507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c770", "tid": 35568, "ts": 11720593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c6a0", "tid": 35568, "ts": 11720680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5b0b0", "tid": 35568, "ts": 11720766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5aa30", "tid": 35568, "ts": 11720852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5cdf0", "tid": 35568, "ts": 11720939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a140", "tid": 35568, "ts": 11721025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c020", "tid": 35568, "ts": 11721112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d470", "tid": 35568, "ts": 11721198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a2e0", "tid": 35568, "ts": 11721285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d130", "tid": 35568, "ts": 11721371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5d060", "tid": 35568, "ts": 11721457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5a550", "tid": 35568, "ts": 11721544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5bb40", "tid": 35568, "ts": 11721630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd5c840", "tid": 35568, "ts": 11721717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd584d0", "tid": 35568, "ts": 11721804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57ff0", "tid": 35568, "ts": 11721891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd589b0", "tid": 35568, "ts": 11721977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56e10", "tid": 35568, "ts": 11722063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd599f0", "tid": 35568, "ts": 11722149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59920", "tid": 35568, "ts": 11722236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd596b0", "tid": 35568, "ts": 11722323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd588e0", "tid": 35568, "ts": 11722409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57a40", "tid": 35568, "ts": 11722496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58810", "tid": 35568, "ts": 11722582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58190", "tid": 35568, "ts": 11722669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd595e0", "tid": 35568, "ts": 11722756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59440", "tid": 35568, "ts": 11722842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59fa0", "tid": 35568, "ts": 11722928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59370", "tid": 35568, "ts": 11723015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57b10", "tid": 35568, "ts": 11723102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58e90", "tid": 35568, "ts": 11723188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd580c0", "tid": 35568, "ts": 11723275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56fb0", "tid": 35568, "ts": 11723361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd572f0", "tid": 35568, "ts": 11723447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58f60", "tid": 35568, "ts": 11723533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58260", "tid": 35568, "ts": 11723620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd577d0", "tid": 35568, "ts": 11723706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58c20", "tid": 35568, "ts": 11723792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58740", "tid": 35568, "ts": 11723879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57220", "tid": 35568, "ts": 11723965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59030", "tid": 35568, "ts": 11724051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd59ac0", "tid": 35568, "ts": 11724137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd58330", "tid": 35568, "ts": 11724222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57630", "tid": 35568, "ts": 11724309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57d80", "tid": 35568, "ts": 11724395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd57560", "tid": 35568, "ts": 11724482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53c80", "tid": 35568, "ts": 11724570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53a10", "tid": 35568, "ts": 11724656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56ad0", "tid": 35568, "ts": 11724742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd551a0", "tid": 35568, "ts": 11724829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54710", "tid": 35568, "ts": 11724916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd565f0", "tid": 35568, "ts": 11725002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56110", "tid": 35568, "ts": 11725088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54300", "tid": 35568, "ts": 11725174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55f70", "tid": 35568, "ts": 11725260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54980", "tid": 35568, "ts": 11725346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53e20", "tid": 35568, "ts": 11725433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56380", "tid": 35568, "ts": 11725520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55ea0", "tid": 35568, "ts": 11725606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55680", "tid": 35568, "ts": 11725693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55820", "tid": 35568, "ts": 11725778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd562b0", "tid": 35568, "ts": 11725865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56a00", "tid": 35568, "ts": 11725952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55410", "tid": 35568, "ts": 11726037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54160", "tid": 35568, "ts": 11726124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd561e0", "tid": 35568, "ts": 11726210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54a50", "tid": 35568, "ts": 11726296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55270", "tid": 35568, "ts": 11726383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55c30", "tid": 35568, "ts": 11726469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56860", "tid": 35568, "ts": 11726556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd554e0", "tid": 35568, "ts": 11726642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55340", "tid": 35568, "ts": 11726729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd547e0", "tid": 35568, "ts": 11726815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd54b20", "tid": 35568, "ts": 11726901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd55b60", "tid": 35568, "ts": 11726988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd558f0", "tid": 35568, "ts": 11727074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd559c0", "tid": 35568, "ts": 11727160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd56790", "tid": 35568, "ts": 11727246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53870", "tid": 35568, "ts": 11727334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51cd0", "tid": 35568, "ts": 11727420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50fd0", "tid": 35568, "ts": 11727506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd537a0", "tid": 35568, "ts": 11727593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd536d0", "tid": 35568, "ts": 11727679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53600", "tid": 35568, "ts": 11727764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50f00", "tid": 35568, "ts": 11727850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51da0", "tid": 35568, "ts": 11727937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52350", "tid": 35568, "ts": 11728023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52760", "tid": 35568, "ts": 11728110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53390", "tid": 35568, "ts": 11728195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50880", "tid": 35568, "ts": 11728282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50af0", "tid": 35568, "ts": 11728369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51b30", "tid": 35568, "ts": 11728454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd521b0", "tid": 35568, "ts": 11728540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52280", "tid": 35568, "ts": 11728626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52d10", "tid": 35568, "ts": 11728713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd507b0", "tid": 35568, "ts": 11728799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53050", "tid": 35568, "ts": 11728885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52830", "tid": 35568, "ts": 11728972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51720", "tid": 35568, "ts": 11729058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52c40", "tid": 35568, "ts": 11729144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52eb0", "tid": 35568, "ts": 11729230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51f40", "tid": 35568, "ts": 11729317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd53460", "tid": 35568, "ts": 11729404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd506e0", "tid": 35568, "ts": 11729495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51310", "tid": 35568, "ts": 11729582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51240", "tid": 35568, "ts": 11729669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd51650", "tid": 35568, "ts": 11729755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50d60", "tid": 35568, "ts": 11729842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd52b70", "tid": 35568, "ts": 11729927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50950", "tid": 35568, "ts": 11730013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f500", "tid": 35568, "ts": 11730099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f430", "tid": 35568, "ts": 11730186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f1c0", "tid": 35568, "ts": 11730271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f6a0", "tid": 35568, "ts": 11730358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dbd0", "tid": 35568, "ts": 11730444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f290", "tid": 35568, "ts": 11730531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f5d0", "tid": 35568, "ts": 11730617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4da30", "tid": 35568, "ts": 11730703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e9a0", "tid": 35568, "ts": 11730789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d960", "tid": 35568, "ts": 11730875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d3b0", "tid": 35568, "ts": 11730978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d140", "tid": 35568, "ts": 11731191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e800", "tid": 35568, "ts": 11731341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d480", "tid": 35568, "ts": 11731487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f840", "tid": 35568, "ts": 11731601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e730", "tid": 35568, "ts": 11731699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e0b0", "tid": 35568, "ts": 11731848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4dd70", "tid": 35568, "ts": 11731961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4edb0", "tid": 35568, "ts": 11732048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e250", "tid": 35568, "ts": 11732136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fd20", "tid": 35568, "ts": 11732222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ece0", "tid": 35568, "ts": 11732308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4eb40", "tid": 35568, "ts": 11732394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e8d0", "tid": 35568, "ts": 11732480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd50200", "tid": 35568, "ts": 11732566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e4c0", "tid": 35568, "ts": 11732653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4fec0", "tid": 35568, "ts": 11732739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e660", "tid": 35568, "ts": 11732826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e3f0", "tid": 35568, "ts": 11732912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4f9e0", "tid": 35568, "ts": 11732999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d890", "tid": 35568, "ts": 11733084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4e590", "tid": 35568, "ts": 11733171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b260", "tid": 35568, "ts": 11733256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4acb0", "tid": 35568, "ts": 11733343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4aa40", "tid": 35568, "ts": 11733429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49d40", "tid": 35568, "ts": 11733515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4d070", "tid": 35568, "ts": 11733602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ab10", "tid": 35568, "ts": 11733688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bc20", "tid": 35568, "ts": 11733774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b9b0", "tid": 35568, "ts": 11733859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4aff0", "tid": 35568, "ts": 11733946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c2a0", "tid": 35568, "ts": 11734033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cac0", "tid": 35568, "ts": 11734120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b0c0", "tid": 35568, "ts": 11734206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c6b0", "tid": 35568, "ts": 11734292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4be90", "tid": 35568, "ts": 11734378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4ce00", "tid": 35568, "ts": 11734464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bf60", "tid": 35568, "ts": 11734551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a560", "tid": 35568, "ts": 11734636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a700", "tid": 35568, "ts": 11734722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c850", "tid": 35568, "ts": 11734808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cd30", "tid": 35568, "ts": 11734895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4bb50", "tid": 35568, "ts": 11734981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c100", "tid": 35568, "ts": 11735067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cc60", "tid": 35568, "ts": 11735154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a3c0", "tid": 35568, "ts": 11735240, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b670", "tid": 35568, "ts": 11735327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4cb90", "tid": 35568, "ts": 11735413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4c370", "tid": 35568, "ts": 11735500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b5a0", "tid": 35568, "ts": 11735586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b4d0", "tid": 35568, "ts": 11735672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4b400", "tid": 35568, "ts": 11735758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49ee0", "tid": 35568, "ts": 11735844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd4a7d0", "tid": 35568, "ts": 11735930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46a10", "tid": 35568, "ts": 11736016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48820", "tid": 35568, "ts": 11736103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46bb0", "tid": 35568, "ts": 11736189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49450", "tid": 35568, "ts": 11736276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48ea0", "tid": 35568, "ts": 11736361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46940", "tid": 35568, "ts": 11736448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48680", "tid": 35568, "ts": 11736534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47090", "tid": 35568, "ts": 11736620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49c70", "tid": 35568, "ts": 11736706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd492b0", "tid": 35568, "ts": 11736792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47640", "tid": 35568, "ts": 11736878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47bf0", "tid": 35568, "ts": 11736964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49ba0", "tid": 35568, "ts": 11737050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49ad0", "tid": 35568, "ts": 11737137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47160", "tid": 35568, "ts": 11737223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd489c0", "tid": 35568, "ts": 11737308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48000", "tid": 35568, "ts": 11737395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48a90", "tid": 35568, "ts": 11737480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49110", "tid": 35568, "ts": 11737567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47b20", "tid": 35568, "ts": 11737653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47e60", "tid": 35568, "ts": 11737739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47a50", "tid": 35568, "ts": 11737826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49040", "tid": 35568, "ts": 11737912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd488f0", "tid": 35568, "ts": 11737998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd474a0", "tid": 35568, "ts": 11738084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd480d0", "tid": 35568, "ts": 11738171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48410", "tid": 35568, "ts": 11738257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd49930", "tid": 35568, "ts": 11738343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47230", "tid": 35568, "ts": 11738430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd48c30", "tid": 35568, "ts": 11738515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd477e0", "tid": 35568, "ts": 11738601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd47d90", "tid": 35568, "ts": 11738687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46050", "tid": 35568, "ts": 11738773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd455c0", "tid": 35568, "ts": 11738859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44c00", "tid": 35568, "ts": 11738945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45420", "tid": 35568, "ts": 11739032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44650", "tid": 35568, "ts": 11739119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43d60", "tid": 35568, "ts": 11739204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45de0", "tid": 35568, "ts": 11739290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43bc0", "tid": 35568, "ts": 11739376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43880", "tid": 35568, "ts": 11739462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45280", "tid": 35568, "ts": 11739548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45f80", "tid": 35568, "ts": 11739634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd451b0", "tid": 35568, "ts": 11739721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44170", "tid": 35568, "ts": 11739806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd454f0", "tid": 35568, "ts": 11739892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd46460", "tid": 35568, "ts": 11739978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd467a0", "tid": 35568, "ts": 11740064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43af0", "tid": 35568, "ts": 11740150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44da0", "tid": 35568, "ts": 11740238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd461f0", "tid": 35568, "ts": 11740324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45b70", "tid": 35568, "ts": 11740411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd444b0", "tid": 35568, "ts": 11740497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd459d0", "tid": 35568, "ts": 11740583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44990", "tid": 35568, "ts": 11740669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44720", "tid": 35568, "ts": 11740756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44cd0", "tid": 35568, "ts": 11740842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44310", "tid": 35568, "ts": 11740927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43540", "tid": 35568, "ts": 11741013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45010", "tid": 35568, "ts": 11741099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45690", "tid": 35568, "ts": 11741186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd45830", "tid": 35568, "ts": 11741273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd450e0", "tid": 35568, "ts": 11741359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd44f40", "tid": 35568, "ts": 11741445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd407c0", "tid": 35568, "ts": 11741532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41800", "tid": 35568, "ts": 11741618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40480", "tid": 35568, "ts": 11741704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42ec0", "tid": 35568, "ts": 11741792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40bd0", "tid": 35568, "ts": 11741878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41730", "tid": 35568, "ts": 11741964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd414c0", "tid": 35568, "ts": 11742050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40b00", "tid": 35568, "ts": 11742136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd406f0", "tid": 35568, "ts": 11742227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42360", "tid": 35568, "ts": 11742315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd43470", "tid": 35568, "ts": 11742402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40140", "tid": 35568, "ts": 11742489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41320", "tid": 35568, "ts": 11742575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd410b0", "tid": 35568, "ts": 11742661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd420f0", "tid": 35568, "ts": 11742748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42df0", "tid": 35568, "ts": 11742834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd402e0", "tid": 35568, "ts": 11742922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd421c0", "tid": 35568, "ts": 11743008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42020", "tid": 35568, "ts": 11743095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41c10", "tid": 35568, "ts": 11743182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40fe0", "tid": 35568, "ts": 11743269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40550", "tid": 35568, "ts": 11743355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41f50", "tid": 35568, "ts": 11743441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42770", "tid": 35568, "ts": 11743528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41e80", "tid": 35568, "ts": 11743615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42500", "tid": 35568, "ts": 11743701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42910", "tid": 35568, "ts": 11743787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd42f90", "tid": 35568, "ts": 11743875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40e40", "tid": 35568, "ts": 11743961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd426a0", "tid": 35568, "ts": 11744048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd40f10", "tid": 35568, "ts": 11744134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234acd41180", "tid": 35568, "ts": 11744221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f7f0", "tid": 35568, "ts": 11744308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f650", "tid": 35568, "ts": 11744395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650eb0", "tid": 35568, "ts": 11744481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ed60", "tid": 35568, "ts": 11744567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650aa0", "tid": 35568, "ts": 11744654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ebc0", "tid": 35568, "ts": 11744740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64eaf0", "tid": 35568, "ts": 11744826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650900", "tid": 35568, "ts": 11744912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650830", "tid": 35568, "ts": 11744998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e610", "tid": 35568, "ts": 11745085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64ea20", "tid": 35568, "ts": 11745171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e470", "tid": 35568, "ts": 11745257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650c40", "tid": 35568, "ts": 11745343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650f80", "tid": 35568, "ts": 11745429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650420", "tid": 35568, "ts": 11745515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650010", "tid": 35568, "ts": 11745601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6504f0", "tid": 35568, "ts": 11745688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e130", "tid": 35568, "ts": 11745775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651390", "tid": 35568, "ts": 11745861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fa60", "tid": 35568, "ts": 11745947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e7b0", "tid": 35568, "ts": 11746033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e950", "tid": 35568, "ts": 11746118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650350", "tid": 35568, "ts": 11746205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650280", "tid": 35568, "ts": 11746291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fda0", "tid": 35568, "ts": 11746377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f310", "tid": 35568, "ts": 11746463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac650b70", "tid": 35568, "ts": 11746549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64e880", "tid": 35568, "ts": 11746668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fc00", "tid": 35568, "ts": 11746756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651050", "tid": 35568, "ts": 11746842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64fcd0", "tid": 35568, "ts": 11746929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac64f240", "tid": 35568, "ts": 11747014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d320", "tid": 35568, "ts": 11747101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cf10", "tid": 35568, "ts": 11747188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68cd70", "tid": 35568, "ts": 11747274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ca30", "tid": 35568, "ts": 11747361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c550", "tid": 35568, "ts": 11747448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c3b0", "tid": 35568, "ts": 11747534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c210", "tid": 35568, "ts": 11747620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c140", "tid": 35568, "ts": 11747707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68eb80", "tid": 35568, "ts": 11747793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e9e0", "tid": 35568, "ts": 11747879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e910", "tid": 35568, "ts": 11747965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e6a0", "tid": 35568, "ts": 11748052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e1c0", "tid": 35568, "ts": 11748138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e0f0", "tid": 35568, "ts": 11748224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68db40", "tid": 35568, "ts": 11748310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bed0", "tid": 35568, "ts": 11748398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68eec0", "tid": 35568, "ts": 11748484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d9a0", "tid": 35568, "ts": 11748570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bd30", "tid": 35568, "ts": 11748656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d250", "tid": 35568, "ts": 11748742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e500", "tid": 35568, "ts": 11748828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d3f0", "tid": 35568, "ts": 11748914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68dce0", "tid": 35568, "ts": 11749001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d800", "tid": 35568, "ts": 11749087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68dc10", "tid": 35568, "ts": 11749173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d660", "tid": 35568, "ts": 11749260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d730", "tid": 35568, "ts": 11749346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68e840", "tid": 35568, "ts": 11749432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68d0b0", "tid": 35568, "ts": 11749519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68de80", "tid": 35568, "ts": 11749606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68c890", "tid": 35568, "ts": 11749698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689e50", "tid": 35568, "ts": 11749786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689cb0", "tid": 35568, "ts": 11749874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6892f0", "tid": 35568, "ts": 11749970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6897d0", "tid": 35568, "ts": 11750057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a190", "tid": 35568, "ts": 11750143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689be0", "tid": 35568, "ts": 11750229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689b10", "tid": 35568, "ts": 11750315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b6b0", "tid": 35568, "ts": 11750402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b5e0", "tid": 35568, "ts": 11750488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688fb0", "tid": 35568, "ts": 11750575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b370", "tid": 35568, "ts": 11750661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689150", "tid": 35568, "ts": 11750747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b2a0", "tid": 35568, "ts": 11750833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68bac0", "tid": 35568, "ts": 11750919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68ae90", "tid": 35568, "ts": 11751005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6893c0", "tid": 35568, "ts": 11751093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b9f0", "tid": 35568, "ts": 11751178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a400", "tid": 35568, "ts": 11751265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68acf0", "tid": 35568, "ts": 11751376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688ba0", "tid": 35568, "ts": 11751490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b920", "tid": 35568, "ts": 11751638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a0c0", "tid": 35568, "ts": 11751725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a260", "tid": 35568, "ts": 11751811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689490", "tid": 35568, "ts": 11751896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a670", "tid": 35568, "ts": 11751983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b510", "tid": 35568, "ts": 11752069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688ad0", "tid": 35568, "ts": 11752155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a5a0", "tid": 35568, "ts": 11752241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68aa80", "tid": 35568, "ts": 11752327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac689630", "tid": 35568, "ts": 11752413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68b780", "tid": 35568, "ts": 11752499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac68a9b0", "tid": 35568, "ts": 11752585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6882b0", "tid": 35568, "ts": 11752671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685e20", "tid": 35568, "ts": 11752758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688040", "tid": 35568, "ts": 11752844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685ae0", "tid": 35568, "ts": 11752930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687ea0", "tid": 35568, "ts": 11753017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6868b0", "tid": 35568, "ts": 11753103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685530", "tid": 35568, "ts": 11753190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687dd0", "tid": 35568, "ts": 11753276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6870d0", "tid": 35568, "ts": 11753368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687d00", "tid": 35568, "ts": 11753455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688520", "tid": 35568, "ts": 11753541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686570", "tid": 35568, "ts": 11753628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6863d0", "tid": 35568, "ts": 11753714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686300", "tid": 35568, "ts": 11753800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686a50", "tid": 35568, "ts": 11753886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686230", "tid": 35568, "ts": 11753972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6886c0", "tid": 35568, "ts": 11754057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686160", "tid": 35568, "ts": 11754144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686b20", "tid": 35568, "ts": 11754231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687000", "tid": 35568, "ts": 11754316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686710", "tid": 35568, "ts": 11754402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6885f0", "tid": 35568, "ts": 11754489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac687680", "tid": 35568, "ts": 11754575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686980", "tid": 35568, "ts": 11754661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6879c0", "tid": 35568, "ts": 11754747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688790", "tid": 35568, "ts": 11754834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685d50", "tid": 35568, "ts": 11754919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac688110", "tid": 35568, "ts": 11755005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686d90", "tid": 35568, "ts": 11755092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6875b0", "tid": 35568, "ts": 11755178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6864a0", "tid": 35568, "ts": 11755264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac686090", "tid": 35568, "ts": 11755350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6838c0", "tid": 35568, "ts": 11755435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6833e0", "tid": 35568, "ts": 11755522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682f00", "tid": 35568, "ts": 11755608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683580", "tid": 35568, "ts": 11755694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682a20", "tid": 35568, "ts": 11755780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683990", "tid": 35568, "ts": 11755866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682610", "tid": 35568, "ts": 11755953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684de0", "tid": 35568, "ts": 11756038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682880", "tid": 35568, "ts": 11756125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6845c0", "tid": 35568, "ts": 11756211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682e30", "tid": 35568, "ts": 11756297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6823a0", "tid": 35568, "ts": 11756383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683170", "tid": 35568, "ts": 11756469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682200", "tid": 35568, "ts": 11756555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683da0", "tid": 35568, "ts": 11756642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683240", "tid": 35568, "ts": 11756728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684b70", "tid": 35568, "ts": 11756814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684c40", "tid": 35568, "ts": 11756900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685460", "tid": 35568, "ts": 11756987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684aa0", "tid": 35568, "ts": 11757073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684f80", "tid": 35568, "ts": 11757159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683f40", "tid": 35568, "ts": 11757246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6826e0", "tid": 35568, "ts": 11757332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684d10", "tid": 35568, "ts": 11757418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6837f0", "tid": 35568, "ts": 11757504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6851f0", "tid": 35568, "ts": 11757590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac685120", "tid": 35568, "ts": 11757675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684420", "tid": 35568, "ts": 11757762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6830a0", "tid": 35568, "ts": 11757848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac684690", "tid": 35568, "ts": 11757934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac683cd0", "tid": 35568, "ts": 11758020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6822d0", "tid": 35568, "ts": 11758106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ff10", "tid": 35568, "ts": 11758192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fca0", "tid": 35568, "ts": 11758278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681840", "tid": 35568, "ts": 11758365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fb00", "tid": 35568, "ts": 11758452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681360", "tid": 35568, "ts": 11758538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680f50", "tid": 35568, "ts": 11758624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681770", "tid": 35568, "ts": 11758710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680e80", "tid": 35568, "ts": 11758796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f7c0", "tid": 35568, "ts": 11758882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f6f0", "tid": 35568, "ts": 11758968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac682060", "tid": 35568, "ts": 11759054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67fd70", "tid": 35568, "ts": 11759140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681910", "tid": 35568, "ts": 11759226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681f90", "tid": 35568, "ts": 11759312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680c10", "tid": 35568, "ts": 11759399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6803f0", "tid": 35568, "ts": 11759485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681500", "tid": 35568, "ts": 11759571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680b40", "tid": 35568, "ts": 11759657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f140", "tid": 35568, "ts": 11759743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67efa0", "tid": 35568, "ts": 11759830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6808d0", "tid": 35568, "ts": 11759916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6809a0", "tid": 35568, "ts": 11760002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680180", "tid": 35568, "ts": 11760089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67eed0", "tid": 35568, "ts": 11760174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67f550", "tid": 35568, "ts": 11760261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6800b0", "tid": 35568, "ts": 11760348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681d20", "tid": 35568, "ts": 11760434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac680590", "tid": 35568, "ts": 11760520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6815d0", "tid": 35568, "ts": 11760606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6810f0", "tid": 35568, "ts": 11760692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac681c50", "tid": 35568, "ts": 11760778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6804c0", "tid": 35568, "ts": 11760864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c7d0", "tid": 35568, "ts": 11760950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c3c0", "tid": 35568, "ts": 11761038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bfb0", "tid": 35568, "ts": 11761124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67be10", "tid": 35568, "ts": 11761210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bba0", "tid": 35568, "ts": 11761297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ec60", "tid": 35568, "ts": 11761383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e6b0", "tid": 35568, "ts": 11761469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e100", "tid": 35568, "ts": 11761555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e030", "tid": 35568, "ts": 11761641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67e5e0", "tid": 35568, "ts": 11761728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67bd40", "tid": 35568, "ts": 11761814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67de90", "tid": 35568, "ts": 11761901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cff0", "tid": 35568, "ts": 11761987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67dcf0", "tid": 35568, "ts": 11762073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d810", "tid": 35568, "ts": 11762160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67eb90", "tid": 35568, "ts": 11762308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d740", "tid": 35568, "ts": 11762431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c560", "tid": 35568, "ts": 11762519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67db50", "tid": 35568, "ts": 11762607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d190", "tid": 35568, "ts": 11762695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d5a0", "tid": 35568, "ts": 11762781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c220", "tid": 35568, "ts": 11762869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b930", "tid": 35568, "ts": 11762956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c150", "tid": 35568, "ts": 11763043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d260", "tid": 35568, "ts": 11763131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c970", "tid": 35568, "ts": 11763221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d9b0", "tid": 35568, "ts": 11763315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ccb0", "tid": 35568, "ts": 11763402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67cb10", "tid": 35568, "ts": 11763489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67d4d0", "tid": 35568, "ts": 11763576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c080", "tid": 35568, "ts": 11763663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67c490", "tid": 35568, "ts": 11763751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679640", "tid": 35568, "ts": 11763837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6793d0", "tid": 35568, "ts": 11763924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679160", "tid": 35568, "ts": 11764011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678bb0", "tid": 35568, "ts": 11764097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678940", "tid": 35568, "ts": 11764184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678530", "tid": 35568, "ts": 11764270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b790", "tid": 35568, "ts": 11764357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678870", "tid": 35568, "ts": 11764444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a680", "tid": 35568, "ts": 11764531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b1e0", "tid": 35568, "ts": 11764617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678e20", "tid": 35568, "ts": 11764732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ad00", "tid": 35568, "ts": 11764848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678c80", "tid": 35568, "ts": 11764935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b520", "tid": 35568, "ts": 11765021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678a10", "tid": 35568, "ts": 11765107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679300", "tid": 35568, "ts": 11765193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b450", "tid": 35568, "ts": 11765280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679b20", "tid": 35568, "ts": 11765366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a9c0", "tid": 35568, "ts": 11765452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b380", "tid": 35568, "ts": 11765539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a5b0", "tid": 35568, "ts": 11765633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67ab60", "tid": 35568, "ts": 11765720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67aa90", "tid": 35568, "ts": 11765807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679f30", "tid": 35568, "ts": 11765893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac679e60", "tid": 35568, "ts": 11765980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678d50", "tid": 35568, "ts": 11766066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6786d0", "tid": 35568, "ts": 11766153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6798b0", "tid": 35568, "ts": 11766239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a0d0", "tid": 35568, "ts": 11766326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67b040", "tid": 35568, "ts": 11766413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6797e0", "tid": 35568, "ts": 11766498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac67a8f0", "tid": 35568, "ts": 11766584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676310", "tid": 35568, "ts": 11766670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6760a0", "tid": 35568, "ts": 11766756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675f00", "tid": 35568, "ts": 11766843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6756e0", "tid": 35568, "ts": 11766930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676b30", "tid": 35568, "ts": 11767017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675130", "tid": 35568, "ts": 11767103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678460", "tid": 35568, "ts": 11767190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676a60", "tid": 35568, "ts": 11767276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675200", "tid": 35568, "ts": 11767362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675880", "tid": 35568, "ts": 11767449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677b70", "tid": 35568, "ts": 11767535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6753a0", "tid": 35568, "ts": 11767622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6763e0", "tid": 35568, "ts": 11767709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675d60", "tid": 35568, "ts": 11767795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676cd0", "tid": 35568, "ts": 11767882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675a20", "tid": 35568, "ts": 11767968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6767f0", "tid": 35568, "ts": 11768055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677350", "tid": 35568, "ts": 11768142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6757b0", "tid": 35568, "ts": 11768229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677010", "tid": 35568, "ts": 11768316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6752d0", "tid": 35568, "ts": 11768402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6782c0", "tid": 35568, "ts": 11768489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675c90", "tid": 35568, "ts": 11768576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6774f0", "tid": 35568, "ts": 11768662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac676240", "tid": 35568, "ts": 11768748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677eb0", "tid": 35568, "ts": 11768835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac678120", "tid": 35568, "ts": 11768922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677760", "tid": 35568, "ts": 11769008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677420", "tid": 35568, "ts": 11769095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6768c0", "tid": 35568, "ts": 11769181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6779d0", "tid": 35568, "ts": 11769267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac677690", "tid": 35568, "ts": 11769354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672bd0", "tid": 35568, "ts": 11769441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6722e0", "tid": 35568, "ts": 11769528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671fa0", "tid": 35568, "ts": 11769614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671d30", "tid": 35568, "ts": 11769701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672960", "tid": 35568, "ts": 11769788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac675060", "tid": 35568, "ts": 11769876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6749e0", "tid": 35568, "ts": 11769961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674430", "tid": 35568, "ts": 11770048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672550", "tid": 35568, "ts": 11770134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6738d0", "tid": 35568, "ts": 11770222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674ec0", "tid": 35568, "ts": 11770308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674d20", "tid": 35568, "ts": 11770394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6740f0", "tid": 35568, "ts": 11770481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674f90", "tid": 35568, "ts": 11770568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673320", "tid": 35568, "ts": 11770654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673b40", "tid": 35568, "ts": 11770740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672fe0", "tid": 35568, "ts": 11770827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674910", "tid": 35568, "ts": 11770914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673f50", "tid": 35568, "ts": 11771000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6733f0", "tid": 35568, "ts": 11771086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674b80", "tid": 35568, "ts": 11771173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672b00", "tid": 35568, "ts": 11771260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672210", "tid": 35568, "ts": 11771347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674290", "tid": 35568, "ts": 11771433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6726f0", "tid": 35568, "ts": 11771519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672890", "tid": 35568, "ts": 11771606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674020", "tid": 35568, "ts": 11771693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6745d0", "tid": 35568, "ts": 11771779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac674c50", "tid": 35568, "ts": 11771866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672070", "tid": 35568, "ts": 11771952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac672d70", "tid": 35568, "ts": 11772038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac673db0", "tid": 35568, "ts": 11772125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f8a0", "tid": 35568, "ts": 11772211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f630", "tid": 35568, "ts": 11772297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f220", "tid": 35568, "ts": 11772384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66eee0", "tid": 35568, "ts": 11772470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ead0", "tid": 35568, "ts": 11772556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fbe0", "tid": 35568, "ts": 11772642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f2f0", "tid": 35568, "ts": 11772741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ee10", "tid": 35568, "ts": 11772840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670b50", "tid": 35568, "ts": 11772928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670a80", "tid": 35568, "ts": 11773014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671030", "tid": 35568, "ts": 11773101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ff20", "tid": 35568, "ts": 11773193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f150", "tid": 35568, "ts": 11773279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670810", "tid": 35568, "ts": 11773366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f7d0", "tid": 35568, "ts": 11773453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6704d0", "tid": 35568, "ts": 11773539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670f60", "tid": 35568, "ts": 11773625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66fe50", "tid": 35568, "ts": 11773711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6719f0", "tid": 35568, "ts": 11773797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671780", "tid": 35568, "ts": 11773883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670e90", "tid": 35568, "ts": 11773969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670dc0", "tid": 35568, "ts": 11774055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670cf0", "tid": 35568, "ts": 11774142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac670330", "tid": 35568, "ts": 11774228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671100", "tid": 35568, "ts": 11774314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e930", "tid": 35568, "ts": 11774400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac671850", "tid": 35568, "ts": 11774487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ec70", "tid": 35568, "ts": 11774573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6705a0", "tid": 35568, "ts": 11774660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f970", "tid": 35568, "ts": 11774759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6700c0", "tid": 35568, "ts": 11774890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66f3c0", "tid": 35568, "ts": 11774977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e110", "tid": 35568, "ts": 11775063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bfc0", "tid": 35568, "ts": 11775150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ddd0", "tid": 35568, "ts": 11775236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c640", "tid": 35568, "ts": 11775322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d340", "tid": 35568, "ts": 11775409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e040", "tid": 35568, "ts": 11775495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d270", "tid": 35568, "ts": 11775582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66dc30", "tid": 35568, "ts": 11775668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d000", "tid": 35568, "ts": 11775754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e790", "tid": 35568, "ts": 11775840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c710", "tid": 35568, "ts": 11775927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e5f0", "tid": 35568, "ts": 11776013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bc80", "tid": 35568, "ts": 11776099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cb20", "tid": 35568, "ts": 11776185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66bd50", "tid": 35568, "ts": 11776271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66cd90", "tid": 35568, "ts": 11776357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66df70", "tid": 35568, "ts": 11776444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b870", "tid": 35568, "ts": 11776531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e2b0", "tid": 35568, "ts": 11776618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e520", "tid": 35568, "ts": 11776704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e380", "tid": 35568, "ts": 11776791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d9c0", "tid": 35568, "ts": 11776877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c160", "tid": 35568, "ts": 11776964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e1e0", "tid": 35568, "ts": 11777050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c570", "tid": 35568, "ts": 11777137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b940", "tid": 35568, "ts": 11777223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66c7e0", "tid": 35568, "ts": 11777309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ce60", "tid": 35568, "ts": 11777395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66be20", "tid": 35568, "ts": 11777482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66da90", "tid": 35568, "ts": 11777567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66e860", "tid": 35568, "ts": 11777653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66d1a0", "tid": 35568, "ts": 11777739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668c90", "tid": 35568, "ts": 11777826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6686e0", "tid": 35568, "ts": 11777954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668540", "tid": 35568, "ts": 11778041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b390", "tid": 35568, "ts": 11778128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a9d0", "tid": 35568, "ts": 11778214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a1b0", "tid": 35568, "ts": 11778301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669990", "tid": 35568, "ts": 11778388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6698c0", "tid": 35568, "ts": 11778474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668950", "tid": 35568, "ts": 11778560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669170", "tid": 35568, "ts": 11778646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a830", "tid": 35568, "ts": 11778733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a760", "tid": 35568, "ts": 11778819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669580", "tid": 35568, "ts": 11778905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66a4f0", "tid": 35568, "ts": 11778992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b2c0", "tid": 35568, "ts": 11779078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668e30", "tid": 35568, "ts": 11779164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669b30", "tid": 35568, "ts": 11779250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66aeb0", "tid": 35568, "ts": 11779336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669650", "tid": 35568, "ts": 11779422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b050", "tid": 35568, "ts": 11779508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668f00", "tid": 35568, "ts": 11779595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668a20", "tid": 35568, "ts": 11779681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669e70", "tid": 35568, "ts": 11779768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668af0", "tid": 35568, "ts": 11779854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b120", "tid": 35568, "ts": 11779940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac669da0", "tid": 35568, "ts": 11780026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66aaa0", "tid": 35568, "ts": 11780112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668200", "tid": 35568, "ts": 11780198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6693e0", "tid": 35568, "ts": 11780284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66ade0", "tid": 35568, "ts": 11780370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac668fd0", "tid": 35568, "ts": 11780456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac66b460", "tid": 35568, "ts": 11780542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6669a0", "tid": 35568, "ts": 11780628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665a30", "tid": 35568, "ts": 11780715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666730", "tid": 35568, "ts": 11780801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665890", "tid": 35568, "ts": 11780887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6656f0", "tid": 35568, "ts": 11780974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665550", "tid": 35568, "ts": 11781061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6652e0", "tid": 35568, "ts": 11781147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664fa0", "tid": 35568, "ts": 11781232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666800", "tid": 35568, "ts": 11781322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664e00", "tid": 35568, "ts": 11781409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667df0", "tid": 35568, "ts": 11781495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666180", "tid": 35568, "ts": 11781582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6660b0", "tid": 35568, "ts": 11781668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6663f0", "tid": 35568, "ts": 11781754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665140", "tid": 35568, "ts": 11781841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6670f0", "tid": 35568, "ts": 11781927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666c10", "tid": 35568, "ts": 11782013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667b80", "tid": 35568, "ts": 11782099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665f10", "tid": 35568, "ts": 11782186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666f50", "tid": 35568, "ts": 11782273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667910", "tid": 35568, "ts": 11782360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac666320", "tid": 35568, "ts": 11782446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac665e40", "tid": 35568, "ts": 11782545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6679e0", "tid": 35568, "ts": 11782678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6675d0", "tid": 35568, "ts": 11782766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667f90", "tid": 35568, "ts": 11782853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667020", "tid": 35568, "ts": 11782940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667d20", "tid": 35568, "ts": 11783027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6671c0", "tid": 35568, "ts": 11783113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6676a0", "tid": 35568, "ts": 11783205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667290", "tid": 35568, "ts": 11783292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac667ec0", "tid": 35568, "ts": 11783378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6649f0", "tid": 35568, "ts": 11783464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6634d0", "tid": 35568, "ts": 11783551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664440", "tid": 35568, "ts": 11783637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663330", "tid": 35568, "ts": 11783723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664370", "tid": 35568, "ts": 11783809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6628a0", "tid": 35568, "ts": 11783895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6638e0", "tid": 35568, "ts": 11783983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664100", "tid": 35568, "ts": 11784069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6627d0", "tid": 35568, "ts": 11784154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662700", "tid": 35568, "ts": 11784241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663740", "tid": 35568, "ts": 11784327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6642a0", "tid": 35568, "ts": 11784413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662cb0", "tid": 35568, "ts": 11784500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663f60", "tid": 35568, "ts": 11784587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663e90", "tid": 35568, "ts": 11784675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662490", "tid": 35568, "ts": 11784805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663b50", "tid": 35568, "ts": 11784940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6623c0", "tid": 35568, "ts": 11785056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662b10", "tid": 35568, "ts": 11785184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6635a0", "tid": 35568, "ts": 11785329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662be0", "tid": 35568, "ts": 11785447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661c70", "tid": 35568, "ts": 11785593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662080", "tid": 35568, "ts": 11785710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661fb0", "tid": 35568, "ts": 11785828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663810", "tid": 35568, "ts": 11785956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663cf0", "tid": 35568, "ts": 11786090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663c20", "tid": 35568, "ts": 11786204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac664780", "tid": 35568, "ts": 11786332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663dc0", "tid": 35568, "ts": 11786465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac662220", "tid": 35568, "ts": 11786581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac663a80", "tid": 35568, "ts": 11786726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6641d0", "tid": 35568, "ts": 11786844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fa50", "tid": 35568, "ts": 11786973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f4a0", "tid": 35568, "ts": 11787090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f710", "tid": 35568, "ts": 11787221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f160", "tid": 35568, "ts": 11787336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e940", "tid": 35568, "ts": 11787422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660f70", "tid": 35568, "ts": 11787508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ec80", "tid": 35568, "ts": 11787594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660ea0", "tid": 35568, "ts": 11787680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660750", "tid": 35568, "ts": 11787765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f570", "tid": 35568, "ts": 11787852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661110", "tid": 35568, "ts": 11787938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e870", "tid": 35568, "ts": 11788023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ebb0", "tid": 35568, "ts": 11788109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6605b0", "tid": 35568, "ts": 11788196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660000", "tid": 35568, "ts": 11788281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660c30", "tid": 35568, "ts": 11788367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6600d0", "tid": 35568, "ts": 11788453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660410", "tid": 35568, "ts": 11788539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ea10", "tid": 35568, "ts": 11788626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6615f0", "tid": 35568, "ts": 11788712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6604e0", "tid": 35568, "ts": 11788798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ff30", "tid": 35568, "ts": 11788884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660340", "tid": 35568, "ts": 11788970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65f3d0", "tid": 35568, "ts": 11789055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65fe60", "tid": 35568, "ts": 11789141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e600", "tid": 35568, "ts": 11789227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6616c0", "tid": 35568, "ts": 11789313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac661520", "tid": 35568, "ts": 11789400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e530", "tid": 35568, "ts": 11789486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660270", "tid": 35568, "ts": 11789572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6608f0", "tid": 35568, "ts": 11789658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac660820", "tid": 35568, "ts": 11789744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e050", "tid": 35568, "ts": 11789830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65dc40", "tid": 35568, "ts": 11789917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d9d0", "tid": 35568, "ts": 11790003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d830", "tid": 35568, "ts": 11790089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cb30", "tid": 35568, "ts": 11790175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ca60", "tid": 35568, "ts": 11790261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c8c0", "tid": 35568, "ts": 11790348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c720", "tid": 35568, "ts": 11790435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65cc00", "tid": 35568, "ts": 11790521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d690", "tid": 35568, "ts": 11790608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65df80", "tid": 35568, "ts": 11790694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65baf0", "tid": 35568, "ts": 11790780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c0a0", "tid": 35568, "ts": 11790866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d4f0", "tid": 35568, "ts": 11790951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b880", "tid": 35568, "ts": 11791038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bd60", "tid": 35568, "ts": 11791123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bc90", "tid": 35568, "ts": 11791210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ce70", "tid": 35568, "ts": 11791297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d350", "tid": 35568, "ts": 11791384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b950", "tid": 35568, "ts": 11791470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ccd0", "tid": 35568, "ts": 11791557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65c650", "tid": 35568, "ts": 11791643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b540", "tid": 35568, "ts": 11791729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b470", "tid": 35568, "ts": 11791816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b2d0", "tid": 35568, "ts": 11791902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65dde0", "tid": 35568, "ts": 11791988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65bfd0", "tid": 35568, "ts": 11792074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65daa0", "tid": 35568, "ts": 11792160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65d010", "tid": 35568, "ts": 11792246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65b3a0", "tid": 35568, "ts": 11792331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e2c0", "tid": 35568, "ts": 11792417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65e390", "tid": 35568, "ts": 11792503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658620", "tid": 35568, "ts": 11792588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658480", "tid": 35568, "ts": 11792675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658bd0", "tid": 35568, "ts": 11792761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657e00", "tid": 35568, "ts": 11792847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ab80", "tid": 35568, "ts": 11792933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658ca0", "tid": 35568, "ts": 11793020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a910", "tid": 35568, "ts": 11793106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a290", "tid": 35568, "ts": 11793191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a1c0", "tid": 35568, "ts": 11793278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659f50", "tid": 35568, "ts": 11793364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a840", "tid": 35568, "ts": 11793451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659c10", "tid": 35568, "ts": 11793603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659730", "tid": 35568, "ts": 11793690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65aab0", "tid": 35568, "ts": 11793776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65af90", "tid": 35568, "ts": 11793868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659ce0", "tid": 35568, "ts": 11793977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659320", "tid": 35568, "ts": 11794090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659250", "tid": 35568, "ts": 11794191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658140", "tid": 35568, "ts": 11794302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658210", "tid": 35568, "ts": 11794400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659e80", "tid": 35568, "ts": 11794487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65aec0", "tid": 35568, "ts": 11794586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658890", "tid": 35568, "ts": 11794676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6593f0", "tid": 35568, "ts": 11794800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a020", "tid": 35568, "ts": 11794947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658e40", "tid": 35568, "ts": 11795089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65a360", "tid": 35568, "ts": 11795191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658960", "tid": 35568, "ts": 11795288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65adf0", "tid": 35568, "ts": 11795375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac65ac50", "tid": 35568, "ts": 11795462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac658070", "tid": 35568, "ts": 11795549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac659b40", "tid": 35568, "ts": 11795661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654fb0", "tid": 35568, "ts": 11795748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654a00", "tid": 35568, "ts": 11795835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657c60", "tid": 35568, "ts": 11795921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6579f0", "tid": 35568, "ts": 11796008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657780", "tid": 35568, "ts": 11796094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657510", "tid": 35568, "ts": 11796180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656e90", "tid": 35568, "ts": 11796266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657370", "tid": 35568, "ts": 11796352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656330", "tid": 35568, "ts": 11796439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6571d0", "tid": 35568, "ts": 11796525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656cf0", "tid": 35568, "ts": 11796611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656740", "tid": 35568, "ts": 11796697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654ee0", "tid": 35568, "ts": 11796784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656dc0", "tid": 35568, "ts": 11796870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655a40", "tid": 35568, "ts": 11796956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6564d0", "tid": 35568, "ts": 11797041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac656400", "tid": 35568, "ts": 11797127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6553c0", "tid": 35568, "ts": 11797227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657100", "tid": 35568, "ts": 11797331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657030", "tid": 35568, "ts": 11797417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655e50", "tid": 35568, "ts": 11797504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6565a0", "tid": 35568, "ts": 11797589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac657ac0", "tid": 35568, "ts": 11797675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654d40", "tid": 35568, "ts": 11797760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6572a0", "tid": 35568, "ts": 11797846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655970", "tid": 35568, "ts": 11797932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655be0", "tid": 35568, "ts": 11798019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac655150", "tid": 35568, "ts": 11798104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6552f0", "tid": 35568, "ts": 11798190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6557d0", "tid": 35568, "ts": 11798277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6569b0", "tid": 35568, "ts": 11798364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654ad0", "tid": 35568, "ts": 11798450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651fc0", "tid": 35568, "ts": 11798536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651e20", "tid": 35568, "ts": 11798623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654040", "tid": 35568, "ts": 11798708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653d00", "tid": 35568, "ts": 11798795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6538f0", "tid": 35568, "ts": 11798881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653680", "tid": 35568, "ts": 11798967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651c80", "tid": 35568, "ts": 11799054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651600", "tid": 35568, "ts": 11799140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651530", "tid": 35568, "ts": 11799227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652f30", "tid": 35568, "ts": 11799313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652b20", "tid": 35568, "ts": 11799400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6531a0", "tid": 35568, "ts": 11799486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6530d0", "tid": 35568, "ts": 11799572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653b60", "tid": 35568, "ts": 11799658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651d50", "tid": 35568, "ts": 11799744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652090", "tid": 35568, "ts": 11799829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6546c0", "tid": 35568, "ts": 11799915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6539c0", "tid": 35568, "ts": 11800001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653ea0", "tid": 35568, "ts": 11800087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654860", "tid": 35568, "ts": 11800173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653a90", "tid": 35568, "ts": 11800259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652cc0", "tid": 35568, "ts": 11800346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654790", "tid": 35568, "ts": 11800432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6541e0", "tid": 35568, "ts": 11800517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac651870", "tid": 35568, "ts": 11800603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac653270", "tid": 35568, "ts": 11800689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac6524a0", "tid": 35568, "ts": 11800775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654450", "tid": 35568, "ts": 11800861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652e60", "tid": 35568, "ts": 11800947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652640", "tid": 35568, "ts": 11801033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac654110", "tid": 35568, "ts": 11801119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234ac652bf0", "tid": 35568, "ts": 11801205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b501c0", "tid": 35568, "ts": 11801304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e2e0", "tid": 35568, "ts": 11801391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b500f0", "tid": 35568, "ts": 11801478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dfa0", "tid": 35568, "ts": 11801564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f4c0", "tid": 35568, "ts": 11801651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50360", "tid": 35568, "ts": 11801737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fce0", "tid": 35568, "ts": 11801823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f250", "tid": 35568, "ts": 11801909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fe80", "tid": 35568, "ts": 11801995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e7c0", "tid": 35568, "ts": 11802080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50b80", "tid": 35568, "ts": 11802166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ed70", "tid": 35568, "ts": 11802252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4efe0", "tid": 35568, "ts": 11802337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e620", "tid": 35568, "ts": 11802423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50ec0", "tid": 35568, "ts": 11802509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4fb40", "tid": 35568, "ts": 11802594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4de00", "tid": 35568, "ts": 11802681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e550", "tid": 35568, "ts": 11802767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e3b0", "tid": 35568, "ts": 11802853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f9a0", "tid": 35568, "ts": 11802940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50d20", "tid": 35568, "ts": 11803026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ea30", "tid": 35568, "ts": 11803113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f660", "tid": 35568, "ts": 11803199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50ab0", "tid": 35568, "ts": 11803286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50290", "tid": 35568, "ts": 11803372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ff50", "tid": 35568, "ts": 11803458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f0b0", "tid": 35568, "ts": 11803545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ebd0", "tid": 35568, "ts": 11803630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4e890", "tid": 35568, "ts": 11803716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b50770", "tid": 35568, "ts": 11803802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4f590", "tid": 35568, "ts": 11803948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4afb0", "tid": 35568, "ts": 11804035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4dc60", "tid": 35568, "ts": 11804122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b8a0", "tid": 35568, "ts": 11804208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ccf0", "tid": 35568, "ts": 11804295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d440", "tid": 35568, "ts": 11804381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d920", "tid": 35568, "ts": 11804467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d850", "tid": 35568, "ts": 11804554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ad40", "tid": 35568, "ts": 11804639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b970", "tid": 35568, "ts": 11804725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c8e0", "tid": 35568, "ts": 11804812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c400", "tid": 35568, "ts": 11804897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c330", "tid": 35568, "ts": 11804984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d6b0", "tid": 35568, "ts": 11805070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d510", "tid": 35568, "ts": 11805156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d9f0", "tid": 35568, "ts": 11805241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b490", "tid": 35568, "ts": 11805327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cc20", "tid": 35568, "ts": 11805413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c0c0", "tid": 35568, "ts": 11805499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ac70", "tid": 35568, "ts": 11805585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aba0", "tid": 35568, "ts": 11805671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c260", "tid": 35568, "ts": 11805757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d5e0", "tid": 35568, "ts": 11805849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c190", "tid": 35568, "ts": 11805935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4cdc0", "tid": 35568, "ts": 11806021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b2f0", "tid": 35568, "ts": 11806107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4ba40", "tid": 35568, "ts": 11806193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4d780", "tid": 35568, "ts": 11806279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aa00", "tid": 35568, "ts": 11806365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c4d0", "tid": 35568, "ts": 11806451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4aad0", "tid": 35568, "ts": 11806537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4b630", "tid": 35568, "ts": 11806623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4c810", "tid": 35568, "ts": 11806709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48090", "tid": 35568, "ts": 11806795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a6c0", "tid": 35568, "ts": 11806880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a520", "tid": 35568, "ts": 11806967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a450", "tid": 35568, "ts": 11807053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b484a0", "tid": 35568, "ts": 11807139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47bb0", "tid": 35568, "ts": 11807225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49c30", "tid": 35568, "ts": 11807311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a040", "tid": 35568, "ts": 11807397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49a90", "tid": 35568, "ts": 11807484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b499c0", "tid": 35568, "ts": 11807571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48f30", "tid": 35568, "ts": 11807657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b488b0", "tid": 35568, "ts": 11807744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49820", "tid": 35568, "ts": 11807829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47ae0", "tid": 35568, "ts": 11807915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48300", "tid": 35568, "ts": 11808001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48d90", "tid": 35568, "ts": 11808087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b476d0", "tid": 35568, "ts": 11808173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48e60", "tid": 35568, "ts": 11808259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49270", "tid": 35568, "ts": 11808345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47940", "tid": 35568, "ts": 11808431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b483d0", "tid": 35568, "ts": 11808518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a5f0", "tid": 35568, "ts": 11808603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49d00", "tid": 35568, "ts": 11808689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47870", "tid": 35568, "ts": 11808775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48640", "tid": 35568, "ts": 11808861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47d50", "tid": 35568, "ts": 11808947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49ea0", "tid": 35568, "ts": 11809033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49000", "tid": 35568, "ts": 11809187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47600", "tid": 35568, "ts": 11809275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b48b20", "tid": 35568, "ts": 11809361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b49680", "tid": 35568, "ts": 11809447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b4a790", "tid": 35568, "ts": 11809533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45310", "tid": 35568, "ts": 11809619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45170", "tid": 35568, "ts": 11809705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44fd0", "tid": 35568, "ts": 11809791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45720", "tid": 35568, "ts": 11809877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45650", "tid": 35568, "ts": 11809963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44d60", "tid": 35568, "ts": 11810050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46b70", "tid": 35568, "ts": 11810135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46900", "tid": 35568, "ts": 11810221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46760", "tid": 35568, "ts": 11810309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44af0", "tid": 35568, "ts": 11810395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b465c0", "tid": 35568, "ts": 11810481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44950", "tid": 35568, "ts": 11810567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b460e0", "tid": 35568, "ts": 11810653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44610", "tid": 35568, "ts": 11810739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b461b0", "tid": 35568, "ts": 11810826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47460", "tid": 35568, "ts": 11810911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b44470", "tid": 35568, "ts": 11810997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45f40", "tid": 35568, "ts": 11811083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b446e0", "tid": 35568, "ts": 11811169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b457f0", "tid": 35568, "ts": 11811254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46010", "tid": 35568, "ts": 11811341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b443a0", "tid": 35568, "ts": 11811427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45cd0", "tid": 35568, "ts": 11811513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46420", "tid": 35568, "ts": 11811600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47120", "tid": 35568, "ts": 11811686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46eb0", "tid": 35568, "ts": 11811773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45580", "tid": 35568, "ts": 11811859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b46d10", "tid": 35568, "ts": 11811945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b47050", "tid": 35568, "ts": 11812031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b469d0", "tid": 35568, "ts": 11812117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b447b0", "tid": 35568, "ts": 11812203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b45a60", "tid": 35568, "ts": 11812289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41b00", "tid": 35568, "ts": 11812375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43ab0", "tid": 35568, "ts": 11812461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43c50", "tid": 35568, "ts": 11812548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43910", "tid": 35568, "ts": 11812634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43770", "tid": 35568, "ts": 11812720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42730", "tid": 35568, "ts": 11812806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b435d0", "tid": 35568, "ts": 11812892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43df0", "tid": 35568, "ts": 11812978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43360", "tid": 35568, "ts": 11813064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b424c0", "tid": 35568, "ts": 11813151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41070", "tid": 35568, "ts": 11813237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41480", "tid": 35568, "ts": 11813323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43290", "tid": 35568, "ts": 11813409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42320", "tid": 35568, "ts": 11813495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43500", "tid": 35568, "ts": 11813582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41960", "tid": 35568, "ts": 11813668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40e00", "tid": 35568, "ts": 11813754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b430f0", "tid": 35568, "ts": 11813840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42f50", "tid": 35568, "ts": 11813926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b417c0", "tid": 35568, "ts": 11814012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42db0", "tid": 35568, "ts": 11814098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43ec0", "tid": 35568, "ts": 11814185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40fa0", "tid": 35568, "ts": 11814271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42b40", "tid": 35568, "ts": 11814357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b428d0", "tid": 35568, "ts": 11814444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b41f10", "tid": 35568, "ts": 11814529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42ce0", "tid": 35568, "ts": 11814617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b416f0", "tid": 35568, "ts": 11814703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42180", "tid": 35568, "ts": 11814789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b43f90", "tid": 35568, "ts": 11814875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b42800", "tid": 35568, "ts": 11814961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40d30", "tid": 35568, "ts": 11815048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f8e0", "tid": 35568, "ts": 11815135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f670", "tid": 35568, "ts": 11815221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e3c0", "tid": 35568, "ts": 11815308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40ac0", "tid": 35568, "ts": 11815394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3e490", "tid": 35568, "ts": 11815480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40030", "tid": 35568, "ts": 11815566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40b90", "tid": 35568, "ts": 11815652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fe90", "tid": 35568, "ts": 11815738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b409f0", "tid": 35568, "ts": 11815824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3f400", "tid": 35568, "ts": 11815911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40920", "tid": 35568, "ts": 11815997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40780", "tid": 35568, "ts": 11816083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b401d0", "tid": 35568, "ts": 11816168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b406b0", "tid": 35568, "ts": 11816254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3eb10", "tid": 35568, "ts": 11816340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ed80", "tid": 35568, "ts": 11816426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fb50", "tid": 35568, "ts": 11816512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3de10", "tid": 35568, "ts": 11816598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ef20", "tid": 35568, "ts": 11816684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ee50", "tid": 35568, "ts": 11816771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b405e0", "tid": 35568, "ts": 11816858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ea40", "tid": 35568, "ts": 11816944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d930", "tid": 35568, "ts": 11817030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fa80", "tid": 35568, "ts": 11817116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ebe0", "tid": 35568, "ts": 11817203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40510", "tid": 35568, "ts": 11817289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dd40", "tid": 35568, "ts": 11817375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b402a0", "tid": 35568, "ts": 11817461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3eff0", "tid": 35568, "ts": 11817547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3dc70", "tid": 35568, "ts": 11817633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3fdc0", "tid": 35568, "ts": 11817718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b40370", "tid": 35568, "ts": 11817805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d790", "tid": 35568, "ts": 11817891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d5f0", "tid": 35568, "ts": 11817976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d450", "tid": 35568, "ts": 11818062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cd00", "tid": 35568, "ts": 11818148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c0d0", "tid": 35568, "ts": 11818241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3bbf0", "tid": 35568, "ts": 11818328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b710", "tid": 35568, "ts": 11818413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b8b0", "tid": 35568, "ts": 11818499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3aae0", "tid": 35568, "ts": 11818585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c000", "tid": 35568, "ts": 11818671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a7a0", "tid": 35568, "ts": 11818758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ca90", "tid": 35568, "ts": 11818844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b4a0", "tid": 35568, "ts": 11818930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c9c0", "tid": 35568, "ts": 11819017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cc30", "tid": 35568, "ts": 11819103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c8f0", "tid": 35568, "ts": 11819189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b3d0", "tid": 35568, "ts": 11819276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c820", "tid": 35568, "ts": 11819362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b980", "tid": 35568, "ts": 11819448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a870", "tid": 35568, "ts": 11819534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d2b0", "tid": 35568, "ts": 11819620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c5b0", "tid": 35568, "ts": 11819706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3cdd0", "tid": 35568, "ts": 11819792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a6d0", "tid": 35568, "ts": 11819879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c4e0", "tid": 35568, "ts": 11819965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3d040", "tid": 35568, "ts": 11820051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3b7e0", "tid": 35568, "ts": 11820137, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ae20", "tid": 35568, "ts": 11820223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c340", "tid": 35568, "ts": 11820308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c680", "tid": 35568, "ts": 11820395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3c410", "tid": 35568, "ts": 11820481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3ad50", "tid": 35568, "ts": 11820566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37540", "tid": 35568, "ts": 11820653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b372d0", "tid": 35568, "ts": 11820740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37610", "tid": 35568, "ts": 11820827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39830", "tid": 35568, "ts": 11820913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39760", "tid": 35568, "ts": 11821000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37200", "tid": 35568, "ts": 11821088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37bc0", "tid": 35568, "ts": 11821184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b395c0", "tid": 35568, "ts": 11821271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38720", "tid": 35568, "ts": 11821356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b380a0", "tid": 35568, "ts": 11821442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37130", "tid": 35568, "ts": 11821528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b391b0", "tid": 35568, "ts": 11821613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39350", "tid": 35568, "ts": 11821699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39d10", "tid": 35568, "ts": 11821785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a390", "tid": 35568, "ts": 11821871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39010", "tid": 35568, "ts": 11821957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39f80", "tid": 35568, "ts": 11822070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39c40", "tid": 35568, "ts": 11822156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b377b0", "tid": 35568, "ts": 11822242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38310", "tid": 35568, "ts": 11822328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38e70", "tid": 35568, "ts": 11822414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b39de0", "tid": 35568, "ts": 11822500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b376e0", "tid": 35568, "ts": 11822586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b394f0", "tid": 35568, "ts": 11822672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38cd0", "tid": 35568, "ts": 11822758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b3a2c0", "tid": 35568, "ts": 11822844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38650", "tid": 35568, "ts": 11822929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38c00", "tid": 35568, "ts": 11823015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b38b30", "tid": 35568, "ts": 11823101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37d60", "tid": 35568, "ts": 11823187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b384b0", "tid": 35568, "ts": 11823273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b37880", "tid": 35568, "ts": 11823358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36ec0", "tid": 35568, "ts": 11823444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35320", "tid": 35568, "ts": 11823531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35250", "tid": 35568, "ts": 11823616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35180", "tid": 35568, "ts": 11823702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34ca0", "tid": 35568, "ts": 11823788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35590", "tid": 35568, "ts": 11823875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34960", "tid": 35568, "ts": 11823961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36ab0", "tid": 35568, "ts": 11824047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36910", "tid": 35568, "ts": 11824133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34140", "tid": 35568, "ts": 11824219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b366a0", "tid": 35568, "ts": 11824304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33ed0", "tid": 35568, "ts": 11824390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36430", "tid": 35568, "ts": 11824475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35f50", "tid": 35568, "ts": 11824561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34fe0", "tid": 35568, "ts": 11824646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36360", "tid": 35568, "ts": 11824802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35db0", "tid": 35568, "ts": 11824944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35730", "tid": 35568, "ts": 11825035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b347c0", "tid": 35568, "ts": 11825123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34f10", "tid": 35568, "ts": 11825210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34070", "tid": 35568, "ts": 11825297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34890", "tid": 35568, "ts": 11825384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35ce0", "tid": 35568, "ts": 11825471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b358d0", "tid": 35568, "ts": 11825557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33d30", "tid": 35568, "ts": 11825644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b35c10", "tid": 35568, "ts": 11825730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36c50", "tid": 35568, "ts": 11825816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36290", "tid": 35568, "ts": 11825902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36500", "tid": 35568, "ts": 11825988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36020", "tid": 35568, "ts": 11826074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b36f90", "tid": 35568, "ts": 11826160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b34620", "tid": 35568, "ts": 11826246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33920", "tid": 35568, "ts": 11826332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33510", "tid": 35568, "ts": 11826418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b331d0", "tid": 35568, "ts": 11826505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33030", "tid": 35568, "ts": 11826591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b325a0", "tid": 35568, "ts": 11826676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31ff0", "tid": 35568, "ts": 11826763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b324d0", "tid": 35568, "ts": 11826849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32810", "tid": 35568, "ts": 11826935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31f20", "tid": 35568, "ts": 11827022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30fb0", "tid": 35568, "ts": 11827133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31d80", "tid": 35568, "ts": 11827220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33100", "tid": 35568, "ts": 11827306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b336b0", "tid": 35568, "ts": 11827391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b317d0", "tid": 35568, "ts": 11827477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30ee0", "tid": 35568, "ts": 11827564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31e50", "tid": 35568, "ts": 11827650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30930", "tid": 35568, "ts": 11827737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b312f0", "tid": 35568, "ts": 11827823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31cb0", "tid": 35568, "ts": 11827909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32190", "tid": 35568, "ts": 11827995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32740", "tid": 35568, "ts": 11828081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32b50", "tid": 35568, "ts": 11828167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31220", "tid": 35568, "ts": 11828254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30e10", "tid": 35568, "ts": 11828340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32260", "tid": 35568, "ts": 11828426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32dc0", "tid": 35568, "ts": 11828513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32cf0", "tid": 35568, "ts": 11828599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b33370", "tid": 35568, "ts": 11828685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32a80", "tid": 35568, "ts": 11828771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b332a0", "tid": 35568, "ts": 11828857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b32670", "tid": 35568, "ts": 11828943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b31a40", "tid": 35568, "ts": 11829029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2da10", "tid": 35568, "ts": 11829115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d6d0", "tid": 35568, "ts": 11829201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30040", "tid": 35568, "ts": 11829287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d600", "tid": 35568, "ts": 11829373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2def0", "tid": 35568, "ts": 11829459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e230", "tid": 35568, "ts": 11829545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30860", "tid": 35568, "ts": 11829631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e4a0", "tid": 35568, "ts": 11829717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b306c0", "tid": 35568, "ts": 11829804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d530", "tid": 35568, "ts": 11829890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f680", "tid": 35568, "ts": 11829976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b305f0", "tid": 35568, "ts": 11830061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f4e0", "tid": 35568, "ts": 11830147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f750", "tid": 35568, "ts": 11830232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f000", "tid": 35568, "ts": 11830319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f270", "tid": 35568, "ts": 11830405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f410", "tid": 35568, "ts": 11830491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fc30", "tid": 35568, "ts": 11830577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2fd00", "tid": 35568, "ts": 11830663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e8b0", "tid": 35568, "ts": 11830756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ed90", "tid": 35568, "ts": 11830842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b30380", "tid": 35568, "ts": 11830928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f8f0", "tid": 35568, "ts": 11831014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e980", "tid": 35568, "ts": 11831100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2dd50", "tid": 35568, "ts": 11831186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2f820", "tid": 35568, "ts": 11831273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e090", "tid": 35568, "ts": 11831359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e7e0", "tid": 35568, "ts": 11831445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ee60", "tid": 35568, "ts": 11831531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2e3d0", "tid": 35568, "ts": 11831617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ea50", "tid": 35568, "ts": 11831703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ecc0", "tid": 35568, "ts": 11831789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ae30", "tid": 35568, "ts": 11831875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b7f0", "tid": 35568, "ts": 11831961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2aa20", "tid": 35568, "ts": 11832048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a540", "tid": 35568, "ts": 11832133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d120", "tid": 35568, "ts": 11832218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c9d0", "tid": 35568, "ts": 11832305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a470", "tid": 35568, "ts": 11832391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c0e0", "tid": 35568, "ts": 11832477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b720", "tid": 35568, "ts": 11832563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bcd0", "tid": 35568, "ts": 11832649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cf80", "tid": 35568, "ts": 11832735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cc40", "tid": 35568, "ts": 11832820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c1b0", "tid": 35568, "ts": 11832907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a2d0", "tid": 35568, "ts": 11832993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c4f0", "tid": 35568, "ts": 11833080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ad60", "tid": 35568, "ts": 11833166, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2af00", "tid": 35568, "ts": 11833253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bf40", "tid": 35568, "ts": 11833338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b170", "tid": 35568, "ts": 11833425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c280", "tid": 35568, "ts": 11833511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cde0", "tid": 35568, "ts": 11833597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2bb30", "tid": 35568, "ts": 11833683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b4b0", "tid": 35568, "ts": 11833770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2be70", "tid": 35568, "ts": 11833856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2ceb0", "tid": 35568, "ts": 11833943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d460", "tid": 35568, "ts": 11834028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c830", "tid": 35568, "ts": 11834115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2b240", "tid": 35568, "ts": 11834200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2d2c0", "tid": 35568, "ts": 11834286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a130", "tid": 35568, "ts": 11834372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2cb70", "tid": 35568, "ts": 11834458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2c760", "tid": 35568, "ts": 11834544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27d70", "tid": 35568, "ts": 11834630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b277c0", "tid": 35568, "ts": 11834716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27480", "tid": 35568, "ts": 11834802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27210", "tid": 35568, "ts": 11834888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26ed0", "tid": 35568, "ts": 11834974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29d20", "tid": 35568, "ts": 11835061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29b80", "tid": 35568, "ts": 11835147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27bd0", "tid": 35568, "ts": 11835234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29770", "tid": 35568, "ts": 11835321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b283f0", "tid": 35568, "ts": 11835407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29290", "tid": 35568, "ts": 11835493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29020", "tid": 35568, "ts": 11835579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28180", "tid": 35568, "ts": 11835665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27140", "tid": 35568, "ts": 11835751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27fe0", "tid": 35568, "ts": 11835837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28ce0", "tid": 35568, "ts": 11835923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27a30", "tid": 35568, "ts": 11836009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27070", "tid": 35568, "ts": 11836095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28a70", "tid": 35568, "ts": 11836181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26e00", "tid": 35568, "ts": 11836267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b289a0", "tid": 35568, "ts": 11836353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29360", "tid": 35568, "ts": 11836438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29910", "tid": 35568, "ts": 11836525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29500", "tid": 35568, "ts": 11836611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28c10", "tid": 35568, "ts": 11836697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b2a060", "tid": 35568, "ts": 11836783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b288d0", "tid": 35568, "ts": 11836869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28660", "tid": 35568, "ts": 11836956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b28e80", "tid": 35568, "ts": 11837041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b290f0", "tid": 35568, "ts": 11837128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b27ca0", "tid": 35568, "ts": 11837214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b29ec0", "tid": 35568, "ts": 11837301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23a00", "tid": 35568, "ts": 11837386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26920", "tid": 35568, "ts": 11837472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24e50", "tid": 35568, "ts": 11837559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26440", "tid": 35568, "ts": 11837644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24a40", "tid": 35568, "ts": 11837730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24d80", "tid": 35568, "ts": 11837816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24700", "tid": 35568, "ts": 11837903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24630", "tid": 35568, "ts": 11837989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26780", "tid": 35568, "ts": 11838075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b248a0", "tid": 35568, "ts": 11838160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b258e0", "tid": 35568, "ts": 11838247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26370", "tid": 35568, "ts": 11838333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25740", "tid": 35568, "ts": 11838419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25c20", "tid": 35568, "ts": 11838505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b243c0", "tid": 35568, "ts": 11838591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23fb0", "tid": 35568, "ts": 11838677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25400", "tid": 35568, "ts": 11838763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25260", "tid": 35568, "ts": 11838849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b266b0", "tid": 35568, "ts": 11838935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24080", "tid": 35568, "ts": 11839021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24560", "tid": 35568, "ts": 11839107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24150", "tid": 35568, "ts": 11839193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24cb0", "tid": 35568, "ts": 11839280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24be0", "tid": 35568, "ts": 11839366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25190", "tid": 35568, "ts": 11839452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b250c0", "tid": 35568, "ts": 11839538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24220", "tid": 35568, "ts": 11839624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b25e90", "tid": 35568, "ts": 11839711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b24ff0", "tid": 35568, "ts": 11839797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26b90", "tid": 35568, "ts": 11839882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23d40", "tid": 35568, "ts": 11839968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b26ac0", "tid": 35568, "ts": 11840054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21090", "tid": 35568, "ts": 11840140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20bb0", "tid": 35568, "ts": 11840226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b206d0", "tid": 35568, "ts": 11840313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22ea0", "tid": 35568, "ts": 11840492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22dd0", "tid": 35568, "ts": 11840635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b235f0", "tid": 35568, "ts": 11840728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23450", "tid": 35568, "ts": 11840820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23790", "tid": 35568, "ts": 11840923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b229c0", "tid": 35568, "ts": 11841024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b214a0", "tid": 35568, "ts": 11841148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20a10", "tid": 35568, "ts": 11841280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22680", "tid": 35568, "ts": 11841377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20c80", "tid": 35568, "ts": 11841474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21230", "tid": 35568, "ts": 11841572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22000", "tid": 35568, "ts": 11841670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21bf0", "tid": 35568, "ts": 11841804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22c30", "tid": 35568, "ts": 11841932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b224e0", "tid": 35568, "ts": 11842018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21e60", "tid": 35568, "ts": 11842107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b218b0", "tid": 35568, "ts": 11842224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b236c0", "tid": 35568, "ts": 11842311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b22410", "tid": 35568, "ts": 11842461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23380", "tid": 35568, "ts": 11842616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21cc0", "tid": 35568, "ts": 11842730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21a50", "tid": 35568, "ts": 11842815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21570", "tid": 35568, "ts": 11842902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b217e0", "tid": 35568, "ts": 11842989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b232b0", "tid": 35568, "ts": 11843075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21710", "tid": 35568, "ts": 11843161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b221a0", "tid": 35568, "ts": 11843247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b23110", "tid": 35568, "ts": 11843333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b21d90", "tid": 35568, "ts": 11843419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e240", "tid": 35568, "ts": 11843505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d950", "tid": 35568, "ts": 11843591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d540", "tid": 35568, "ts": 11843677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d7b0", "tid": 35568, "ts": 11843788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e310", "tid": 35568, "ts": 11843874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d200", "tid": 35568, "ts": 11843961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20390", "tid": 35568, "ts": 11844049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ff80", "tid": 35568, "ts": 11846567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f4f0", "tid": 35568, "ts": 11846741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f420", "tid": 35568, "ts": 11846869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e650", "tid": 35568, "ts": 11846988, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f280", "tid": 35568, "ts": 11847101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fd10", "tid": 35568, "ts": 11847208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e170", "tid": 35568, "ts": 11847312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f9d0", "tid": 35568, "ts": 11847413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fc40", "tid": 35568, "ts": 11847510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b202c0", "tid": 35568, "ts": 11847606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f1b0", "tid": 35568, "ts": 11847700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e0a0", "tid": 35568, "ts": 11847794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d6e0", "tid": 35568, "ts": 11847887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e4b0", "tid": 35568, "ts": 11847980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b201f0", "tid": 35568, "ts": 11848071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e990", "tid": 35568, "ts": 11848162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f0e0", "tid": 35568, "ts": 11848252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b20050", "tid": 35568, "ts": 11848342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1eda0", "tid": 35568, "ts": 11848432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1e8c0", "tid": 35568, "ts": 11848522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1fb70", "tid": 35568, "ts": 11848611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d470", "tid": 35568, "ts": 11848736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ef40", "tid": 35568, "ts": 11848827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1f760", "tid": 35568, "ts": 11848915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1faa0", "tid": 35568, "ts": 11849002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b4c0", "tid": 35568, "ts": 11849114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b0b0", "tid": 35568, "ts": 11849201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1afe0", "tid": 35568, "ts": 11849288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a890", "tid": 35568, "ts": 11849376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b8d0", "tid": 35568, "ts": 11849462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ad70", "tid": 35568, "ts": 11849549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1be80", "tid": 35568, "ts": 11849637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b660", "tid": 35568, "ts": 11849724, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19fa0", "tid": 35568, "ts": 11849810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bce0", "tid": 35568, "ts": 11849897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cf90", "tid": 35568, "ts": 11849996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a620", "tid": 35568, "ts": 11850117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19e00", "tid": 35568, "ts": 11850205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b730", "tid": 35568, "ts": 11850328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cd20", "tid": 35568, "ts": 11850426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1abd0", "tid": 35568, "ts": 11850512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a7c0", "tid": 35568, "ts": 11850598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b320", "tid": 35568, "ts": 11850684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1ba70", "tid": 35568, "ts": 11850771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b3f0", "tid": 35568, "ts": 11850858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1af10", "tid": 35568, "ts": 11850943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cb80", "tid": 35568, "ts": 11851029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19d30", "tid": 35568, "ts": 11851116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b250", "tid": 35568, "ts": 11851202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1a2e0", "tid": 35568, "ts": 11851288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1bdb0", "tid": 35568, "ts": 11851373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1aa30", "tid": 35568, "ts": 11851459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1cec0", "tid": 35568, "ts": 11851545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1d060", "tid": 35568, "ts": 11851631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1b180", "tid": 35568, "ts": 11851718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c6a0", "tid": 35568, "ts": 11851805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b1c910", "tid": 35568, "ts": 11851893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b184d0", "tid": 35568, "ts": 11851979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b180c0", "tid": 35568, "ts": 11852066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18190", "tid": 35568, "ts": 11852152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17970", "tid": 35568, "ts": 11852239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b173c0", "tid": 35568, "ts": 11852326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b172f0", "tid": 35568, "ts": 11852412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16ee0", "tid": 35568, "ts": 11852498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b195e0", "tid": 35568, "ts": 11852584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19440", "tid": 35568, "ts": 11852670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16e10", "tid": 35568, "ts": 11852756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19370", "tid": 35568, "ts": 11852842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17f20", "tid": 35568, "ts": 11852929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16c70", "tid": 35568, "ts": 11853015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16a00", "tid": 35568, "ts": 11853102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19b90", "tid": 35568, "ts": 11853189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18740", "tid": 35568, "ts": 11853276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b178a0", "tid": 35568, "ts": 11853362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17e50", "tid": 35568, "ts": 11853448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16930", "tid": 35568, "ts": 11853535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17700", "tid": 35568, "ts": 11853621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17080", "tid": 35568, "ts": 11853707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17560", "tid": 35568, "ts": 11853793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19920", "tid": 35568, "ts": 11853879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18dc0", "tid": 35568, "ts": 11853966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18cf0", "tid": 35568, "ts": 11854051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16ad0", "tid": 35568, "ts": 11854138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b18c20", "tid": 35568, "ts": 11854224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b19100", "tid": 35568, "ts": 11854311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16fb0", "tid": 35568, "ts": 11854397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b185a0", "tid": 35568, "ts": 11854483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b17150", "tid": 35568, "ts": 11854569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16d40", "tid": 35568, "ts": 11854655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14e60", "tid": 35568, "ts": 11854741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14d90", "tid": 35568, "ts": 11854827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14cc0", "tid": 35568, "ts": 11854913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14b20", "tid": 35568, "ts": 11854999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b148b0", "tid": 35568, "ts": 11855086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15340", "tid": 35568, "ts": 11855173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14710", "tid": 35568, "ts": 11855260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14640", "tid": 35568, "ts": 11855346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15270", "tid": 35568, "ts": 11855433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b150d0", "tid": 35568, "ts": 11855519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15680", "tid": 35568, "ts": 11855605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14300", "tid": 35568, "ts": 11855691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13530", "tid": 35568, "ts": 11855776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b155b0", "tid": 35568, "ts": 11855863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15c30", "tid": 35568, "ts": 11855951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14160", "tid": 35568, "ts": 11856111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b166c0", "tid": 35568, "ts": 11856230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13e20", "tid": 35568, "ts": 11856319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14f30", "tid": 35568, "ts": 11856408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13870", "tid": 35568, "ts": 11856497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16520", "tid": 35568, "ts": 11856588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16450", "tid": 35568, "ts": 11856678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b151a0", "tid": 35568, "ts": 11856767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b14980", "tid": 35568, "ts": 11856856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b15f70", "tid": 35568, "ts": 11856959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b16040", "tid": 35568, "ts": 11857048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b161e0", "tid": 35568, "ts": 11857138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13bb0", "tid": 35568, "ts": 11857226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13a10", "tid": 35568, "ts": 11857315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b143d0", "tid": 35568, "ts": 11857403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b162b0", "tid": 35568, "ts": 11857493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13fc0", "tid": 35568, "ts": 11857582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12420", "tid": 35568, "ts": 11857671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12280", "tid": 35568, "ts": 11857760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13460", "tid": 35568, "ts": 11857849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11310", "tid": 35568, "ts": 11857937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13390", "tid": 35568, "ts": 11858026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b110a0", "tid": 35568, "ts": 11858116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11da0", "tid": 35568, "ts": 11858204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11cd0", "tid": 35568, "ts": 11858293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10610", "tid": 35568, "ts": 11858382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10c90", "tid": 35568, "ts": 11858471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11580", "tid": 35568, "ts": 11858560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12b70", "tid": 35568, "ts": 11858648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12aa0", "tid": 35568, "ts": 11858738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b121b0", "tid": 35568, "ts": 11858827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10bc0", "tid": 35568, "ts": 11858925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b13050", "tid": 35568, "ts": 11859011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b129d0", "tid": 35568, "ts": 11859098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11c00", "tid": 35568, "ts": 11859183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b125c0", "tid": 35568, "ts": 11859270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11b30", "tid": 35568, "ts": 11859357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b117f0", "tid": 35568, "ts": 11859444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12c40", "tid": 35568, "ts": 11859532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10fd0", "tid": 35568, "ts": 11859619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12010", "tid": 35568, "ts": 11859716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11170", "tid": 35568, "ts": 11859803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10540", "tid": 35568, "ts": 11859890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12830", "tid": 35568, "ts": 11859975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10130", "tid": 35568, "ts": 11860062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b10200", "tid": 35568, "ts": 11860147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12760", "tid": 35568, "ts": 11860234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b12900", "tid": 35568, "ts": 11860320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0b11990", "tid": 35568, "ts": 11860406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea200", "tid": 35568, "ts": 11860504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc360", "tid": 35568, "ts": 11860592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09deda0", "tid": 35568, "ts": 11860678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de990", "tid": 35568, "ts": 11860764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df350", "tid": 35568, "ts": 11860850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cd70", "tid": 35568, "ts": 11860936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ca30", "tid": 35568, "ts": 11861022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e6a0", "tid": 35568, "ts": 11861108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48dc10", "tid": 35568, "ts": 11861194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f2d0", "tid": 35568, "ts": 11861280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c7c0", "tid": 35568, "ts": 11861366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48db40", "tid": 35568, "ts": 11861452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48da70", "tid": 35568, "ts": 11861538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f060", "tid": 35568, "ts": 11861624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48eec0", "tid": 35568, "ts": 11861710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c620", "tid": 35568, "ts": 11861796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e500", "tid": 35568, "ts": 11861882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d9a0", "tid": 35568, "ts": 11861969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48eab0", "tid": 35568, "ts": 11862055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48cf10", "tid": 35568, "ts": 11862141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e290", "tid": 35568, "ts": 11862226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ec50", "tid": 35568, "ts": 11862312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d800", "tid": 35568, "ts": 11862399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e9e0", "tid": 35568, "ts": 11862484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e1c0", "tid": 35568, "ts": 11862571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ddb0", "tid": 35568, "ts": 11862657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c6f0", "tid": 35568, "ts": 11862743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d660", "tid": 35568, "ts": 11862829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d590", "tid": 35568, "ts": 11862915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c480", "tid": 35568, "ts": 11863001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f3a0", "tid": 35568, "ts": 11863088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d4c0", "tid": 35568, "ts": 11863174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48c3b0", "tid": 35568, "ts": 11863260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e910", "tid": 35568, "ts": 11863346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48e840", "tid": 35568, "ts": 11863433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ed20", "tid": 35568, "ts": 11863519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48d0b0", "tid": 35568, "ts": 11863605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca8a0", "tid": 35568, "ts": 11863690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca560", "tid": 35568, "ts": 11863777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cce00", "tid": 35568, "ts": 11863863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccc60", "tid": 35568, "ts": 11863948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc440", "tid": 35568, "ts": 11864034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbe90", "tid": 35568, "ts": 11864120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbcf0", "tid": 35568, "ts": 11864206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb810", "tid": 35568, "ts": 11864292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca3c0", "tid": 35568, "ts": 11864378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbc20", "tid": 35568, "ts": 11864464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ccb90", "tid": 35568, "ts": 11864550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc920", "tid": 35568, "ts": 11864640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca150", "tid": 35568, "ts": 11864727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb400", "tid": 35568, "ts": 11864814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca7d0", "tid": 35568, "ts": 11864900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ca080", "tid": 35568, "ts": 11864986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cbb50", "tid": 35568, "ts": 11865073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb330", "tid": 35568, "ts": 11865160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9ee0", "tid": 35568, "ts": 11865246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cae50", "tid": 35568, "ts": 11865332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4caf20", "tid": 35568, "ts": 11865418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cad80", "tid": 35568, "ts": 11865504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb0c0", "tid": 35568, "ts": 11865590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc100", "tid": 35568, "ts": 11865675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4caff0", "tid": 35568, "ts": 11865762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb740", "tid": 35568, "ts": 11865847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb670", "tid": 35568, "ts": 11865933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cb190", "tid": 35568, "ts": 11866019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9d40", "tid": 35568, "ts": 11866105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cc780", "tid": 35568, "ts": 11866191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4cabe0", "tid": 35568, "ts": 11866277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c80d0", "tid": 35568, "ts": 11866363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8000", "tid": 35568, "ts": 11866448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8f70", "tid": 35568, "ts": 11866534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7a50", "tid": 35568, "ts": 11866621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c95f0", "tid": 35568, "ts": 11866707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7570", "tid": 35568, "ts": 11866793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c73d0", "tid": 35568, "ts": 11866879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6e20", "tid": 35568, "ts": 11866964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c89c0", "tid": 35568, "ts": 11867050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7b20", "tid": 35568, "ts": 11867136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8340", "tid": 35568, "ts": 11867222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6ae0", "tid": 35568, "ts": 11867309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c88f0", "tid": 35568, "ts": 11867395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8410", "tid": 35568, "ts": 11867481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8270", "tid": 35568, "ts": 11867567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9c70", "tid": 35568, "ts": 11867653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6940", "tid": 35568, "ts": 11867738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9a00", "tid": 35568, "ts": 11867824, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c8820", "tid": 35568, "ts": 11867910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c85b0", "tid": 35568, "ts": 11867997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7160", "tid": 35568, "ts": 11868082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c77e0", "tid": 35568, "ts": 11868168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9ad0", "tid": 35568, "ts": 11868254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9930", "tid": 35568, "ts": 11868339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9860", "tid": 35568, "ts": 11868425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9ba0", "tid": 35568, "ts": 11868511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c92b0", "tid": 35568, "ts": 11868597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9040", "tid": 35568, "ts": 11868684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7e60", "tid": 35568, "ts": 11868770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c81a0", "tid": 35568, "ts": 11868856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c9450", "tid": 35568, "ts": 11868943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c7090", "tid": 35568, "ts": 11869028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4f40", "tid": 35568, "ts": 11869114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3fd0", "tid": 35568, "ts": 11869200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3f00", "tid": 35568, "ts": 11869286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5830", "tid": 35568, "ts": 11869373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4720", "tid": 35568, "ts": 11869458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3540", "tid": 35568, "ts": 11869544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c67a0", "tid": 35568, "ts": 11869630, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c50e0", "tid": 35568, "ts": 11869716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3950", "tid": 35568, "ts": 11869802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c66d0", "tid": 35568, "ts": 11869888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c43e0", "tid": 35568, "ts": 11869974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6390", "tid": 35568, "ts": 11870060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4310", "tid": 35568, "ts": 11870146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5760", "tid": 35568, "ts": 11870232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5350", "tid": 35568, "ts": 11870318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5900", "tid": 35568, "ts": 11870404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3d60", "tid": 35568, "ts": 11870490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5eb0", "tid": 35568, "ts": 11870577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5f80", "tid": 35568, "ts": 11870662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6600", "tid": 35568, "ts": 11870749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c48c0", "tid": 35568, "ts": 11870836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5b70", "tid": 35568, "ts": 11870922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5aa0", "tid": 35568, "ts": 11871008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c47f0", "tid": 35568, "ts": 11871094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3a20", "tid": 35568, "ts": 11871181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4650", "tid": 35568, "ts": 11871267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c6120", "tid": 35568, "ts": 11871353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c5de0", "tid": 35568, "ts": 11871439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c59d0", "tid": 35568, "ts": 11871532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c55c0", "tid": 35568, "ts": 11871667, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c4240", "tid": 35568, "ts": 11871754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c40a0", "tid": 35568, "ts": 11871839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1800", "tid": 35568, "ts": 11871925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1660", "tid": 35568, "ts": 11872011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0fe0", "tid": 35568, "ts": 11872097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1590", "tid": 35568, "ts": 11872183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1ce0", "tid": 35568, "ts": 11872269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c19a0", "tid": 35568, "ts": 11872355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0b00", "tid": 35568, "ts": 11872441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0890", "tid": 35568, "ts": 11872527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c20f0", "tid": 35568, "ts": 11872614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1b40", "tid": 35568, "ts": 11872699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2df0", "tid": 35568, "ts": 11872785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2d20", "tid": 35568, "ts": 11872871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2ab0", "tid": 35568, "ts": 11872957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0f10", "tid": 35568, "ts": 11873043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3060", "tid": 35568, "ts": 11873129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0960", "tid": 35568, "ts": 11873215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1f50", "tid": 35568, "ts": 11873301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0480", "tid": 35568, "ts": 11873387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c29e0", "tid": 35568, "ts": 11873473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c06f0", "tid": 35568, "ts": 11873559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1e80", "tid": 35568, "ts": 11873645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0e40", "tid": 35568, "ts": 11873731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2910", "tid": 35568, "ts": 11873817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c1db0", "tid": 35568, "ts": 11873903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0620", "tid": 35568, "ts": 11873989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c3130", "tid": 35568, "ts": 11874075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2360", "tid": 35568, "ts": 11874161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c02e0", "tid": 35568, "ts": 11874247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c03b0", "tid": 35568, "ts": 11874333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c2290", "tid": 35568, "ts": 11874419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c0bd0", "tid": 35568, "ts": 11874506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4c26a0", "tid": 35568, "ts": 11874592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd490", "tid": 35568, "ts": 11874678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfb90", "tid": 35568, "ts": 11874764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdbe0", "tid": 35568, "ts": 11874850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf850", "tid": 35568, "ts": 11874936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd150", "tid": 35568, "ts": 11875023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be670", "tid": 35568, "ts": 11875109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf6b0", "tid": 35568, "ts": 11875195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be5a0", "tid": 35568, "ts": 11875281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bec20", "tid": 35568, "ts": 11875367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be400", "tid": 35568, "ts": 11875455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be330", "tid": 35568, "ts": 11875541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf1d0", "tid": 35568, "ts": 11875627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be260", "tid": 35568, "ts": 11875713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd080", "tid": 35568, "ts": 11875800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4beb50", "tid": 35568, "ts": 11875886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be190", "tid": 35568, "ts": 11875972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd7d0", "tid": 35568, "ts": 11876057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4be9b0", "tid": 35568, "ts": 11876142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcee0", "tid": 35568, "ts": 11876228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf100", "tid": 35568, "ts": 11876314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bce10", "tid": 35568, "ts": 11876400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bea80", "tid": 35568, "ts": 11876485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdd80", "tid": 35568, "ts": 11876571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd970", "tid": 35568, "ts": 11876657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bf370", "tid": 35568, "ts": 11876743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd220", "tid": 35568, "ts": 11876828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4becf0", "tid": 35568, "ts": 11876915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bfe00", "tid": 35568, "ts": 11877001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdf20", "tid": 35568, "ts": 11877086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bdcb0", "tid": 35568, "ts": 11877172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bda40", "tid": 35568, "ts": 11877257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bd8a0", "tid": 35568, "ts": 11877343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba8b0", "tid": 35568, "ts": 11877429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9c80", "tid": 35568, "ts": 11877515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9a10", "tid": 35568, "ts": 11877601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bcc70", "tid": 35568, "ts": 11877687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba640", "tid": 35568, "ts": 11877773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc450", "tid": 35568, "ts": 11877860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba160", "tid": 35568, "ts": 11877946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc6c0", "tid": 35568, "ts": 11878032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4babf0", "tid": 35568, "ts": 11878118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb1a0", "tid": 35568, "ts": 11878204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbb60", "tid": 35568, "ts": 11878290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba4a0", "tid": 35568, "ts": 11878376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba3d0", "tid": 35568, "ts": 11878462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9fc0", "tid": 35568, "ts": 11878548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bba90", "tid": 35568, "ts": 11878634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9ef0", "tid": 35568, "ts": 11878720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb8f0", "tid": 35568, "ts": 11878805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc5f0", "tid": 35568, "ts": 11878891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbd00", "tid": 35568, "ts": 11878977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc520", "tid": 35568, "ts": 11879062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ba710", "tid": 35568, "ts": 11879148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb750", "tid": 35568, "ts": 11879234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb340", "tid": 35568, "ts": 11879320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc110", "tid": 35568, "ts": 11879405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb4e0", "tid": 35568, "ts": 11879491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb000", "tid": 35568, "ts": 11879576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bbc30", "tid": 35568, "ts": 11879663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4baf30", "tid": 35568, "ts": 11879749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb680", "tid": 35568, "ts": 11879835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bacc0", "tid": 35568, "ts": 11879921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bb410", "tid": 35568, "ts": 11880007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4bc2b0", "tid": 35568, "ts": 11880093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7cd0", "tid": 35568, "ts": 11880178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6540", "tid": 35568, "ts": 11880269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b96d0", "tid": 35568, "ts": 11880356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9600", "tid": 35568, "ts": 11880443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7650", "tid": 35568, "ts": 11880529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8900", "tid": 35568, "ts": 11880614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7580", "tid": 35568, "ts": 11880700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7a60", "tid": 35568, "ts": 11880786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b84f0", "tid": 35568, "ts": 11880873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b74b0", "tid": 35568, "ts": 11880959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b73e0", "tid": 35568, "ts": 11881046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b78c0", "tid": 35568, "ts": 11881131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6c90", "tid": 35568, "ts": 11881217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9050", "tid": 35568, "ts": 11881302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7b30", "tid": 35568, "ts": 11881388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b89d0", "tid": 35568, "ts": 11881474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8420", "tid": 35568, "ts": 11881560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6a20", "tid": 35568, "ts": 11881646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8d10", "tid": 35568, "ts": 11881732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b70a0", "tid": 35568, "ts": 11881819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7240", "tid": 35568, "ts": 11881904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8aa0", "tid": 35568, "ts": 11881990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8eb0", "tid": 35568, "ts": 11882077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b8350", "tid": 35568, "ts": 11882162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b66e0", "tid": 35568, "ts": 11882248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7170", "tid": 35568, "ts": 11882334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b67b0", "tid": 35568, "ts": 11882421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7e70", "tid": 35568, "ts": 11882508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6e30", "tid": 35568, "ts": 11882593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9530", "tid": 35568, "ts": 11882678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b9460", "tid": 35568, "ts": 11882764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b7310", "tid": 35568, "ts": 11882850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4660", "tid": 35568, "ts": 11882935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3a30", "tid": 35568, "ts": 11883021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6200", "tid": 35568, "ts": 11883107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b6130", "tid": 35568, "ts": 11883193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3210", "tid": 35568, "ts": 11883279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5770", "tid": 35568, "ts": 11883365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b51c0", "tid": 35568, "ts": 11883451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4db0", "tid": 35568, "ts": 11883536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5f90", "tid": 35568, "ts": 11883622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4590", "tid": 35568, "ts": 11883708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b62d0", "tid": 35568, "ts": 11883794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b50f0", "tid": 35568, "ts": 11883892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3fe0", "tid": 35568, "ts": 11883978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5500", "tid": 35568, "ts": 11884064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b43f0", "tid": 35568, "ts": 11884150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b32e0", "tid": 35568, "ts": 11884236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5430", "tid": 35568, "ts": 11884322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b49a0", "tid": 35568, "ts": 11884408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3550", "tid": 35568, "ts": 11884494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5020", "tid": 35568, "ts": 11884580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4320", "tid": 35568, "ts": 11884666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5360", "tid": 35568, "ts": 11884752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5b80", "tid": 35568, "ts": 11884838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b5ab0", "tid": 35568, "ts": 11884924, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b4f50", "tid": 35568, "ts": 11885010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b40b0", "tid": 35568, "ts": 11885096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3e40", "tid": 35568, "ts": 11885182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b33b0", "tid": 35568, "ts": 11885268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3ca0", "tid": 35568, "ts": 11885353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b3bd0", "tid": 35568, "ts": 11885440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b48d0", "tid": 35568, "ts": 11885526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b59e0", "tid": 35568, "ts": 11885612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b14d0", "tid": 35568, "ts": 11885699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0080", "tid": 35568, "ts": 11885786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0700", "tid": 35568, "ts": 11885872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afe10", "tid": 35568, "ts": 11885958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2ed0", "tid": 35568, "ts": 11886044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2e00", "tid": 35568, "ts": 11886130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2c60", "tid": 35568, "ts": 11886216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2b90", "tid": 35568, "ts": 11886302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0630", "tid": 35568, "ts": 11886387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2ac0", "tid": 35568, "ts": 11886473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2440", "tid": 35568, "ts": 11886559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0490", "tid": 35568, "ts": 11886645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1670", "tid": 35568, "ts": 11886731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0cb0", "tid": 35568, "ts": 11886817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2370", "tid": 35568, "ts": 11886903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1b50", "tid": 35568, "ts": 11886989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1740", "tid": 35568, "ts": 11887076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1190", "tid": 35568, "ts": 11887162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2920", "tid": 35568, "ts": 11887283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b2850", "tid": 35568, "ts": 11887370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b21d0", "tid": 35568, "ts": 11887456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b22a0", "tid": 35568, "ts": 11887542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0220", "tid": 35568, "ts": 11887628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1dc0", "tid": 35568, "ts": 11887714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0970", "tid": 35568, "ts": 11887799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b25e0", "tid": 35568, "ts": 11887885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0b10", "tid": 35568, "ts": 11887972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1e90", "tid": 35568, "ts": 11888058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b0560", "tid": 35568, "ts": 11888143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1a80", "tid": 35568, "ts": 11888229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b1c20", "tid": 35568, "ts": 11888316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4b07d0", "tid": 35568, "ts": 11888402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af860", "tid": 35568, "ts": 11888488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af6c0", "tid": 35568, "ts": 11888574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af520", "tid": 35568, "ts": 11888660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae0d0", "tid": 35568, "ts": 11888746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adf30", "tid": 35568, "ts": 11888831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4add90", "tid": 35568, "ts": 11888917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad570", "tid": 35568, "ts": 11889002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad4a0", "tid": 35568, "ts": 11889087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af1e0", "tid": 35568, "ts": 11889173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af2b0", "tid": 35568, "ts": 11889259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad230", "tid": 35568, "ts": 11889345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aca10", "tid": 35568, "ts": 11889431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae4e0", "tid": 35568, "ts": 11889517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aeea0", "tid": 35568, "ts": 11889603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4afad0", "tid": 35568, "ts": 11889688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac940", "tid": 35568, "ts": 11889773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aeb60", "tid": 35568, "ts": 11889859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acd50", "tid": 35568, "ts": 11889945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad7e0", "tid": 35568, "ts": 11890032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae680", "tid": 35568, "ts": 11890118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acef0", "tid": 35568, "ts": 11890203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad160", "tid": 35568, "ts": 11890290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad710", "tid": 35568, "ts": 11890485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae340", "tid": 35568, "ts": 11890573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae9c0", "tid": 35568, "ts": 11890659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae8f0", "tid": 35568, "ts": 11890745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4af930", "tid": 35568, "ts": 11890831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4acae0", "tid": 35568, "ts": 11890917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ada50", "tid": 35568, "ts": 11891002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4adbf0", "tid": 35568, "ts": 11891088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ad8b0", "tid": 35568, "ts": 11891175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ae820", "tid": 35568, "ts": 11891261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac050", "tid": 35568, "ts": 11891347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abb70", "tid": 35568, "ts": 11891433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab010", "tid": 35568, "ts": 11891519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aab30", "tid": 35568, "ts": 11891605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aaa60", "tid": 35568, "ts": 11891691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aaf40", "tid": 35568, "ts": 11891777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aae70", "tid": 35568, "ts": 11891863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa720", "tid": 35568, "ts": 11891949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab5c0", "tid": 35568, "ts": 11892035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab4f0", "tid": 35568, "ts": 11892121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab760", "tid": 35568, "ts": 11892207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac460", "tid": 35568, "ts": 11892293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa170", "tid": 35568, "ts": 11892379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9d60", "tid": 35568, "ts": 11892464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac120", "tid": 35568, "ts": 11892568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9af0", "tid": 35568, "ts": 11892654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa580", "tid": 35568, "ts": 11892742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab350", "tid": 35568, "ts": 11892828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9e30", "tid": 35568, "ts": 11892915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab900", "tid": 35568, "ts": 11893001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9fd0", "tid": 35568, "ts": 11893086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9880", "tid": 35568, "ts": 11893173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4abd10", "tid": 35568, "ts": 11893259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac7a0", "tid": 35568, "ts": 11893345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac870", "tid": 35568, "ts": 11893431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aa7f0", "tid": 35568, "ts": 11893517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ab9d0", "tid": 35568, "ts": 11893603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4ac2c0", "tid": 35568, "ts": 11893690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4aacd0", "tid": 35568, "ts": 11893776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a97b0", "tid": 35568, "ts": 11893863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a96e0", "tid": 35568, "ts": 11893950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6890", "tid": 35568, "ts": 11894037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6620", "tid": 35568, "ts": 11894123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a85d0", "tid": 35568, "ts": 11894211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6480", "tid": 35568, "ts": 11894299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a62e0", "tid": 35568, "ts": 11894386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a73f0", "tid": 35568, "ts": 11894481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a93a0", "tid": 35568, "ts": 11894568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6d70", "tid": 35568, "ts": 11894677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7320", "tid": 35568, "ts": 11894763, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8d20", "tid": 35568, "ts": 11894849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a9200", "tid": 35568, "ts": 11894935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6210", "tid": 35568, "ts": 11895021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8ab0", "tid": 35568, "ts": 11895107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a78d0", "tid": 35568, "ts": 11895192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7590", "tid": 35568, "ts": 11895277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8290", "tid": 35568, "ts": 11895364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8b80", "tid": 35568, "ts": 11895449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6960", "tid": 35568, "ts": 11895535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7ce0", "tid": 35568, "ts": 11895621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8ec0", "tid": 35568, "ts": 11895707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6e40", "tid": 35568, "ts": 11895793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8c50", "tid": 35568, "ts": 11895879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a79a0", "tid": 35568, "ts": 11895965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7180", "tid": 35568, "ts": 11896051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a8840", "tid": 35568, "ts": 11896136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a7730", "tid": 35568, "ts": 11896222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6f10", "tid": 35568, "ts": 11896307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5100", "tid": 35568, "ts": 11896393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5c60", "tid": 35568, "ts": 11896479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3f20", "tid": 35568, "ts": 11896565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a51d0", "tid": 35568, "ts": 11896650, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3630", "tid": 35568, "ts": 11896737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3d80", "tid": 35568, "ts": 11896823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5370", "tid": 35568, "ts": 11896909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4e90", "tid": 35568, "ts": 11896995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5850", "tid": 35568, "ts": 11897080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4cf0", "tid": 35568, "ts": 11897167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4b50", "tid": 35568, "ts": 11897252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a44d0", "tid": 35568, "ts": 11897338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5920", "tid": 35568, "ts": 11897423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a6070", "tid": 35568, "ts": 11897509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a37d0", "tid": 35568, "ts": 11897595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2fb0", "tid": 35568, "ts": 11897681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3cb0", "tid": 35568, "ts": 11897767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5b90", "tid": 35568, "ts": 11897854, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3490", "tid": 35568, "ts": 11897939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4a80", "tid": 35568, "ts": 11898025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a40c0", "tid": 35568, "ts": 11898110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2ee0", "tid": 35568, "ts": 11898196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a38a0", "tid": 35568, "ts": 11898281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2e10", "tid": 35568, "ts": 11898367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a5510", "tid": 35568, "ts": 11898453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3b10", "tid": 35568, "ts": 11898539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4740", "tid": 35568, "ts": 11898625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3700", "tid": 35568, "ts": 11898710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3560", "tid": 35568, "ts": 11898795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a3a40", "tid": 35568, "ts": 11898882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4670", "tid": 35568, "ts": 11898968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a4dc0", "tid": 35568, "ts": 11899053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fe20", "tid": 35568, "ts": 11899139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2790", "tid": 35568, "ts": 11899225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a04a0", "tid": 35568, "ts": 11899310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0640", "tid": 35568, "ts": 11899396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2380", "tid": 35568, "ts": 11899482, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1d00", "tid": 35568, "ts": 11899568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1dd0", "tid": 35568, "ts": 11899654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a03d0", "tid": 35568, "ts": 11899739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2ba0", "tid": 35568, "ts": 11899826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a07e0", "tid": 35568, "ts": 11899912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f940", "tid": 35568, "ts": 11899998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a26c0", "tid": 35568, "ts": 11900084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1270", "tid": 35568, "ts": 11900169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fc80", "tid": 35568, "ts": 11900255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a19c0", "tid": 35568, "ts": 11900341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a11a0", "tid": 35568, "ts": 11900427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1c30", "tid": 35568, "ts": 11900513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a18f0", "tid": 35568, "ts": 11900599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ffc0", "tid": 35568, "ts": 11900685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0710", "tid": 35568, "ts": 11900771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0e60", "tid": 35568, "ts": 11900857, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1340", "tid": 35568, "ts": 11900943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1820", "tid": 35568, "ts": 11901029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0090", "tid": 35568, "ts": 11901115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a2110", "tid": 35568, "ts": 11901201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0d90", "tid": 35568, "ts": 11901287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a0980", "tid": 35568, "ts": 11901373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1680", "tid": 35568, "ts": 11901459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fae0", "tid": 35568, "ts": 11901545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a1f70", "tid": 35568, "ts": 11901631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49fef0", "tid": 35568, "ts": 11901717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4a15b0", "tid": 35568, "ts": 11901803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e760", "tid": 35568, "ts": 11901888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e420", "tid": 35568, "ts": 11901973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ce30", "tid": 35568, "ts": 11902059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e5c0", "tid": 35568, "ts": 11902144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d990", "tid": 35568, "ts": 11902231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d8c0", "tid": 35568, "ts": 11902317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ede0", "tid": 35568, "ts": 11902402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49cc90", "tid": 35568, "ts": 11902488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c7b0", "tid": 35568, "ts": 11902574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d720", "tid": 35568, "ts": 11902659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e1b0", "tid": 35568, "ts": 11902745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49caf0", "tid": 35568, "ts": 11902840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ec40", "tid": 35568, "ts": 11902927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d650", "tid": 35568, "ts": 11903013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d580", "tid": 35568, "ts": 11903099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f530", "tid": 35568, "ts": 11903185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c950", "tid": 35568, "ts": 11903270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d0a0", "tid": 35568, "ts": 11903356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d310", "tid": 35568, "ts": 11903441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e010", "tid": 35568, "ts": 11903527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e900", "tid": 35568, "ts": 11903613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f050", "tid": 35568, "ts": 11903699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ef80", "tid": 35568, "ts": 11903784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49da60", "tid": 35568, "ts": 11903871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f7a0", "tid": 35568, "ts": 11903957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f2c0", "tid": 35568, "ts": 11904043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c540", "tid": 35568, "ts": 11904129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49f870", "tid": 35568, "ts": 11904216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49d240", "tid": 35568, "ts": 11904301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49db30", "tid": 35568, "ts": 11904387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49eaa0", "tid": 35568, "ts": 11904473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49e0e0", "tid": 35568, "ts": 11904559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499550", "tid": 35568, "ts": 11904645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c3a0", "tid": 35568, "ts": 11904731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b500", "tid": 35568, "ts": 11904817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ab40", "tid": 35568, "ts": 11904902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499480", "tid": 35568, "ts": 11904989, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b360", "tid": 35568, "ts": 11905075, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c200", "tid": 35568, "ts": 11905161, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b290", "tid": 35568, "ts": 11905247, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49c060", "tid": 35568, "ts": 11905333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49aa70", "tid": 35568, "ts": 11905420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499e40", "tid": 35568, "ts": 11905505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bf90", "tid": 35568, "ts": 11905591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49ace0", "tid": 35568, "ts": 11905677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499a30", "tid": 35568, "ts": 11905762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499890", "tid": 35568, "ts": 11905848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499210", "tid": 35568, "ts": 11905934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a320", "tid": 35568, "ts": 11906019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b9e0", "tid": 35568, "ts": 11906105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bc50", "tid": 35568, "ts": 11906191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b430", "tid": 35568, "ts": 11906277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49a660", "tid": 35568, "ts": 11906363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4993b0", "tid": 35568, "ts": 11906449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499b00", "tid": 35568, "ts": 11906534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bb80", "tid": 35568, "ts": 11906620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4997c0", "tid": 35568, "ts": 11906705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bec0", "tid": 35568, "ts": 11906791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf499bd0", "tid": 35568, "ts": 11906877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49bd20", "tid": 35568, "ts": 11906963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b5d0", "tid": 35568, "ts": 11907049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b020", "tid": 35568, "ts": 11907135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf49b840", "tid": 35568, "ts": 11907221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4996f0", "tid": 35568, "ts": 11907307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496080", "tid": 35568, "ts": 11907392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495fb0", "tid": 35568, "ts": 11907478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495d40", "tid": 35568, "ts": 11907563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496970", "tid": 35568, "ts": 11907649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498e00", "tid": 35568, "ts": 11907735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498b90", "tid": 35568, "ts": 11907822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498d30", "tid": 35568, "ts": 11907907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497f60", "tid": 35568, "ts": 11907993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496220", "tid": 35568, "ts": 11908079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498920", "tid": 35568, "ts": 11908165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497c20", "tid": 35568, "ts": 11908251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497b50", "tid": 35568, "ts": 11908337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498ac0", "tid": 35568, "ts": 11908423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497a80", "tid": 35568, "ts": 11908509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496b10", "tid": 35568, "ts": 11908601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498780", "tid": 35568, "ts": 11908687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496a40", "tid": 35568, "ts": 11908773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497670", "tid": 35568, "ts": 11908859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498c60", "tid": 35568, "ts": 11908944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497810", "tid": 35568, "ts": 11909029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498100", "tid": 35568, "ts": 11909115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498850", "tid": 35568, "ts": 11909201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4968a0", "tid": 35568, "ts": 11909287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf497260", "tid": 35568, "ts": 11909373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498440", "tid": 35568, "ts": 11909459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496ff0", "tid": 35568, "ts": 11909546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4986b0", "tid": 35568, "ts": 11909631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf498510", "tid": 35568, "ts": 11909717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495e10", "tid": 35568, "ts": 11909803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496d80", "tid": 35568, "ts": 11909889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf496e50", "tid": 35568, "ts": 11909975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4963c0", "tid": 35568, "ts": 11910061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495ba0", "tid": 35568, "ts": 11910147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495a00", "tid": 35568, "ts": 11910232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495380", "tid": 35568, "ts": 11910318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494f70", "tid": 35568, "ts": 11910404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4949c0", "tid": 35568, "ts": 11910489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494750", "tid": 35568, "ts": 11910575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492d50", "tid": 35568, "ts": 11910661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4941a0", "tid": 35568, "ts": 11910747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494b60", "tid": 35568, "ts": 11910833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4940d0", "tid": 35568, "ts": 11910918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4944e0", "tid": 35568, "ts": 11911004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495790", "tid": 35568, "ts": 11911089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493640", "tid": 35568, "ts": 11911175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492c80", "tid": 35568, "ts": 11911261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf495110", "tid": 35568, "ts": 11911347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4956c0", "tid": 35568, "ts": 11911433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493570", "tid": 35568, "ts": 11911519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494a90", "tid": 35568, "ts": 11911605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492ef0", "tid": 35568, "ts": 11911691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493230", "tid": 35568, "ts": 11911777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493f30", "tid": 35568, "ts": 11911863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493160", "tid": 35568, "ts": 11911949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493710", "tid": 35568, "ts": 11912035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493090", "tid": 35568, "ts": 11912121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493a50", "tid": 35568, "ts": 11912207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493e60", "tid": 35568, "ts": 11912293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493980", "tid": 35568, "ts": 11912378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf493cc0", "tid": 35568, "ts": 11912464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494ea0", "tid": 35568, "ts": 11912550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492940", "tid": 35568, "ts": 11912637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494d00", "tid": 35568, "ts": 11912723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf494410", "tid": 35568, "ts": 11912809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fd60", "tid": 35568, "ts": 11912894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48fc90", "tid": 35568, "ts": 11912980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f880", "tid": 35568, "ts": 11913066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f7b0", "tid": 35568, "ts": 11913151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4927a0", "tid": 35568, "ts": 11913238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4921f0", "tid": 35568, "ts": 11913323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491eb0", "tid": 35568, "ts": 11913409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491de0", "tid": 35568, "ts": 11913494, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492530", "tid": 35568, "ts": 11913580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491c40", "tid": 35568, "ts": 11913665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4922c0", "tid": 35568, "ts": 11913751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491280", "tid": 35568, "ts": 11913837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490e70", "tid": 35568, "ts": 11913923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490580", "tid": 35568, "ts": 11914009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4904b0", "tid": 35568, "ts": 11914094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48faf0", "tid": 35568, "ts": 11914179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490b30", "tid": 35568, "ts": 11914265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492600", "tid": 35568, "ts": 11914351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4911b0", "tid": 35568, "ts": 11914437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491900", "tid": 35568, "ts": 11914523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491f80", "tid": 35568, "ts": 11914610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490720", "tid": 35568, "ts": 11914696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4915c0", "tid": 35568, "ts": 11914781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4926d0", "tid": 35568, "ts": 11914867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491010", "tid": 35568, "ts": 11914953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf491350", "tid": 35568, "ts": 11915039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf492460", "tid": 35568, "ts": 11915125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ffd0", "tid": 35568, "ts": 11915211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48ff00", "tid": 35568, "ts": 11915297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf490cd0", "tid": 35568, "ts": 11915383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf48f610", "tid": 35568, "ts": 11915469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234bf4907f0", "tid": 35568, "ts": 11915555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36ba0", "tid": 35568, "ts": 11915641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36a00", "tid": 35568, "ts": 11915727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34090", "tid": 35568, "ts": 11915813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b362b0", "tid": 35568, "ts": 11915899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36930", "tid": 35568, "ts": 11915984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36860", "tid": 35568, "ts": 11916069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36040", "tid": 35568, "ts": 11916155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36450", "tid": 35568, "ts": 11916242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36520", "tid": 35568, "ts": 11916327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b359c0", "tid": 35568, "ts": 11916413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34bf0", "tid": 35568, "ts": 11916499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b361e0", "tid": 35568, "ts": 11916584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35b60", "tid": 35568, "ts": 11916670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b347e0", "tid": 35568, "ts": 11916756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33d50", "tid": 35568, "ts": 11916841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35680", "tid": 35568, "ts": 11916927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36c70", "tid": 35568, "ts": 11917013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35a90", "tid": 35568, "ts": 11917099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b343d0", "tid": 35568, "ts": 11917184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b350d0", "tid": 35568, "ts": 11917270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35270", "tid": 35568, "ts": 11917356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34710", "tid": 35568, "ts": 11917442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34a50", "tid": 35568, "ts": 11917528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34640", "tid": 35568, "ts": 11917613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33fc0", "tid": 35568, "ts": 11917699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b365f0", "tid": 35568, "ts": 11917785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35820", "tid": 35568, "ts": 11917871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34cc0", "tid": 35568, "ts": 11917957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b35410", "tid": 35568, "ts": 11918044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b36380", "tid": 35568, "ts": 11918129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b34b20", "tid": 35568, "ts": 11918215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31170", "tid": 35568, "ts": 11918301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b310a0", "tid": 35568, "ts": 11918387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30f00", "tid": 35568, "ts": 11918498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32010", "tid": 35568, "ts": 11918615, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b317f0", "tid": 35568, "ts": 11918700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33870", "tid": 35568, "ts": 11918787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b336d0", "tid": 35568, "ts": 11918872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33600", "tid": 35568, "ts": 11918958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31f40", "tid": 35568, "ts": 11919044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33530", "tid": 35568, "ts": 11919130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30e30", "tid": 35568, "ts": 11919216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33460", "tid": 35568, "ts": 11919302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31580", "tid": 35568, "ts": 11919387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32b70", "tid": 35568, "ts": 11919473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32830", "tid": 35568, "ts": 11919558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33a10", "tid": 35568, "ts": 11919645, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32aa0", "tid": 35568, "ts": 11919730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32690", "tid": 35568, "ts": 11919816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31da0", "tid": 35568, "ts": 11919902, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31310", "tid": 35568, "ts": 11919987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b329d0", "tid": 35568, "ts": 11920073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31b30", "tid": 35568, "ts": 11920158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32c40", "tid": 35568, "ts": 11920244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b314b0", "tid": 35568, "ts": 11920330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33bb0", "tid": 35568, "ts": 11920417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b31990", "tid": 35568, "ts": 11920503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30a20", "tid": 35568, "ts": 11920589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b32de0", "tid": 35568, "ts": 11920675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b324f0", "tid": 35568, "ts": 11920761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b313e0", "tid": 35568, "ts": 11920846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b33c80", "tid": 35568, "ts": 11920945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30c90", "tid": 35568, "ts": 11921033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ea70", "tid": 35568, "ts": 11921120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d620", "tid": 35568, "ts": 11921206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30610", "tid": 35568, "ts": 11921292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e180", "tid": 35568, "ts": 11921377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2de40", "tid": 35568, "ts": 11921464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e0b0", "tid": 35568, "ts": 11921550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f1c0", "tid": 35568, "ts": 11921636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30200", "tid": 35568, "ts": 11921722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fdf0", "tid": 35568, "ts": 11921808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2fd20", "tid": 35568, "ts": 11921894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e590", "tid": 35568, "ts": 11921980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30880", "tid": 35568, "ts": 11922066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dfe0", "tid": 35568, "ts": 11922158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f9e0", "tid": 35568, "ts": 11922245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dca0", "tid": 35568, "ts": 11922331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e9a0", "tid": 35568, "ts": 11922417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f840", "tid": 35568, "ts": 11922503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2df10", "tid": 35568, "ts": 11922588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ff90", "tid": 35568, "ts": 11922675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f6a0", "tid": 35568, "ts": 11922760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f5d0", "tid": 35568, "ts": 11922845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e320", "tid": 35568, "ts": 11922932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ece0", "tid": 35568, "ts": 11923017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b30470", "tid": 35568, "ts": 11923103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f910", "tid": 35568, "ts": 11923189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2dbd0", "tid": 35568, "ts": 11923275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2db00", "tid": 35568, "ts": 11923361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2e8d0", "tid": 35568, "ts": 11923447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d960", "tid": 35568, "ts": 11923533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b307b0", "tid": 35568, "ts": 11923619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ec10", "tid": 35568, "ts": 11923706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2f500", "tid": 35568, "ts": 11923793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a970", "tid": 35568, "ts": 11923879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c370", "tid": 35568, "ts": 11923965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c2a0", "tid": 35568, "ts": 11924051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cfa0", "tid": 35568, "ts": 11924136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a7d0", "tid": 35568, "ts": 11924222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b400", "tid": 35568, "ts": 11924309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a700", "tid": 35568, "ts": 11924394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2be90", "tid": 35568, "ts": 11924480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a630", "tid": 35568, "ts": 11924565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ad80", "tid": 35568, "ts": 11924651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c510", "tid": 35568, "ts": 11924738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bdc0", "tid": 35568, "ts": 11924823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cc60", "tid": 35568, "ts": 11924910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c1d0", "tid": 35568, "ts": 11924996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2aff0", "tid": 35568, "ts": 11925081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2bcf0", "tid": 35568, "ts": 11925167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ab10", "tid": 35568, "ts": 11925254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b810", "tid": 35568, "ts": 11925339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d2e0", "tid": 35568, "ts": 11925425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b8e0", "tid": 35568, "ts": 11925512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b260", "tid": 35568, "ts": 11925597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2c850", "tid": 35568, "ts": 11925683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cd30", "tid": 35568, "ts": 11925769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a490", "tid": 35568, "ts": 11925855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a560", "tid": 35568, "ts": 11925942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b5a0", "tid": 35568, "ts": 11926028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b4d0", "tid": 35568, "ts": 11926114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2b9b0", "tid": 35568, "ts": 11926200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2d070", "tid": 35568, "ts": 11926286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2cac0", "tid": 35568, "ts": 11926371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2a220", "tid": 35568, "ts": 11926457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b2ae50", "tid": 35568, "ts": 11926543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27bf0", "tid": 35568, "ts": 11926629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27a50", "tid": 35568, "ts": 11926715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29790", "tid": 35568, "ts": 11926801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b295f0", "tid": 35568, "ts": 11926887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27980", "tid": 35568, "ts": 11926972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b289c0", "tid": 35568, "ts": 11927058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29380", "tid": 35568, "ts": 11927144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26ef0", "tid": 35568, "ts": 11927230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26d50", "tid": 35568, "ts": 11927316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b291e0", "tid": 35568, "ts": 11927402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28ea0", "tid": 35568, "ts": 11927488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29fb0", "tid": 35568, "ts": 11927574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27710", "tid": 35568, "ts": 11927660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28410", "tid": 35568, "ts": 11927746, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28000", "tid": 35568, "ts": 11927833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b273d0", "tid": 35568, "ts": 11927920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29520", "tid": 35568, "ts": 11928006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28340", "tid": 35568, "ts": 11928092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27cc0", "tid": 35568, "ts": 11928178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26e20", "tid": 35568, "ts": 11928263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28270", "tid": 35568, "ts": 11928350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28c30", "tid": 35568, "ts": 11928435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29d40", "tid": 35568, "ts": 11928521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29ee0", "tid": 35568, "ts": 11928608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28f70", "tid": 35568, "ts": 11928694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b28b60", "tid": 35568, "ts": 11928780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27160", "tid": 35568, "ts": 11928867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27300", "tid": 35568, "ts": 11928954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b27f30", "tid": 35568, "ts": 11929050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29930", "tid": 35568, "ts": 11929136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b29860", "tid": 35568, "ts": 11929222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b277e0", "tid": 35568, "ts": 11929307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26050", "tid": 35568, "ts": 11929394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25280", "tid": 35568, "ts": 11929480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b266d0", "tid": 35568, "ts": 11929565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b251b0", "tid": 35568, "ts": 11929651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25de0", "tid": 35568, "ts": 11929737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24f40", "tid": 35568, "ts": 11929823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24c00", "tid": 35568, "ts": 11929909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23c90", "tid": 35568, "ts": 11929995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25690", "tid": 35568, "ts": 11930081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24990", "tid": 35568, "ts": 11930167, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b248c0", "tid": 35568, "ts": 11930253, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24720", "tid": 35568, "ts": 11930339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23950", "tid": 35568, "ts": 11930425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25b70", "tid": 35568, "ts": 11930511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25aa0", "tid": 35568, "ts": 11930597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25010", "tid": 35568, "ts": 11930684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23fd0", "tid": 35568, "ts": 11930770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26c80", "tid": 35568, "ts": 11930856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26600", "tid": 35568, "ts": 11930942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23a20", "tid": 35568, "ts": 11931028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26ae0", "tid": 35568, "ts": 11931114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24cd0", "tid": 35568, "ts": 11931200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26390", "tid": 35568, "ts": 11931285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25830", "tid": 35568, "ts": 11931371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25420", "tid": 35568, "ts": 11931456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b259d0", "tid": 35568, "ts": 11931543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24240", "tid": 35568, "ts": 11931629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25900", "tid": 35568, "ts": 11931715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b26870", "tid": 35568, "ts": 11931801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b243e0", "tid": 35568, "ts": 11931887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b24310", "tid": 35568, "ts": 11931973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b25760", "tid": 35568, "ts": 11932059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b219a0", "tid": 35568, "ts": 11932145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21800", "tid": 35568, "ts": 11932230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b213f0", "tid": 35568, "ts": 11932316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21590", "tid": 35568, "ts": 11932403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b206f0", "tid": 35568, "ts": 11932489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21ce0", "tid": 35568, "ts": 11932575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22ec0", "tid": 35568, "ts": 11932661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20ca0", "tid": 35568, "ts": 11932747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22ab0", "tid": 35568, "ts": 11932833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23880", "tid": 35568, "ts": 11932919, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20b00", "tid": 35568, "ts": 11933004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22430", "tid": 35568, "ts": 11933090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22f90", "tid": 35568, "ts": 11933177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23470", "tid": 35568, "ts": 11933267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23610", "tid": 35568, "ts": 11933354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21db0", "tid": 35568, "ts": 11933439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22910", "tid": 35568, "ts": 11933525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22df0", "tid": 35568, "ts": 11933611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22d20", "tid": 35568, "ts": 11933696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21180", "tid": 35568, "ts": 11933782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22b80", "tid": 35568, "ts": 11933867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23130", "tid": 35568, "ts": 11933954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21b40", "tid": 35568, "ts": 11934039, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b237b0", "tid": 35568, "ts": 11934199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b22770", "tid": 35568, "ts": 11934286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b23200", "tid": 35568, "ts": 11934372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b225d0", "tid": 35568, "ts": 11934457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21e80", "tid": 35568, "ts": 11934543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20960", "tid": 35568, "ts": 11934629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b21660", "tid": 35568, "ts": 11934715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20620", "tid": 35568, "ts": 11934801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b226a0", "tid": 35568, "ts": 11934887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f780", "tid": 35568, "ts": 11934972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ee90", "tid": 35568, "ts": 11935058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f2a0", "tid": 35568, "ts": 11935143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e740", "tid": 35568, "ts": 11935229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d220", "tid": 35568, "ts": 11935315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e670", "tid": 35568, "ts": 11935401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e4d0", "tid": 35568, "ts": 11935486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ec20", "tid": 35568, "ts": 11935572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e190", "tid": 35568, "ts": 11935658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d560", "tid": 35568, "ts": 11935744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d7d0", "tid": 35568, "ts": 11935830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e0c0", "tid": 35568, "ts": 11935915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dff0", "tid": 35568, "ts": 11936001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e9b0", "tid": 35568, "ts": 11936087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f510", "tid": 35568, "ts": 11936173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1df20", "tid": 35568, "ts": 11936258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d970", "tid": 35568, "ts": 11936344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f5e0", "tid": 35568, "ts": 11936430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b202e0", "tid": 35568, "ts": 11936516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f920", "tid": 35568, "ts": 11936602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20140", "tid": 35568, "ts": 11936688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e400", "tid": 35568, "ts": 11936774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1dd80", "tid": 35568, "ts": 11936860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1db10", "tid": 35568, "ts": 11936945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e810", "tid": 35568, "ts": 11937031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1eb50", "tid": 35568, "ts": 11937116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b20210", "tid": 35568, "ts": 11937202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1e330", "tid": 35568, "ts": 11937287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f440", "tid": 35568, "ts": 11937373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1de50", "tid": 35568, "ts": 11937459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1f030", "tid": 35568, "ts": 11937546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ef60", "tid": 35568, "ts": 11937631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1acc0", "tid": 35568, "ts": 11937717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ab20", "tid": 35568, "ts": 11937803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a570", "tid": 35568, "ts": 11937888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19ef0", "tid": 35568, "ts": 11937973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cfb0", "tid": 35568, "ts": 11938059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c380", "tid": 35568, "ts": 11938144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cc70", "tid": 35568, "ts": 11938230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a300", "tid": 35568, "ts": 11938316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19d50", "tid": 35568, "ts": 11938402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a8b0", "tid": 35568, "ts": 11938487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b5b0", "tid": 35568, "ts": 11938572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1cba0", "tid": 35568, "ts": 11938658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b410", "tid": 35568, "ts": 11938744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c110", "tid": 35568, "ts": 11938830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c040", "tid": 35568, "ts": 11938916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bb60", "tid": 35568, "ts": 11939002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b340", "tid": 35568, "ts": 11939088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b750", "tid": 35568, "ts": 11939173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bea0", "tid": 35568, "ts": 11939259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a980", "tid": 35568, "ts": 11939344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b0d0", "tid": 35568, "ts": 11939430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a710", "tid": 35568, "ts": 11939515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1b4e0", "tid": 35568, "ts": 11939602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ba90", "tid": 35568, "ts": 11939687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a230", "tid": 35568, "ts": 11939772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1d080", "tid": 35568, "ts": 11939858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c5f0", "tid": 35568, "ts": 11939943, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1ce10", "tid": 35568, "ts": 11940029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c930", "tid": 35568, "ts": 11940114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1c520", "tid": 35568, "ts": 11940201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1bd00", "tid": 35568, "ts": 11940286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b1a7e0", "tid": 35568, "ts": 11940372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19bb0", "tid": 35568, "ts": 11940458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19a10", "tid": 35568, "ts": 11940544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19530", "tid": 35568, "ts": 11940629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19390", "tid": 35568, "ts": 11940715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19050", "tid": 35568, "ts": 11940802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18010", "tid": 35568, "ts": 11940888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18690", "tid": 35568, "ts": 11940974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19870", "tid": 35568, "ts": 11941060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b192c0", "tid": 35568, "ts": 11941145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17b30", "tid": 35568, "ts": 11941232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17720", "tid": 35568, "ts": 11941317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b177f0", "tid": 35568, "ts": 11941404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18d10", "tid": 35568, "ts": 11941489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18aa0", "tid": 35568, "ts": 11941575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17170", "tid": 35568, "ts": 11941662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18280", "tid": 35568, "ts": 11941747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b170a0", "tid": 35568, "ts": 11941833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17580", "tid": 35568, "ts": 11941918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16af0", "tid": 35568, "ts": 11942004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18c40", "tid": 35568, "ts": 11942089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17da0", "tid": 35568, "ts": 11942175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19c80", "tid": 35568, "ts": 11942260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16a20", "tid": 35568, "ts": 11942346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17310", "tid": 35568, "ts": 11942432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b17240", "tid": 35568, "ts": 11942519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b184f0", "tid": 35568, "ts": 11942609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18760", "tid": 35568, "ts": 11942696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18350", "tid": 35568, "ts": 11942782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16fd0", "tid": 35568, "ts": 11942868, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b18eb0", "tid": 35568, "ts": 11942954, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b180e0", "tid": 35568, "ts": 11943040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b19940", "tid": 35568, "ts": 11943126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13620", "tid": 35568, "ts": 11943211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16880", "tid": 35568, "ts": 11943297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16470", "tid": 35568, "ts": 11943383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16130", "tid": 35568, "ts": 11943469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b148d0", "tid": 35568, "ts": 11943555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15f90", "tid": 35568, "ts": 11943642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15ec0", "tid": 35568, "ts": 11943728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14180", "tid": 35568, "ts": 11943813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b159e0", "tid": 35568, "ts": 11943899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b16200", "tid": 35568, "ts": 11943985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b163a0", "tid": 35568, "ts": 11944070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13960", "tid": 35568, "ts": 11944156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b149a0", "tid": 35568, "ts": 11944241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15840", "tid": 35568, "ts": 11944327, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b143f0", "tid": 35568, "ts": 11944413, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14800", "tid": 35568, "ts": 11944499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14320", "tid": 35568, "ts": 11944585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b150f0", "tid": 35568, "ts": 11944671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14f50", "tid": 35568, "ts": 11944756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13d70", "tid": 35568, "ts": 11944841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13ca0", "tid": 35568, "ts": 11944928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b155d0", "tid": 35568, "ts": 11945014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13bd0", "tid": 35568, "ts": 11945100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15500", "tid": 35568, "ts": 11945187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14c10", "tid": 35568, "ts": 11945279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13b00", "tid": 35568, "ts": 11945366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b137c0", "tid": 35568, "ts": 11945452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14a70", "tid": 35568, "ts": 11945538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b14250", "tid": 35568, "ts": 11945624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b166e0", "tid": 35568, "ts": 11945710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b167b0", "tid": 35568, "ts": 11945795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b15b80", "tid": 35568, "ts": 11945881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13210", "tid": 35568, "ts": 11945967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b119b0", "tid": 35568, "ts": 11946052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11400", "tid": 35568, "ts": 11946138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11810", "tid": 35568, "ts": 11946224, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13140", "tid": 35568, "ts": 11946310, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11190", "tid": 35568, "ts": 11946396, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10ff0", "tid": 35568, "ts": 11946480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10700", "tid": 35568, "ts": 11946566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10150", "tid": 35568, "ts": 11946652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b129f0", "tid": 35568, "ts": 11946738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12780", "tid": 35568, "ts": 11946823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12510", "tid": 35568, "ts": 11946908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10630", "tid": 35568, "ts": 11946994, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11670", "tid": 35568, "ts": 11947080, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b108a0", "tid": 35568, "ts": 11947165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b122a0", "tid": 35568, "ts": 11947250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10490", "tid": 35568, "ts": 11947336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10f20", "tid": 35568, "ts": 11947421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10e50", "tid": 35568, "ts": 11947507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b13480", "tid": 35568, "ts": 11947593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10d80", "tid": 35568, "ts": 11947679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11dc0", "tid": 35568, "ts": 11947764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b103c0", "tid": 35568, "ts": 11947849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12c60", "tid": 35568, "ts": 11947935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b121d0", "tid": 35568, "ts": 11948021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12030", "tid": 35568, "ts": 11948106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11c20", "tid": 35568, "ts": 11948192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b114d0", "tid": 35568, "ts": 11948277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11b50", "tid": 35568, "ts": 11948364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b12fa0", "tid": 35568, "ts": 11948450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b102f0", "tid": 35568, "ts": 11948535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b11260", "tid": 35568, "ts": 11948621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f450", "tid": 35568, "ts": 11948707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e4e0", "tid": 35568, "ts": 11948792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e410", "tid": 35568, "ts": 11948878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e9c0", "tid": 35568, "ts": 11948964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d7e0", "tid": 35568, "ts": 11949050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d3d0", "tid": 35568, "ts": 11949135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0df30", "tid": 35568, "ts": 11949220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d570", "tid": 35568, "ts": 11949306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d4a0", "tid": 35568, "ts": 11949392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0dcc0", "tid": 35568, "ts": 11949478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cfc0", "tid": 35568, "ts": 11949563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0edd0", "tid": 35568, "ts": 11949648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f930", "tid": 35568, "ts": 11949803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f110", "tid": 35568, "ts": 11949998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0dd90", "tid": 35568, "ts": 11950111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e680", "tid": 35568, "ts": 11950237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0db20", "tid": 35568, "ts": 11950362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f5f0", "tid": 35568, "ts": 11950448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0f860", "tid": 35568, "ts": 11950568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fd40", "tid": 35568, "ts": 11950723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0ec30", "tid": 35568, "ts": 11950831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cd50", "tid": 35568, "ts": 11950918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e8f0", "tid": 35568, "ts": 11951004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e750", "tid": 35568, "ts": 11951090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d230", "tid": 35568, "ts": 11951176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d710", "tid": 35568, "ts": 11951262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b10080", "tid": 35568, "ts": 11951348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0da50", "tid": 35568, "ts": 11951434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0d640", "tid": 35568, "ts": 11951520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0eb60", "tid": 35568, "ts": 11951606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0e820", "tid": 35568, "ts": 11951692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0fc70", "tid": 35568, "ts": 11951778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c940", "tid": 35568, "ts": 11951864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0acd0", "tid": 35568, "ts": 11951950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c6d0", "tid": 35568, "ts": 11952036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b830", "tid": 35568, "ts": 11952122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a310", "tid": 35568, "ts": 11952208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b900", "tid": 35568, "ts": 11952294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a3e0", "tid": 35568, "ts": 11952380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b760", "tid": 35568, "ts": 11952466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b0e0", "tid": 35568, "ts": 11952552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a0a0", "tid": 35568, "ts": 11952639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0aa60", "tid": 35568, "ts": 11952725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09d60", "tid": 35568, "ts": 11952811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c390", "tid": 35568, "ts": 11952897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09bc0", "tid": 35568, "ts": 11952983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0cbb0", "tid": 35568, "ts": 11953069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b420", "tid": 35568, "ts": 11953154, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c600", "tid": 35568, "ts": 11953241, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0bc40", "tid": 35568, "ts": 11953326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a720", "tid": 35568, "ts": 11953412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09c90", "tid": 35568, "ts": 11953497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c870", "tid": 35568, "ts": 11953583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09a20", "tid": 35568, "ts": 11953669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b690", "tid": 35568, "ts": 11953755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0af40", "tid": 35568, "ts": 11953841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a580", "tid": 35568, "ts": 11953927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a4b0", "tid": 35568, "ts": 11954013, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b5c0", "tid": 35568, "ts": 11954099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09e30", "tid": 35568, "ts": 11954185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0a990", "tid": 35568, "ts": 11954271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b1b0", "tid": 35568, "ts": 11954357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0c120", "tid": 35568, "ts": 11954442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b0b9d0", "tid": 35568, "ts": 11954528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07db0", "tid": 35568, "ts": 11954614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b079a0", "tid": 35568, "ts": 11954700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07c10", "tid": 35568, "ts": 11954786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09610", "tid": 35568, "ts": 11954873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b092d0", "tid": 35568, "ts": 11954960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07660", "tid": 35568, "ts": 11955045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09060", "tid": 35568, "ts": 11955132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08c50", "tid": 35568, "ts": 11955218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06fe0", "tid": 35568, "ts": 11955304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06f10", "tid": 35568, "ts": 11955400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08b80", "tid": 35568, "ts": 11955486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08ab0", "tid": 35568, "ts": 11955573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06a30", "tid": 35568, "ts": 11955659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b066f0", "tid": 35568, "ts": 11955744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06620", "tid": 35568, "ts": 11955830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b067c0", "tid": 35568, "ts": 11955916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08290", "tid": 35568, "ts": 11956002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06550", "tid": 35568, "ts": 11956088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07730", "tid": 35568, "ts": 11956175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b09470", "tid": 35568, "ts": 11956260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08f90", "tid": 35568, "ts": 11956346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08ec0", "tid": 35568, "ts": 11956433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08020", "tid": 35568, "ts": 11956519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06d70", "tid": 35568, "ts": 11956605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06ca0", "tid": 35568, "ts": 11956691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08d20", "tid": 35568, "ts": 11956777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b093a0", "tid": 35568, "ts": 11956863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b086a0", "tid": 35568, "ts": 11956948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07f50", "tid": 35568, "ts": 11957034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b07800", "tid": 35568, "ts": 11957120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b08500", "tid": 35568, "ts": 11957206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06e40", "tid": 35568, "ts": 11957292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05850", "tid": 35568, "ts": 11957378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05780", "tid": 35568, "ts": 11957464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b032f0", "tid": 35568, "ts": 11957550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04cf0", "tid": 35568, "ts": 11957636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b06140", "tid": 35568, "ts": 11957722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05e00", "tid": 35568, "ts": 11957808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04c20", "tid": 35568, "ts": 11957894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03b10", "tid": 35568, "ts": 11957980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b062e0", "tid": 35568, "ts": 11958067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b055e0", "tid": 35568, "ts": 11958152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04e90", "tid": 35568, "ts": 11958238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05d30", "tid": 35568, "ts": 11958324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05c60", "tid": 35568, "ts": 11958411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b045a0", "tid": 35568, "ts": 11958500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05ac0", "tid": 35568, "ts": 11958586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04190", "tid": 35568, "ts": 11958672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03630", "tid": 35568, "ts": 11958758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03490", "tid": 35568, "ts": 11958844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04b50", "tid": 35568, "ts": 11958930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b037d0", "tid": 35568, "ts": 11959015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03f20", "tid": 35568, "ts": 11959101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b063b0", "tid": 35568, "ts": 11959188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b051d0", "tid": 35568, "ts": 11959273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03cb0", "tid": 35568, "ts": 11959358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b04670", "tid": 35568, "ts": 11959444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03be0", "tid": 35568, "ts": 11959530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05440", "tid": 35568, "ts": 11959616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05ed0", "tid": 35568, "ts": 11959702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05370", "tid": 35568, "ts": 11959788, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b059f0", "tid": 35568, "ts": 11959874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05100", "tid": 35568, "ts": 11959960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b05030", "tid": 35568, "ts": 11960045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00300", "tid": 35568, "ts": 11960131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afffc0", "tid": 35568, "ts": 11960216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b03080", "tid": 35568, "ts": 11960302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00090", "tid": 35568, "ts": 11960387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01750", "tid": 35568, "ts": 11960473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02ee0", "tid": 35568, "ts": 11960558, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02d40", "tid": 35568, "ts": 11960644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02380", "tid": 35568, "ts": 11960730, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02a00", "tid": 35568, "ts": 11960816, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01410", "tid": 35568, "ts": 11960901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b026c0", "tid": 35568, "ts": 11960987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00980", "tid": 35568, "ts": 11961073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01000", "tid": 35568, "ts": 11961159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b019c0", "tid": 35568, "ts": 11961246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01b60", "tid": 35568, "ts": 11961331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02860", "tid": 35568, "ts": 11961417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b008b0", "tid": 35568, "ts": 11961503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02790", "tid": 35568, "ts": 11961588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01680", "tid": 35568, "ts": 11961674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01d00", "tid": 35568, "ts": 11961760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00a50", "tid": 35568, "ts": 11961846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02520", "tid": 35568, "ts": 11961931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02040", "tid": 35568, "ts": 11962018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02ad0", "tid": 35568, "ts": 11962104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b003d0", "tid": 35568, "ts": 11962190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b02930", "tid": 35568, "ts": 11962276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00cc0", "tid": 35568, "ts": 11962361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01ea0", "tid": 35568, "ts": 11962447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00f30", "tid": 35568, "ts": 11962532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01c30", "tid": 35568, "ts": 11962619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b00640", "tid": 35568, "ts": 11962704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3b01dd0", "tid": 35568, "ts": 11962790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcbc0", "tid": 35568, "ts": 11962876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff600", "tid": 35568, "ts": 11962962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff390", "tid": 35568, "ts": 11963048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdc00", "tid": 35568, "ts": 11963134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdb30", "tid": 35568, "ts": 11963220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe280", "tid": 35568, "ts": 11963306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcaf0", "tid": 35568, "ts": 11963392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff1f0", "tid": 35568, "ts": 11963479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd3e0", "tid": 35568, "ts": 11963565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd170", "tid": 35568, "ts": 11963652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afda60", "tid": 35568, "ts": 11963739, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe0e0", "tid": 35568, "ts": 11963826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd310", "tid": 35568, "ts": 11963913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afed10", "tid": 35568, "ts": 11964009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afec40", "tid": 35568, "ts": 11964095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe420", "tid": 35568, "ts": 11964181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afce30", "tid": 35568, "ts": 11964266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd7f0", "tid": 35568, "ts": 11964351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe350", "tid": 35568, "ts": 11964437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff7a0", "tid": 35568, "ts": 11964522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afde70", "tid": 35568, "ts": 11964608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3aff530", "tid": 35568, "ts": 11964694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd0a0", "tid": 35568, "ts": 11964779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afcd60", "tid": 35568, "ts": 11964864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe900", "tid": 35568, "ts": 11964950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3affc80", "tid": 35568, "ts": 11965035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdcd0", "tid": 35568, "ts": 11965121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afdda0", "tid": 35568, "ts": 11965217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afeaa0", "tid": 35568, "ts": 11965303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe9d0", "tid": 35568, "ts": 11965422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afd580", "tid": 35568, "ts": 11965508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afe690", "tid": 35568, "ts": 11965593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afaf50", "tid": 35568, "ts": 11965679, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb910", "tid": 35568, "ts": 11965765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9d70", "tid": 35568, "ts": 11965851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa590", "tid": 35568, "ts": 11965936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9bd0", "tid": 35568, "ts": 11966022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa3f0", "tid": 35568, "ts": 11966108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbdf0", "tid": 35568, "ts": 11966194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc610", "tid": 35568, "ts": 11966281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9fe0", "tid": 35568, "ts": 11966367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9e40", "tid": 35568, "ts": 11966453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc470", "tid": 35568, "ts": 11966538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9a30", "tid": 35568, "ts": 11966624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc7b0", "tid": 35568, "ts": 11966710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa8d0", "tid": 35568, "ts": 11966796, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb840", "tid": 35568, "ts": 11966882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc880", "tid": 35568, "ts": 11966967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af97c0", "tid": 35568, "ts": 11967053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa320", "tid": 35568, "ts": 11967139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb360", "tid": 35568, "ts": 11967226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb0f0", "tid": 35568, "ts": 11967311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbf90", "tid": 35568, "ts": 11967397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afbd20", "tid": 35568, "ts": 11967483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afab40", "tid": 35568, "ts": 11967569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc540", "tid": 35568, "ts": 11967654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc2d0", "tid": 35568, "ts": 11967740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9890", "tid": 35568, "ts": 11967826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9620", "tid": 35568, "ts": 11967912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa180", "tid": 35568, "ts": 11967997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa0b0", "tid": 35568, "ts": 11968083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afb290", "tid": 35568, "ts": 11968168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afa660", "tid": 35568, "ts": 11968254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3afc060", "tid": 35568, "ts": 11968339, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7c20", "tid": 35568, "ts": 11968425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6ff0", "tid": 35568, "ts": 11968510, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6cb0", "tid": 35568, "ts": 11968597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af70c0", "tid": 35568, "ts": 11968683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6be0", "tid": 35568, "ts": 11968769, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6630", "tid": 35568, "ts": 11968855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6490", "tid": 35568, "ts": 11968941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7810", "tid": 35568, "ts": 11969027, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af63c0", "tid": 35568, "ts": 11969113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6220", "tid": 35568, "ts": 11969199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af92e0", "tid": 35568, "ts": 11969286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9140", "tid": 35568, "ts": 11969371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af6a40", "tid": 35568, "ts": 11969457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8c60", "tid": 35568, "ts": 11969543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7400", "tid": 35568, "ts": 11969629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7b50", "tid": 35568, "ts": 11969715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8850", "tid": 35568, "ts": 11969801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8440", "tid": 35568, "ts": 11969887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8780", "tid": 35568, "ts": 11969972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7f60", "tid": 35568, "ts": 11970058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af85e0", "tid": 35568, "ts": 11970144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8030", "tid": 35568, "ts": 11970230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7a80", "tid": 35568, "ts": 11970316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af68a0", "tid": 35568, "ts": 11970402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8e00", "tid": 35568, "ts": 11970487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af9480", "tid": 35568, "ts": 11970573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7330", "tid": 35568, "ts": 11970659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af86b0", "tid": 35568, "ts": 11970745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8d30", "tid": 35568, "ts": 11970831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af8920", "tid": 35568, "ts": 11970917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7670", "tid": 35568, "ts": 11971003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3af7260", "tid": 35568, "ts": 11971089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f69e0", "tid": 35568, "ts": 11971181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5250", "tid": 35568, "ts": 11971268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6c50", "tid": 35568, "ts": 11971354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4b00", "tid": 35568, "ts": 11971440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6910", "tid": 35568, "ts": 11971525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4f10", "tid": 35568, "ts": 11971611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f50b0", "tid": 35568, "ts": 11971697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f46f0", "tid": 35568, "ts": 11971783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4ca0", "tid": 35568, "ts": 11971869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f47c0", "tid": 35568, "ts": 11971955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4620", "tid": 35568, "ts": 11972041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3ed0", "tid": 35568, "ts": 11972127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5320", "tid": 35568, "ts": 11972213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f65d0", "tid": 35568, "ts": 11972299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4550", "tid": 35568, "ts": 11972384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3d30", "tid": 35568, "ts": 11972471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6020", "tid": 35568, "ts": 11972557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4070", "tid": 35568, "ts": 11972642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4960", "tid": 35568, "ts": 11972728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6500", "tid": 35568, "ts": 11972815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5800", "tid": 35568, "ts": 11972901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5db0", "tid": 35568, "ts": 11972987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f4e40", "tid": 35568, "ts": 11973073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f60f0", "tid": 35568, "ts": 11973158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5c10", "tid": 35568, "ts": 11973244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f58d0", "tid": 35568, "ts": 11973330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6430", "tid": 35568, "ts": 11973417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5b40", "tid": 35568, "ts": 11973503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f6d20", "tid": 35568, "ts": 11973589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f5590", "tid": 35568, "ts": 11973676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f42e0", "tid": 35568, "ts": 11973762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1970", "tid": 35568, "ts": 11973847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1700", "tid": 35568, "ts": 11973933, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0a00", "tid": 35568, "ts": 11974018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f39f0", "tid": 35568, "ts": 11974113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f36b0", "tid": 35568, "ts": 11974199, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3510", "tid": 35568, "ts": 11974285, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3440", "tid": 35568, "ts": 11974371, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1e50", "tid": 35568, "ts": 11974457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3370", "tid": 35568, "ts": 11974543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2e90", "tid": 35568, "ts": 11974629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3c60", "tid": 35568, "ts": 11974714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1f20", "tid": 35568, "ts": 11974800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f25a0", "tid": 35568, "ts": 11974886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1560", "tid": 35568, "ts": 11974972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1b10", "tid": 35568, "ts": 11975057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2400", "tid": 35568, "ts": 11975144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2b50", "tid": 35568, "ts": 11975229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3920", "tid": 35568, "ts": 11975315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2260", "tid": 35568, "ts": 11975401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3850", "tid": 35568, "ts": 11975487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f17d0", "tid": 35568, "ts": 11975573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2a80", "tid": 35568, "ts": 11975659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2f60", "tid": 35568, "ts": 11975745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f2190", "tid": 35568, "ts": 11975830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3b90", "tid": 35568, "ts": 11975917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1ff0", "tid": 35568, "ts": 11976003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f3030", "tid": 35568, "ts": 11976089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0fb0", "tid": 35568, "ts": 11976175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1150", "tid": 35568, "ts": 11976261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f20c0", "tid": 35568, "ts": 11976346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0e10", "tid": 35568, "ts": 11976431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f1490", "tid": 35568, "ts": 11976517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee710", "tid": 35568, "ts": 11976603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0860", "tid": 35568, "ts": 11976689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f01e0", "tid": 35568, "ts": 11976775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef750", "tid": 35568, "ts": 11976861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee3d0", "tid": 35568, "ts": 11976946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efdd0", "tid": 35568, "ts": 11977032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee160", "tid": 35568, "ts": 11977119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edfc0", "tid": 35568, "ts": 11977204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f05f0", "tid": 35568, "ts": 11977290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef5b0", "tid": 35568, "ts": 11977376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edc80", "tid": 35568, "ts": 11977462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef4e0", "tid": 35568, "ts": 11977548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33edbb0", "tid": 35568, "ts": 11977634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0450", "tid": 35568, "ts": 11977720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee090", "tid": 35568, "ts": 11977805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed870", "tid": 35568, "ts": 11977891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0380", "tid": 35568, "ts": 11977977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed940", "tid": 35568, "ts": 11978063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee8b0", "tid": 35568, "ts": 11978148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef340", "tid": 35568, "ts": 11978235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33f0040", "tid": 35568, "ts": 11978320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efa90", "tid": 35568, "ts": 11978406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efb60", "tid": 35568, "ts": 11978492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eff70", "tid": 35568, "ts": 11978577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33efea0", "tid": 35568, "ts": 11978662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ef0d0", "tid": 35568, "ts": 11978748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee640", "tid": 35568, "ts": 11978834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed6d0", "tid": 35568, "ts": 11978920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eda10", "tid": 35568, "ts": 11979006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eef30", "tid": 35568, "ts": 11979092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed600", "tid": 35568, "ts": 11979177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ee570", "tid": 35568, "ts": 11979263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed120", "tid": 35568, "ts": 11979349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebb30", "tid": 35568, "ts": 11979435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec420", "tid": 35568, "ts": 11979520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb990", "tid": 35568, "ts": 11979606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec350", "tid": 35568, "ts": 11979691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb310", "tid": 35568, "ts": 11979777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecde0", "tid": 35568, "ts": 11979864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec0e0", "tid": 35568, "ts": 11979949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb170", "tid": 35568, "ts": 11980035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebe70", "tid": 35568, "ts": 11980120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecb70", "tid": 35568, "ts": 11980206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eaf00", "tid": 35568, "ts": 11980292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eafd0", "tid": 35568, "ts": 11980378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecaa0", "tid": 35568, "ts": 11980470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ead60", "tid": 35568, "ts": 11980557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ecc40", "tid": 35568, "ts": 11980643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea130", "tid": 35568, "ts": 11980729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eac90", "tid": 35568, "ts": 11980814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb240", "tid": 35568, "ts": 11980900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eaaf0", "tid": 35568, "ts": 11981025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eaa20", "tid": 35568, "ts": 11981112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebf40", "tid": 35568, "ts": 11981197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec830", "tid": 35568, "ts": 11981303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec900", "tid": 35568, "ts": 11981390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33eb4b0", "tid": 35568, "ts": 11981476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ec760", "tid": 35568, "ts": 11981563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea880", "tid": 35568, "ts": 11981649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ebcd0", "tid": 35568, "ts": 11981735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ed460", "tid": 35568, "ts": 11981821, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea3a0", "tid": 35568, "ts": 11981907, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea7b0", "tid": 35568, "ts": 11981993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8660", "tid": 35568, "ts": 11982079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e84c0", "tid": 35568, "ts": 11982164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7f10", "tid": 35568, "ts": 11982251, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7bd0", "tid": 35568, "ts": 11982337, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e76f0", "tid": 35568, "ts": 11982423, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e73b0", "tid": 35568, "ts": 11982509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e72e0", "tid": 35568, "ts": 11982596, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9df0", "tid": 35568, "ts": 11982682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8250", "tid": 35568, "ts": 11982767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7210", "tid": 35568, "ts": 11982853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9d20", "tid": 35568, "ts": 11982940, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9290", "tid": 35568, "ts": 11983025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9430", "tid": 35568, "ts": 11983112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9b80", "tid": 35568, "ts": 11983198, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7480", "tid": 35568, "ts": 11983284, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6ed0", "tid": 35568, "ts": 11983370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7a30", "tid": 35568, "ts": 11983455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8db0", "tid": 35568, "ts": 11983541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6e00", "tid": 35568, "ts": 11983627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8ce0", "tid": 35568, "ts": 11983714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e99e0", "tid": 35568, "ts": 11983799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9770", "tid": 35568, "ts": 11983885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8c10", "tid": 35568, "ts": 11983971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9f90", "tid": 35568, "ts": 11984057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9ec0", "tid": 35568, "ts": 11984142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e9840", "tid": 35568, "ts": 11984227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ea060", "tid": 35568, "ts": 11984313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e91c0", "tid": 35568, "ts": 11984399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e95d0", "tid": 35568, "ts": 11984485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e7fe0", "tid": 35568, "ts": 11984571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e77c0", "tid": 35568, "ts": 11984657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e8180", "tid": 35568, "ts": 11984743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4150", "tid": 35568, "ts": 11984829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3fb0", "tid": 35568, "ts": 11984916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5740", "tid": 35568, "ts": 11985002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3c70", "tid": 35568, "ts": 11985088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3a00", "tid": 35568, "ts": 11985173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5670", "tid": 35568, "ts": 11985259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6c60", "tid": 35568, "ts": 11985346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e54d0", "tid": 35568, "ts": 11985432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4a40", "tid": 35568, "ts": 11985519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e66b0", "tid": 35568, "ts": 11985604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3e10", "tid": 35568, "ts": 11985690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e62a0", "tid": 35568, "ts": 11985775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e61d0", "tid": 35568, "ts": 11985861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4970", "tid": 35568, "ts": 11985947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4490", "tid": 35568, "ts": 11986033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4ff0", "tid": 35568, "ts": 11986119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6920", "tid": 35568, "ts": 11986205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4d80", "tid": 35568, "ts": 11986292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6850", "tid": 35568, "ts": 11986378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4be0", "tid": 35568, "ts": 11986464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4700", "tid": 35568, "ts": 11986550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4f20", "tid": 35568, "ts": 11986636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e59b0", "tid": 35568, "ts": 11986722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5810", "tid": 35568, "ts": 11986807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5e90", "tid": 35568, "ts": 11986893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5c20", "tid": 35568, "ts": 11986979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e5260", "tid": 35568, "ts": 11987065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e58e0", "tid": 35568, "ts": 11987151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e55a0", "tid": 35568, "ts": 11987236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e4e50", "tid": 35568, "ts": 11987322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e6780", "tid": 35568, "ts": 11987409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e65e0", "tid": 35568, "ts": 11987496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1980", "tid": 35568, "ts": 11987582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1e60", "tid": 35568, "ts": 11987668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1710", "tid": 35568, "ts": 11987754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1cc0", "tid": 35568, "ts": 11987840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e07a0", "tid": 35568, "ts": 11987926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1570", "tid": 35568, "ts": 11988012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e31e0", "tid": 35568, "ts": 11988098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e06d0", "tid": 35568, "ts": 11988184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2f70", "tid": 35568, "ts": 11988270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3040", "tid": 35568, "ts": 11988355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3860", "tid": 35568, "ts": 11988441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2c30", "tid": 35568, "ts": 11988527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e24e0", "tid": 35568, "ts": 11988613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e3790", "tid": 35568, "ts": 11988699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1230", "tid": 35568, "ts": 11988785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1160", "tid": 35568, "ts": 11988871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2b60", "tid": 35568, "ts": 11988957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2820", "tid": 35568, "ts": 11989043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2340", "tid": 35568, "ts": 11989129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2750", "tid": 35568, "ts": 11989216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0ef0", "tid": 35568, "ts": 11989302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e36c0", "tid": 35568, "ts": 11989387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0fc0", "tid": 35568, "ts": 11989474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0a10", "tid": 35568, "ts": 11989560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e13d0", "tid": 35568, "ts": 11989648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e1d90", "tid": 35568, "ts": 11989733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e35f0", "tid": 35568, "ts": 11989820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e29c0", "tid": 35568, "ts": 11989906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0bb0", "tid": 35568, "ts": 11989992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0e20", "tid": 35568, "ts": 11990078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e2680", "tid": 35568, "ts": 11990163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0530", "tid": 35568, "ts": 11990249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de310", "tid": 35568, "ts": 11990336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de0a0", "tid": 35568, "ts": 11990422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd880", "tid": 35568, "ts": 11990509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddfd0", "tid": 35568, "ts": 11990595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df1b0", "tid": 35568, "ts": 11990681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd6e0", "tid": 35568, "ts": 11990767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfeb0", "tid": 35568, "ts": 11990853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df280", "tid": 35568, "ts": 11990939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33decd0", "tid": 35568, "ts": 11991025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dea60", "tid": 35568, "ts": 11991111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de170", "tid": 35568, "ts": 11991197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd950", "tid": 35568, "ts": 11991283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfaa0", "tid": 35568, "ts": 11991369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de990", "tid": 35568, "ts": 11991455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de4b0", "tid": 35568, "ts": 11991541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dde30", "tid": 35568, "ts": 11991627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0120", "tid": 35568, "ts": 11991713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dee70", "tid": 35568, "ts": 11991799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df690", "tid": 35568, "ts": 11991886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de8c0", "tid": 35568, "ts": 11991971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd7b0", "tid": 35568, "ts": 11992057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd3a0", "tid": 35568, "ts": 11992144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df830", "tid": 35568, "ts": 11992231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddd60", "tid": 35568, "ts": 11992318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de7f0", "tid": 35568, "ts": 11992404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dfb70", "tid": 35568, "ts": 11992490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ddaf0", "tid": 35568, "ts": 11992576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd2d0", "tid": 35568, "ts": 11992663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df350", "tid": 35568, "ts": 11992748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33de580", "tid": 35568, "ts": 11992835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33e0050", "tid": 35568, "ts": 11992922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33df900", "tid": 35568, "ts": 11993008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9d30", "tid": 35568, "ts": 11993095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcec0", "tid": 35568, "ts": 11993181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dcab0", "tid": 35568, "ts": 11993268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc840", "tid": 35568, "ts": 11993354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc430", "tid": 35568, "ts": 11993440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbdb0", "tid": 35568, "ts": 11993526, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc360", "tid": 35568, "ts": 11993613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db9a0", "tid": 35568, "ts": 11993699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db730", "tid": 35568, "ts": 11993785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da6f0", "tid": 35568, "ts": 11993871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db660", "tid": 35568, "ts": 11993957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db590", "tid": 35568, "ts": 11994042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db0b0", "tid": 35568, "ts": 11994128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc290", "tid": 35568, "ts": 11994214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dbb40", "tid": 35568, "ts": 11994301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc500", "tid": 35568, "ts": 11994387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db4c0", "tid": 35568, "ts": 11994473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9fa0", "tid": 35568, "ts": 11994559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da2e0", "tid": 35568, "ts": 11994757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da550", "tid": 35568, "ts": 11994844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dae40", "tid": 35568, "ts": 11994930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc020", "tid": 35568, "ts": 11995016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33daca0", "tid": 35568, "ts": 11995102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da620", "tid": 35568, "ts": 11995188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9ed0", "tid": 35568, "ts": 11995274, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da890", "tid": 35568, "ts": 11995360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da960", "tid": 35568, "ts": 11995453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dd060", "tid": 35568, "ts": 11995540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc9e0", "tid": 35568, "ts": 11995625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33db320", "tid": 35568, "ts": 11995712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33dc5d0", "tid": 35568, "ts": 11995798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33da140", "tid": 35568, "ts": 11995884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8190", "tid": 35568, "ts": 11995970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9ac0", "tid": 35568, "ts": 11996057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7150", "tid": 35568, "ts": 11996143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7ff0", "tid": 35568, "ts": 11996229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d99f0", "tid": 35568, "ts": 11996314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8a80", "tid": 35568, "ts": 11996400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7f20", "tid": 35568, "ts": 11996486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6e10", "tid": 35568, "ts": 11996608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7be0", "tid": 35568, "ts": 11996720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9920", "tid": 35568, "ts": 11996807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6ad0", "tid": 35568, "ts": 11996893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9510", "tid": 35568, "ts": 11996980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d96b0", "tid": 35568, "ts": 11997067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9b90", "tid": 35568, "ts": 11997153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7220", "tid": 35568, "ts": 11997239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6a00", "tid": 35568, "ts": 11997325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6c70", "tid": 35568, "ts": 11997411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d89b0", "tid": 35568, "ts": 11997498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8e90", "tid": 35568, "ts": 11997584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7630", "tid": 35568, "ts": 11997670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9440", "tid": 35568, "ts": 11997756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8670", "tid": 35568, "ts": 11997842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7d80", "tid": 35568, "ts": 11997928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d84d0", "tid": 35568, "ts": 11998014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d88e0", "tid": 35568, "ts": 11998101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d7cb0", "tid": 35568, "ts": 11998188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d73c0", "tid": 35568, "ts": 11998276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d92a0", "tid": 35568, "ts": 11998363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d91d0", "tid": 35568, "ts": 11998449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d8810", "tid": 35568, "ts": 11998537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d9850", "tid": 35568, "ts": 11998624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6d40", "tid": 35568, "ts": 11998711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5750", "tid": 35568, "ts": 11998808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d55b0", "tid": 35568, "ts": 11998895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d51a0", "tid": 35568, "ts": 11998982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4e60", "tid": 35568, "ts": 11999067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d37a0", "tid": 35568, "ts": 11999153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d36d0", "tid": 35568, "ts": 11999239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4710", "tid": 35568, "ts": 11999325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3600", "tid": 35568, "ts": 11999412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3530", "tid": 35568, "ts": 11999498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4980", "tid": 35568, "ts": 11999584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d65f0", "tid": 35568, "ts": 11999670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d54e0", "tid": 35568, "ts": 11999756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4570", "tid": 35568, "ts": 11999842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d61e0", "tid": 35568, "ts": 11999928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3ef0", "tid": 35568, "ts": 12000014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d48b0", "tid": 35568, "ts": 12000100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6110", "tid": 35568, "ts": 12000185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6040", "tid": 35568, "ts": 12000272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d6790", "tid": 35568, "ts": 12000358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3870", "tid": 35568, "ts": 12000444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5d00", "tid": 35568, "ts": 12000530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d62b0", "tid": 35568, "ts": 12000616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5b60", "tid": 35568, "ts": 12000701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d59c0", "tid": 35568, "ts": 12000787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4230", "tid": 35568, "ts": 12000874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4a50", "tid": 35568, "ts": 12000960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4160", "tid": 35568, "ts": 12001045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5410", "tid": 35568, "ts": 12001132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d43d0", "tid": 35568, "ts": 12001218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d4300", "tid": 35568, "ts": 12001304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d5dd0", "tid": 35568, "ts": 12001389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d3fc0", "tid": 35568, "ts": 12001476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1b30", "tid": 35568, "ts": 12001562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1310", "tid": 35568, "ts": 12001647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d17f0", "tid": 35568, "ts": 12001733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0d60", "tid": 35568, "ts": 12001820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0880", "tid": 35568, "ts": 12001905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d07b0", "tid": 35568, "ts": 12001991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0130", "tid": 35568, "ts": 12002078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d32c0", "tid": 35568, "ts": 12002164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d31f0", "tid": 35568, "ts": 12002250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1a60", "tid": 35568, "ts": 12002336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d21b0", "tid": 35568, "ts": 12002422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1c00", "tid": 35568, "ts": 12002508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2350", "tid": 35568, "ts": 12002594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2eb0", "tid": 35568, "ts": 12002680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2de0", "tid": 35568, "ts": 12002766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1240", "tid": 35568, "ts": 12002851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2010", "tid": 35568, "ts": 12002938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1720", "tid": 35568, "ts": 12003023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0610", "tid": 35568, "ts": 12003110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2b70", "tid": 35568, "ts": 12003196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2aa0", "tid": 35568, "ts": 12003282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0f00", "tid": 35568, "ts": 12003368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2c40", "tid": 35568, "ts": 12003454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d25c0", "tid": 35568, "ts": 12003540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d1650", "tid": 35568, "ts": 12003626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2420", "tid": 35568, "ts": 12003712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0470", "tid": 35568, "ts": 12003798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0af0", "tid": 35568, "ts": 12003884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d02d0", "tid": 35568, "ts": 12003970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d2760", "tid": 35568, "ts": 12004056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d14b0", "tid": 35568, "ts": 12004142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0bc0", "tid": 35568, "ts": 12004228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce800", "tid": 35568, "ts": 12004314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdfe0", "tid": 35568, "ts": 12004400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cda30", "tid": 35568, "ts": 12004496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdca0", "tid": 35568, "ts": 12004584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd890", "tid": 35568, "ts": 12004670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdf10", "tid": 35568, "ts": 12004756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf430", "tid": 35568, "ts": 12004843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce730", "tid": 35568, "ts": 12004930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf360", "tid": 35568, "ts": 12005016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd070", "tid": 35568, "ts": 12005102, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce590", "tid": 35568, "ts": 12005188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf020", "tid": 35568, "ts": 12005273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf290", "tid": 35568, "ts": 12005360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf0f0", "tid": 35568, "ts": 12005446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce0b0", "tid": 35568, "ts": 12005532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf770", "tid": 35568, "ts": 12005617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd6f0", "tid": 35568, "ts": 12005703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cf6a0", "tid": 35568, "ts": 12005790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfd20", "tid": 35568, "ts": 12005876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33d0060", "tid": 35568, "ts": 12005962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdb00", "tid": 35568, "ts": 12006048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce3f0", "tid": 35568, "ts": 12006133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cee80", "tid": 35568, "ts": 12006219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfdf0", "tid": 35568, "ts": 12006305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ce320", "tid": 35568, "ts": 12006391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cd480", "tid": 35568, "ts": 12006476, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccd30", "tid": 35568, "ts": 12006562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ceb40", "tid": 35568, "ts": 12006648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfab0", "tid": 35568, "ts": 12006734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cde40", "tid": 35568, "ts": 12006819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cdbd0", "tid": 35568, "ts": 12006905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cfec0", "tid": 35568, "ts": 12006991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb4d0", "tid": 35568, "ts": 12007078, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb260", "tid": 35568, "ts": 12007164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca490", "tid": 35568, "ts": 12007250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9ee0", "tid": 35568, "ts": 12007336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9ad0", "tid": 35568, "ts": 12007421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ccb90", "tid": 35568, "ts": 12007508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca2f0", "tid": 35568, "ts": 12007593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca150", "tid": 35568, "ts": 12007680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca220", "tid": 35568, "ts": 12007766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca970", "tid": 35568, "ts": 12007852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb9b0", "tid": 35568, "ts": 12007939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca8a0", "tid": 35568, "ts": 12008025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9d40", "tid": 35568, "ts": 12008111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9ba0", "tid": 35568, "ts": 12008197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc510", "tid": 35568, "ts": 12008283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb740", "tid": 35568, "ts": 12008369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc440", "tid": 35568, "ts": 12008455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc370", "tid": 35568, "ts": 12008541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc2a0", "tid": 35568, "ts": 12008627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc9f0", "tid": 35568, "ts": 12008714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ca7d0", "tid": 35568, "ts": 12008799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cad80", "tid": 35568, "ts": 12008885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9fb0", "tid": 35568, "ts": 12008971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc920", "tid": 35568, "ts": 12009057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbc20", "tid": 35568, "ts": 12009143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbb50", "tid": 35568, "ts": 12009229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cbf60", "tid": 35568, "ts": 12009315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9930", "tid": 35568, "ts": 12009401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb400", "tid": 35568, "ts": 12009487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cb8e0", "tid": 35568, "ts": 12009573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cba80", "tid": 35568, "ts": 12009659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33cc1d0", "tid": 35568, "ts": 12009745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8750", "tid": 35568, "ts": 12009831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c81a0", "tid": 35568, "ts": 12009918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7bf0", "tid": 35568, "ts": 12010003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c84e0", "tid": 35568, "ts": 12010090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6fc0", "tid": 35568, "ts": 12010175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6e20", "tid": 35568, "ts": 12010262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c92b0", "tid": 35568, "ts": 12010348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8340", "tid": 35568, "ts": 12010434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7090", "tid": 35568, "ts": 12010519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c91e0", "tid": 35568, "ts": 12010605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6c80", "tid": 35568, "ts": 12010691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7e60", "tid": 35568, "ts": 12010777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6a10", "tid": 35568, "ts": 12010864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7d90", "tid": 35568, "ts": 12010950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c73d0", "tid": 35568, "ts": 12011035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8680", "tid": 35568, "ts": 12011121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9520", "tid": 35568, "ts": 12011206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9790", "tid": 35568, "ts": 12011293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9110", "tid": 35568, "ts": 12011379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8270", "tid": 35568, "ts": 12011465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7160", "tid": 35568, "ts": 12011552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7230", "tid": 35568, "ts": 12011637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9860", "tid": 35568, "ts": 12011722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6ef0", "tid": 35568, "ts": 12011808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9040", "tid": 35568, "ts": 12011894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8f70", "tid": 35568, "ts": 12011980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c9450", "tid": 35568, "ts": 12012066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8410", "tid": 35568, "ts": 12012152, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6600", "tid": 35568, "ts": 12012273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c7a50", "tid": 35568, "ts": 12012372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c8b60", "tid": 35568, "ts": 12012484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c66d0", "tid": 35568, "ts": 12012612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3950", "tid": 35568, "ts": 12012698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3880", "tid": 35568, "ts": 12012784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c36e0", "tid": 35568, "ts": 12012871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3540", "tid": 35568, "ts": 12012956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3bc0", "tid": 35568, "ts": 12013042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c32d0", "tid": 35568, "ts": 12013127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3f00", "tid": 35568, "ts": 12013212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6460", "tid": 35568, "ts": 12013299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5f80", "tid": 35568, "ts": 12013385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5900", "tid": 35568, "ts": 12013471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4c00", "tid": 35568, "ts": 12013556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5de0", "tid": 35568, "ts": 12013642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6390", "tid": 35568, "ts": 12013728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5350", "tid": 35568, "ts": 12013814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c48c0", "tid": 35568, "ts": 12013899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c54f0", "tid": 35568, "ts": 12013985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c47f0", "tid": 35568, "ts": 12014071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6050", "tid": 35568, "ts": 12014157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c33a0", "tid": 35568, "ts": 12014243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4e70", "tid": 35568, "ts": 12014335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c62c0", "tid": 35568, "ts": 12014421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4a60", "tid": 35568, "ts": 12014507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3a20", "tid": 35568, "ts": 12014593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3e30", "tid": 35568, "ts": 12014678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3fd0", "tid": 35568, "ts": 12014764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c55c0", "tid": 35568, "ts": 12014850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c5760", "tid": 35568, "ts": 12014936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c51b0", "tid": 35568, "ts": 12015021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c6120", "tid": 35568, "ts": 12015107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3af0", "tid": 35568, "ts": 12015192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4240", "tid": 35568, "ts": 12015278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c4720", "tid": 35568, "ts": 12015363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1320", "tid": 35568, "ts": 12015450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0f10", "tid": 35568, "ts": 12015535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfd30", "tid": 35568, "ts": 12015621, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2ec0", "tid": 35568, "ts": 12015707, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfe00", "tid": 35568, "ts": 12015792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1a70", "tid": 35568, "ts": 12015878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2b80", "tid": 35568, "ts": 12015964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0bd0", "tid": 35568, "ts": 12016056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c3060", "tid": 35568, "ts": 12016144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c10b0", "tid": 35568, "ts": 12016230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0b00", "tid": 35568, "ts": 12016316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0a30", "tid": 35568, "ts": 12016401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0e40", "tid": 35568, "ts": 12016487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2c50", "tid": 35568, "ts": 12016572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c18d0", "tid": 35568, "ts": 12016657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1590", "tid": 35568, "ts": 12016743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1250", "tid": 35568, "ts": 12016828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1f50", "tid": 35568, "ts": 12016914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c07c0", "tid": 35568, "ts": 12017000, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0480", "tid": 35568, "ts": 12017086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c19a0", "tid": 35568, "ts": 12017171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2500", "tid": 35568, "ts": 12017257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2360", "tid": 35568, "ts": 12017342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c06f0", "tid": 35568, "ts": 12017428, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfed0", "tid": 35568, "ts": 12017514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1ce0", "tid": 35568, "ts": 12017599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c0070", "tid": 35568, "ts": 12017685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c02e0", "tid": 35568, "ts": 12017771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c13f0", "tid": 35568, "ts": 12017856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c1e80", "tid": 35568, "ts": 12017942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c03b0", "tid": 35568, "ts": 12018028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33c2df0", "tid": 35568, "ts": 12018112, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be5a0", "tid": 35568, "ts": 12018197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bfb90", "tid": 35568, "ts": 12018283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be330", "tid": 35568, "ts": 12018369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be190", "tid": 35568, "ts": 12018455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bdcb0", "tid": 35568, "ts": 12018540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd3c0", "tid": 35568, "ts": 12018626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf920", "tid": 35568, "ts": 12018712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf850", "tid": 35568, "ts": 12018799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be4d0", "tid": 35568, "ts": 12018884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf6b0", "tid": 35568, "ts": 12018970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33beb50", "tid": 35568, "ts": 12019056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd490", "tid": 35568, "ts": 12019143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bee90", "tid": 35568, "ts": 12019230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd2f0", "tid": 35568, "ts": 12019316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd150", "tid": 35568, "ts": 12019401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf510", "tid": 35568, "ts": 12019487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf2a0", "tid": 35568, "ts": 12019572, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be8e0", "tid": 35568, "ts": 12019659, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bde50", "tid": 35568, "ts": 12019744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcc70", "tid": 35568, "ts": 12019829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf100", "tid": 35568, "ts": 12019915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf440", "tid": 35568, "ts": 12020001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd700", "tid": 35568, "ts": 12020086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf1d0", "tid": 35568, "ts": 12020173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf9f0", "tid": 35568, "ts": 12020258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bf030", "tid": 35568, "ts": 12020344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33becf0", "tid": 35568, "ts": 12020431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be740", "tid": 35568, "ts": 12020516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd7d0", "tid": 35568, "ts": 12020602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33be670", "tid": 35568, "ts": 12020688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bd220", "tid": 35568, "ts": 12020774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bcfb0", "tid": 35568, "ts": 12020860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb820", "tid": 35568, "ts": 12020946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbc30", "tid": 35568, "ts": 12021033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb410", "tid": 35568, "ts": 12021119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb000", "tid": 35568, "ts": 12021205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bae60", "tid": 35568, "ts": 12021291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9fc0", "tid": 35568, "ts": 12021376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9ef0", "tid": 35568, "ts": 12021463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9c80", "tid": 35568, "ts": 12021548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bba90", "tid": 35568, "ts": 12021634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba8b0", "tid": 35568, "ts": 12021720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba160", "tid": 35568, "ts": 12021806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba710", "tid": 35568, "ts": 12021892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb9c0", "tid": 35568, "ts": 12021978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba090", "tid": 35568, "ts": 12022064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bab20", "tid": 35568, "ts": 12022149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9600", "tid": 35568, "ts": 12022235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bbf70", "tid": 35568, "ts": 12022320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb0d0", "tid": 35568, "ts": 12022406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bc6c0", "tid": 35568, "ts": 12022493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb4e0", "tid": 35568, "ts": 12022578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b97a0", "tid": 35568, "ts": 12022665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb8f0", "tid": 35568, "ts": 12022750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba300", "tid": 35568, "ts": 12022836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba230", "tid": 35568, "ts": 12022921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bad90", "tid": 35568, "ts": 12023007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9870", "tid": 35568, "ts": 12023093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba640", "tid": 35568, "ts": 12023179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33bb270", "tid": 35568, "ts": 12023265, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba4a0", "tid": 35568, "ts": 12023351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9a10", "tid": 35568, "ts": 12023437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba980", "tid": 35568, "ts": 12023523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33ba3d0", "tid": 35568, "ts": 12023609, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6e30", "tid": 35568, "ts": 12023695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9390", "tid": 35568, "ts": 12023780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b91f0", "tid": 35568, "ts": 12023867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b92c0", "tid": 35568, "ts": 12023952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7cd0", "tid": 35568, "ts": 12024038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7c00", "tid": 35568, "ts": 12024128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8900", "tid": 35568, "ts": 12024214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9460", "tid": 35568, "ts": 12024300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6540", "tid": 35568, "ts": 12024386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8f80", "tid": 35568, "ts": 12024471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6130", "tid": 35568, "ts": 12024557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7a60", "tid": 35568, "ts": 12024643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8350", "tid": 35568, "ts": 12024729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6950", "tid": 35568, "ts": 12024814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6880", "tid": 35568, "ts": 12024900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7170", "tid": 35568, "ts": 12024986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8280", "tid": 35568, "ts": 12025072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8420", "tid": 35568, "ts": 12025158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6bc0", "tid": 35568, "ts": 12025244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6d60", "tid": 35568, "ts": 12025330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7310", "tid": 35568, "ts": 12025416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b74b0", "tid": 35568, "ts": 12025501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b73e0", "tid": 35568, "ts": 12025587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b8760", "tid": 35568, "ts": 12025673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b6af0", "tid": 35568, "ts": 12025759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7240", "tid": 35568, "ts": 12025845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7650", "tid": 35568, "ts": 12025931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b7f40", "tid": 35568, "ts": 12026017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b81b0", "tid": 35568, "ts": 12026103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b85c0", "tid": 35568, "ts": 12026189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b9050", "tid": 35568, "ts": 12026275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a33b84f0", "tid": 35568, "ts": 12026360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30690d0", "tid": 35568, "ts": 12026447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068bf0", "tid": 35568, "ts": 12026533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068a50", "tid": 35568, "ts": 12026619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30687e0", "tid": 35568, "ts": 12026705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066280", "tid": 35568, "ts": 12026791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068160", "tid": 35568, "ts": 12026877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067d50", "tid": 35568, "ts": 12026963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068710", "tid": 35568, "ts": 12027049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067c80", "tid": 35568, "ts": 12027146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067ae0", "tid": 35568, "ts": 12027244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30677a0", "tid": 35568, "ts": 12027330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067ef0", "tid": 35568, "ts": 12027415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066830", "tid": 35568, "ts": 12027501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30661b0", "tid": 35568, "ts": 12027586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30664f0", "tid": 35568, "ts": 12027672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066420", "tid": 35568, "ts": 12027758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067390", "tid": 35568, "ts": 12027865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066aa0", "tid": 35568, "ts": 12027968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066b70", "tid": 35568, "ts": 12028054, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067460", "tid": 35568, "ts": 12028139, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067120", "tid": 35568, "ts": 12028225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066760", "tid": 35568, "ts": 12028311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067870", "tid": 35568, "ts": 12028397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067940", "tid": 35568, "ts": 12028483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066900", "tid": 35568, "ts": 12028569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068230", "tid": 35568, "ts": 12028655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068640", "tid": 35568, "ts": 12028741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3067050", "tid": 35568, "ts": 12028827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3068d90", "tid": 35568, "ts": 12028913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30684a0", "tid": 35568, "ts": 12028999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30691a0", "tid": 35568, "ts": 12029085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3066690", "tid": 35568, "ts": 12029171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085970", "tid": 35568, "ts": 12029257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085e50", "tid": 35568, "ts": 12029342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085700", "tid": 35568, "ts": 12029429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30853c0", "tid": 35568, "ts": 12029515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084860", "tid": 35568, "ts": 12029601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083680", "tid": 35568, "ts": 12029686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084e10", "tid": 35568, "ts": 12029772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085cb0", "tid": 35568, "ts": 12029859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083f70", "tid": 35568, "ts": 12029945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084930", "tid": 35568, "ts": 12030031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084ee0", "tid": 35568, "ts": 12030117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084790", "tid": 35568, "ts": 12030202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083ea0", "tid": 35568, "ts": 12030288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084450", "tid": 35568, "ts": 12030373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084d40", "tid": 35568, "ts": 12030459, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085be0", "tid": 35568, "ts": 12030546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085490", "tid": 35568, "ts": 12030631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30839c0", "tid": 35568, "ts": 12030717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084ba0", "tid": 35568, "ts": 12030803, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083a90", "tid": 35568, "ts": 12030889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083750", "tid": 35568, "ts": 12030975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3084110", "tid": 35568, "ts": 12031060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085f20", "tid": 35568, "ts": 12031146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085150", "tid": 35568, "ts": 12031232, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30842b0", "tid": 35568, "ts": 12031317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3085560", "tid": 35568, "ts": 12031403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30828b0", "tid": 35568, "ts": 12031489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082640", "tid": 35568, "ts": 12031576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082300", "tid": 35568, "ts": 12031662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081fc0", "tid": 35568, "ts": 12031748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081d50", "tid": 35568, "ts": 12031834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081a10", "tid": 35568, "ts": 12031920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081940", "tid": 35568, "ts": 12032006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30817a0", "tid": 35568, "ts": 12032092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080f80", "tid": 35568, "ts": 12032178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081c80", "tid": 35568, "ts": 12032264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080d10", "tid": 35568, "ts": 12032349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080b70", "tid": 35568, "ts": 12032436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080900", "tid": 35568, "ts": 12032521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3081050", "tid": 35568, "ts": 12032607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080690", "tid": 35568, "ts": 12032694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30804f0", "tid": 35568, "ts": 12032779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30801b0", "tid": 35568, "ts": 12032865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082980", "tid": 35568, "ts": 12032951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083410", "tid": 35568, "ts": 12033038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082f30", "tid": 35568, "ts": 12033125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30831a0", "tid": 35568, "ts": 12033211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080280", "tid": 35568, "ts": 12033298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30805c0", "tid": 35568, "ts": 12033385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082e60", "tid": 35568, "ts": 12033481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082090", "tid": 35568, "ts": 12033569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082710", "tid": 35568, "ts": 12033655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080830", "tid": 35568, "ts": 12033741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082230", "tid": 35568, "ts": 12033826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082a50", "tid": 35568, "ts": 12033921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080760", "tid": 35568, "ts": 12034008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3083270", "tid": 35568, "ts": 12034095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3082cc0", "tid": 35568, "ts": 12034181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fa60", "tid": 35568, "ts": 12034267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f8c0", "tid": 35568, "ts": 12034353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f580", "tid": 35568, "ts": 12034439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f310", "tid": 35568, "ts": 12034525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d0f0", "tid": 35568, "ts": 12034610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307efd0", "tid": 35568, "ts": 12034695, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dec0", "tid": 35568, "ts": 12034781, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cf50", "tid": 35568, "ts": 12034866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ddf0", "tid": 35568, "ts": 12034952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ef00", "tid": 35568, "ts": 12035038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cdb0", "tid": 35568, "ts": 12035125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dd20", "tid": 35568, "ts": 12035210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e200", "tid": 35568, "ts": 12035295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d9e0", "tid": 35568, "ts": 12035381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3080010", "tid": 35568, "ts": 12035467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e060", "tid": 35568, "ts": 12035552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ff40", "tid": 35568, "ts": 12035637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fe70", "tid": 35568, "ts": 12035722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d500", "tid": 35568, "ts": 12035808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d1c0", "tid": 35568, "ts": 12035894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d360", "tid": 35568, "ts": 12035979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d6a0", "tid": 35568, "ts": 12036064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e540", "tid": 35568, "ts": 12036150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ec90", "tid": 35568, "ts": 12036236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f3e0", "tid": 35568, "ts": 12036322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307f240", "tid": 35568, "ts": 12036407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307dc50", "tid": 35568, "ts": 12036493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307e3a0", "tid": 35568, "ts": 12036586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307eaf0", "tid": 35568, "ts": 12036673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307fb30", "tid": 35568, "ts": 12036759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307d430", "tid": 35568, "ts": 12036844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307db80", "tid": 35568, "ts": 12036930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b6f0", "tid": 35568, "ts": 12037015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b550", "tid": 35568, "ts": 12037101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b2e0", "tid": 35568, "ts": 12037186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079dc0", "tid": 35568, "ts": 12037272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079c20", "tid": 35568, "ts": 12037358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30799b0", "tid": 35568, "ts": 12037443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307cc10", "tid": 35568, "ts": 12037529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c3f0", "tid": 35568, "ts": 12037614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a920", "tid": 35568, "ts": 12037700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b210", "tid": 35568, "ts": 12037786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c250", "tid": 35568, "ts": 12037871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b960", "tid": 35568, "ts": 12037956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a6b0", "tid": 35568, "ts": 12038041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ca70", "tid": 35568, "ts": 12038126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b070", "tid": 35568, "ts": 12038212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a440", "tid": 35568, "ts": 12038297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a370", "tid": 35568, "ts": 12038383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b7c0", "tid": 35568, "ts": 12038468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307b140", "tid": 35568, "ts": 12038553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a1d0", "tid": 35568, "ts": 12038639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a030", "tid": 35568, "ts": 12038725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c0b0", "tid": 35568, "ts": 12038810, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c730", "tid": 35568, "ts": 12038896, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a100", "tid": 35568, "ts": 12038981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079f60", "tid": 35568, "ts": 12039066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bfe0", "tid": 35568, "ts": 12039153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079cf0", "tid": 35568, "ts": 12039239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307be40", "tid": 35568, "ts": 12039324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307a2a0", "tid": 35568, "ts": 12039410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307ad30", "tid": 35568, "ts": 12039497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307c590", "tid": 35568, "ts": 12039582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a307bf10", "tid": 35568, "ts": 12039668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079400", "tid": 35568, "ts": 12039754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079260", "tid": 35568, "ts": 12039840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078a40", "tid": 35568, "ts": 12039925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078560", "tid": 35568, "ts": 12040011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079190", "tid": 35568, "ts": 12040096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076c30", "tid": 35568, "ts": 12040183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30790c0", "tid": 35568, "ts": 12040268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078e50", "tid": 35568, "ts": 12040355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077380", "tid": 35568, "ts": 12040441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077ad0", "tid": 35568, "ts": 12040527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078700", "tid": 35568, "ts": 12040613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078490", "tid": 35568, "ts": 12040699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078cb0", "tid": 35568, "ts": 12040785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079740", "tid": 35568, "ts": 12040871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078080", "tid": 35568, "ts": 12040957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077ba0", "tid": 35568, "ts": 12041042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078be0", "tid": 35568, "ts": 12041129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076d00", "tid": 35568, "ts": 12041214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076750", "tid": 35568, "ts": 12041300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078220", "tid": 35568, "ts": 12041385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30776c0", "tid": 35568, "ts": 12041471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078ff0", "tid": 35568, "ts": 12041557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077fb0", "tid": 35568, "ts": 12041641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30794d0", "tid": 35568, "ts": 12041728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076a90", "tid": 35568, "ts": 12041813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076680", "tid": 35568, "ts": 12041900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078150", "tid": 35568, "ts": 12041985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077040", "tid": 35568, "ts": 12042070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3078630", "tid": 35568, "ts": 12042156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3079670", "tid": 35568, "ts": 12042243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3076dd0", "tid": 35568, "ts": 12042329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3077450", "tid": 35568, "ts": 12042414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075300", "tid": 35568, "ts": 12042501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074e20", "tid": 35568, "ts": 12042586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074c80", "tid": 35568, "ts": 12042671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073eb0", "tid": 35568, "ts": 12042757, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30742c0", "tid": 35568, "ts": 12042842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074ae0", "tid": 35568, "ts": 12042929, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074a10", "tid": 35568, "ts": 12043014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30730e0", "tid": 35568, "ts": 12043099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075d90", "tid": 35568, "ts": 12043185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30753d0", "tid": 35568, "ts": 12043270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073350", "tid": 35568, "ts": 12043357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074fc0", "tid": 35568, "ts": 12043457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073690", "tid": 35568, "ts": 12043588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073d10", "tid": 35568, "ts": 12043674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30739d0", "tid": 35568, "ts": 12043760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30747a0", "tid": 35568, "ts": 12043846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075cc0", "tid": 35568, "ts": 12043932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075e60", "tid": 35568, "ts": 12044018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074bb0", "tid": 35568, "ts": 12044104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073280", "tid": 35568, "ts": 12044190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3074120", "tid": 35568, "ts": 12044276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30746d0", "tid": 35568, "ts": 12044362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073c40", "tid": 35568, "ts": 12044448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30731b0", "tid": 35568, "ts": 12044533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073f80", "tid": 35568, "ts": 12044620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075b20", "tid": 35568, "ts": 12044706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073aa0", "tid": 35568, "ts": 12044792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073900", "tid": 35568, "ts": 12044877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075bf0", "tid": 35568, "ts": 12044968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3075570", "tid": 35568, "ts": 12045055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30754a0", "tid": 35568, "ts": 12045140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073760", "tid": 35568, "ts": 12045226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30724b0", "tid": 35568, "ts": 12045312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071bc0", "tid": 35568, "ts": 12045398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30717b0", "tid": 35568, "ts": 12045484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071610", "tid": 35568, "ts": 12045570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071200", "tid": 35568, "ts": 12045656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070f90", "tid": 35568, "ts": 12045742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070ec0", "tid": 35568, "ts": 12045827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072a60", "tid": 35568, "ts": 12045913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30727f0", "tid": 35568, "ts": 12045998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072240", "tid": 35568, "ts": 12046084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070c50", "tid": 35568, "ts": 12046170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070290", "tid": 35568, "ts": 12046255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30701c0", "tid": 35568, "ts": 12046341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3073010", "tid": 35568, "ts": 12046427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071c90", "tid": 35568, "ts": 12046513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072580", "tid": 35568, "ts": 12046599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071540", "tid": 35568, "ts": 12046685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071e30", "tid": 35568, "ts": 12046772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072cd0", "tid": 35568, "ts": 12046858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070840", "tid": 35568, "ts": 12046944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070ab0", "tid": 35568, "ts": 12047029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30713a0", "tid": 35568, "ts": 12047115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072720", "tid": 35568, "ts": 12047201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072b30", "tid": 35568, "ts": 12047287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072f40", "tid": 35568, "ts": 12047373, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30723e0", "tid": 35568, "ts": 12047458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3072e70", "tid": 35568, "ts": 12047544, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071130", "tid": 35568, "ts": 12047629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30728c0", "tid": 35568, "ts": 12047715, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071f00", "tid": 35568, "ts": 12047801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3070500", "tid": 35568, "ts": 12047887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3071470", "tid": 35568, "ts": 12047972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f660", "tid": 35568, "ts": 12048058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f4c0", "tid": 35568, "ts": 12048144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306efe0", "tid": 35568, "ts": 12048230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f3f0", "tid": 35568, "ts": 12048315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ebd0", "tid": 35568, "ts": 12048401, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e3b0", "tid": 35568, "ts": 12048487, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d370", "tid": 35568, "ts": 12048573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dd30", "tid": 35568, "ts": 12048658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d1d0", "tid": 35568, "ts": 12048744, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306db90", "tid": 35568, "ts": 12048830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dac0", "tid": 35568, "ts": 12048916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d100", "tid": 35568, "ts": 12049002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f180", "tid": 35568, "ts": 12049088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e7c0", "tid": 35568, "ts": 12049174, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ccf0", "tid": 35568, "ts": 12049260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306eb00", "tid": 35568, "ts": 12049345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c8e0", "tid": 35568, "ts": 12049432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306f800", "tid": 35568, "ts": 12049518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cc20", "tid": 35568, "ts": 12049603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ea30", "tid": 35568, "ts": 12049689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ce90", "tid": 35568, "ts": 12049775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e140", "tid": 35568, "ts": 12049861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d5e0", "tid": 35568, "ts": 12049948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d510", "tid": 35568, "ts": 12050034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ca80", "tid": 35568, "ts": 12050120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d780", "tid": 35568, "ts": 12050206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306d850", "tid": 35568, "ts": 12050291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306cb50", "tid": 35568, "ts": 12050378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fb40", "tid": 35568, "ts": 12050463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306fa70", "tid": 35568, "ts": 12050549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306dc60", "tid": 35568, "ts": 12050635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306e070", "tid": 35568, "ts": 12050721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bb10", "tid": 35568, "ts": 12050807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b970", "tid": 35568, "ts": 12050893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b700", "tid": 35568, "ts": 12050979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aba0", "tid": 35568, "ts": 12051064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c4d0", "tid": 35568, "ts": 12051151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a860", "tid": 35568, "ts": 12051237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069f70", "tid": 35568, "ts": 12051328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069dd0", "tid": 35568, "ts": 12051415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a110", "tid": 35568, "ts": 12051501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b3c0", "tid": 35568, "ts": 12051587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30699c0", "tid": 35568, "ts": 12051673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a5f0", "tid": 35568, "ts": 12051760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c260", "tid": 35568, "ts": 12051845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a450", "tid": 35568, "ts": 12051932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306a040", "tid": 35568, "ts": 12052018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c670", "tid": 35568, "ts": 12052104, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bff0", "tid": 35568, "ts": 12052190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bcb0", "tid": 35568, "ts": 12052275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069d00", "tid": 35568, "ts": 12052361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30694e0", "tid": 35568, "ts": 12052446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b220", "tid": 35568, "ts": 12052532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c400", "tid": 35568, "ts": 12052618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a30698f0", "tid": 35568, "ts": 12052704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ad40", "tid": 35568, "ts": 12052789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b150", "tid": 35568, "ts": 12052875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306b080", "tid": 35568, "ts": 12052961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069c30", "tid": 35568, "ts": 12053046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306c330", "tid": 35568, "ts": 12053132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a3069750", "tid": 35568, "ts": 12053218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306ae10", "tid": 35568, "ts": 12053303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306aa00", "tid": 35568, "ts": 12053390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a306bf20", "tid": 35568, "ts": 12053475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e350", "tid": 35568, "ts": 12053561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e280", "tid": 35568, "ts": 12053648, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f2c0", "tid": 35568, "ts": 12053734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f050", "tid": 35568, "ts": 12053820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120710", "tid": 35568, "ts": 12053905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120d90", "tid": 35568, "ts": 12053992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120bf0", "tid": 35568, "ts": 12054077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fe20", "tid": 35568, "ts": 12054163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fd50", "tid": 35568, "ts": 12054249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011eeb0", "tid": 35568, "ts": 12054335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120640", "tid": 35568, "ts": 12054422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e900", "tid": 35568, "ts": 12054507, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120f30", "tid": 35568, "ts": 12054594, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fc80", "tid": 35568, "ts": 12054680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f7a0", "tid": 35568, "ts": 12054766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01208b0", "tid": 35568, "ts": 12054852, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e690", "tid": 35568, "ts": 12054938, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f6d0", "tid": 35568, "ts": 12055024, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fa10", "tid": 35568, "ts": 12055109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e760", "tid": 35568, "ts": 12055195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120a50", "tid": 35568, "ts": 12055281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011f600", "tid": 35568, "ts": 12055367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011fef0", "tid": 35568, "ts": 12055452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ed10", "tid": 35568, "ts": 12055538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ec40", "tid": 35568, "ts": 12055624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e830", "tid": 35568, "ts": 12055709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011ede0", "tid": 35568, "ts": 12055795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120b20", "tid": 35568, "ts": 12055881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01207e0", "tid": 35568, "ts": 12055967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120980", "tid": 35568, "ts": 12056053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0120230", "tid": 35568, "ts": 12056140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a011e5c0", "tid": 35568, "ts": 12056226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013db10", "tid": 35568, "ts": 12056312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ce10", "tid": 35568, "ts": 12056397, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cad0", "tid": 35568, "ts": 12056483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c520", "tid": 35568, "ts": 12056569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c450", "tid": 35568, "ts": 12056655, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c2b0", "tid": 35568, "ts": 12056741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bf70", "tid": 35568, "ts": 12056827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bea0", "tid": 35568, "ts": 12056912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bd00", "tid": 35568, "ts": 12056997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b4e0", "tid": 35568, "ts": 12057083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d560", "tid": 35568, "ts": 12057169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c860", "tid": 35568, "ts": 12057260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c040", "tid": 35568, "ts": 12057347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013cee0", "tid": 35568, "ts": 12057433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b9c0", "tid": 35568, "ts": 12057520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bc30", "tid": 35568, "ts": 12057606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d970", "tid": 35568, "ts": 12057691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013de50", "tid": 35568, "ts": 12057777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bdd0", "tid": 35568, "ts": 12057863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d3c0", "tid": 35568, "ts": 12057949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c5f0", "tid": 35568, "ts": 12058035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d8a0", "tid": 35568, "ts": 12058121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013dd80", "tid": 35568, "ts": 12058207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013c930", "tid": 35568, "ts": 12058293, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b680", "tid": 35568, "ts": 12058379, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013d220", "tid": 35568, "ts": 12058465, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013bb60", "tid": 35568, "ts": 12058551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013abf0", "tid": 35568, "ts": 12058637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a090", "tid": 35568, "ts": 12058723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139ef0", "tid": 35568, "ts": 12058809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ab20", "tid": 35568, "ts": 12058895, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139460", "tid": 35568, "ts": 12058982, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139390", "tid": 35568, "ts": 12059101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013aa50", "tid": 35568, "ts": 12059277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138eb0", "tid": 35568, "ts": 12059450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a8b0", "tid": 35568, "ts": 12059598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138d10", "tid": 35568, "ts": 12059735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139050", "tid": 35568, "ts": 12059833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138830", "tid": 35568, "ts": 12059968, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138420", "tid": 35568, "ts": 12060084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a640", "tid": 35568, "ts": 12060170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138de0", "tid": 35568, "ts": 12060257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b410", "tid": 35568, "ts": 12060342, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a300", "tid": 35568, "ts": 12060429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013a710", "tid": 35568, "ts": 12060514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139530", "tid": 35568, "ts": 12060600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139ae0", "tid": 35568, "ts": 12060686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b340", "tid": 35568, "ts": 12060772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b270", "tid": 35568, "ts": 12060858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01380e0", "tid": 35568, "ts": 12060945, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ae60", "tid": 35568, "ts": 12061031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138760", "tid": 35568, "ts": 12061117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0139a10", "tid": 35568, "ts": 12061204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b1a0", "tid": 35568, "ts": 12061290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013b0d0", "tid": 35568, "ts": 12061376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01389d0", "tid": 35568, "ts": 12061462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013af30", "tid": 35568, "ts": 12061548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0138350", "tid": 35568, "ts": 12061635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a013ad90", "tid": 35568, "ts": 12061720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136d60", "tid": 35568, "ts": 12061806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01373e0", "tid": 35568, "ts": 12061892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135ec0", "tid": 35568, "ts": 12061979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137310", "tid": 35568, "ts": 12062065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136bc0", "tid": 35568, "ts": 12062151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135df0", "tid": 35568, "ts": 12062238, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135ab0", "tid": 35568, "ts": 12062324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137990", "tid": 35568, "ts": 12062410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135b80", "tid": 35568, "ts": 12062496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01351c0", "tid": 35568, "ts": 12062582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01359e0", "tid": 35568, "ts": 12062678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01363a0", "tid": 35568, "ts": 12062764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137a60", "tid": 35568, "ts": 12062851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01350f0", "tid": 35568, "ts": 12062937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137f40", "tid": 35568, "ts": 12063022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135910", "tid": 35568, "ts": 12063108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136880", "tid": 35568, "ts": 12063194, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136470", "tid": 35568, "ts": 12063280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137650", "tid": 35568, "ts": 12063367, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135770", "tid": 35568, "ts": 12063453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136200", "tid": 35568, "ts": 12063539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136950", "tid": 35568, "ts": 12063625, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01374b0", "tid": 35568, "ts": 12063711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0137580", "tid": 35568, "ts": 12063797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136130", "tid": 35568, "ts": 12063883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01366e0", "tid": 35568, "ts": 12063969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01362d0", "tid": 35568, "ts": 12064055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01367b0", "tid": 35568, "ts": 12064141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135d20", "tid": 35568, "ts": 12064227, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136610", "tid": 35568, "ts": 12064314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0135290", "tid": 35568, "ts": 12064400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0136f00", "tid": 35568, "ts": 12064486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133bd0", "tid": 35568, "ts": 12064571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01337c0", "tid": 35568, "ts": 12064657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133550", "tid": 35568, "ts": 12064743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132e00", "tid": 35568, "ts": 12064828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132c60", "tid": 35568, "ts": 12064915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132ac0", "tid": 35568, "ts": 12065001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133210", "tid": 35568, "ts": 12065087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132920", "tid": 35568, "ts": 12065173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133fe0", "tid": 35568, "ts": 12065259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132510", "tid": 35568, "ts": 12065345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01321d0", "tid": 35568, "ts": 12065431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132100", "tid": 35568, "ts": 12065517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131cf0", "tid": 35568, "ts": 12065602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131a80", "tid": 35568, "ts": 12065688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132370", "tid": 35568, "ts": 12065774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01343f0", "tid": 35568, "ts": 12065859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131dc0", "tid": 35568, "ts": 12065944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132ed0", "tid": 35568, "ts": 12066030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133d70", "tid": 35568, "ts": 12066116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134800", "tid": 35568, "ts": 12066201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131e90", "tid": 35568, "ts": 12066287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133b00", "tid": 35568, "ts": 12066372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134250", "tid": 35568, "ts": 12066464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0134660", "tid": 35568, "ts": 12066551, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0132fa0", "tid": 35568, "ts": 12066637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01344c0", "tid": 35568, "ts": 12066723, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133620", "tid": 35568, "ts": 12066809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01326b0", "tid": 35568, "ts": 12066894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01349a0", "tid": 35568, "ts": 12066980, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133140", "tid": 35568, "ts": 12067066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133e40", "tid": 35568, "ts": 12067151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0133480", "tid": 35568, "ts": 12067237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130f20", "tid": 35568, "ts": 12067323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130560", "tid": 35568, "ts": 12067410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ffb0", "tid": 35568, "ts": 12067495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fba0", "tid": 35568, "ts": 12067582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f860", "tid": 35568, "ts": 12067668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130d80", "tid": 35568, "ts": 12067754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f6c0", "tid": 35568, "ts": 12067839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130220", "tid": 35568, "ts": 12067925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130700", "tid": 35568, "ts": 12068010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130e50", "tid": 35568, "ts": 12068097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ed00", "tid": 35568, "ts": 12068183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130cb0", "tid": 35568, "ts": 12068271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01308a0", "tid": 35568, "ts": 12068357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fe10", "tid": 35568, "ts": 12068444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e680", "tid": 35568, "ts": 12068541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ec30", "tid": 35568, "ts": 12068627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130b10", "tid": 35568, "ts": 12068713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e4e0", "tid": 35568, "ts": 12068799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f110", "tid": 35568, "ts": 12068885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012fc70", "tid": 35568, "ts": 12068970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131400", "tid": 35568, "ts": 12069056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f2b0", "tid": 35568, "ts": 12069142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01314d0", "tid": 35568, "ts": 12069228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012eb60", "tid": 35568, "ts": 12069313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f930", "tid": 35568, "ts": 12069399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131260", "tid": 35568, "ts": 12069484, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130490", "tid": 35568, "ts": 12069570, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0131670", "tid": 35568, "ts": 12069656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01302f0", "tid": 35568, "ts": 12069742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0130630", "tid": 35568, "ts": 12069828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e820", "tid": 35568, "ts": 12069913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012f380", "tid": 35568, "ts": 12070005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cae0", "tid": 35568, "ts": 12070091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c460", "tid": 35568, "ts": 12070176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c2c0", "tid": 35568, "ts": 12070276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012beb0", "tid": 35568, "ts": 12070363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bde0", "tid": 35568, "ts": 12070449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bb70", "tid": 35568, "ts": 12070534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012dd90", "tid": 35568, "ts": 12070619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d570", "tid": 35568, "ts": 12070705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b1b0", "tid": 35568, "ts": 12070791, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d7e0", "tid": 35568, "ts": 12070877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cef0", "tid": 35568, "ts": 12070962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cbb0", "tid": 35568, "ts": 12071048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b690", "tid": 35568, "ts": 12071133, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c870", "tid": 35568, "ts": 12071219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d980", "tid": 35568, "ts": 12071305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c7a0", "tid": 35568, "ts": 12071390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012dbf0", "tid": 35568, "ts": 12071474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012de60", "tid": 35568, "ts": 12071560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b0e0", "tid": 35568, "ts": 12071646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012bc40", "tid": 35568, "ts": 12071731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012c1f0", "tid": 35568, "ts": 12071817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e340", "tid": 35568, "ts": 12071903, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d710", "tid": 35568, "ts": 12071987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012da50", "tid": 35568, "ts": 12072073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e1a0", "tid": 35568, "ts": 12072159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012e270", "tid": 35568, "ts": 12072245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012cfc0", "tid": 35568, "ts": 12072330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d230", "tid": 35568, "ts": 12072415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b4f0", "tid": 35568, "ts": 12072501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012d300", "tid": 35568, "ts": 12072586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012b900", "tid": 35568, "ts": 12072671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a7f0", "tid": 35568, "ts": 12072756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129060", "tid": 35568, "ts": 12072842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128f90", "tid": 35568, "ts": 12072928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128500", "tid": 35568, "ts": 12073014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a4b0", "tid": 35568, "ts": 12073099, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129610", "tid": 35568, "ts": 12073184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129540", "tid": 35568, "ts": 12073269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a0a0", "tid": 35568, "ts": 12073356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a240", "tid": 35568, "ts": 12073441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128ab0", "tid": 35568, "ts": 12073527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128df0", "tid": 35568, "ts": 12073613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128290", "tid": 35568, "ts": 12073698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129200", "tid": 35568, "ts": 12073784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01293a0", "tid": 35568, "ts": 12073870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a310", "tid": 35568, "ts": 12073955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01296e0", "tid": 35568, "ts": 12074041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01289e0", "tid": 35568, "ts": 12074126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129af0", "tid": 35568, "ts": 12074211, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129950", "tid": 35568, "ts": 12074297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129a20", "tid": 35568, "ts": 12074383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012a580", "tid": 35568, "ts": 12074468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012af40", "tid": 35568, "ts": 12074553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0129470", "tid": 35568, "ts": 12074638, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128b80", "tid": 35568, "ts": 12074815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01281c0", "tid": 35568, "ts": 12074911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128840", "tid": 35568, "ts": 12074999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01292d0", "tid": 35568, "ts": 12075086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ab30", "tid": 35568, "ts": 12075172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0128020", "tid": 35568, "ts": 12075259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012ac00", "tid": 35568, "ts": 12075346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127ce0", "tid": 35568, "ts": 12075432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a012aa60", "tid": 35568, "ts": 12075519, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01273f0", "tid": 35568, "ts": 12075605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127180", "tid": 35568, "ts": 12075691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126ca0", "tid": 35568, "ts": 12075778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126a30", "tid": 35568, "ts": 12075864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127660", "tid": 35568, "ts": 12075951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125440", "tid": 35568, "ts": 12076037, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126e40", "tid": 35568, "ts": 12076123, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01263b0", "tid": 35568, "ts": 12076209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127590", "tid": 35568, "ts": 12076295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124a80", "tid": 35568, "ts": 12076381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127a70", "tid": 35568, "ts": 12076467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125030", "tid": 35568, "ts": 12076554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126140", "tid": 35568, "ts": 12076640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01278d0", "tid": 35568, "ts": 12076727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126070", "tid": 35568, "ts": 12076813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126f10", "tid": 35568, "ts": 12076899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125850", "tid": 35568, "ts": 12076986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01256b0", "tid": 35568, "ts": 12077072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125c60", "tid": 35568, "ts": 12077159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127800", "tid": 35568, "ts": 12077245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125e00", "tid": 35568, "ts": 12077332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127c10", "tid": 35568, "ts": 12077417, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0126210", "tid": 35568, "ts": 12077504, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127250", "tid": 35568, "ts": 12077591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0127b40", "tid": 35568, "ts": 12077676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125b90", "tid": 35568, "ts": 12077762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01251d0", "tid": 35568, "ts": 12077849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124b50", "tid": 35568, "ts": 12077935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124c20", "tid": 35568, "ts": 12078020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01249b0", "tid": 35568, "ts": 12078107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125d30", "tid": 35568, "ts": 12078193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0125100", "tid": 35568, "ts": 12078280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121d00", "tid": 35568, "ts": 12078366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121c30", "tid": 35568, "ts": 12078452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121b60", "tid": 35568, "ts": 12078538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123e50", "tid": 35568, "ts": 12078624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123a40", "tid": 35568, "ts": 12078711, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01237d0", "tid": 35568, "ts": 12078797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123630", "tid": 35568, "ts": 12078884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123490", "tid": 35568, "ts": 12078970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123150", "tid": 35568, "ts": 12079056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122860", "tid": 35568, "ts": 12079142, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01238a0", "tid": 35568, "ts": 12079228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121ea0", "tid": 35568, "ts": 12079314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121a90", "tid": 35568, "ts": 12079400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01245a0", "tid": 35568, "ts": 12079486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123080", "tid": 35568, "ts": 12079573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124260", "tid": 35568, "ts": 12079658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122ee0", "tid": 35568, "ts": 12079745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01225f0", "tid": 35568, "ts": 12079831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123be0", "tid": 35568, "ts": 12079918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123d80", "tid": 35568, "ts": 12080004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122e10", "tid": 35568, "ts": 12080090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0123f20", "tid": 35568, "ts": 12080176, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124740", "tid": 35568, "ts": 12080262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01221e0", "tid": 35568, "ts": 12080348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122ba0", "tid": 35568, "ts": 12080434, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01219c0", "tid": 35568, "ts": 12080520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122ad0", "tid": 35568, "ts": 12080605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0124400", "tid": 35568, "ts": 12080691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a01218f0", "tid": 35568, "ts": 12080778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0121750", "tid": 35568, "ts": 12080863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122d40", "tid": 35568, "ts": 12080949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0122930", "tid": 35568, "ts": 12081034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06786a0", "tid": 35568, "ts": 12081121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792d50", "tid": 35568, "ts": 12081208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792bb0", "tid": 35568, "ts": 12081294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792120", "tid": 35568, "ts": 12081380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1d90", "tid": 35568, "ts": 12081466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1710", "tid": 35568, "ts": 12081553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1570", "tid": 35568, "ts": 12081639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1300", "tid": 35568, "ts": 12081725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1a50", "tid": 35568, "ts": 12081811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e14a0", "tid": 35568, "ts": 12081897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1160", "tid": 35568, "ts": 12081983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0600", "tid": 35568, "ts": 12082069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0ae0", "tid": 35568, "ts": 12082155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0460", "tid": 35568, "ts": 12082242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0a10", "tid": 35568, "ts": 12082328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e02c0", "tid": 35568, "ts": 12082414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dff80", "tid": 35568, "ts": 12082500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0bb0", "tid": 35568, "ts": 12082586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0390", "tid": 35568, "ts": 12082671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0ef0", "tid": 35568, "ts": 12082758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df690", "tid": 35568, "ts": 12082845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1f30", "tid": 35568, "ts": 12082930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e07a0", "tid": 35568, "ts": 12083016, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0d50", "tid": 35568, "ts": 12083103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dfd10", "tid": 35568, "ts": 12083189, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e0120", "tid": 35568, "ts": 12083275, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e06d0", "tid": 35568, "ts": 12083361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09e1090", "tid": 35568, "ts": 12083447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df9d0", "tid": 35568, "ts": 12083532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df830", "tid": 35568, "ts": 12083618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd130", "tid": 35568, "ts": 12083704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcec0", "tid": 35568, "ts": 12083790, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcc50", "tid": 35568, "ts": 12083876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc840", "tid": 35568, "ts": 12083963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddf00", "tid": 35568, "ts": 12084048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc0f0", "tid": 35568, "ts": 12084135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de4b0", "tid": 35568, "ts": 12084221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dde30", "tid": 35568, "ts": 12084307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df010", "tid": 35568, "ts": 12084394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09def40", "tid": 35568, "ts": 12084480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc430", "tid": 35568, "ts": 12084567, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dec00", "tid": 35568, "ts": 12084653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd2d0", "tid": 35568, "ts": 12084740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd7b0", "tid": 35568, "ts": 12084826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de240", "tid": 35568, "ts": 12084912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09deb30", "tid": 35568, "ts": 12084998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09df280", "tid": 35568, "ts": 12085084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc500", "tid": 35568, "ts": 12085170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ddc90", "tid": 35568, "ts": 12085256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd610", "tid": 35568, "ts": 12085343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc5d0", "tid": 35568, "ts": 12085429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dea60", "tid": 35568, "ts": 12085516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de7f0", "tid": 35568, "ts": 12085602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd540", "tid": 35568, "ts": 12085687, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de3e0", "tid": 35568, "ts": 12085774, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09de720", "tid": 35568, "ts": 12085860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dd950", "tid": 35568, "ts": 12085946, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dcdf0", "tid": 35568, "ts": 12086032, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d95e0", "tid": 35568, "ts": 12086118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9370", "tid": 35568, "ts": 12086204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d91d0", "tid": 35568, "ts": 12086290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8e90", "tid": 35568, "ts": 12086375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d96b0", "tid": 35568, "ts": 12086462, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dab00", "tid": 35568, "ts": 12086548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dc020", "tid": 35568, "ts": 12086634, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9920", "tid": 35568, "ts": 12086720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbe80", "tid": 35568, "ts": 12086806, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbdb0", "tid": 35568, "ts": 12086892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dbb40", "tid": 35568, "ts": 12086978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db660", "tid": 35568, "ts": 12087064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9c60", "tid": 35568, "ts": 12087150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9030", "tid": 35568, "ts": 12087236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db0b0", "tid": 35568, "ts": 12087322, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da6f0", "tid": 35568, "ts": 12087408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9850", "tid": 35568, "ts": 12087495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db590", "tid": 35568, "ts": 12087581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da7c0", "tid": 35568, "ts": 12087668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9b90", "tid": 35568, "ts": 12087753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da3b0", "tid": 35568, "ts": 12087840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da210", "tid": 35568, "ts": 12087926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da890", "tid": 35568, "ts": 12088012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dabd0", "tid": 35568, "ts": 12088098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db250", "tid": 35568, "ts": 12088184, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9fa0", "tid": 35568, "ts": 12088270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da070", "tid": 35568, "ts": 12088356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09dae40", "tid": 35568, "ts": 12088441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d9d30", "tid": 35568, "ts": 12088527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db9a0", "tid": 35568, "ts": 12088613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09da960", "tid": 35568, "ts": 12088700, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09db3f0", "tid": 35568, "ts": 12088786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6d40", "tid": 35568, "ts": 12088871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d62b0", "tid": 35568, "ts": 12088957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5d00", "tid": 35568, "ts": 12089043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5c30", "tid": 35568, "ts": 12089129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7700", "tid": 35568, "ts": 12089216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7630", "tid": 35568, "ts": 12089302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6ba0", "tid": 35568, "ts": 12089388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7b10", "tid": 35568, "ts": 12089474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d61e0", "tid": 35568, "ts": 12089561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8a80", "tid": 35568, "ts": 12089647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8740", "tid": 35568, "ts": 12089733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5b60", "tid": 35568, "ts": 12089819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6790", "tid": 35568, "ts": 12089906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7f20", "tid": 35568, "ts": 12089991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d80c0", "tid": 35568, "ts": 12090077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d72f0", "tid": 35568, "ts": 12090164, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7e50", "tid": 35568, "ts": 12090250, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7ff0", "tid": 35568, "ts": 12090348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8670", "tid": 35568, "ts": 12090436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d88e0", "tid": 35568, "ts": 12090522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7d80", "tid": 35568, "ts": 12090608, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6ee0", "tid": 35568, "ts": 12090694, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d89b0", "tid": 35568, "ts": 12090780, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7be0", "tid": 35568, "ts": 12090866, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d58f0", "tid": 35568, "ts": 12090952, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6e10", "tid": 35568, "ts": 12091038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d7560", "tid": 35568, "ts": 12091124, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6040", "tid": 35568, "ts": 12091210, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d8260", "tid": 35568, "ts": 12091296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d77d0", "tid": 35568, "ts": 12091382, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d84d0", "tid": 35568, "ts": 12091468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d6860", "tid": 35568, "ts": 12091554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2f80", "tid": 35568, "ts": 12091640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2c40", "tid": 35568, "ts": 12091726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d54e0", "tid": 35568, "ts": 12091812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d50d0", "tid": 35568, "ts": 12091897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4a50", "tid": 35568, "ts": 12091984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3ef0", "tid": 35568, "ts": 12092070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4f30", "tid": 35568, "ts": 12092156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4710", "tid": 35568, "ts": 12092242, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4640", "tid": 35568, "ts": 12092328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2830", "tid": 35568, "ts": 12092414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4d90", "tid": 35568, "ts": 12092499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4570", "tid": 35568, "ts": 12092585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5270", "tid": 35568, "ts": 12092672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d36d0", "tid": 35568, "ts": 12092758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4980", "tid": 35568, "ts": 12092844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4e60", "tid": 35568, "ts": 12092930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3600", "tid": 35568, "ts": 12093022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3d50", "tid": 35568, "ts": 12093110, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3460", "tid": 35568, "ts": 12093196, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3940", "tid": 35568, "ts": 12093282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d24f0", "tid": 35568, "ts": 12093368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d5820", "tid": 35568, "ts": 12093454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d51a0", "tid": 35568, "ts": 12093540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4bf0", "tid": 35568, "ts": 12093626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4300", "tid": 35568, "ts": 12093712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d4160", "tid": 35568, "ts": 12093799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d31f0", "tid": 35568, "ts": 12093885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d32c0", "tid": 35568, "ts": 12093970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d43d0", "tid": 35568, "ts": 12094057, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d37a0", "tid": 35568, "ts": 12094143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3530", "tid": 35568, "ts": 12094228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d3050", "tid": 35568, "ts": 12094314, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d03a0", "tid": 35568, "ts": 12094400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1650", "tid": 35568, "ts": 12094486, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d02d0", "tid": 35568, "ts": 12094573, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0130", "tid": 35568, "ts": 12094681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0880", "tid": 35568, "ts": 12094767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1310", "tid": 35568, "ts": 12094853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d14b0", "tid": 35568, "ts": 12094939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0c90", "tid": 35568, "ts": 12095025, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfc50", "tid": 35568, "ts": 12095111, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cfab0", "tid": 35568, "ts": 12095197, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf910", "tid": 35568, "ts": 12095283, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf770", "tid": 35568, "ts": 12095370, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf5d0", "tid": 35568, "ts": 12095456, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf430", "tid": 35568, "ts": 12095541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1c00", "tid": 35568, "ts": 12095629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d18c0", "tid": 35568, "ts": 12095714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf290", "tid": 35568, "ts": 12095800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d07b0", "tid": 35568, "ts": 12095886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2010", "tid": 35568, "ts": 12095973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cff90", "tid": 35568, "ts": 12096058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1170", "tid": 35568, "ts": 12096145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf0f0", "tid": 35568, "ts": 12096231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0540", "tid": 35568, "ts": 12096317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cf840", "tid": 35568, "ts": 12096403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1a60", "tid": 35568, "ts": 12096489, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d20e0", "tid": 35568, "ts": 12096576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d2420", "tid": 35568, "ts": 12096662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0fd0", "tid": 35568, "ts": 12096749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0e30", "tid": 35568, "ts": 12096836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0d60", "tid": 35568, "ts": 12096922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d0a20", "tid": 35568, "ts": 12097008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09d1da0", "tid": 35568, "ts": 12097095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce3f0", "tid": 35568, "ts": 12097180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccd30", "tid": 35568, "ts": 12097266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce320", "tid": 35568, "ts": 12097352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc6b0", "tid": 35568, "ts": 12097438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdfe0", "tid": 35568, "ts": 12097525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cde40", "tid": 35568, "ts": 12097611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdbd0", "tid": 35568, "ts": 12097697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdd70", "tid": 35568, "ts": 12097783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cece0", "tid": 35568, "ts": 12097870, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbf60", "tid": 35568, "ts": 12097956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdca0", "tid": 35568, "ts": 12098042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cdb00", "tid": 35568, "ts": 12098127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd140", "tid": 35568, "ts": 12098213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ceb40", "tid": 35568, "ts": 12098299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cec10", "tid": 35568, "ts": 12098385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd890", "tid": 35568, "ts": 12098471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cda30", "tid": 35568, "ts": 12098556, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc370", "tid": 35568, "ts": 12098642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce590", "tid": 35568, "ts": 12098728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc440", "tid": 35568, "ts": 12098814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccfa0", "tid": 35568, "ts": 12098900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ccac0", "tid": 35568, "ts": 12098986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc920", "tid": 35568, "ts": 12099072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cea70", "tid": 35568, "ts": 12099158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc9f0", "tid": 35568, "ts": 12099244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd620", "tid": 35568, "ts": 12099331, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd6f0", "tid": 35568, "ts": 12099416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd2e0", "tid": 35568, "ts": 12099503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ce8d0", "tid": 35568, "ts": 12099589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cced0", "tid": 35568, "ts": 12099674, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cd550", "tid": 35568, "ts": 12099761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cc780", "tid": 35568, "ts": 12099847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9c70", "tid": 35568, "ts": 12099935, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9860", "tid": 35568, "ts": 12100021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9450", "tid": 35568, "ts": 12100107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c91e0", "tid": 35568, "ts": 12100192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9110", "tid": 35568, "ts": 12100278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb0c0", "tid": 35568, "ts": 12100364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cae50", "tid": 35568, "ts": 12100450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cab10", "tid": 35568, "ts": 12100536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca970", "tid": 35568, "ts": 12100622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cad80", "tid": 35568, "ts": 12100709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9ba0", "tid": 35568, "ts": 12100795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8a90", "tid": 35568, "ts": 12100880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb260", "tid": 35568, "ts": 12100967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca630", "tid": 35568, "ts": 12101053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb330", "tid": 35568, "ts": 12101140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca150", "tid": 35568, "ts": 12101226, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9790", "tid": 35568, "ts": 12101312, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb810", "tid": 35568, "ts": 12101399, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c88f0", "tid": 35568, "ts": 12101485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca7d0", "tid": 35568, "ts": 12101571, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9e10", "tid": 35568, "ts": 12101657, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cbb50", "tid": 35568, "ts": 12101743, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9fb0", "tid": 35568, "ts": 12101829, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb190", "tid": 35568, "ts": 12101915, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09caf20", "tid": 35568, "ts": 12102001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb670", "tid": 35568, "ts": 12102087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8b60", "tid": 35568, "ts": 12102173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09ca080", "tid": 35568, "ts": 12102259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9ad0", "tid": 35568, "ts": 12102346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb9b0", "tid": 35568, "ts": 12102432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09cb5a0", "tid": 35568, "ts": 12102518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c9380", "tid": 35568, "ts": 12102604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6ae0", "tid": 35568, "ts": 12102691, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6460", "tid": 35568, "ts": 12102778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6c80", "tid": 35568, "ts": 12102876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6050", "tid": 35568, "ts": 12102964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6870", "tid": 35568, "ts": 12103051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7160", "tid": 35568, "ts": 12103148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7f30", "tid": 35568, "ts": 12103236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6390", "tid": 35568, "ts": 12103321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6ef0", "tid": 35568, "ts": 12103407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6e20", "tid": 35568, "ts": 12103493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5c40", "tid": 35568, "ts": 12103579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c59d0", "tid": 35568, "ts": 12103665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7bf0", "tid": 35568, "ts": 12103751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6d50", "tid": 35568, "ts": 12103837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c77e0", "tid": 35568, "ts": 12103923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8680", "tid": 35568, "ts": 12104009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7710", "tid": 35568, "ts": 12104094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7300", "tid": 35568, "ts": 12104181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7b20", "tid": 35568, "ts": 12104267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5de0", "tid": 35568, "ts": 12104352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c66d0", "tid": 35568, "ts": 12104438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8820", "tid": 35568, "ts": 12104524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6fc0", "tid": 35568, "ts": 12104610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c8270", "tid": 35568, "ts": 12104696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7980", "tid": 35568, "ts": 12104782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c61f0", "tid": 35568, "ts": 12104869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5760", "tid": 35568, "ts": 12104955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c7570", "tid": 35568, "ts": 12105041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6600", "tid": 35568, "ts": 12105127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5b70", "tid": 35568, "ts": 12105213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5690", "tid": 35568, "ts": 12105299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c6940", "tid": 35568, "ts": 12105385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c37b0", "tid": 35568, "ts": 12105471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c36e0", "tid": 35568, "ts": 12105557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c29e0", "tid": 35568, "ts": 12105643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3610", "tid": 35568, "ts": 12105728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c25d0", "tid": 35568, "ts": 12105814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4cd0", "tid": 35568, "ts": 12105900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3540", "tid": 35568, "ts": 12106038, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3060", "tid": 35568, "ts": 12106126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2f90", "tid": 35568, "ts": 12106213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2c50", "tid": 35568, "ts": 12106299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3130", "tid": 35568, "ts": 12106386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3a20", "tid": 35568, "ts": 12106471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c44b0", "tid": 35568, "ts": 12106557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4e70", "tid": 35568, "ts": 12106642, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c40a0", "tid": 35568, "ts": 12106728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c43e0", "tid": 35568, "ts": 12106814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4f40", "tid": 35568, "ts": 12106900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3950", "tid": 35568, "ts": 12106986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3bc0", "tid": 35568, "ts": 12107072, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3c90", "tid": 35568, "ts": 12107158, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4da0", "tid": 35568, "ts": 12107244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3e30", "tid": 35568, "ts": 12107330, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c20f0", "tid": 35568, "ts": 12107421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c2d20", "tid": 35568, "ts": 12107508, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c50e0", "tid": 35568, "ts": 12107593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5420", "tid": 35568, "ts": 12107680, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c47f0", "tid": 35568, "ts": 12107765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c5010", "tid": 35568, "ts": 12107851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3d60", "tid": 35568, "ts": 12107937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c3af0", "tid": 35568, "ts": 12108022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c26a0", "tid": 35568, "ts": 12108108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a09c4240", "tid": 35568, "ts": 12108193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fa20", "tid": 35568, "ts": 12108279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f2d0", "tid": 35568, "ts": 12108364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f880", "tid": 35568, "ts": 12108450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f060", "tid": 35568, "ts": 12108536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e770", "tid": 35568, "ts": 12108622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e5d0", "tid": 35568, "ts": 12108708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e500", "tid": 35568, "ts": 12108794, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065ff00", "tid": 35568, "ts": 12108880, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e840", "tid": 35568, "ts": 12108965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e1c0", "tid": 35568, "ts": 12109051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660720", "tid": 35568, "ts": 12109136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e0f0", "tid": 35568, "ts": 12109222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661350", "tid": 35568, "ts": 12109307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f6e0", "tid": 35568, "ts": 12109393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660e70", "tid": 35568, "ts": 12109478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fd60", "tid": 35568, "ts": 12109563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f610", "tid": 35568, "ts": 12109649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06604b0", "tid": 35568, "ts": 12109734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065eec0", "tid": 35568, "ts": 12109820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e6a0", "tid": 35568, "ts": 12109905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661010", "tid": 35568, "ts": 12109990, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06608c0", "tid": 35568, "ts": 12110076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06607f0", "tid": 35568, "ts": 12110162, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e430", "tid": 35568, "ts": 12110248, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e9e0", "tid": 35568, "ts": 12110334, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660b30", "tid": 35568, "ts": 12110420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f7b0", "tid": 35568, "ts": 12110506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065fe30", "tid": 35568, "ts": 12110592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06610e0", "tid": 35568, "ts": 12110678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0660310", "tid": 35568, "ts": 12110764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065e910", "tid": 35568, "ts": 12110849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a065f3a0", "tid": 35568, "ts": 12110934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bf80", "tid": 35568, "ts": 12111019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bc40", "tid": 35568, "ts": 12111105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b760", "tid": 35568, "ts": 12111191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d570", "tid": 35568, "ts": 12111276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cbb0", "tid": 35568, "ts": 12111362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b5c0", "tid": 35568, "ts": 12111447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d3d0", "tid": 35568, "ts": 12111533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d090", "tid": 35568, "ts": 12111618, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cae0", "tid": 35568, "ts": 12111704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d160", "tid": 35568, "ts": 12111789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c870", "tid": 35568, "ts": 12111874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c7a0", "tid": 35568, "ts": 12111959, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067da50", "tid": 35568, "ts": 12112045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c6d0", "tid": 35568, "ts": 12112131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d980", "tid": 35568, "ts": 12112216, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067dd90", "tid": 35568, "ts": 12112306, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d8b0", "tid": 35568, "ts": 12112393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067ce20", "tid": 35568, "ts": 12112478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cd50", "tid": 35568, "ts": 12112564, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067bd10", "tid": 35568, "ts": 12112656, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cc80", "tid": 35568, "ts": 12112742, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c390", "tid": 35568, "ts": 12112828, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c050", "tid": 35568, "ts": 12112914, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c600", "tid": 35568, "ts": 12113001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067c1f0", "tid": 35568, "ts": 12113086, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067d710", "tid": 35568, "ts": 12113172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067cfc0", "tid": 35568, "ts": 12113258, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678d20", "tid": 35568, "ts": 12113344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678c50", "tid": 35568, "ts": 12113429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678360", "tid": 35568, "ts": 12113515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679950", "tid": 35568, "ts": 12113601, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a8c0", "tid": 35568, "ts": 12113688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678910", "tid": 35568, "ts": 12113773, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678430", "tid": 35568, "ts": 12113859, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a650", "tid": 35568, "ts": 12113944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679880", "tid": 35568, "ts": 12114030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b420", "tid": 35568, "ts": 12114115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a4b0", "tid": 35568, "ts": 12114201, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a0a0", "tid": 35568, "ts": 12114288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b1b0", "tid": 35568, "ts": 12114374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679af0", "tid": 35568, "ts": 12114460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679f00", "tid": 35568, "ts": 12114566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06785d0", "tid": 35568, "ts": 12114653, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678840", "tid": 35568, "ts": 12114740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679060", "tid": 35568, "ts": 12114826, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679c90", "tid": 35568, "ts": 12114912, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a580", "tid": 35568, "ts": 12114997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a170", "tid": 35568, "ts": 12115083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067aa60", "tid": 35568, "ts": 12115169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678f90", "tid": 35568, "ts": 12115255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06789e0", "tid": 35568, "ts": 12115340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679d60", "tid": 35568, "ts": 12115426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0679470", "tid": 35568, "ts": 12115512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067b350", "tid": 35568, "ts": 12115598, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06792d0", "tid": 35568, "ts": 12115684, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678ec0", "tid": 35568, "ts": 12115770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a067a240", "tid": 35568, "ts": 12115856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0678df0", "tid": 35568, "ts": 12115942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06770b0", "tid": 35568, "ts": 12116028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676a30", "tid": 35568, "ts": 12116114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674e90", "tid": 35568, "ts": 12116200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676890", "tid": 35568, "ts": 12116286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674dc0", "tid": 35568, "ts": 12116372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06766f0", "tid": 35568, "ts": 12116457, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06773f0", "tid": 35568, "ts": 12116543, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677ce0", "tid": 35568, "ts": 12116629, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677c10", "tid": 35568, "ts": 12116716, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677e80", "tid": 35568, "ts": 12116801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675c60", "tid": 35568, "ts": 12116888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675b90", "tid": 35568, "ts": 12116974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06762e0", "tid": 35568, "ts": 12117059, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675100", "tid": 35568, "ts": 12117144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675920", "tid": 35568, "ts": 12117230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675370", "tid": 35568, "ts": 12117317, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676bd0", "tid": 35568, "ts": 12117402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677730", "tid": 35568, "ts": 12117488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675ac0", "tid": 35568, "ts": 12117574, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677800", "tid": 35568, "ts": 12117660, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677660", "tid": 35568, "ts": 12117745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675ed0", "tid": 35568, "ts": 12117830, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675fa0", "tid": 35568, "ts": 12117916, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06763b0", "tid": 35568, "ts": 12118001, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06759f0", "tid": 35568, "ts": 12118088, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06774c0", "tid": 35568, "ts": 12118173, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0677250", "tid": 35568, "ts": 12118259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06779a0", "tid": 35568, "ts": 12118346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676f10", "tid": 35568, "ts": 12118432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06755e0", "tid": 35568, "ts": 12118518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0676e40", "tid": 35568, "ts": 12118604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0675e00", "tid": 35568, "ts": 12118690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672860", "tid": 35568, "ts": 12118776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06725f0", "tid": 35568, "ts": 12118861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06722b0", "tid": 35568, "ts": 12118947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672110", "tid": 35568, "ts": 12119033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671d00", "tid": 35568, "ts": 12119118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671b60", "tid": 35568, "ts": 12119204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673630", "tid": 35568, "ts": 12119290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674330", "tid": 35568, "ts": 12119375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673ff0", "tid": 35568, "ts": 12119461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671a90", "tid": 35568, "ts": 12119547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673a40", "tid": 35568, "ts": 12119632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672380", "tid": 35568, "ts": 12119718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672fb0", "tid": 35568, "ts": 12119804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673cb0", "tid": 35568, "ts": 12119890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674c20", "tid": 35568, "ts": 12119976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672790", "tid": 35568, "ts": 12120062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672ee0", "tid": 35568, "ts": 12120148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672040", "tid": 35568, "ts": 12120233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06737d0", "tid": 35568, "ts": 12120320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674810", "tid": 35568, "ts": 12120406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673150", "tid": 35568, "ts": 12120492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672ad0", "tid": 35568, "ts": 12120578, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674b50", "tid": 35568, "ts": 12120664, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673b10", "tid": 35568, "ts": 12120750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06749b0", "tid": 35568, "ts": 12120836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0672d40", "tid": 35568, "ts": 12120922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06748e0", "tid": 35568, "ts": 12121008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673560", "tid": 35568, "ts": 12121093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673be0", "tid": 35568, "ts": 12121180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0674670", "tid": 35568, "ts": 12121266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06740c0", "tid": 35568, "ts": 12121351, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0673080", "tid": 35568, "ts": 12121438, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e9d0", "tid": 35568, "ts": 12121523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670300", "tid": 35568, "ts": 12121658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fef0", "tid": 35568, "ts": 12121745, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fd50", "tid": 35568, "ts": 12121831, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06715b0", "tid": 35568, "ts": 12121917, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671340", "tid": 35568, "ts": 12122003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670bf0", "tid": 35568, "ts": 12122089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670a50", "tid": 35568, "ts": 12122175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fae0", "tid": 35568, "ts": 12122261, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066fa10", "tid": 35568, "ts": 12122347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670d90", "tid": 35568, "ts": 12122433, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671410", "tid": 35568, "ts": 12122518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f460", "tid": 35568, "ts": 12122605, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e4f0", "tid": 35568, "ts": 12122690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f2c0", "tid": 35568, "ts": 12122776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671270", "tid": 35568, "ts": 12122862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ef80", "tid": 35568, "ts": 12122948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06714e0", "tid": 35568, "ts": 12123033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670640", "tid": 35568, "ts": 12123119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06711a0", "tid": 35568, "ts": 12123204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e760", "tid": 35568, "ts": 12123290, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06708b0", "tid": 35568, "ts": 12123375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ffc0", "tid": 35568, "ts": 12123461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f390", "tid": 35568, "ts": 12123547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670cc0", "tid": 35568, "ts": 12123633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ec40", "tid": 35568, "ts": 12123719, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e690", "tid": 35568, "ts": 12123805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e5c0", "tid": 35568, "ts": 12123891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066f6d0", "tid": 35568, "ts": 12123976, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0670f30", "tid": 35568, "ts": 12124062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0671000", "tid": 35568, "ts": 12124148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06704a0", "tid": 35568, "ts": 12124235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b430", "tid": 35568, "ts": 12124320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d7f0", "tid": 35568, "ts": 12124407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d4b0", "tid": 35568, "ts": 12124493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d310", "tid": 35568, "ts": 12124579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b360", "tid": 35568, "ts": 12124665, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b5d0", "tid": 35568, "ts": 12124751, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b1c0", "tid": 35568, "ts": 12124837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e420", "tid": 35568, "ts": 12124923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cfd0", "tid": 35568, "ts": 12125009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ca20", "tid": 35568, "ts": 12125095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e350", "tid": 35568, "ts": 12125181, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c7b0", "tid": 35568, "ts": 12125267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c610", "tid": 35568, "ts": 12125353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066dc00", "tid": 35568, "ts": 12125439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c950", "tid": 35568, "ts": 12125525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c200", "tid": 35568, "ts": 12125610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d650", "tid": 35568, "ts": 12125696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d8c0", "tid": 35568, "ts": 12125782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066e0e0", "tid": 35568, "ts": 12125869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066db30", "tid": 35568, "ts": 12125955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066cf00", "tid": 35568, "ts": 12126041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c060", "tid": 35568, "ts": 12126127, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bf90", "tid": 35568, "ts": 12126213, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b910", "tid": 35568, "ts": 12126299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066da60", "tid": 35568, "ts": 12126385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d240", "tid": 35568, "ts": 12126471, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bd20", "tid": 35568, "ts": 12126557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bb80", "tid": 35568, "ts": 12126643, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066d0a0", "tid": 35568, "ts": 12126728, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066bc50", "tid": 35568, "ts": 12126814, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c2d0", "tid": 35568, "ts": 12126900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066c880", "tid": 35568, "ts": 12126985, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667dc0", "tid": 35568, "ts": 12127071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066ae80", "tid": 35568, "ts": 12127157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06681d0", "tid": 35568, "ts": 12127243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669fe0", "tid": 35568, "ts": 12127329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669bd0", "tid": 35568, "ts": 12127415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669b00", "tid": 35568, "ts": 12127500, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668ac0", "tid": 35568, "ts": 12127586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a800", "tid": 35568, "ts": 12127672, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a8d0", "tid": 35568, "ts": 12127759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066b020", "tid": 35568, "ts": 12127844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669f10", "tid": 35568, "ts": 12127930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668d30", "tid": 35568, "ts": 12128015, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06697c0", "tid": 35568, "ts": 12128101, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06682a0", "tid": 35568, "ts": 12128186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a3f0", "tid": 35568, "ts": 12128272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668030", "tid": 35568, "ts": 12128358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a9a0", "tid": 35568, "ts": 12128444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669550", "tid": 35568, "ts": 12128530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668780", "tid": 35568, "ts": 12128617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668b90", "tid": 35568, "ts": 12128703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669210", "tid": 35568, "ts": 12128789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a250", "tid": 35568, "ts": 12128874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a320", "tid": 35568, "ts": 12128960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669480", "tid": 35568, "ts": 12129046, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a590", "tid": 35568, "ts": 12129132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667f60", "tid": 35568, "ts": 12129218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668c60", "tid": 35568, "ts": 12129303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0669070", "tid": 35568, "ts": 12129389, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668ed0", "tid": 35568, "ts": 12129475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a066a730", "tid": 35568, "ts": 12129561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668510", "tid": 35568, "ts": 12129647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0668850", "tid": 35568, "ts": 12129734, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667a80", "tid": 35568, "ts": 12129820, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667810", "tid": 35568, "ts": 12129905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666f20", "tid": 35568, "ts": 12129992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664c30", "tid": 35568, "ts": 12130077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664d00", "tid": 35568, "ts": 12130163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06667d0", "tid": 35568, "ts": 12130249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06662f0", "tid": 35568, "ts": 12130335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666490", "tid": 35568, "ts": 12130420, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666080", "tid": 35568, "ts": 12130506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667740", "tid": 35568, "ts": 12130593, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665e10", "tid": 35568, "ts": 12130678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665d40", "tid": 35568, "ts": 12130765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667260", "tid": 35568, "ts": 12130851, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06651e0", "tid": 35568, "ts": 12130937, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665110", "tid": 35568, "ts": 12131022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666e50", "tid": 35568, "ts": 12131107, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665fb0", "tid": 35568, "ts": 12131193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666970", "tid": 35568, "ts": 12131278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06655f0", "tid": 35568, "ts": 12131364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665040", "tid": 35568, "ts": 12131450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06663c0", "tid": 35568, "ts": 12131536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664f70", "tid": 35568, "ts": 12131622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665a00", "tid": 35568, "ts": 12131709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0666a40", "tid": 35568, "ts": 12131795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665380", "tid": 35568, "ts": 12131881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664a90", "tid": 35568, "ts": 12131966, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664dd0", "tid": 35568, "ts": 12132052, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667670", "tid": 35568, "ts": 12132145, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06678e0", "tid": 35568, "ts": 12132233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0667330", "tid": 35568, "ts": 12132319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665ba0", "tid": 35568, "ts": 12132404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0665790", "tid": 35568, "ts": 12132490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664410", "tid": 35568, "ts": 12132576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664000", "tid": 35568, "ts": 12132662, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664820", "tid": 35568, "ts": 12132749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663b20", "tid": 35568, "ts": 12132835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663980", "tid": 35568, "ts": 12132921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06637e0", "tid": 35568, "ts": 12133006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06614f0", "tid": 35568, "ts": 12133093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663640", "tid": 35568, "ts": 12133178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663570", "tid": 35568, "ts": 12133264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06641a0", "tid": 35568, "ts": 12133349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06634a0", "tid": 35568, "ts": 12133435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662ef0", "tid": 35568, "ts": 12133521, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663d90", "tid": 35568, "ts": 12133607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662600", "tid": 35568, "ts": 12133693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661f80", "tid": 35568, "ts": 12133778, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663cc0", "tid": 35568, "ts": 12133864, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662c80", "tid": 35568, "ts": 12133950, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06633d0", "tid": 35568, "ts": 12134035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662530", "tid": 35568, "ts": 12134121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663090", "tid": 35568, "ts": 12134206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662fc0", "tid": 35568, "ts": 12134292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661b70", "tid": 35568, "ts": 12134378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662120", "tid": 35568, "ts": 12134463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06626d0", "tid": 35568, "ts": 12134550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06622c0", "tid": 35568, "ts": 12134635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662460", "tid": 35568, "ts": 12134721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662390", "tid": 35568, "ts": 12134807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0661d10", "tid": 35568, "ts": 12134893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0662870", "tid": 35568, "ts": 12134979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a06627a0", "tid": 35568, "ts": 12135065, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0663f30", "tid": 35568, "ts": 12135151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0664680", "tid": 35568, "ts": 12135237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b09b0", "tid": 35568, "ts": 12135323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0740", "tid": 35568, "ts": 12135409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0e90", "tid": 35568, "ts": 12135496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0330", "tid": 35568, "ts": 12135583, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b08e0", "tid": 35568, "ts": 12135668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0260", "tid": 35568, "ts": 12135755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aefb0", "tid": 35568, "ts": 12135841, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afd80", "tid": 35568, "ts": 12135926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af630", "tid": 35568, "ts": 12136012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afe50", "tid": 35568, "ts": 12136097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0dc0", "tid": 35568, "ts": 12136183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0190", "tid": 35568, "ts": 12136270, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af3c0", "tid": 35568, "ts": 12136356, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0c20", "tid": 35568, "ts": 12136442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af2f0", "tid": 35568, "ts": 12136530, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afb10", "tid": 35568, "ts": 12136616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af220", "tid": 35568, "ts": 12136713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aead0", "tid": 35568, "ts": 12136800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae6c0", "tid": 35568, "ts": 12136886, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803afbe0", "tid": 35568, "ts": 12136972, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af560", "tid": 35568, "ts": 12137058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae930", "tid": 35568, "ts": 12137143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0810", "tid": 35568, "ts": 12137268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae040", "tid": 35568, "ts": 12137355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae520", "tid": 35568, "ts": 12137441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0a80", "tid": 35568, "ts": 12137527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803af7d0", "tid": 35568, "ts": 12137613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803b0b50", "tid": 35568, "ts": 12137698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ae790", "tid": 35568, "ts": 12137783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803adea0", "tid": 35568, "ts": 12137869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad9c0", "tid": 35568, "ts": 12137955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad820", "tid": 35568, "ts": 12138041, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad340", "tid": 35568, "ts": 12138126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803addd0", "tid": 35568, "ts": 12138212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ad0d0", "tid": 35568, "ts": 12138298, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803accc0", "tid": 35568, "ts": 12138384, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac980", "tid": 35568, "ts": 12138470, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abd50", "tid": 35568, "ts": 12138555, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803add00", "tid": 35568, "ts": 12138641, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aaf80", "tid": 35568, "ts": 12138726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab940", "tid": 35568, "ts": 12138812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abbb0", "tid": 35568, "ts": 12138897, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac570", "tid": 35568, "ts": 12138984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acbf0", "tid": 35568, "ts": 12139069, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab530", "tid": 35568, "ts": 12139155, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aaeb0", "tid": 35568, "ts": 12139239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac4a0", "tid": 35568, "ts": 12139325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ada90", "tid": 35568, "ts": 12139411, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aac40", "tid": 35568, "ts": 12139496, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac300", "tid": 35568, "ts": 12139582, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abfc0", "tid": 35568, "ts": 12139669, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abef0", "tid": 35568, "ts": 12139754, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab460", "tid": 35568, "ts": 12139839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ac230", "tid": 35568, "ts": 12139925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab1f0", "tid": 35568, "ts": 12140011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803abc80", "tid": 35568, "ts": 12140096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803acb20", "tid": 35568, "ts": 12140182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab7a0", "tid": 35568, "ts": 12140267, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab120", "tid": 35568, "ts": 12140352, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ace60", "tid": 35568, "ts": 12140437, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803ab6d0", "tid": 35568, "ts": 12140524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a90a0", "tid": 35568, "ts": 12140610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aab70", "tid": 35568, "ts": 12140696, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa830", "tid": 35568, "ts": 12140782, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8f00", "tid": 35568, "ts": 12140867, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8610", "tid": 35568, "ts": 12140953, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8540", "tid": 35568, "ts": 12141040, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa900", "tid": 35568, "ts": 12141126, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a97f0", "tid": 35568, "ts": 12141212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a93e0", "tid": 35568, "ts": 12141297, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9f40", "tid": 35568, "ts": 12141383, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9e70", "tid": 35568, "ts": 12141469, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8470", "tid": 35568, "ts": 12141554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9240", "tid": 35568, "ts": 12141640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9da0", "tid": 35568, "ts": 12141726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9cd0", "tid": 35568, "ts": 12141812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7ab0", "tid": 35568, "ts": 12141898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa9d0", "tid": 35568, "ts": 12142022, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8d60", "tid": 35568, "ts": 12142144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9c00", "tid": 35568, "ts": 12142269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9720", "tid": 35568, "ts": 12142369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa0e0", "tid": 35568, "ts": 12142454, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa280", "tid": 35568, "ts": 12142541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9990", "tid": 35568, "ts": 12142626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8bc0", "tid": 35568, "ts": 12142713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7f90", "tid": 35568, "ts": 12142798, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9b30", "tid": 35568, "ts": 12142884, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803aa420", "tid": 35568, "ts": 12142969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a83a0", "tid": 35568, "ts": 12143055, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a79e0", "tid": 35568, "ts": 12143140, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a9580", "tid": 35568, "ts": 12143225, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a8130", "tid": 35568, "ts": 12143311, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a94b0", "tid": 35568, "ts": 12143398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a70f0", "tid": 35568, "ts": 12143483, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6c10", "tid": 35568, "ts": 12143569, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6a70", "tid": 35568, "ts": 12143654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a63f0", "tid": 35568, "ts": 12143740, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6180", "tid": 35568, "ts": 12143825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5f10", "tid": 35568, "ts": 12143911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6800", "tid": 35568, "ts": 12144004, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5a30", "tid": 35568, "ts": 12144091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a56f0", "tid": 35568, "ts": 12144177, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5620", "tid": 35568, "ts": 12144263, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5210", "tid": 35568, "ts": 12144348, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5140", "tid": 35568, "ts": 12144435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4850", "tid": 35568, "ts": 12144520, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6730", "tid": 35568, "ts": 12144606, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7770", "tid": 35568, "ts": 12144692, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4440", "tid": 35568, "ts": 12144777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4780", "tid": 35568, "ts": 12144862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a53b0", "tid": 35568, "ts": 12144947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4d30", "tid": 35568, "ts": 12145033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a64c0", "tid": 35568, "ts": 12145119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4ac0", "tid": 35568, "ts": 12145204, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a6e80", "tid": 35568, "ts": 12145289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a60b0", "tid": 35568, "ts": 12145375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5890", "tid": 35568, "ts": 12145460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4920", "tid": 35568, "ts": 12145546, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a52e0", "tid": 35568, "ts": 12145632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a76a0", "tid": 35568, "ts": 12145718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7500", "tid": 35568, "ts": 12145804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4ed0", "tid": 35568, "ts": 12145890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a7290", "tid": 35568, "ts": 12145977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5d70", "tid": 35568, "ts": 12146062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a5b00", "tid": 35568, "ts": 12146149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2ff0", "tid": 35568, "ts": 12146234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a28a0", "tid": 35568, "ts": 12146320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2700", "tid": 35568, "ts": 12146405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a16c0", "tid": 35568, "ts": 12146491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2490", "tid": 35568, "ts": 12146577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3dc0", "tid": 35568, "ts": 12146663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3cf0", "tid": 35568, "ts": 12146748, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a39b0", "tid": 35568, "ts": 12146834, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a35a0", "tid": 35568, "ts": 12146920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1e10", "tid": 35568, "ts": 12147006, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2e50", "tid": 35568, "ts": 12147092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3400", "tid": 35568, "ts": 12147178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1d40", "tid": 35568, "ts": 12147264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4030", "tid": 35568, "ts": 12147350, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3330", "tid": 35568, "ts": 12147436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1380", "tid": 35568, "ts": 12147522, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2220", "tid": 35568, "ts": 12147607, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a38e0", "tid": 35568, "ts": 12147693, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1ba0", "tid": 35568, "ts": 12147779, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3740", "tid": 35568, "ts": 12147865, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3f60", "tid": 35568, "ts": 12147951, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a41d0", "tid": 35568, "ts": 12148036, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1ad0", "tid": 35568, "ts": 12148122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a3c20", "tid": 35568, "ts": 12148208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a4100", "tid": 35568, "ts": 12148294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a12b0", "tid": 35568, "ts": 12148380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1930", "tid": 35568, "ts": 12148466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a11e0", "tid": 35568, "ts": 12148552, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2f20", "tid": 35568, "ts": 12148637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a22f0", "tid": 35568, "ts": 12148722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a1110", "tid": 35568, "ts": 12148808, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234803a2a40", "tid": 35568, "ts": 12148893, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334b00", "tid": 35568, "ts": 12148983, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03339f0", "tid": 35568, "ts": 12149070, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03320c0", "tid": 35568, "ts": 12149156, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03353f0", "tid": 35568, "ts": 12149243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333850", "tid": 35568, "ts": 12149328, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333780", "tid": 35568, "ts": 12149414, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332260", "tid": 35568, "ts": 12149501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03350b0", "tid": 35568, "ts": 12149587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334fe0", "tid": 35568, "ts": 12149673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03335e0", "tid": 35568, "ts": 12149759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03328e0", "tid": 35568, "ts": 12149845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332dc0", "tid": 35568, "ts": 12149931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333510", "tid": 35568, "ts": 12150017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332cf0", "tid": 35568, "ts": 12150103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333ac0", "tid": 35568, "ts": 12150188, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334210", "tid": 35568, "ts": 12150273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333fa0", "tid": 35568, "ts": 12150358, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333ed0", "tid": 35568, "ts": 12150444, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334e40", "tid": 35568, "ts": 12150531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335320", "tid": 35568, "ts": 12150617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334f10", "tid": 35568, "ts": 12150703, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334070", "tid": 35568, "ts": 12150789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332330", "tid": 35568, "ts": 12150875, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0332740", "tid": 35568, "ts": 12150960, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334d70", "tid": 35568, "ts": 12151045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334ca0", "tid": 35568, "ts": 12151131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334550", "tid": 35568, "ts": 12151217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0334bd0", "tid": 35568, "ts": 12151302, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03325a0", "tid": 35568, "ts": 12151388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333440", "tid": 35568, "ts": 12151474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333370", "tid": 35568, "ts": 12151560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0333e00", "tid": 35568, "ts": 12151646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f330", "tid": 35568, "ts": 12151731, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341bd0", "tid": 35568, "ts": 12151817, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341a30", "tid": 35568, "ts": 12151904, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341550", "tid": 35568, "ts": 12151991, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f260", "tid": 35568, "ts": 12152077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340c60", "tid": 35568, "ts": 12152163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03406b0", "tid": 35568, "ts": 12152249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03405e0", "tid": 35568, "ts": 12152335, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341f10", "tid": 35568, "ts": 12152421, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341e40", "tid": 35568, "ts": 12152506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341620", "tid": 35568, "ts": 12152592, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fdc0", "tid": 35568, "ts": 12152677, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f190", "tid": 35568, "ts": 12152767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03401d0", "tid": 35568, "ts": 12152918, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340920", "tid": 35568, "ts": 12153003, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340100", "tid": 35568, "ts": 12153089, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340e00", "tid": 35568, "ts": 12153175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341070", "tid": 35568, "ts": 12153260, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f0c0", "tid": 35568, "ts": 12153346, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340d30", "tid": 35568, "ts": 12153432, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340ac0", "tid": 35568, "ts": 12153517, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340030", "tid": 35568, "ts": 12153603, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0341d70", "tid": 35568, "ts": 12153689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fa80", "tid": 35568, "ts": 12153776, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0340510", "tid": 35568, "ts": 12153861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f400", "tid": 35568, "ts": 12153948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f8e0", "tid": 35568, "ts": 12154034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033f740", "tid": 35568, "ts": 12154119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033fcf0", "tid": 35568, "ts": 12154205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e3c0", "tid": 35568, "ts": 12154291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e150", "tid": 35568, "ts": 12154377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d5f0", "tid": 35568, "ts": 12154463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d040", "tid": 35568, "ts": 12154549, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cd00", "tid": 35568, "ts": 12154635, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cb60", "tid": 35568, "ts": 12154721, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d520", "tid": 35568, "ts": 12154807, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033de10", "tid": 35568, "ts": 12154892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c8f0", "tid": 35568, "ts": 12154978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c750", "tid": 35568, "ts": 12155063, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c340", "tid": 35568, "ts": 12155149, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c0d0", "tid": 35568, "ts": 12155234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bf30", "tid": 35568, "ts": 12155321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cdd0", "tid": 35568, "ts": 12155406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c1a0", "tid": 35568, "ts": 12155491, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d110", "tid": 35568, "ts": 12155577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dad0", "tid": 35568, "ts": 12155663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033be60", "tid": 35568, "ts": 12155749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ecb0", "tid": 35568, "ts": 12155835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033dba0", "tid": 35568, "ts": 12155921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d6c0", "tid": 35568, "ts": 12156007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d860", "tid": 35568, "ts": 12156092, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c000", "tid": 35568, "ts": 12156178, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e970", "tid": 35568, "ts": 12156264, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e8a0", "tid": 35568, "ts": 12156355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033bcc0", "tid": 35568, "ts": 12156441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d2b0", "tid": 35568, "ts": 12156528, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033e7d0", "tid": 35568, "ts": 12156614, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033d380", "tid": 35568, "ts": 12156699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033cf70", "tid": 35568, "ts": 12156786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c680", "tid": 35568, "ts": 12156871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033c5b0", "tid": 35568, "ts": 12156957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033abb0", "tid": 35568, "ts": 12157043, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033aa10", "tid": 35568, "ts": 12157129, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339900", "tid": 35568, "ts": 12157215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339830", "tid": 35568, "ts": 12157301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338cd0", "tid": 35568, "ts": 12157388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a2c0", "tid": 35568, "ts": 12157474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339760", "tid": 35568, "ts": 12157560, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03395c0", "tid": 35568, "ts": 12157690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338c00", "tid": 35568, "ts": 12157792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338990", "tid": 35568, "ts": 12157877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033ae20", "tid": 35568, "ts": 12157963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b640", "tid": 35568, "ts": 12158049, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a600", "tid": 35568, "ts": 12158135, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b570", "tid": 35568, "ts": 12158221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338b30", "tid": 35568, "ts": 12158307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339b70", "tid": 35568, "ts": 12158393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b980", "tid": 35568, "ts": 12158479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339280", "tid": 35568, "ts": 12158565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b7e0", "tid": 35568, "ts": 12158651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338a60", "tid": 35568, "ts": 12158737, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a050", "tid": 35568, "ts": 12158823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338da0", "tid": 35568, "ts": 12158925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b230", "tid": 35568, "ts": 12159011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033afc0", "tid": 35568, "ts": 12159098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033a120", "tid": 35568, "ts": 12159185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b4a0", "tid": 35568, "ts": 12159271, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03391b0", "tid": 35568, "ts": 12159357, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03390e0", "tid": 35568, "ts": 12159443, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b710", "tid": 35568, "ts": 12159529, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a033b300", "tid": 35568, "ts": 12159616, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0339aa0", "tid": 35568, "ts": 12159702, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336290", "tid": 35568, "ts": 12159787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03360f0", "tid": 35568, "ts": 12159873, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337060", "tid": 35568, "ts": 12159958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337880", "tid": 35568, "ts": 12160044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336f90", "tid": 35568, "ts": 12160130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03376e0", "tid": 35568, "ts": 12160215, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337470", "tid": 35568, "ts": 12160301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337200", "tid": 35568, "ts": 12160387, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336d20", "tid": 35568, "ts": 12160472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335f50", "tid": 35568, "ts": 12160557, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338720", "tid": 35568, "ts": 12160644, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03369e0", "tid": 35568, "ts": 12160729, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336910", "tid": 35568, "ts": 12160815, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336b80", "tid": 35568, "ts": 12160901, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338650", "tid": 35568, "ts": 12160987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03359a0", "tid": 35568, "ts": 12161073, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337a20", "tid": 35568, "ts": 12161159, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0336840", "tid": 35568, "ts": 12161245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337bc0", "tid": 35568, "ts": 12161332, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337610", "tid": 35568, "ts": 12161418, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337f00", "tid": 35568, "ts": 12161503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03358d0", "tid": 35568, "ts": 12161590, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335a70", "tid": 35568, "ts": 12161675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337d60", "tid": 35568, "ts": 12161761, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335660", "tid": 35568, "ts": 12161847, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338240", "tid": 35568, "ts": 12161934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03366a0", "tid": 35568, "ts": 12162019, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a03383e0", "tid": 35568, "ts": 12162105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338170", "tid": 35568, "ts": 12162191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0337c90", "tid": 35568, "ts": 12162276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0335db0", "tid": 35568, "ts": 12162362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234a0338310", "tid": 35568, "ts": 12162448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915250", "tid": 35568, "ts": 12162534, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914fe0", "tid": 35568, "ts": 12162620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914f10", "tid": 35568, "ts": 12162705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914070", "tid": 35568, "ts": 12162792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913fa0", "tid": 35568, "ts": 12162877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913850", "tid": 35568, "ts": 12162963, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914bd0", "tid": 35568, "ts": 12163050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879136b0", "tid": 35568, "ts": 12163136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914e40", "tid": 35568, "ts": 12163222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912e90", "tid": 35568, "ts": 12163309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912810", "tid": 35568, "ts": 12163394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879135e0", "tid": 35568, "ts": 12163480, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912670", "tid": 35568, "ts": 12163566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879124d0", "tid": 35568, "ts": 12163652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879142e0", "tid": 35568, "ts": 12163738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913e00", "tid": 35568, "ts": 12163825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879132a0", "tid": 35568, "ts": 12163911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914b00", "tid": 35568, "ts": 12163998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879131d0", "tid": 35568, "ts": 12164083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913440", "tid": 35568, "ts": 12164169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912400", "tid": 35568, "ts": 12164256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915180", "tid": 35568, "ts": 12164341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913ac0", "tid": 35568, "ts": 12164427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912a80", "tid": 35568, "ts": 12164513, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912260", "tid": 35568, "ts": 12164599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879129b0", "tid": 35568, "ts": 12164686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912dc0", "tid": 35568, "ts": 12164772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912b50", "tid": 35568, "ts": 12164858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879128e0", "tid": 35568, "ts": 12164944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487912f60", "tid": 35568, "ts": 12165030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487913030", "tid": 35568, "ts": 12165117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487914d70", "tid": 35568, "ts": 12165203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921960", "tid": 35568, "ts": 12165288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921140", "tid": 35568, "ts": 12165374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ff60", "tid": 35568, "ts": 12165460, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921070", "tid": 35568, "ts": 12165545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fe90", "tid": 35568, "ts": 12165632, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879217c0", "tid": 35568, "ts": 12165718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fcf0", "tid": 35568, "ts": 12165804, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fb50", "tid": 35568, "ts": 12165890, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920fa0", "tid": 35568, "ts": 12165977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fa80", "tid": 35568, "ts": 12166064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920ed0", "tid": 35568, "ts": 12166150, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921550", "tid": 35568, "ts": 12166236, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f5a0", "tid": 35568, "ts": 12166321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f9b0", "tid": 35568, "ts": 12166407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920510", "tid": 35568, "ts": 12166493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f330", "tid": 35568, "ts": 12166580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920e00", "tid": 35568, "ts": 12166666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921480", "tid": 35568, "ts": 12166752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921ca0", "tid": 35568, "ts": 12166838, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f8e0", "tid": 35568, "ts": 12166923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487921b00", "tid": 35568, "ts": 12167009, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791fc20", "tid": 35568, "ts": 12167096, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920d30", "tid": 35568, "ts": 12167182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920c60", "tid": 35568, "ts": 12167268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791f810", "tid": 35568, "ts": 12167354, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879206b0", "tid": 35568, "ts": 12167440, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920440", "tid": 35568, "ts": 12167525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879209f0", "tid": 35568, "ts": 12167611, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487920b90", "tid": 35568, "ts": 12167697, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d790", "tid": 35568, "ts": 12167783, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d5f0", "tid": 35568, "ts": 12167869, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c820", "tid": 35568, "ts": 12167956, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c000", "tid": 35568, "ts": 12168042, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bcc0", "tid": 35568, "ts": 12168128, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d520", "tid": 35568, "ts": 12168214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ef20", "tid": 35568, "ts": 12168299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ee50", "tid": 35568, "ts": 12168386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ecb0", "tid": 35568, "ts": 12168581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e8a0", "tid": 35568, "ts": 12168768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d2b0", "tid": 35568, "ts": 12168877, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e150", "tid": 35568, "ts": 12169005, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c270", "tid": 35568, "ts": 12169109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e3c0", "tid": 35568, "ts": 12169245, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e560", "tid": 35568, "ts": 12169361, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bd90", "tid": 35568, "ts": 12169448, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c5b0", "tid": 35568, "ts": 12169536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ebe0", "tid": 35568, "ts": 12169624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e080", "tid": 35568, "ts": 12169713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c0d0", "tid": 35568, "ts": 12169800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dc70", "tid": 35568, "ts": 12169887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791dfb0", "tid": 35568, "ts": 12169974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d1e0", "tid": 35568, "ts": 12170062, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791be60", "tid": 35568, "ts": 12170148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d930", "tid": 35568, "ts": 12170234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c750", "tid": 35568, "ts": 12170321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791d110", "tid": 35568, "ts": 12170416, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791cb60", "tid": 35568, "ts": 12170503, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791c680", "tid": 35568, "ts": 12170591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ca90", "tid": 35568, "ts": 12170678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e2f0", "tid": 35568, "ts": 12170766, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791e700", "tid": 35568, "ts": 12170853, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ad50", "tid": 35568, "ts": 12170939, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791abb0", "tid": 35568, "ts": 12171026, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791aa10", "tid": 35568, "ts": 12171113, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a6d0", "tid": 35568, "ts": 12171200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a530", "tid": 35568, "ts": 12171287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919b70", "tid": 35568, "ts": 12171374, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a120", "tid": 35568, "ts": 12171461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919690", "tid": 35568, "ts": 12171548, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919aa0", "tid": 35568, "ts": 12171636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a940", "tid": 35568, "ts": 12171725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919de0", "tid": 35568, "ts": 12171812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bbf0", "tid": 35568, "ts": 12171910, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791bb20", "tid": 35568, "ts": 12171998, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791ba50", "tid": 35568, "ts": 12172084, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919d10", "tid": 35568, "ts": 12172170, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918da0", "tid": 35568, "ts": 12172257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b7e0", "tid": 35568, "ts": 12172344, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918cd0", "tid": 35568, "ts": 12172430, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b230", "tid": 35568, "ts": 12172516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b980", "tid": 35568, "ts": 12172602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a460", "tid": 35568, "ts": 12172689, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b160", "tid": 35568, "ts": 12172775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a390", "tid": 35568, "ts": 12172862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791b090", "tid": 35568, "ts": 12172947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879194f0", "tid": 35568, "ts": 12173034, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919010", "tid": 35568, "ts": 12173121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a7a0", "tid": 35568, "ts": 12173207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487919350", "tid": 35568, "ts": 12173294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918f40", "tid": 35568, "ts": 12173380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791aef0", "tid": 35568, "ts": 12173467, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918a60", "tid": 35568, "ts": 12173553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348791a1f0", "tid": 35568, "ts": 12173640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917bc0", "tid": 35568, "ts": 12173726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917610", "tid": 35568, "ts": 12173813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917540", "tid": 35568, "ts": 12173900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916840", "tid": 35568, "ts": 12173987, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916770", "tid": 35568, "ts": 12174074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917470", "tid": 35568, "ts": 12174160, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917a20", "tid": 35568, "ts": 12174246, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879180a0", "tid": 35568, "ts": 12174333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915800", "tid": 35568, "ts": 12174419, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879154c0", "tid": 35568, "ts": 12174505, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915730", "tid": 35568, "ts": 12174591, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918720", "tid": 35568, "ts": 12174678, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879187f0", "tid": 35568, "ts": 12174764, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916020", "tid": 35568, "ts": 12174850, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915f50", "tid": 35568, "ts": 12174936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915db0", "tid": 35568, "ts": 12175023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917f00", "tid": 35568, "ts": 12175109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915b40", "tid": 35568, "ts": 12175195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917c90", "tid": 35568, "ts": 12175281, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915660", "tid": 35568, "ts": 12175368, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916c50", "tid": 35568, "ts": 12175455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915590", "tid": 35568, "ts": 12175542, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487916500", "tid": 35568, "ts": 12175628, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917880", "tid": 35568, "ts": 12175714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879158d0", "tid": 35568, "ts": 12175800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915c10", "tid": 35568, "ts": 12175887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879172d0", "tid": 35568, "ts": 12175974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487917200", "tid": 35568, "ts": 12176060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487918580", "tid": 35568, "ts": 12176147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487915a70", "tid": 35568, "ts": 12176234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879176e0", "tid": 35568, "ts": 12176320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879165d0", "tid": 35568, "ts": 12176407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9350", "tid": 35568, "ts": 12176493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aaae0", "tid": 35568, "ts": 12176579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786640", "tid": 35568, "ts": 12176666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786570", "tid": 35568, "ts": 12176752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786160", "tid": 35568, "ts": 12176839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785940", "tid": 35568, "ts": 12176925, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785600", "tid": 35568, "ts": 12177011, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785460", "tid": 35568, "ts": 12177097, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7851f0", "tid": 35568, "ts": 12177183, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785120", "tid": 35568, "ts": 12177287, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784eb0", "tid": 35568, "ts": 12177400, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7856d0", "tid": 35568, "ts": 12177502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786090", "tid": 35568, "ts": 12177589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784de0", "tid": 35568, "ts": 12177676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786bf0", "tid": 35568, "ts": 12177762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784760", "tid": 35568, "ts": 12177849, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7867e0", "tid": 35568, "ts": 12177936, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7845c0", "tid": 35568, "ts": 12178023, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7840e0", "tid": 35568, "ts": 12178109, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7849d0", "tid": 35568, "ts": 12178195, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787340", "tid": 35568, "ts": 12178282, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785fc0", "tid": 35568, "ts": 12178369, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7868b0", "tid": 35568, "ts": 12178455, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7870d0", "tid": 35568, "ts": 12178541, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785bb0", "tid": 35568, "ts": 12178627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7857a0", "tid": 35568, "ts": 12178713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787000", "tid": 35568, "ts": 12178799, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786e60", "tid": 35568, "ts": 12178885, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784350", "tid": 35568, "ts": 12178971, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c785a10", "tid": 35568, "ts": 12179058, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786300", "tid": 35568, "ts": 12179144, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7844f0", "tid": 35568, "ts": 12179231, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c786f30", "tid": 35568, "ts": 12179318, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c784b70", "tid": 35568, "ts": 12179404, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793570", "tid": 35568, "ts": 12179490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793230", "tid": 35568, "ts": 12179577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793cc0", "tid": 35568, "ts": 12179663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791c40", "tid": 35568, "ts": 12179750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791b70", "tid": 35568, "ts": 12179836, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791f80", "tid": 35568, "ts": 12179922, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7922c0", "tid": 35568, "ts": 12180008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792600", "tid": 35568, "ts": 12180095, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791760", "tid": 35568, "ts": 12180182, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793980", "tid": 35568, "ts": 12180269, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791690", "tid": 35568, "ts": 12180355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791900", "tid": 35568, "ts": 12180441, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793a50", "tid": 35568, "ts": 12180527, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7914f0", "tid": 35568, "ts": 12180613, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792530", "tid": 35568, "ts": 12180701, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792a10", "tid": 35568, "ts": 12180787, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791aa0", "tid": 35568, "ts": 12180874, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7938b0", "tid": 35568, "ts": 12180961, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793710", "tid": 35568, "ts": 12181047, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793640", "tid": 35568, "ts": 12181134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793d90", "tid": 35568, "ts": 12181220, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7910e0", "tid": 35568, "ts": 12181307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c793f30", "tid": 35568, "ts": 12181393, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7926d0", "tid": 35568, "ts": 12181511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c792940", "tid": 35568, "ts": 12181600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c791830", "tid": 35568, "ts": 12181688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7908c0", "tid": 35568, "ts": 12181775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7900a0", "tid": 35568, "ts": 12181862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ffd0", "tid": 35568, "ts": 12181949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e5d0", "tid": 35568, "ts": 12182035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ff00", "tid": 35568, "ts": 12182122, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fd60", "tid": 35568, "ts": 12182209, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e9e0", "tid": 35568, "ts": 12182295, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fbc0", "tid": 35568, "ts": 12182381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f130", "tid": 35568, "ts": 12182468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e360", "tid": 35568, "ts": 12182554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e020", "tid": 35568, "ts": 12182640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7903e0", "tid": 35568, "ts": 12182726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78eec0", "tid": 35568, "ts": 12182812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790990", "tid": 35568, "ts": 12182898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790580", "tid": 35568, "ts": 12183002, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f540", "tid": 35568, "ts": 12183125, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790b30", "tid": 35568, "ts": 12183212, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ed20", "tid": 35568, "ts": 12183299, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78eab0", "tid": 35568, "ts": 12183386, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e0f0", "tid": 35568, "ts": 12183472, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790da0", "tid": 35568, "ts": 12183559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78fa20", "tid": 35568, "ts": 12183646, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790f40", "tid": 35568, "ts": 12183732, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78de80", "tid": 35568, "ts": 12183819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ec50", "tid": 35568, "ts": 12183906, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ef90", "tid": 35568, "ts": 12183993, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f060", "tid": 35568, "ts": 12184141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790310", "tid": 35568, "ts": 12184296, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f950", "tid": 35568, "ts": 12184385, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78f880", "tid": 35568, "ts": 12184524, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78e290", "tid": 35568, "ts": 12184627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c790240", "tid": 35568, "ts": 12184713, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78af60", "tid": 35568, "ts": 12184800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78aa80", "tid": 35568, "ts": 12184887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78dc10", "tid": 35568, "ts": 12184973, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78da70", "tid": 35568, "ts": 12185060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78be00", "tid": 35568, "ts": 12185146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d590", "tid": 35568, "ts": 12185233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cca0", "tid": 35568, "ts": 12185319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78ae90", "tid": 35568, "ts": 12185405, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78adc0", "tid": 35568, "ts": 12185492, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cb00", "tid": 35568, "ts": 12185579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c480", "tid": 35568, "ts": 12185666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b510", "tid": 35568, "ts": 12185752, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b780", "tid": 35568, "ts": 12185839, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b440", "tid": 35568, "ts": 12185926, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78acf0", "tid": 35568, "ts": 12186012, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cd70", "tid": 35568, "ts": 12186098, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d0b0", "tid": 35568, "ts": 12186185, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d320", "tid": 35568, "ts": 12186313, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bd30", "tid": 35568, "ts": 12186415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b6b0", "tid": 35568, "ts": 12186502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78cfe0", "tid": 35568, "ts": 12186589, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a9b0", "tid": 35568, "ts": 12186676, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d660", "tid": 35568, "ts": 12186762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c210", "tid": 35568, "ts": 12186848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78d4c0", "tid": 35568, "ts": 12186934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b2a0", "tid": 35568, "ts": 12187021, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c070", "tid": 35568, "ts": 12187108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b100", "tid": 35568, "ts": 12187193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78bfa0", "tid": 35568, "ts": 12187280, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78db40", "tid": 35568, "ts": 12187366, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78b9f0", "tid": 35568, "ts": 12187453, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78c7c0", "tid": 35568, "ts": 12187540, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a5a0", "tid": 35568, "ts": 12187627, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a330", "tid": 35568, "ts": 12187714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789a40", "tid": 35568, "ts": 12187800, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7898a0", "tid": 35568, "ts": 12187887, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788ee0", "tid": 35568, "ts": 12187974, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788c70", "tid": 35568, "ts": 12188060, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788450", "tid": 35568, "ts": 12188146, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7881e0", "tid": 35568, "ts": 12188233, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787d00", "tid": 35568, "ts": 12188319, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789e50", "tid": 35568, "ts": 12188406, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789150", "tid": 35568, "ts": 12188493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a4d0", "tid": 35568, "ts": 12188579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789cb0", "tid": 35568, "ts": 12188666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788ba0", "tid": 35568, "ts": 12188753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787a90", "tid": 35568, "ts": 12188840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7879c0", "tid": 35568, "ts": 12188927, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7886c0", "tid": 35568, "ts": 12189014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c78a810", "tid": 35568, "ts": 12189100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788110", "tid": 35568, "ts": 12189187, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788d40", "tid": 35568, "ts": 12189273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789220", "tid": 35568, "ts": 12189359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788040", "tid": 35568, "ts": 12189445, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789ff0", "tid": 35568, "ts": 12189532, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788520", "tid": 35568, "ts": 12189617, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c788fb0", "tid": 35568, "ts": 12189704, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789b10", "tid": 35568, "ts": 12189789, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787680", "tid": 35568, "ts": 12189876, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c787ea0", "tid": 35568, "ts": 12189962, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c789560", "tid": 35568, "ts": 12190048, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7885f0", "tid": 35568, "ts": 12190134, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7875b0", "tid": 35568, "ts": 12190221, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348c7874e0", "tid": 35568, "ts": 12190307, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618100", "tid": 35568, "ts": 12190394, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617b50", "tid": 35568, "ts": 12190479, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617dc0", "tid": 35568, "ts": 12190566, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617cf0", "tid": 35568, "ts": 12190651, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946189f0", "tid": 35568, "ts": 12190738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618780", "tid": 35568, "ts": 12190825, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618370", "tid": 35568, "ts": 12190911, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946185e0", "tid": 35568, "ts": 12190997, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618030", "tid": 35568, "ts": 12191083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618510", "tid": 35568, "ts": 12191169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617f60", "tid": 35568, "ts": 12191255, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494618920", "tid": 35568, "ts": 12191341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946175a0", "tid": 35568, "ts": 12191427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946174d0", "tid": 35568, "ts": 12191514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614ea0", "tid": 35568, "ts": 12191599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614340", "tid": 35568, "ts": 12191685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615520", "tid": 35568, "ts": 12191771, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617400", "tid": 35568, "ts": 12191858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494617330", "tid": 35568, "ts": 12191944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614820", "tid": 35568, "ts": 12192030, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615450", "tid": 35568, "ts": 12192116, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616ff0", "tid": 35568, "ts": 12192202, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614270", "tid": 35568, "ts": 12192288, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614750", "tid": 35568, "ts": 12192375, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615a00", "tid": 35568, "ts": 12192461, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614c30", "tid": 35568, "ts": 12192547, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615d40", "tid": 35568, "ts": 12192633, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616be0", "tid": 35568, "ts": 12192720, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946152b0", "tid": 35568, "ts": 12192805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946162f0", "tid": 35568, "ts": 12192891, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946145b0", "tid": 35568, "ts": 12192978, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616080", "tid": 35568, "ts": 12193064, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616220", "tid": 35568, "ts": 12193151, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616b10", "tid": 35568, "ts": 12193237, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946144e0", "tid": 35568, "ts": 12193324, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614dd0", "tid": 35568, "ts": 12193410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616560", "tid": 35568, "ts": 12193497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615c70", "tid": 35568, "ts": 12193584, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615ba0", "tid": 35568, "ts": 12193670, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946149c0", "tid": 35568, "ts": 12193756, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614410", "tid": 35568, "ts": 12193842, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616f20", "tid": 35568, "ts": 12193928, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616970", "tid": 35568, "ts": 12194014, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615110", "tid": 35568, "ts": 12194100, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494616630", "tid": 35568, "ts": 12194186, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494615860", "tid": 35568, "ts": 12194273, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613a50", "tid": 35568, "ts": 12194360, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946127a0", "tid": 35568, "ts": 12194447, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946137e0", "tid": 35568, "ts": 12194533, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613bf0", "tid": 35568, "ts": 12194682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613710", "tid": 35568, "ts": 12194784, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946121f0", "tid": 35568, "ts": 12194872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613640", "tid": 35568, "ts": 12194958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946111b0", "tid": 35568, "ts": 12195045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612460", "tid": 35568, "ts": 12195131, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613160", "tid": 35568, "ts": 12195218, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611c40", "tid": 35568, "ts": 12195304, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946138b0", "tid": 35568, "ts": 12195391, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946134a0", "tid": 35568, "ts": 12195477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611690", "tid": 35568, "ts": 12195563, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612050", "tid": 35568, "ts": 12195649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612e20", "tid": 35568, "ts": 12195736, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610f40", "tid": 35568, "ts": 12195823, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611d10", "tid": 35568, "ts": 12195909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610da0", "tid": 35568, "ts": 12195995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494610cd0", "tid": 35568, "ts": 12196081, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494614000", "tid": 35568, "ts": 12196168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612bb0", "tid": 35568, "ts": 12196254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234946114f0", "tid": 35568, "ts": 12196341, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612a10", "tid": 35568, "ts": 12196427, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613f30", "tid": 35568, "ts": 12196514, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611f80", "tid": 35568, "ts": 12196600, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612390", "tid": 35568, "ts": 12196685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494612870", "tid": 35568, "ts": 12196772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613090", "tid": 35568, "ts": 12196858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613b20", "tid": 35568, "ts": 12196944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494613cc0", "tid": 35568, "ts": 12197031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23494611420", "tid": 35568, "ts": 12197117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929d10", "tid": 35568, "ts": 12197206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929c40", "tid": 35568, "ts": 12197292, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879294f0", "tid": 35568, "ts": 12197378, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929280", "tid": 35568, "ts": 12197464, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928e70", "tid": 35568, "ts": 12197550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929aa0", "tid": 35568, "ts": 12197636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928cd0", "tid": 35568, "ts": 12197722, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879299d0", "tid": 35568, "ts": 12197809, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929eb0", "tid": 35568, "ts": 12197894, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929830", "tid": 35568, "ts": 12197981, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929350", "tid": 35568, "ts": 12198067, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928c00", "tid": 35568, "ts": 12198153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928b30", "tid": 35568, "ts": 12198239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929690", "tid": 35568, "ts": 12198325, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487929760", "tid": 35568, "ts": 12198412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928240", "tid": 35568, "ts": 12198498, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879280a0", "tid": 35568, "ts": 12198585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927d60", "tid": 35568, "ts": 12198671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927130", "tid": 35568, "ts": 12198758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926ec0", "tid": 35568, "ts": 12198844, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926b80", "tid": 35568, "ts": 12198930, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926910", "tid": 35568, "ts": 12199017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926290", "tid": 35568, "ts": 12199103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879277b0", "tid": 35568, "ts": 12199190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879260f0", "tid": 35568, "ts": 12199276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925ce0", "tid": 35568, "ts": 12199362, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927470", "tid": 35568, "ts": 12199449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928650", "tid": 35568, "ts": 12199536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926c50", "tid": 35568, "ts": 12199622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879272d0", "tid": 35568, "ts": 12199760, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925800", "tid": 35568, "ts": 12199908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925730", "tid": 35568, "ts": 12199999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879283e0", "tid": 35568, "ts": 12200087, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927200", "tid": 35568, "ts": 12200175, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879266a0", "tid": 35568, "ts": 12200262, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926430", "tid": 35568, "ts": 12200349, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927fd0", "tid": 35568, "ts": 12200436, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925a70", "tid": 35568, "ts": 12200523, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879259a0", "tid": 35568, "ts": 12200610, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925f50", "tid": 35568, "ts": 12200698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926ab0", "tid": 35568, "ts": 12200786, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927f00", "tid": 35568, "ts": 12200872, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487926770", "tid": 35568, "ts": 12200958, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879287f0", "tid": 35568, "ts": 12201045, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487928720", "tid": 35568, "ts": 12201132, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487927c90", "tid": 35568, "ts": 12201219, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925db0", "tid": 35568, "ts": 12201305, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879243b0", "tid": 35568, "ts": 12201392, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924070", "tid": 35568, "ts": 12201478, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923e00", "tid": 35568, "ts": 12201565, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923c60", "tid": 35568, "ts": 12201652, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924d70", "tid": 35568, "ts": 12201738, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924f10", "tid": 35568, "ts": 12201832, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923780", "tid": 35568, "ts": 12201920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879231d0", "tid": 35568, "ts": 12202007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922b50", "tid": 35568, "ts": 12202093, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922740", "tid": 35568, "ts": 12202179, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487925180", "tid": 35568, "ts": 12202272, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923030", "tid": 35568, "ts": 12202359, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879235e0", "tid": 35568, "ts": 12202446, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924e40", "tid": 35568, "ts": 12202535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879225a0", "tid": 35568, "ts": 12202622, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879229b0", "tid": 35568, "ts": 12202708, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922190", "tid": 35568, "ts": 12202795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922e90", "tid": 35568, "ts": 12202882, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922cf0", "tid": 35568, "ts": 12202969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879232a0", "tid": 35568, "ts": 12203056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879239f0", "tid": 35568, "ts": 12203143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924bd0", "tid": 35568, "ts": 12203230, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879246f0", "tid": 35568, "ts": 12203316, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922330", "tid": 35568, "ts": 12203403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234879224d0", "tid": 35568, "ts": 12203490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922a80", "tid": 35568, "ts": 12203576, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924960", "tid": 35568, "ts": 12203663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923920", "tid": 35568, "ts": 12203749, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487922810", "tid": 35568, "ts": 12203835, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487924890", "tid": 35568, "ts": 12203921, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923510", "tid": 35568, "ts": 12204008, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23487923100", "tid": 35568, "ts": 12204108, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8e70", "tid": 35568, "ts": 12204214, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9280", "tid": 35568, "ts": 12204301, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8c00", "tid": 35568, "ts": 12204388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8a60", "tid": 35568, "ts": 12204475, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9d10", "tid": 35568, "ts": 12204561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d99d0", "tid": 35568, "ts": 12204649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d88c0", "tid": 35568, "ts": 12204735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9900", "tid": 35568, "ts": 12204822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9010", "tid": 35568, "ts": 12204908, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d90e0", "tid": 35568, "ts": 12204995, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9760", "tid": 35568, "ts": 12205082, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9de0", "tid": 35568, "ts": 12205168, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d9b70", "tid": 35568, "ts": 12205254, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6f90", "tid": 35568, "ts": 12205340, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6df0", "tid": 35568, "ts": 12205426, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6b80", "tid": 35568, "ts": 12205512, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6ab0", "tid": 35568, "ts": 12205599, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6910", "tid": 35568, "ts": 12205685, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d66a0", "tid": 35568, "ts": 12205772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5b40", "tid": 35568, "ts": 12205858, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6500", "tid": 35568, "ts": 12205944, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8580", "tid": 35568, "ts": 12206031, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d60f0", "tid": 35568, "ts": 12206117, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7fd0", "tid": 35568, "ts": 12206203, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5590", "tid": 35568, "ts": 12206289, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7060", "tid": 35568, "ts": 12206376, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7bc0", "tid": 35568, "ts": 12206463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7af0", "tid": 35568, "ts": 12206550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7610", "tid": 35568, "ts": 12206637, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7950", "tid": 35568, "ts": 12206725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8310", "tid": 35568, "ts": 12206812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7880", "tid": 35568, "ts": 12206899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7e30", "tid": 35568, "ts": 12206986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d6360", "tid": 35568, "ts": 12207074, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d8650", "tid": 35568, "ts": 12207172, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d54c0", "tid": 35568, "ts": 12207259, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d69e0", "tid": 35568, "ts": 12207345, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5730", "tid": 35568, "ts": 12207431, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d7470", "tid": 35568, "ts": 12207518, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5ce0", "tid": 35568, "ts": 12207604, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d73a0", "tid": 35568, "ts": 12207690, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d77b0", "tid": 35568, "ts": 12207777, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d83e0", "tid": 35568, "ts": 12207863, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5800", "tid": 35568, "ts": 12207949, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d59a0", "tid": 35568, "ts": 12208035, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4210", "tid": 35568, "ts": 12208121, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d36b0", "tid": 35568, "ts": 12208208, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3440", "tid": 35568, "ts": 12208294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d31d0", "tid": 35568, "ts": 12208380, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3920", "tid": 35568, "ts": 12208466, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4070", "tid": 35568, "ts": 12208553, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2f60", "tid": 35568, "ts": 12208639, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d50b0", "tid": 35568, "ts": 12208725, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d28e0", "tid": 35568, "ts": 12208811, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4140", "tid": 35568, "ts": 12208898, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4b00", "tid": 35568, "ts": 12208984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3fa0", "tid": 35568, "ts": 12209071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3ed0", "tid": 35568, "ts": 12209157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4a30", "tid": 35568, "ts": 12209243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2cf0", "tid": 35568, "ts": 12209329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d25a0", "tid": 35568, "ts": 12209415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3780", "tid": 35568, "ts": 12209501, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d5250", "tid": 35568, "ts": 12209587, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2260", "tid": 35568, "ts": 12209673, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d53f0", "tid": 35568, "ts": 12209759, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3ac0", "tid": 35568, "ts": 12209846, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4620", "tid": 35568, "ts": 12209932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d3b90", "tid": 35568, "ts": 12210018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2670", "tid": 35568, "ts": 12210105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4ca0", "tid": 35568, "ts": 12210191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4480", "tid": 35568, "ts": 12210277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4e40", "tid": 35568, "ts": 12210363, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d4550", "tid": 35568, "ts": 12210449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d20c0", "tid": 35568, "ts": 12210535, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2b50", "tid": 35568, "ts": 12210620, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d2400", "tid": 35568, "ts": 12210706, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234906d43b0", "tid": 35568, "ts": 12210792, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23190", "tid": 35568, "ts": 12210878, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22a40", "tid": 35568, "ts": 12210964, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23f60", "tid": 35568, "ts": 12211050, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23cf0", "tid": 35568, "ts": 12211136, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23b50", "tid": 35568, "ts": 12211222, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23260", "tid": 35568, "ts": 12211308, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c239b0", "tid": 35568, "ts": 12211395, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c238e0", "tid": 35568, "ts": 12211481, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23dc0", "tid": 35568, "ts": 12211568, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23400", "tid": 35568, "ts": 12211654, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22e50", "tid": 35568, "ts": 12211741, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23810", "tid": 35568, "ts": 12211827, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c23330", "tid": 35568, "ts": 12211913, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22d80", "tid": 35568, "ts": 12211999, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c228a0", "tid": 35568, "ts": 12212085, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22560", "tid": 35568, "ts": 12212171, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c223c0", "tid": 35568, "ts": 12212257, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20820", "tid": 35568, "ts": 12212343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22150", "tid": 35568, "ts": 12212429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c227d0", "tid": 35568, "ts": 12212515, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22630", "tid": 35568, "ts": 12212602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fcc0", "tid": 35568, "ts": 12212688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fb20", "tid": 35568, "ts": 12212775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fa50", "tid": 35568, "ts": 12212861, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22700", "tid": 35568, "ts": 12212947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21c70", "tid": 35568, "ts": 12213033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c204e0", "tid": 35568, "ts": 12213119, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f980", "tid": 35568, "ts": 12213205, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fbf0", "tid": 35568, "ts": 12213291, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c200d0", "tid": 35568, "ts": 12213377, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f710", "tid": 35568, "ts": 12213463, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21380", "tid": 35568, "ts": 12213550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22220", "tid": 35568, "ts": 12213636, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21450", "tid": 35568, "ts": 12213726, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20b60", "tid": 35568, "ts": 12213813, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ff30", "tid": 35568, "ts": 12213900, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20750", "tid": 35568, "ts": 12213986, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20d00", "tid": 35568, "ts": 12214076, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c209c0", "tid": 35568, "ts": 12214163, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c22080", "tid": 35568, "ts": 12214249, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21860", "tid": 35568, "ts": 12214336, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21fb0", "tid": 35568, "ts": 12214422, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c21040", "tid": 35568, "ts": 12214509, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20dd0", "tid": 35568, "ts": 12214595, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c20f70", "tid": 35568, "ts": 12214682, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c205b0", "tid": 35568, "ts": 12214767, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1fd90", "tid": 35568, "ts": 12214855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c310", "tid": 35568, "ts": 12214941, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f230", "tid": 35568, "ts": 12215028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1f090", "tid": 35568, "ts": 12215115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e940", "tid": 35568, "ts": 12215200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e460", "tid": 35568, "ts": 12215333, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ee20", "tid": 35568, "ts": 12215449, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1db70", "tid": 35568, "ts": 12215550, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ce70", "tid": 35568, "ts": 12215718, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1dc40", "tid": 35568, "ts": 12215855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1cda0", "tid": 35568, "ts": 12215955, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ccd0", "tid": 35568, "ts": 12216068, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d830", "tid": 35568, "ts": 12216193, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c720", "tid": 35568, "ts": 12216279, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1deb0", "tid": 35568, "ts": 12216365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d4f0", "tid": 35568, "ts": 12216451, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e390", "tid": 35568, "ts": 12216538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d690", "tid": 35568, "ts": 12216624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d0e0", "tid": 35568, "ts": 12216710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1eef0", "tid": 35568, "ts": 12216797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1efc0", "tid": 35568, "ts": 12216883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d280", "tid": 35568, "ts": 12216970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1e600", "tid": 35568, "ts": 12217056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c170", "tid": 35568, "ts": 12217143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ebb0", "tid": 35568, "ts": 12217229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d5c0", "tid": 35568, "ts": 12217315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c0a0", "tid": 35568, "ts": 12217402, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1d010", "tid": 35568, "ts": 12217488, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c7f0", "tid": 35568, "ts": 12217575, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1ea10", "tid": 35568, "ts": 12217661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1eae0", "tid": 35568, "ts": 12217747, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482c1c4b0", "tid": 35568, "ts": 12217833, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37490", "tid": 35568, "ts": 12217920, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37a40", "tid": 35568, "ts": 12218007, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d378a0", "tid": 35568, "ts": 12218094, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d377d0", "tid": 35568, "ts": 12218180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37cb0", "tid": 35568, "ts": 12218266, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37d80", "tid": 35568, "ts": 12218353, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37970", "tid": 35568, "ts": 12218439, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d343d0", "tid": 35568, "ts": 12218525, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35000", "tid": 35568, "ts": 12218612, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34090", "tid": 35568, "ts": 12218698, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37150", "tid": 35568, "ts": 12218785, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36ee0", "tid": 35568, "ts": 12218871, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34f30", "tid": 35568, "ts": 12218957, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36790", "tid": 35568, "ts": 12219044, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36520", "tid": 35568, "ts": 12219130, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35270", "tid": 35568, "ts": 12219217, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34d90", "tid": 35568, "ts": 12219303, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34bf0", "tid": 35568, "ts": 12219390, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36380", "tid": 35568, "ts": 12219477, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36ba0", "tid": 35568, "ts": 12219562, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d37220", "tid": 35568, "ts": 12219649, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36fb0", "tid": 35568, "ts": 12219735, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d362b0", "tid": 35568, "ts": 12219822, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d351a0", "tid": 35568, "ts": 12219909, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34cc0", "tid": 35568, "ts": 12219996, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d347e0", "tid": 35568, "ts": 12220083, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36110", "tid": 35568, "ts": 12220169, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d358f0", "tid": 35568, "ts": 12220256, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36a00", "tid": 35568, "ts": 12220343, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35f70", "tid": 35568, "ts": 12220429, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35c30", "tid": 35568, "ts": 12220516, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35340", "tid": 35568, "ts": 12220602, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35b60", "tid": 35568, "ts": 12220688, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d35680", "tid": 35568, "ts": 12220775, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d355b0", "tid": 35568, "ts": 12220862, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d36ad0", "tid": 35568, "ts": 12220948, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d34570", "tid": 35568, "ts": 12221033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d354e0", "tid": 35568, "ts": 12221120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d348b0", "tid": 35568, "ts": 12221206, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aba40", "tid": 35568, "ts": 12221294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abb10", "tid": 35568, "ts": 12221381, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab7d0", "tid": 35568, "ts": 12221468, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab630", "tid": 35568, "ts": 12221554, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab490", "tid": 35568, "ts": 12221640, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abe50", "tid": 35568, "ts": 12221727, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805abd80", "tid": 35568, "ts": 12221812, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8b20", "tid": 35568, "ts": 12221899, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8bf0", "tid": 35568, "ts": 12221984, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9ea0", "tid": 35568, "ts": 12222071, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9dd0", "tid": 35568, "ts": 12222157, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa790", "tid": 35568, "ts": 12222243, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa2b0", "tid": 35568, "ts": 12222329, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9820", "tid": 35568, "ts": 12222415, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aac70", "tid": 35568, "ts": 12222502, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a83d0", "tid": 35568, "ts": 12222588, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8f30", "tid": 35568, "ts": 12222675, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8230", "tid": 35568, "ts": 12222762, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa520", "tid": 35568, "ts": 12222848, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aaba0", "tid": 35568, "ts": 12222934, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8e60", "tid": 35568, "ts": 12223020, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a98f0", "tid": 35568, "ts": 12223106, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa930", "tid": 35568, "ts": 12223192, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a95b0", "tid": 35568, "ts": 12223278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9d00", "tid": 35568, "ts": 12223364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa110", "tid": 35568, "ts": 12223450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8090", "tid": 35568, "ts": 12223536, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805ab220", "tid": 35568, "ts": 12223624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9000", "tid": 35568, "ts": 12223710, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8d90", "tid": 35568, "ts": 12223797, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a90d0", "tid": 35568, "ts": 12223883, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aad40", "tid": 35568, "ts": 12223970, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9b60", "tid": 35568, "ts": 12224056, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa040", "tid": 35568, "ts": 12224143, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a84a0", "tid": 35568, "ts": 12224229, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9a90", "tid": 35568, "ts": 12224315, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a9340", "tid": 35568, "ts": 12224403, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805aa5f0", "tid": 35568, "ts": 12224490, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234805a8300", "tid": 35568, "ts": 12224577, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ecaab0", "tid": 35568, "ts": 12224663, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abbf0", "tid": 35568, "ts": 12224750, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aba50", "tid": 35568, "ts": 12224837, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abd90", "tid": 35568, "ts": 12224923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab710", "tid": 35568, "ts": 12225010, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7abe60", "tid": 35568, "ts": 12225103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab570", "tid": 35568, "ts": 12225190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab4a0", "tid": 35568, "ts": 12225276, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8cd0", "tid": 35568, "ts": 12225365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab300", "tid": 35568, "ts": 12225452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aac80", "tid": 35568, "ts": 12225537, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aabb0", "tid": 35568, "ts": 12225623, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8a60", "tid": 35568, "ts": 12225709, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa2c0", "tid": 35568, "ts": 12225795, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9eb0", "tid": 35568, "ts": 12225881, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8b30", "tid": 35568, "ts": 12225967, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7ab090", "tid": 35568, "ts": 12226053, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aaa10", "tid": 35568, "ts": 12226141, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9900", "tid": 35568, "ts": 12226228, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9c40", "tid": 35568, "ts": 12226320, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a94f0", "tid": 35568, "ts": 12226407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa050", "tid": 35568, "ts": 12226493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a84b0", "tid": 35568, "ts": 12226579, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a83e0", "tid": 35568, "ts": 12226681, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9b70", "tid": 35568, "ts": 12226768, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9420", "tid": 35568, "ts": 12226855, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9010", "tid": 35568, "ts": 12226942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aae20", "tid": 35568, "ts": 12227029, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa7a0", "tid": 35568, "ts": 12227115, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aad50", "tid": 35568, "ts": 12227300, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a99d0", "tid": 35568, "ts": 12227388, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa600", "tid": 35568, "ts": 12227474, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa940", "tid": 35568, "ts": 12227561, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9280", "tid": 35568, "ts": 12227647, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8650", "tid": 35568, "ts": 12227733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a9f80", "tid": 35568, "ts": 12227819, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7a8170", "tid": 35568, "ts": 12227905, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b7aa6d0", "tid": 35568, "ts": 12227992, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b7e0", "tid": 35568, "ts": 12228079, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b710", "tid": 35568, "ts": 12228165, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bf30", "tid": 35568, "ts": 12228252, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bbf0", "tid": 35568, "ts": 12228338, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bb20", "tid": 35568, "ts": 12228425, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ba50", "tid": 35568, "ts": 12228511, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74bcc0", "tid": 35568, "ts": 12228597, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748b30", "tid": 35568, "ts": 12228683, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748170", "tid": 35568, "ts": 12228770, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74b300", "tid": 35568, "ts": 12228856, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a2c0", "tid": 35568, "ts": 12228942, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a1f0", "tid": 35568, "ts": 12229028, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749eb0", "tid": 35568, "ts": 12229114, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7480a0", "tid": 35568, "ts": 12229200, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a7a0", "tid": 35568, "ts": 12229286, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749280", "tid": 35568, "ts": 12229372, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749aa0", "tid": 35568, "ts": 12229458, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a600", "tid": 35568, "ts": 12229545, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ae20", "tid": 35568, "ts": 12229631, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7488c0", "tid": 35568, "ts": 12229717, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74ad50", "tid": 35568, "ts": 12229802, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74abb0", "tid": 35568, "ts": 12229889, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a050", "tid": 35568, "ts": 12229975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7484b0", "tid": 35568, "ts": 12230061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a6d0", "tid": 35568, "ts": 12230148, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749420", "tid": 35568, "ts": 12230234, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749d10", "tid": 35568, "ts": 12230321, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748720", "tid": 35568, "ts": 12230407, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749010", "tid": 35568, "ts": 12230493, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748f40", "tid": 35568, "ts": 12230580, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7494f0", "tid": 35568, "ts": 12230666, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749900", "tid": 35568, "ts": 12230753, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a870", "tid": 35568, "ts": 12230840, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d748cd0", "tid": 35568, "ts": 12230969, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749690", "tid": 35568, "ts": 12231091, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749b70", "tid": 35568, "ts": 12231180, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d74a120", "tid": 35568, "ts": 12231268, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d749de0", "tid": 35568, "ts": 12231355, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348d7495c0", "tid": 35568, "ts": 12231442, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7194f0", "tid": 35568, "ts": 12231531, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719280", "tid": 35568, "ts": 12231619, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719aa0", "tid": 35568, "ts": 12231705, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719900", "tid": 35568, "ts": 12231793, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7184b0", "tid": 35568, "ts": 12231879, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718310", "tid": 35568, "ts": 12231965, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719de0", "tid": 35568, "ts": 12232051, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719690", "tid": 35568, "ts": 12232138, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7187f0", "tid": 35568, "ts": 12232223, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718c00", "tid": 35568, "ts": 12232309, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7195c0", "tid": 35568, "ts": 12232410, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719830", "tid": 35568, "ts": 12232497, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719f80", "tid": 35568, "ts": 12232585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719350", "tid": 35568, "ts": 12232671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e719b70", "tid": 35568, "ts": 12232758, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718170", "tid": 35568, "ts": 12232845, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7199d0", "tid": 35568, "ts": 12232932, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e718cd0", "tid": 35568, "ts": 12233018, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348e7180a0", "tid": 35568, "ts": 12233105, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d19d0", "tid": 35568, "ts": 12233191, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1280", "tid": 35568, "ts": 12233278, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1690", "tid": 35568, "ts": 12233365, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0f40", "tid": 35568, "ts": 12233452, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0310", "tid": 35568, "ts": 12233539, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0170", "tid": 35568, "ts": 12233626, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d10e0", "tid": 35568, "ts": 12233714, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0650", "tid": 35568, "ts": 12233801, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1aa0", "tid": 35568, "ts": 12233888, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1eb0", "tid": 35568, "ts": 12233975, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1900", "tid": 35568, "ts": 12234061, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1de0", "tid": 35568, "ts": 12234147, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1c40", "tid": 35568, "ts": 12234235, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0b30", "tid": 35568, "ts": 12234323, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1d10", "tid": 35568, "ts": 12234409, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1760", "tid": 35568, "ts": 12234495, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d0580", "tid": 35568, "ts": 12234581, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1830", "tid": 35568, "ts": 12234668, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234823d1420", "tid": 35568, "ts": 12234755, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ac1b0", "tid": 35568, "ts": 12234843, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39aa0", "tid": 35568, "ts": 12234931, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39830", "tid": 35568, "ts": 12235017, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39760", "tid": 35568, "ts": 12235103, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38a60", "tid": 35568, "ts": 12235190, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39350", "tid": 35568, "ts": 12235277, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d395c0", "tid": 35568, "ts": 12235364, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d390e0", "tid": 35568, "ts": 12235450, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38e70", "tid": 35568, "ts": 12235538, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d380a0", "tid": 35568, "ts": 12235624, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d388c0", "tid": 35568, "ts": 12235712, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d387f0", "tid": 35568, "ts": 12235805, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38c00", "tid": 35568, "ts": 12235892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39eb0", "tid": 35568, "ts": 12235979, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38310", "tid": 35568, "ts": 12236066, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d39b70", "tid": 35568, "ts": 12236153, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d38650", "tid": 35568, "ts": 12236239, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d383e0", "tid": 35568, "ts": 12236326, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157e1c0", "tid": 35568, "ts": 12236412, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157ddb0", "tid": 35568, "ts": 12236499, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348157d8d0", "tid": 35568, "ts": 12236585, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x234818ab170", "tid": 35568, "ts": 12236686, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7fb30", "tid": 35568, "ts": 12236772, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e7f240", "tid": 35568, "ts": 12236860, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23484e801b0", "tid": 35568, "ts": 12236947, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7fa60", "tid": 35568, "ts": 12237033, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80de0", "tid": 35568, "ts": 12237120, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d809d0", "tid": 35568, "ts": 12237207, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d80d10", "tid": 35568, "ts": 12237294, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483eca020", "tid": 35568, "ts": 12237398, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec8fe0", "tid": 35568, "ts": 12237485, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9e80", "tid": 35568, "ts": 12237586, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23481d7f4b0", "tid": 35568, "ts": 12237733, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23483ec9730", "tid": 35568, "ts": 12237852, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234830f0070", "tid": 35568, "ts": 12237942, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7090", "tid": 35568, "ts": 12238282, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7f30", "tid": 35568, "ts": 12238616, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 12238869, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1250", "tid": 35568, "ts": 12240677, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 12241000, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc09e0", "tid": 35568, "ts": 12241321, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad080", "tid": 35568, "ts": 12241644, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad500", "tid": 35568, "ts": 12241965, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad740", "tid": 35568, "ts": 12242283, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae940", "tid": 35568, "ts": 12242600, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad8f0", "tid": 35568, "ts": 12242919, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae0d0", "tid": 35568, "ts": 12243240, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8ef0", "tid": 35568, "ts": 12243598, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7120", "tid": 35568, "ts": 12243607, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7c60", "tid": 35568, "ts": 12243613, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8a70", "tid": 35568, "ts": 12243619, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7cf0", "tid": 35568, "ts": 12243625, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7e10", "tid": 35568, "ts": 12243995, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7fc0", "tid": 35568, "ts": 12244004, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d7f170", "tid": 35568, "ts": 12244019, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b00", "tid": 35568, "ts": 12244231, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d80b70", "tid": 35568, "ts": 12244247, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e80e0", "tid": 35568, "ts": 12244451, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8200", "tid": 35568, "ts": 12244458, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc10a0", "tid": 35568, "ts": 12244917, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc11c0", "tid": 35568, "ts": 12244926, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1490", "tid": 35568, "ts": 12244933, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0680", "tid": 35568, "ts": 12244939, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0f80", "tid": 35568, "ts": 12244945, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1130", "tid": 35568, "ts": 12245780, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc12e0", "tid": 35568, "ts": 12245788, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1370", "tid": 35568, "ts": 12245794, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b00", "tid": 35568, "ts": 12245800, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1400", "tid": 35568, "ts": 12245806, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0710", "tid": 35568, "ts": 12246148, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc07a0", "tid": 35568, "ts": 12246157, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 12246163, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0830", "tid": 35568, "ts": 12246169, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc08c0", "tid": 35568, "ts": 12246174, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0d40", "tid": 35568, "ts": 12246517, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0950", "tid": 35568, "ts": 12246525, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b90", "tid": 35568, "ts": 12246567, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad590", "tid": 35568, "ts": 12246592, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae8b0", "tid": 35568, "ts": 12246601, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ada10", "tid": 35568, "ts": 12246996, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad860", "tid": 35568, "ts": 12247007, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae3a0", "tid": 35568, "ts": 12247014, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae700", "tid": 35568, "ts": 12247020, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad470", "tid": 35568, "ts": 12247025, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ade00", "tid": 35568, "ts": 12247259, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adc50", "tid": 35568, "ts": 12247267, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916acff0", "tid": 35568, "ts": 12247273, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad620", "tid": 35568, "ts": 12247279, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae040", "tid": 35568, "ts": 12247285, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad6b0", "tid": 35568, "ts": 12247580, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad110", "tid": 35568, "ts": 12247589, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916add70", "tid": 35568, "ts": 12247595, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adaa0", "tid": 35568, "ts": 12247600, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad7d0", "tid": 35568, "ts": 12247606, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adb30", "tid": 35568, "ts": 12247958, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916aeaf0", "tid": 35568, "ts": 12247966, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916acd20", "tid": 35568, "ts": 12247973, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad980", "tid": 35568, "ts": 12247978, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adbc0", "tid": 35568, "ts": 12247984, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ade90", "tid": 35568, "ts": 12248385, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adf20", "tid": 35568, "ts": 12248394, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad230", "tid": 35568, "ts": 12248400, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae790", "tid": 35568, "ts": 12248406, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae430", "tid": 35568, "ts": 12248412, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad1a0", "tid": 35568, "ts": 12248806, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae160", "tid": 35568, "ts": 12248814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad350", "tid": 35568, "ts": 12248820, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae280", "tid": 35568, "ts": 12248826, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ad3e0", "tid": 35568, "ts": 12248832, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec90b0", "tid": 35568, "ts": 12249223, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8560", "tid": 35568, "ts": 12249512, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca500", "tid": 35568, "ts": 12253818, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d80420", "tid": 35568, "ts": 12254066, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483eca9e0", "tid": 35568, "ts": 12254258, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d80350", "tid": 35568, "ts": 12254446, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23481d7f310", "tid": 35568, "ts": 12254631, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23484e7f3e0", "tid": 35568, "ts": 12254829, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23486958720", "tid": 35568, "ts": 12255020, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23484e7fe70", "tid": 35568, "ts": 12255208, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234869591b0", "tid": 35568, "ts": 12255401, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23486959eb0", "tid": 35568, "ts": 12255589, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348157dce0", "tid": 35568, "ts": 12255783, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7d80", "tid": 35568, "ts": 12255970, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234818ac350", "tid": 35568, "ts": 12255985, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348e718720", "tid": 35568, "ts": 12256183, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23483ec9f50", "tid": 35568, "ts": 12256379, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d384b0", "tid": 35568, "ts": 12256569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916aea60", "tid": 35568, "ts": 12256755, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b7aa390", "tid": 35568, "ts": 12256770, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482c1e530", "tid": 35568, "ts": 12256978, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x2349535a9c0", "tid": 35568, "ts": 12257172, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234906d91b0", "tid": 35568, "ts": 12257187, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348c793bf0", "tid": 35568, "ts": 12257402, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234805b1e20", "tid": 35568, "ts": 12257597, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a033bb20", "tid": 35568, "ts": 12257614, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a0679610", "tid": 35568, "ts": 12258190, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483a1e2d0", "tid": 35568, "ts": 12258929, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a012bf80", "tid": 35568, "ts": 12258944, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234a33ec280", "tid": 35568, "ts": 12260293, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234a0c292f0", "tid": 35568, "ts": 12261793, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234bf4ab420", "tid": 35568, "ts": 12261815, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234acd67480", "tid": 35568, "ts": 12264550, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234bf272930", "tid": 35568, "ts": 12266420, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x234ae265720", "tid": 35568, "ts": 12266435, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234adea2bd0", "tid": 35568, "ts": 12269914, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e84d0", "tid": 35568, "ts": 12270308, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0a70", "tid": 35568, "ts": 12270662, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc05f0", "tid": 35568, "ts": 12272232, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0e60", "tid": 35568, "ts": 12272602, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae670", "tid": 35568, "ts": 12272955, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ace40", "tid": 35568, "ts": 12273310, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adfb0", "tid": 35568, "ts": 12273728, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae1f0", "tid": 35568, "ts": 12274117, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916adce0", "tid": 35568, "ts": 12274464, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234916ae4c0", "tid": 35568, "ts": 12274944, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8b8f0", "tid": 35568, "ts": 12275226, "pid": 35104 } ] } diff --git a/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json b/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json index 66754acac..94569835b 100644 --- a/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json +++ b/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35788, "ts": 17876266, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 17876023, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8b0a0", "tid": 35568, "ts": 17876044, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8b0a0", "tid": 35568, "ts": 17876238, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234ad450d10", "tid": 35568, "ts": 17876310, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7630", "tid": 35568, "ts": 17876454, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e77e0", "tid": 35568, "ts": 17878076, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7bd0", "tid": 35568, "ts": 17879672, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7870", "tid": 35568, "ts": 17879785, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e80e0", "tid": 35568, "ts": 17879900, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7c60", "tid": 35568, "ts": 17880135, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8200", "tid": 35568, "ts": 17880538, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 17881278, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e83b0", "tid": 35568, "ts": 17882865, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8320", "tid": 35568, "ts": 17884418, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b90", "tid": 35568, "ts": 17884525, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e85f0", "tid": 35568, "ts": 17884635, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8680", "tid": 35568, "ts": 17884844, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8710", "tid": 35568, "ts": 17885265, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e87a0", "tid": 35568, "ts": 17886047, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b00", "tid": 35568, "ts": 17888001, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc12e0", "tid": 35568, "ts": 17889803, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc10a0", "tid": 35568, "ts": 17889953, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0d40", "tid": 35568, "ts": 17890068, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 17890309, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc11c0", "tid": 35568, "ts": 17890760, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc08c0", "tid": 35568, "ts": 17891583, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0830", "tid": 35568, "ts": 17893179, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1400", "tid": 35568, "ts": 17894972, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0e60", "tid": 35568, "ts": 17895082, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 17895190, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0950", "tid": 35568, "ts": 17895394, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc09e0", "tid": 35568, "ts": 17895819, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1130", "tid": 35568, "ts": 17896604, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc05f0", "tid": 35568, "ts": 17898378, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1250", "tid": 35568, "ts": 17899957, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0a70", "tid": 35568, "ts": 17900064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0f80", "tid": 35568, "ts": 17900176, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1370", "tid": 35568, "ts": 17900382, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b00", "tid": 35568, "ts": 17900796, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1490", "tid": 35568, "ts": 17901579, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc07a0", "tid": 35568, "ts": 17903585, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0680", "tid": 35568, "ts": 17905227, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b90", "tid": 35568, "ts": 17905332, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0710", "tid": 35568, "ts": 17905438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd820", "tid": 35568, "ts": 17905657, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd310", "tid": 35568, "ts": 17906185, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe120", "tid": 35568, "ts": 17906964, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd3a0", "tid": 35568, "ts": 17908728, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebeea0", "tid": 35568, "ts": 17910281, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd670", "tid": 35568, "ts": 17910391, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdb80", "tid": 35568, "ts": 17910499, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd280", "tid": 35568, "ts": 17910706, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebf050", "tid": 35568, "ts": 17911118, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe090", "tid": 35568, "ts": 17911903, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebeb40", "tid": 35568, "ts": 17913491, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdee0", "tid": 35568, "ts": 17915022, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe990", "tid": 35568, "ts": 17915149, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe510", "tid": 35568, "ts": 17915281, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebda60", "tid": 35568, "ts": 17915526, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe5a0", "tid": 35568, "ts": 17915960, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe900", "tid": 35568, "ts": 17916886, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebddc0", "tid": 35568, "ts": 17918841, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe240", "tid": 35568, "ts": 17920772, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd1f0", "tid": 35568, "ts": 17920881, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebde50", "tid": 35568, "ts": 17920992, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebebd0", "tid": 35568, "ts": 17921200, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebec60", "tid": 35568, "ts": 17921639, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdf70", "tid": 35568, "ts": 17922422, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebef30", "tid": 35568, "ts": 17924075, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebecf0", "tid": 35568, "ts": 17925899, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe6c0", "tid": 35568, "ts": 17926015, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe480", "tid": 35568, "ts": 17926128, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd430", "tid": 35568, "ts": 17926368, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe1b0", "tid": 35568, "ts": 17926805, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd8b0", "tid": 35568, "ts": 17927624, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebefc0", "tid": 35568, "ts": 17929337, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe000", "tid": 35568, "ts": 17931188, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe750", "tid": 35568, "ts": 17931318, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe630", "tid": 35568, "ts": 17931465, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe2d0", "tid": 35568, "ts": 17931749, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebeab0", "tid": 35568, "ts": 17932233, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe7e0", "tid": 35568, "ts": 17933018, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe360", "tid": 35568, "ts": 17934862, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd160", "tid": 35568, "ts": 17936429, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd9d0", "tid": 35568, "ts": 17936551, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd4c0", "tid": 35568, "ts": 17936662, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebed80", "tid": 35568, "ts": 17936874, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdd30", "tid": 35568, "ts": 17937294, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234ad450d10", "tid": 35568, "ts": 17938008, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17938082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd550", "tid": 35568, "ts": 17938260, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17938575, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d64fd0", "tid": 35568, "ts": 17938591, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d64fd0", "tid": 35568, "ts": 17938622, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65cd0", "tid": 35568, "ts": 17938793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939325, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d65720", "tid": 35568, "ts": 17939338, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d65720", "tid": 35568, "ts": 17939365, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65e70", "tid": 35568, "ts": 17939484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939901, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d657f0", "tid": 35568, "ts": 17939914, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d657f0", "tid": 35568, "ts": 17939941, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d650a0", "tid": 35568, "ts": 17940049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17940216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdca0", "tid": 35568, "ts": 17940286, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17940519, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d66350", "tid": 35568, "ts": 17940532, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d66350", "tid": 35568, "ts": 17940563, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65f40", "tid": 35568, "ts": 17940671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65cd0", "tid": 35568, "ts": 17940873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17940990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17941286, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d65cd0", "tid": 35568, "ts": 17941299, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d65cd0", "tid": 35568, "ts": 17941326, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d660e0", "tid": 35568, "ts": 17941435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65e70", "tid": 35568, "ts": 17941610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17941718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d665c0", "tid": 35568, "ts": 17941839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942257, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d65170", "tid": 35568, "ts": 17942270, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d65170", "tid": 35568, "ts": 17942297, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65240", "tid": 35568, "ts": 17942405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65310", "tid": 35568, "ts": 17942699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d650a0", "tid": 35568, "ts": 17942842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65e70", "tid": 35568, "ts": 17943090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65f40", "tid": 35568, "ts": 17943244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65e70", "tid": 35568, "ts": 17943347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65310", "tid": 35568, "ts": 17943473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d665c0", "tid": 35568, "ts": 17943559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65240", "tid": 35568, "ts": 17943658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d660e0", "tid": 35568, "ts": 17943756, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234ad450d10", "tid": 35568, "ts": 17943834, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7630", "tid": 35568, "ts": 17944053, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 17944274, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e87a0", "tid": 35568, "ts": 17944928, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc08c0", "tid": 35568, "ts": 17945157, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1130", "tid": 35568, "ts": 17945688, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1490", "tid": 35568, "ts": 17945919, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe120", "tid": 35568, "ts": 17946148, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe090", "tid": 35568, "ts": 17946657, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe900", "tid": 35568, "ts": 17946894, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdf70", "tid": 35568, "ts": 17947447, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd8b0", "tid": 35568, "ts": 17947683, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe7e0", "tid": 35568, "ts": 17948145, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7bd0", "tid": 35568, "ts": 17948404, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7870", "tid": 35568, "ts": 17948413, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e80e0", "tid": 35568, "ts": 17948419, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7c60", "tid": 35568, "ts": 17948425, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8200", "tid": 35568, "ts": 17948430, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8320", "tid": 35568, "ts": 17948920, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b90", "tid": 35568, "ts": 17948929, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e85f0", "tid": 35568, "ts": 17948935, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8680", "tid": 35568, "ts": 17948941, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8710", "tid": 35568, "ts": 17948946, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc12e0", "tid": 35568, "ts": 17949173, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc10a0", "tid": 35568, "ts": 17949180, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0d40", "tid": 35568, "ts": 17949186, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 17949192, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc11c0", "tid": 35568, "ts": 17949198, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1400", "tid": 35568, "ts": 17949818, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0e60", "tid": 35568, "ts": 17949827, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 17949833, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0950", "tid": 35568, "ts": 17949839, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc09e0", "tid": 35568, "ts": 17949845, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1250", "tid": 35568, "ts": 17950301, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0a70", "tid": 35568, "ts": 17950309, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0f80", "tid": 35568, "ts": 17950315, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1370", "tid": 35568, "ts": 17950321, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b00", "tid": 35568, "ts": 17950327, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0680", "tid": 35568, "ts": 17950551, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b90", "tid": 35568, "ts": 17950559, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0710", "tid": 35568, "ts": 17950565, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd820", "tid": 35568, "ts": 17950571, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd310", "tid": 35568, "ts": 17950577, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebeea0", "tid": 35568, "ts": 17950999, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd670", "tid": 35568, "ts": 17951007, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdb80", "tid": 35568, "ts": 17951013, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd280", "tid": 35568, "ts": 17951019, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebf050", "tid": 35568, "ts": 17951025, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdee0", "tid": 35568, "ts": 17951430, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe990", "tid": 35568, "ts": 17951438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe510", "tid": 35568, "ts": 17951444, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebda60", "tid": 35568, "ts": 17951450, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe5a0", "tid": 35568, "ts": 17951456, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe240", "tid": 35568, "ts": 17951864, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd1f0", "tid": 35568, "ts": 17951872, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebde50", "tid": 35568, "ts": 17951878, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebebd0", "tid": 35568, "ts": 17951884, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebec60", "tid": 35568, "ts": 17951890, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebecf0", "tid": 35568, "ts": 17952278, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe6c0", "tid": 35568, "ts": 17952286, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe480", "tid": 35568, "ts": 17952292, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd430", "tid": 35568, "ts": 17952298, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe1b0", "tid": 35568, "ts": 17952304, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe000", "tid": 35568, "ts": 17952536, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe750", "tid": 35568, "ts": 17952544, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe630", "tid": 35568, "ts": 17952550, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe2d0", "tid": 35568, "ts": 17952556, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebeab0", "tid": 35568, "ts": 17952562, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd160", "tid": 35568, "ts": 17953043, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd9d0", "tid": 35568, "ts": 17953052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd4c0", "tid": 35568, "ts": 17953058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebed80", "tid": 35568, "ts": 17953064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdd30", "tid": 35568, "ts": 17953069, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d65170", "tid": 35568, "ts": 17953429, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e77e0", "tid": 35568, "ts": 17953708, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d65cd0", "tid": 35568, "ts": 17954276, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d657f0", "tid": 35568, "ts": 17954468, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e83b0", "tid": 35568, "ts": 17954645, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d65720", "tid": 35568, "ts": 17954660, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d64fd0", "tid": 35568, "ts": 17954842, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd550", "tid": 35568, "ts": 17955017, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d66350", "tid": 35568, "ts": 17955032, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdca0", "tid": 35568, "ts": 17955209, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b00", "tid": 35568, "ts": 17955604, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0830", "tid": 35568, "ts": 17955987, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc05f0", "tid": 35568, "ts": 17956491, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc07a0", "tid": 35568, "ts": 17956940, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd3a0", "tid": 35568, "ts": 17957374, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebeb40", "tid": 35568, "ts": 17957757, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebddc0", "tid": 35568, "ts": 17958205, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebef30", "tid": 35568, "ts": 17958628, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebefc0", "tid": 35568, "ts": 17959159, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe360", "tid": 35568, "ts": 17959632, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8b0a0", "tid": 35568, "ts": 17959801, "pid": 35104 } ] } +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35788, "ts": 17876266, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 17876023, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8b0a0", "tid": 35568, "ts": 17876044, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8b0a0", "tid": 35568, "ts": 17876238, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234ad450d10", "tid": 35568, "ts": 17876310, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7630", "tid": 35568, "ts": 17876454, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e77e0", "tid": 35568, "ts": 17878076, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7bd0", "tid": 35568, "ts": 17879672, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7870", "tid": 35568, "ts": 17879785, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e80e0", "tid": 35568, "ts": 17879900, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7c60", "tid": 35568, "ts": 17880135, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8200", "tid": 35568, "ts": 17880538, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 17881278, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e83b0", "tid": 35568, "ts": 17882865, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8320", "tid": 35568, "ts": 17884418, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b90", "tid": 35568, "ts": 17884525, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e85f0", "tid": 35568, "ts": 17884635, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8680", "tid": 35568, "ts": 17884844, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8710", "tid": 35568, "ts": 17885265, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e87a0", "tid": 35568, "ts": 17886047, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8b00", "tid": 35568, "ts": 17888001, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc12e0", "tid": 35568, "ts": 17889803, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc10a0", "tid": 35568, "ts": 17889953, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0d40", "tid": 35568, "ts": 17890068, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 17890309, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc11c0", "tid": 35568, "ts": 17890760, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc08c0", "tid": 35568, "ts": 17891583, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0830", "tid": 35568, "ts": 17893179, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1400", "tid": 35568, "ts": 17894972, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0e60", "tid": 35568, "ts": 17895082, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 17895190, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0950", "tid": 35568, "ts": 17895394, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc09e0", "tid": 35568, "ts": 17895819, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1130", "tid": 35568, "ts": 17896604, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc05f0", "tid": 35568, "ts": 17898378, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1250", "tid": 35568, "ts": 17899957, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0a70", "tid": 35568, "ts": 17900064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0f80", "tid": 35568, "ts": 17900176, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1370", "tid": 35568, "ts": 17900382, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b00", "tid": 35568, "ts": 17900796, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1490", "tid": 35568, "ts": 17901579, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc07a0", "tid": 35568, "ts": 17903585, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0680", "tid": 35568, "ts": 17905227, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b90", "tid": 35568, "ts": 17905332, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0710", "tid": 35568, "ts": 17905438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd820", "tid": 35568, "ts": 17905657, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd310", "tid": 35568, "ts": 17906185, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe120", "tid": 35568, "ts": 17906964, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd3a0", "tid": 35568, "ts": 17908728, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebeea0", "tid": 35568, "ts": 17910281, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd670", "tid": 35568, "ts": 17910391, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdb80", "tid": 35568, "ts": 17910499, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd280", "tid": 35568, "ts": 17910706, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebf050", "tid": 35568, "ts": 17911118, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe090", "tid": 35568, "ts": 17911903, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebeb40", "tid": 35568, "ts": 17913491, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdee0", "tid": 35568, "ts": 17915022, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe990", "tid": 35568, "ts": 17915149, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe510", "tid": 35568, "ts": 17915281, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebda60", "tid": 35568, "ts": 17915526, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe5a0", "tid": 35568, "ts": 17915960, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe900", "tid": 35568, "ts": 17916886, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebddc0", "tid": 35568, "ts": 17918841, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe240", "tid": 35568, "ts": 17920772, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd1f0", "tid": 35568, "ts": 17920881, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebde50", "tid": 35568, "ts": 17920992, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebebd0", "tid": 35568, "ts": 17921200, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebec60", "tid": 35568, "ts": 17921639, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdf70", "tid": 35568, "ts": 17922422, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebef30", "tid": 35568, "ts": 17924075, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebecf0", "tid": 35568, "ts": 17925899, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe6c0", "tid": 35568, "ts": 17926015, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe480", "tid": 35568, "ts": 17926128, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd430", "tid": 35568, "ts": 17926368, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe1b0", "tid": 35568, "ts": 17926805, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd8b0", "tid": 35568, "ts": 17927624, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebefc0", "tid": 35568, "ts": 17929337, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe000", "tid": 35568, "ts": 17931188, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe750", "tid": 35568, "ts": 17931318, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe630", "tid": 35568, "ts": 17931465, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe2d0", "tid": 35568, "ts": 17931749, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebeab0", "tid": 35568, "ts": 17932233, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe7e0", "tid": 35568, "ts": 17933018, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebe360", "tid": 35568, "ts": 17934862, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd160", "tid": 35568, "ts": 17936429, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd9d0", "tid": 35568, "ts": 17936551, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd4c0", "tid": 35568, "ts": 17936662, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebed80", "tid": 35568, "ts": 17936874, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdd30", "tid": 35568, "ts": 17937294, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234ad450d10", "tid": 35568, "ts": 17938008, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17938082, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebd550", "tid": 35568, "ts": 17938260, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17938575, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d64fd0", "tid": 35568, "ts": 17938591, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d64fd0", "tid": 35568, "ts": 17938622, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65cd0", "tid": 35568, "ts": 17938793, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939031, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939325, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d65720", "tid": 35568, "ts": 17939338, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d65720", "tid": 35568, "ts": 17939365, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65e70", "tid": 35568, "ts": 17939484, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939651, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17939901, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d657f0", "tid": 35568, "ts": 17939914, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d657f0", "tid": 35568, "ts": 17939941, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d650a0", "tid": 35568, "ts": 17940049, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17940216, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23483ebdca0", "tid": 35568, "ts": 17940286, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17940519, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d66350", "tid": 35568, "ts": 17940532, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d66350", "tid": 35568, "ts": 17940563, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65f40", "tid": 35568, "ts": 17940671, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65cd0", "tid": 35568, "ts": 17940873, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17940990, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17941286, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d65cd0", "tid": 35568, "ts": 17941299, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d65cd0", "tid": 35568, "ts": 17941326, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d660e0", "tid": 35568, "ts": 17941435, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65e70", "tid": 35568, "ts": 17941610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17941718, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d665c0", "tid": 35568, "ts": 17941839, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942006, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942257, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x23482d65170", "tid": 35568, "ts": 17942270, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x23482d65170", "tid": 35568, "ts": 17942297, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65240", "tid": 35568, "ts": 17942405, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942578, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65310", "tid": 35568, "ts": 17942699, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d650a0", "tid": 35568, "ts": 17942842, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 17942948, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x23482d65e70", "tid": 35568, "ts": 17943090, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65f40", "tid": 35568, "ts": 17943244, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65e70", "tid": 35568, "ts": 17943347, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65310", "tid": 35568, "ts": 17943473, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d665c0", "tid": 35568, "ts": 17943559, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d65240", "tid": 35568, "ts": 17943658, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x23482d660e0", "tid": 35568, "ts": 17943756, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234ad450d10", "tid": 35568, "ts": 17943834, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7630", "tid": 35568, "ts": 17944053, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 17944274, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e87a0", "tid": 35568, "ts": 17944928, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc08c0", "tid": 35568, "ts": 17945157, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1130", "tid": 35568, "ts": 17945688, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1490", "tid": 35568, "ts": 17945919, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe120", "tid": 35568, "ts": 17946148, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe090", "tid": 35568, "ts": 17946657, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe900", "tid": 35568, "ts": 17946894, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdf70", "tid": 35568, "ts": 17947447, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd8b0", "tid": 35568, "ts": 17947683, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe7e0", "tid": 35568, "ts": 17948145, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7bd0", "tid": 35568, "ts": 17948404, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7870", "tid": 35568, "ts": 17948413, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e80e0", "tid": 35568, "ts": 17948419, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7c60", "tid": 35568, "ts": 17948425, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8200", "tid": 35568, "ts": 17948430, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8320", "tid": 35568, "ts": 17948920, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b90", "tid": 35568, "ts": 17948929, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e85f0", "tid": 35568, "ts": 17948935, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8680", "tid": 35568, "ts": 17948941, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8710", "tid": 35568, "ts": 17948946, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc12e0", "tid": 35568, "ts": 17949173, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc10a0", "tid": 35568, "ts": 17949180, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0d40", "tid": 35568, "ts": 17949186, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 17949192, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc11c0", "tid": 35568, "ts": 17949198, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1400", "tid": 35568, "ts": 17949818, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0e60", "tid": 35568, "ts": 17949827, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 17949833, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0950", "tid": 35568, "ts": 17949839, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc09e0", "tid": 35568, "ts": 17949845, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1250", "tid": 35568, "ts": 17950301, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0a70", "tid": 35568, "ts": 17950309, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0f80", "tid": 35568, "ts": 17950315, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1370", "tid": 35568, "ts": 17950321, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b00", "tid": 35568, "ts": 17950327, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0680", "tid": 35568, "ts": 17950551, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b90", "tid": 35568, "ts": 17950559, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0710", "tid": 35568, "ts": 17950565, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd820", "tid": 35568, "ts": 17950571, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd310", "tid": 35568, "ts": 17950577, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebeea0", "tid": 35568, "ts": 17950999, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd670", "tid": 35568, "ts": 17951007, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdb80", "tid": 35568, "ts": 17951013, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd280", "tid": 35568, "ts": 17951019, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebf050", "tid": 35568, "ts": 17951025, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdee0", "tid": 35568, "ts": 17951430, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe990", "tid": 35568, "ts": 17951438, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe510", "tid": 35568, "ts": 17951444, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebda60", "tid": 35568, "ts": 17951450, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe5a0", "tid": 35568, "ts": 17951456, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe240", "tid": 35568, "ts": 17951864, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd1f0", "tid": 35568, "ts": 17951872, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebde50", "tid": 35568, "ts": 17951878, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebebd0", "tid": 35568, "ts": 17951884, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebec60", "tid": 35568, "ts": 17951890, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebecf0", "tid": 35568, "ts": 17952278, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe6c0", "tid": 35568, "ts": 17952286, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe480", "tid": 35568, "ts": 17952292, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd430", "tid": 35568, "ts": 17952298, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe1b0", "tid": 35568, "ts": 17952304, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe000", "tid": 35568, "ts": 17952536, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe750", "tid": 35568, "ts": 17952544, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe630", "tid": 35568, "ts": 17952550, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe2d0", "tid": 35568, "ts": 17952556, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebeab0", "tid": 35568, "ts": 17952562, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd160", "tid": 35568, "ts": 17953043, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd9d0", "tid": 35568, "ts": 17953052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd4c0", "tid": 35568, "ts": 17953058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebed80", "tid": 35568, "ts": 17953064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdd30", "tid": 35568, "ts": 17953069, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d65170", "tid": 35568, "ts": 17953429, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e77e0", "tid": 35568, "ts": 17953708, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d65cd0", "tid": 35568, "ts": 17954276, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d657f0", "tid": 35568, "ts": 17954468, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e83b0", "tid": 35568, "ts": 17954645, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d65720", "tid": 35568, "ts": 17954660, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d64fd0", "tid": 35568, "ts": 17954842, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd550", "tid": 35568, "ts": 17955017, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x23482d66350", "tid": 35568, "ts": 17955032, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebdca0", "tid": 35568, "ts": 17955209, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8b00", "tid": 35568, "ts": 17955604, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0830", "tid": 35568, "ts": 17955987, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc05f0", "tid": 35568, "ts": 17956491, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc07a0", "tid": 35568, "ts": 17956940, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebd3a0", "tid": 35568, "ts": 17957374, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebeb40", "tid": 35568, "ts": 17957757, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebddc0", "tid": 35568, "ts": 17958205, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebef30", "tid": 35568, "ts": 17958628, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebefc0", "tid": 35568, "ts": 17959159, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23483ebe360", "tid": 35568, "ts": 17959632, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8b0a0", "tid": 35568, "ts": 17959801, "pid": 35104 } ] } diff --git a/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json b/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json index 92652af2d..35ecf0ee8 100644 --- a/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json +++ b/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 21588, "ts": 18032335, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 18031971, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8abe0", "tid": 35568, "ts": 18032003, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8abe0", "tid": 35568, "ts": 18032207, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234fcdef020", "tid": 35568, "ts": 18032332, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e72d0", "tid": 35568, "ts": 18032504, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7cf0", "tid": 35568, "ts": 18034066, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8050", "tid": 35568, "ts": 18035615, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e80e0", "tid": 35568, "ts": 18035720, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8cb0", "tid": 35568, "ts": 18035829, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8ef0", "tid": 35568, "ts": 18036045, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8d40", "tid": 35568, "ts": 18036453, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8170", "tid": 35568, "ts": 18037186, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 18038728, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7750", "tid": 35568, "ts": 18040284, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8dd0", "tid": 35568, "ts": 18040392, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8320", "tid": 35568, "ts": 18040500, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8e60", "tid": 35568, "ts": 18040709, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e83b0", "tid": 35568, "ts": 18041128, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8440", "tid": 35568, "ts": 18041874, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e84d0", "tid": 35568, "ts": 18043688, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 18045638, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1400", "tid": 35568, "ts": 18045760, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1490", "tid": 35568, "ts": 18045866, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0d40", "tid": 35568, "ts": 18046073, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 18046486, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc05f0", "tid": 35568, "ts": 18047304, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0f80", "tid": 35568, "ts": 18048908, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0710", "tid": 35568, "ts": 18050523, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0680", "tid": 35568, "ts": 18050630, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b00", "tid": 35568, "ts": 18050737, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc07a0", "tid": 35568, "ts": 18050947, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0830", "tid": 35568, "ts": 18051371, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0e60", "tid": 35568, "ts": 18052145, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc08c0", "tid": 35568, "ts": 18053783, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc10a0", "tid": 35568, "ts": 18055477, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1130", "tid": 35568, "ts": 18055585, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc11c0", "tid": 35568, "ts": 18055693, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1250", "tid": 35568, "ts": 18055902, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc12e0", "tid": 35568, "ts": 18056326, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc09e0", "tid": 35568, "ts": 18057129, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1370", "tid": 35568, "ts": 18059409, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0950", "tid": 35568, "ts": 18061052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0a70", "tid": 35568, "ts": 18061157, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b90", "tid": 35568, "ts": 18061268, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65910", "tid": 35568, "ts": 18061478, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64dd0", "tid": 35568, "ts": 18062019, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d650a0", "tid": 35568, "ts": 18062814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d659a0", "tid": 35568, "ts": 18064357, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64cb0", "tid": 35568, "ts": 18065932, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65760", "tid": 35568, "ts": 18066041, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65d00", "tid": 35568, "ts": 18066149, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65f40", "tid": 35568, "ts": 18066358, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64c20", "tid": 35568, "ts": 18066771, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d657f0", "tid": 35568, "ts": 18067564, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65250", "tid": 35568, "ts": 18069133, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65a30", "tid": 35568, "ts": 18070707, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66330", "tid": 35568, "ts": 18070814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64e60", "tid": 35568, "ts": 18070922, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64f80", "tid": 35568, "ts": 18071140, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65880", "tid": 35568, "ts": 18071619, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64d40", "tid": 35568, "ts": 18072555, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65fd0", "tid": 35568, "ts": 18074247, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65ac0", "tid": 35568, "ts": 18076249, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64950", "tid": 35568, "ts": 18076357, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65b50", "tid": 35568, "ts": 18076466, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64ef0", "tid": 35568, "ts": 18076672, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66060", "tid": 35568, "ts": 18077085, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d652e0", "tid": 35568, "ts": 18077961, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d664e0", "tid": 35568, "ts": 18079569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65370", "tid": 35568, "ts": 18081140, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66210", "tid": 35568, "ts": 18081248, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d655b0", "tid": 35568, "ts": 18081354, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d662a0", "tid": 35568, "ts": 18081579, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65be0", "tid": 35568, "ts": 18082014, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65400", "tid": 35568, "ts": 18082800, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65c70", "tid": 35568, "ts": 18084386, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d663c0", "tid": 35568, "ts": 18086272, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65490", "tid": 35568, "ts": 18086421, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d660f0", "tid": 35568, "ts": 18086565, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d649e0", "tid": 35568, "ts": 18086813, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65640", "tid": 35568, "ts": 18087246, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65010", "tid": 35568, "ts": 18088021, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66180", "tid": 35568, "ts": 18089644, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65d90", "tid": 35568, "ts": 18091370, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64a70", "tid": 35568, "ts": 18091488, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65e20", "tid": 35568, "ts": 18091600, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65eb0", "tid": 35568, "ts": 18091812, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66450", "tid": 35568, "ts": 18092230, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234fcdef020", "tid": 35568, "ts": 18092944, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18093017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66600", "tid": 35568, "ts": 18093155, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18097281, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b508be0", "tid": 35568, "ts": 18097296, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b508be0", "tid": 35568, "ts": 18097331, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508560", "tid": 35568, "ts": 18097515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18097744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18101489, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b508b10", "tid": 35568, "ts": 18101502, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b508b10", "tid": 35568, "ts": 18101530, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b507860", "tid": 35568, "ts": 18101650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18101819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18102813, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b5076c0", "tid": 35568, "ts": 18102826, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b5076c0", "tid": 35568, "ts": 18102854, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508700", "tid": 35568, "ts": 18102964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18103131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64b90", "tid": 35568, "ts": 18103201, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18110252, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b507110", "tid": 35568, "ts": 18110266, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b507110", "tid": 35568, "ts": 18110298, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b507fb0", "tid": 35568, "ts": 18110408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508560", "tid": 35568, "ts": 18110610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18110729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18111774, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b507e10", "tid": 35568, "ts": 18111787, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b507e10", "tid": 35568, "ts": 18111814, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b5083c0", "tid": 35568, "ts": 18111923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b507860", "tid": 35568, "ts": 18112101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18112209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b507860", "tid": 35568, "ts": 18112331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18112500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18113674, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b5071e0", "tid": 35568, "ts": 18113687, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b5071e0", "tid": 35568, "ts": 18113714, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegmentGroup": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508080", "tid": 35568, "ts": 18113823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18113996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508cb0", "tid": 35568, "ts": 18114118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508700", "tid": 35568, "ts": 18114262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18114368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508d80", "tid": 35568, "ts": 18114506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b507fb0", "tid": 35568, "ts": 18114661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508d80", "tid": 35568, "ts": 18114765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508cb0", "tid": 35568, "ts": 18114892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b507860", "tid": 35568, "ts": 18114977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508080", "tid": 35568, "ts": 18115077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b5083c0", "tid": 35568, "ts": 18115176, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234fcdef020", "tid": 35568, "ts": 18115256, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e72d0", "tid": 35568, "ts": 18115473, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8170", "tid": 35568, "ts": 18115693, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8440", "tid": 35568, "ts": 18116342, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc05f0", "tid": 35568, "ts": 18116571, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0e60", "tid": 35568, "ts": 18117101, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc09e0", "tid": 35568, "ts": 18117333, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d650a0", "tid": 35568, "ts": 18117561, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d657f0", "tid": 35568, "ts": 18118081, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64d40", "tid": 35568, "ts": 18118319, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d652e0", "tid": 35568, "ts": 18118806, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65400", "tid": 35568, "ts": 18119093, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65010", "tid": 35568, "ts": 18119530, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8050", "tid": 35568, "ts": 18119788, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e80e0", "tid": 35568, "ts": 18119796, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8cb0", "tid": 35568, "ts": 18119802, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8ef0", "tid": 35568, "ts": 18119808, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8d40", "tid": 35568, "ts": 18119814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7750", "tid": 35568, "ts": 18120292, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8dd0", "tid": 35568, "ts": 18120301, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8320", "tid": 35568, "ts": 18120307, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8e60", "tid": 35568, "ts": 18120313, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e83b0", "tid": 35568, "ts": 18120318, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 18120796, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1400", "tid": 35568, "ts": 18120804, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1490", "tid": 35568, "ts": 18120810, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0d40", "tid": 35568, "ts": 18120816, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 18120822, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0710", "tid": 35568, "ts": 18121046, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0680", "tid": 35568, "ts": 18121054, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b00", "tid": 35568, "ts": 18121060, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc07a0", "tid": 35568, "ts": 18121066, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0830", "tid": 35568, "ts": 18121071, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc10a0", "tid": 35568, "ts": 18121601, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1130", "tid": 35568, "ts": 18121610, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc11c0", "tid": 35568, "ts": 18121616, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1250", "tid": 35568, "ts": 18121622, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc12e0", "tid": 35568, "ts": 18121628, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0950", "tid": 35568, "ts": 18121855, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0a70", "tid": 35568, "ts": 18121863, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b90", "tid": 35568, "ts": 18121869, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65910", "tid": 35568, "ts": 18121875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64dd0", "tid": 35568, "ts": 18121881, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64cb0", "tid": 35568, "ts": 18122334, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65760", "tid": 35568, "ts": 18122343, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65d00", "tid": 35568, "ts": 18122349, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65f40", "tid": 35568, "ts": 18122355, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64c20", "tid": 35568, "ts": 18122361, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65a30", "tid": 35568, "ts": 18122779, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66330", "tid": 35568, "ts": 18122787, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64e60", "tid": 35568, "ts": 18122793, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64f80", "tid": 35568, "ts": 18122799, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65880", "tid": 35568, "ts": 18122805, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65ac0", "tid": 35568, "ts": 18123200, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64950", "tid": 35568, "ts": 18123208, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65b50", "tid": 35568, "ts": 18123214, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64ef0", "tid": 35568, "ts": 18123220, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66060", "tid": 35568, "ts": 18123226, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65370", "tid": 35568, "ts": 18123618, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66210", "tid": 35568, "ts": 18123627, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d655b0", "tid": 35568, "ts": 18123633, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d662a0", "tid": 35568, "ts": 18123639, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65be0", "tid": 35568, "ts": 18123645, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d663c0", "tid": 35568, "ts": 18124037, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65490", "tid": 35568, "ts": 18124046, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d660f0", "tid": 35568, "ts": 18124052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d649e0", "tid": 35568, "ts": 18124058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65640", "tid": 35568, "ts": 18124064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65d90", "tid": 35568, "ts": 18124352, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64a70", "tid": 35568, "ts": 18124361, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65e20", "tid": 35568, "ts": 18124367, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65eb0", "tid": 35568, "ts": 18124373, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66450", "tid": 35568, "ts": 18124379, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b5071e0", "tid": 35568, "ts": 18124735, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7cf0", "tid": 35568, "ts": 18125012, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b507e10", "tid": 35568, "ts": 18125596, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b5076c0", "tid": 35568, "ts": 18125783, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 18125958, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b508b10", "tid": 35568, "ts": 18125973, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b508be0", "tid": 35568, "ts": 18126153, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66600", "tid": 35568, "ts": 18126326, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b507110", "tid": 35568, "ts": 18126340, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64b90", "tid": 35568, "ts": 18126525, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e84d0", "tid": 35568, "ts": 18126920, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0f80", "tid": 35568, "ts": 18127303, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc08c0", "tid": 35568, "ts": 18127804, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1370", "tid": 35568, "ts": 18128163, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d659a0", "tid": 35568, "ts": 18128695, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65250", "tid": 35568, "ts": 18129093, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65fd0", "tid": 35568, "ts": 18129548, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d664e0", "tid": 35568, "ts": 18129910, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65c70", "tid": 35568, "ts": 18130461, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66180", "tid": 35568, "ts": 18130957, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8abe0", "tid": 35568, "ts": 18131107, "pid": 35104 } ] } +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 21588, "ts": 18032335, "pid": 35104, "args": { "name": "GPGMM_ThreadBudgetChangeWorker" } }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 35568, "ts": 18031971, "pid": 35104, "args": { "name": "GPGMM_MainThread" } }, { "name": "ResidencyManager", "cat": "default", "ph": "N", "id": "0x234fcd8abe0", "tid": 35568, "ts": 18032003, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "O", "id": "0x234fcd8abe0", "tid": 35568, "ts": 18032207, "pid": 35104, "args": { "snapshot": { "IsUMA": 1, "Flags": 0, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "MaxPctOfVideoMemoryToBudget": 0.000000, "MinPctOfBudgetToReserve": 0.000000, "MaxBudgetInBytes": 0, "EvictSizeInBytes": 0, "InitialFenceValue": 0 } } }, { "name": "ResourceAllocator", "cat": "default", "ph": "N", "id": "0x234fcdef020", "tid": 35568, "ts": 18032332, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e72d0", "tid": 35568, "ts": 18032504, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7cf0", "tid": 35568, "ts": 18034066, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8050", "tid": 35568, "ts": 18035615, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e80e0", "tid": 35568, "ts": 18035720, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8cb0", "tid": 35568, "ts": 18035829, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8ef0", "tid": 35568, "ts": 18036045, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8d40", "tid": 35568, "ts": 18036453, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8170", "tid": 35568, "ts": 18037186, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8290", "tid": 35568, "ts": 18038728, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e7750", "tid": 35568, "ts": 18040284, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8dd0", "tid": 35568, "ts": 18040392, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8320", "tid": 35568, "ts": 18040500, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8e60", "tid": 35568, "ts": 18040709, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e83b0", "tid": 35568, "ts": 18041128, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e8440", "tid": 35568, "ts": 18041874, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234819e84d0", "tid": 35568, "ts": 18043688, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 18045638, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1400", "tid": 35568, "ts": 18045760, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1490", "tid": 35568, "ts": 18045866, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0d40", "tid": 35568, "ts": 18046073, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 18046486, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc05f0", "tid": 35568, "ts": 18047304, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0f80", "tid": 35568, "ts": 18048908, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0710", "tid": 35568, "ts": 18050523, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0680", "tid": 35568, "ts": 18050630, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b00", "tid": 35568, "ts": 18050737, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc07a0", "tid": 35568, "ts": 18050947, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0830", "tid": 35568, "ts": 18051371, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0e60", "tid": 35568, "ts": 18052145, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc08c0", "tid": 35568, "ts": 18053783, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc10a0", "tid": 35568, "ts": 18055477, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1130", "tid": 35568, "ts": 18055585, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc11c0", "tid": 35568, "ts": 18055693, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1250", "tid": 35568, "ts": 18055902, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc12e0", "tid": 35568, "ts": 18056326, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc09e0", "tid": 35568, "ts": 18057129, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc1370", "tid": 35568, "ts": 18059409, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0950", "tid": 35568, "ts": 18061052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0a70", "tid": 35568, "ts": 18061157, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x234fcdc0b90", "tid": 35568, "ts": 18061268, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65910", "tid": 35568, "ts": 18061478, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64dd0", "tid": 35568, "ts": 18062019, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d650a0", "tid": 35568, "ts": 18062814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d659a0", "tid": 35568, "ts": 18064357, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64cb0", "tid": 35568, "ts": 18065932, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65760", "tid": 35568, "ts": 18066041, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65d00", "tid": 35568, "ts": 18066149, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65f40", "tid": 35568, "ts": 18066358, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64c20", "tid": 35568, "ts": 18066771, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d657f0", "tid": 35568, "ts": 18067564, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65250", "tid": 35568, "ts": 18069133, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65a30", "tid": 35568, "ts": 18070707, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66330", "tid": 35568, "ts": 18070814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64e60", "tid": 35568, "ts": 18070922, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64f80", "tid": 35568, "ts": 18071140, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65880", "tid": 35568, "ts": 18071619, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64d40", "tid": 35568, "ts": 18072555, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65fd0", "tid": 35568, "ts": 18074247, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65ac0", "tid": 35568, "ts": 18076249, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64950", "tid": 35568, "ts": 18076357, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65b50", "tid": 35568, "ts": 18076466, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64ef0", "tid": 35568, "ts": 18076672, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66060", "tid": 35568, "ts": 18077085, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d652e0", "tid": 35568, "ts": 18077961, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d664e0", "tid": 35568, "ts": 18079569, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65370", "tid": 35568, "ts": 18081140, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66210", "tid": 35568, "ts": 18081248, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d655b0", "tid": 35568, "ts": 18081354, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d662a0", "tid": 35568, "ts": 18081579, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65be0", "tid": 35568, "ts": 18082014, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65400", "tid": 35568, "ts": 18082800, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65c70", "tid": 35568, "ts": 18084386, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d663c0", "tid": 35568, "ts": 18086272, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65490", "tid": 35568, "ts": 18086421, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d660f0", "tid": 35568, "ts": 18086565, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d649e0", "tid": 35568, "ts": 18086813, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65640", "tid": 35568, "ts": 18087246, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65010", "tid": 35568, "ts": 18088021, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66180", "tid": 35568, "ts": 18089644, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65d90", "tid": 35568, "ts": 18091370, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64a70", "tid": 35568, "ts": 18091488, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65e20", "tid": 35568, "ts": 18091600, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d65eb0", "tid": 35568, "ts": 18091812, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66450", "tid": 35568, "ts": 18092230, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "O", "id": "0x234fcdef020", "tid": 35568, "ts": 18092944, "pid": 35104, "args": { "snapshot": { "Flags": 6, "RecordOptions": { "Flags": 3, "MinMessageLevel": 3 }, "ResourceHeapTier": 2, "SubAllocationAlgorithm": 1, "PoolAlgorithm": 4, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 2147483647, "ResourceHeapFragmentationLimit": 0.125000, "ResourceHeapGrowthFactor": 1.250000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18093017, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d66600", "tid": 35568, "ts": 18093155, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18097281, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b508be0", "tid": 35568, "ts": 18097296, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b508be0", "tid": 35568, "ts": 18097331, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508560", "tid": 35568, "ts": 18097515, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18097744, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18101489, "pid": 35104, "args": { "Heap": { "SizeInBytes": 16777216, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b508b10", "tid": 35568, "ts": 18101502, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b508b10", "tid": 35568, "ts": 18101530, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 16777216, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b507860", "tid": 35568, "ts": 18101650, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18101819, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18102813, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b5076c0", "tid": 35568, "ts": 18102826, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b5076c0", "tid": 35568, "ts": 18102854, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508700", "tid": 35568, "ts": 18102964, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18103131, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "MemoryPool", "cat": "default", "ph": "N", "id": "0x23482d64b90", "tid": 35568, "ts": 18103201, "pid": 35104 }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18110252, "pid": 35104, "args": { "Heap": { "SizeInBytes": 33554432, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b507110", "tid": 35568, "ts": 18110266, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b507110", "tid": 35568, "ts": 18110298, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 33554432, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b507fb0", "tid": 35568, "ts": 18110408, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508560", "tid": 35568, "ts": 18110610, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18110729, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18111774, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b507e10", "tid": 35568, "ts": 18111787, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b507e10", "tid": 35568, "ts": 18111814, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b5083c0", "tid": 35568, "ts": 18111923, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b507860", "tid": 35568, "ts": 18112101, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18112209, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b507860", "tid": 35568, "ts": 18112331, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18112500, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "Heap.CreateHeap", "cat": "default", "ph": "i", "tid": 35568, "ts": 18113674, "pid": 35104, "args": { "Heap": { "SizeInBytes": 4194304, "Properties": { "Type": 4, "CPUPageProperty": 3, "MemoryPoolPreference": 1, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 65536, "Flags": 0 } } }, { "name": "Heap", "cat": "default", "ph": "N", "id": "0x2348b5071e0", "tid": 35568, "ts": 18113687, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "O", "id": "0x2348b5071e0", "tid": 35568, "ts": 18113714, "pid": 35104, "args": { "snapshot": { "SizeInBytes": 4194304, "Alignment": 65536, "Flags": 1, "HeapSegment": 0, "DebugName": "Resource heap" } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508080", "tid": 35568, "ts": 18113823, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18113996, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508cb0", "tid": 35568, "ts": 18114118, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508700", "tid": 35568, "ts": 18114262, "pid": 35104 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 35568, "ts": 18114368, "pid": 35104, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocation", "cat": "default", "ph": "N", "id": "0x2348b508d80", "tid": 35568, "ts": 18114506, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b507fb0", "tid": 35568, "ts": 18114661, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508d80", "tid": 35568, "ts": 18114765, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508cb0", "tid": 35568, "ts": 18114892, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b507860", "tid": 35568, "ts": 18114977, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b508080", "tid": 35568, "ts": 18115077, "pid": 35104 }, { "name": "ResourceAllocation", "cat": "default", "ph": "D", "id": "0x2348b5083c0", "tid": 35568, "ts": 18115176, "pid": 35104 }, { "name": "ResourceAllocator", "cat": "default", "ph": "D", "id": "0x234fcdef020", "tid": 35568, "ts": 18115256, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e72d0", "tid": 35568, "ts": 18115473, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8170", "tid": 35568, "ts": 18115693, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8440", "tid": 35568, "ts": 18116342, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc05f0", "tid": 35568, "ts": 18116571, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0e60", "tid": 35568, "ts": 18117101, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc09e0", "tid": 35568, "ts": 18117333, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d650a0", "tid": 35568, "ts": 18117561, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d657f0", "tid": 35568, "ts": 18118081, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64d40", "tid": 35568, "ts": 18118319, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d652e0", "tid": 35568, "ts": 18118806, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65400", "tid": 35568, "ts": 18119093, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65010", "tid": 35568, "ts": 18119530, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8050", "tid": 35568, "ts": 18119788, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e80e0", "tid": 35568, "ts": 18119796, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8cb0", "tid": 35568, "ts": 18119802, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8ef0", "tid": 35568, "ts": 18119808, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8d40", "tid": 35568, "ts": 18119814, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7750", "tid": 35568, "ts": 18120292, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8dd0", "tid": 35568, "ts": 18120301, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8320", "tid": 35568, "ts": 18120307, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8e60", "tid": 35568, "ts": 18120313, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e83b0", "tid": 35568, "ts": 18120318, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0ef0", "tid": 35568, "ts": 18120796, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1400", "tid": 35568, "ts": 18120804, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1490", "tid": 35568, "ts": 18120810, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0d40", "tid": 35568, "ts": 18120816, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0cb0", "tid": 35568, "ts": 18120822, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0710", "tid": 35568, "ts": 18121046, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0680", "tid": 35568, "ts": 18121054, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b00", "tid": 35568, "ts": 18121060, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc07a0", "tid": 35568, "ts": 18121066, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0830", "tid": 35568, "ts": 18121071, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc10a0", "tid": 35568, "ts": 18121601, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1130", "tid": 35568, "ts": 18121610, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc11c0", "tid": 35568, "ts": 18121616, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1250", "tid": 35568, "ts": 18121622, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc12e0", "tid": 35568, "ts": 18121628, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0950", "tid": 35568, "ts": 18121855, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0a70", "tid": 35568, "ts": 18121863, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0b90", "tid": 35568, "ts": 18121869, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65910", "tid": 35568, "ts": 18121875, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64dd0", "tid": 35568, "ts": 18121881, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64cb0", "tid": 35568, "ts": 18122334, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65760", "tid": 35568, "ts": 18122343, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65d00", "tid": 35568, "ts": 18122349, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65f40", "tid": 35568, "ts": 18122355, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64c20", "tid": 35568, "ts": 18122361, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65a30", "tid": 35568, "ts": 18122779, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66330", "tid": 35568, "ts": 18122787, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64e60", "tid": 35568, "ts": 18122793, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64f80", "tid": 35568, "ts": 18122799, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65880", "tid": 35568, "ts": 18122805, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65ac0", "tid": 35568, "ts": 18123200, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64950", "tid": 35568, "ts": 18123208, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65b50", "tid": 35568, "ts": 18123214, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64ef0", "tid": 35568, "ts": 18123220, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66060", "tid": 35568, "ts": 18123226, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65370", "tid": 35568, "ts": 18123618, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66210", "tid": 35568, "ts": 18123627, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d655b0", "tid": 35568, "ts": 18123633, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d662a0", "tid": 35568, "ts": 18123639, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65be0", "tid": 35568, "ts": 18123645, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d663c0", "tid": 35568, "ts": 18124037, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65490", "tid": 35568, "ts": 18124046, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d660f0", "tid": 35568, "ts": 18124052, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d649e0", "tid": 35568, "ts": 18124058, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65640", "tid": 35568, "ts": 18124064, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65d90", "tid": 35568, "ts": 18124352, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64a70", "tid": 35568, "ts": 18124361, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65e20", "tid": 35568, "ts": 18124367, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65eb0", "tid": 35568, "ts": 18124373, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66450", "tid": 35568, "ts": 18124379, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b5071e0", "tid": 35568, "ts": 18124735, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e7cf0", "tid": 35568, "ts": 18125012, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b507e10", "tid": 35568, "ts": 18125596, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b5076c0", "tid": 35568, "ts": 18125783, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e8290", "tid": 35568, "ts": 18125958, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b508b10", "tid": 35568, "ts": 18125973, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b508be0", "tid": 35568, "ts": 18126153, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66600", "tid": 35568, "ts": 18126326, "pid": 35104 }, { "name": "Heap", "cat": "default", "ph": "D", "id": "0x2348b507110", "tid": 35568, "ts": 18126340, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d64b90", "tid": 35568, "ts": 18126525, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234819e84d0", "tid": 35568, "ts": 18126920, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc0f80", "tid": 35568, "ts": 18127303, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc08c0", "tid": 35568, "ts": 18127804, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x234fcdc1370", "tid": 35568, "ts": 18128163, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d659a0", "tid": 35568, "ts": 18128695, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65250", "tid": 35568, "ts": 18129093, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65fd0", "tid": 35568, "ts": 18129548, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d664e0", "tid": 35568, "ts": 18129910, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d65c70", "tid": 35568, "ts": 18130461, "pid": 35104 }, { "name": "MemoryPool", "cat": "default", "ph": "D", "id": "0x23482d66180", "tid": 35568, "ts": 18130957, "pid": 35104 }, { "name": "ResidencyManager", "cat": "default", "ph": "D", "id": "0x234fcd8abe0", "tid": 35568, "ts": 18131107, "pid": 35104 } ] } diff --git a/src/tests/end2end/D3D12ResidencyManagerTests.cpp b/src/tests/end2end/D3D12ResidencyManagerTests.cpp index b28fad7ff..85a349270 100644 --- a/src/tests/end2end/D3D12ResidencyManagerTests.cpp +++ b/src/tests/end2end/D3D12ResidencyManagerTests.cpp @@ -70,16 +70,16 @@ class D3D12ResidencyManagerTests : public D3D12TestBase, public ::testing::Test } uint64_t GetBudgetLeft(IResidencyManager* residencyManager, - const DXGI_MEMORY_SEGMENT_GROUP& memorySegmentGroup) { + const DXGI_MEMORY_SEGMENT_GROUP& heapSegment) { DXGI_QUERY_VIDEO_MEMORY_INFO segment = {}; - residencyManager->QueryVideoMemoryInfo(memorySegmentGroup, &segment); + residencyManager->QueryVideoMemoryInfo(heapSegment, &segment); return (segment.Budget > segment.CurrentUsage) ? (segment.Budget - segment.CurrentUsage) : 0; } - DXGI_MEMORY_SEGMENT_GROUP GetMemorySegmentGroup(D3D12_HEAP_TYPE heapType) const { + DXGI_MEMORY_SEGMENT_GROUP GetHeapSegment(D3D12_HEAP_TYPE heapType) const { D3D12_HEAP_PROPERTIES heapProperties = mDevice->GetCustomHeapProperties(0, heapType); - return ::GetMemorySegmentGroup(heapProperties.MemoryPoolPreference, mCaps->IsAdapterUMA()); + return ::GetHeapSegment(heapProperties.MemoryPoolPreference, mCaps->IsAdapterUMA()); } bool IsResident(IResourceAllocation* pAllocation) const { @@ -143,7 +143,7 @@ TEST_F(D3D12ResidencyManagerTests, CreateResourceHeapNotResident) { HEAP_DESC resourceHeapAlwaysInBudgetDesc = {}; resourceHeapAlwaysInBudgetDesc.SizeInBytes = kHeapSize; - resourceHeapAlwaysInBudgetDesc.HeapSegmentGroup = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; + resourceHeapAlwaysInBudgetDesc.HeapSegment = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; resourceHeapAlwaysInBudgetDesc.Flags |= HEAP_FLAG_ALWAYS_IN_BUDGET; D3D12_HEAP_DESC heapDesc; @@ -181,7 +181,7 @@ TEST_F(D3D12ResidencyManagerTests, CreateResourceHeap) { HEAP_DESC resourceHeapDesc = {}; resourceHeapDesc.SizeInBytes = kHeapSize; - resourceHeapDesc.HeapSegmentGroup = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; + resourceHeapDesc.HeapSegment = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; ASSERT_FAILED(CreateHeap(resourceHeapDesc, residencyManager.Get(), BadCreateHeapCallbackContext::CreateHeap, @@ -253,7 +253,7 @@ TEST_F(D3D12ResidencyManagerTests, CreateDescriptorHeap) { HEAP_DESC descriptorHeapDesc = {}; descriptorHeapDesc.SizeInBytes = heapDesc.NumDescriptors * mDevice->GetDescriptorHandleIncrementSize(heapDesc.Type); - descriptorHeapDesc.HeapSegmentGroup = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; + descriptorHeapDesc.HeapSegment = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; CreateDescHeapCallbackContext createDescHeapCallbackContext(mDevice.Get(), heapDesc); @@ -307,7 +307,7 @@ TEST_F(D3D12ResidencyManagerTests, CreateDescriptorHeapAlwaysResident) { HEAP_DESC descriptorHeapDesc = {}; descriptorHeapDesc.SizeInBytes = heapDesc.NumDescriptors * mDevice->GetDescriptorHandleIncrementSize(heapDesc.Type); - descriptorHeapDesc.HeapSegmentGroup = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; + descriptorHeapDesc.HeapSegment = DXGI_MEMORY_SEGMENT_GROUP_LOCAL; descriptorHeapDesc.Flags |= HEAP_FLAG_ALWAYS_IN_RESIDENCY; CreateDescHeapCallbackContext createDescHeapCallbackContext(mDevice.Get(), heapDesc); @@ -510,8 +510,7 @@ TEST_F(D3D12ResidencyManagerTests, OverBudget) { // Budget updates are not occuring frequently enough to detect going over budget will evict the // same amount. - if (GetBudgetLeft(residencyManager.Get(), - GetMemorySegmentGroup(bufferAllocationDesc.HeapType)) > 0) { + if (GetBudgetLeft(residencyManager.Get(), GetHeapSegment(bufferAllocationDesc.HeapType)) > 0) { return; } @@ -548,7 +547,7 @@ TEST_F(D3D12ResidencyManagerTests, OverBudgetAsync) { bufferAllocationDesc.HeapType = D3D12_HEAP_TYPE_DEFAULT; const DXGI_MEMORY_SEGMENT_GROUP bufferMemorySegment = - GetMemorySegmentGroup(bufferAllocationDesc.HeapType); + GetHeapSegment(bufferAllocationDesc.HeapType); const uint64_t memoryUnderBudget = GetBudgetLeft(residencyManager.Get(), bufferMemorySegment); @@ -656,8 +655,7 @@ TEST_F(D3D12ResidencyManagerTests, OverBudgetWithLockedHeaps) { // Budget updates are not occuring frequently enough to detect going over budget will evict the // same amount. - if (GetBudgetLeft(residencyManager.Get(), - GetMemorySegmentGroup(bufferAllocationDesc.HeapType)) > 0) { + if (GetBudgetLeft(residencyManager.Get(), GetHeapSegment(bufferAllocationDesc.HeapType)) > 0) { return; } @@ -713,7 +711,7 @@ TEST_F(D3D12ResidencyManagerTests, OverBudgetExecuteCommandList) { // Budget updates are not occuring frequently enough to detect going over budget will evict the // same amount. - if (GetBudgetLeft(residencyManager.Get(), GetMemorySegmentGroup(D3D12_HEAP_TYPE_DEFAULT)) > 0) { + if (GetBudgetLeft(residencyManager.Get(), GetHeapSegment(D3D12_HEAP_TYPE_DEFAULT)) > 0) { return; } @@ -839,7 +837,7 @@ TEST_F(D3D12ResidencyManagerTests, OverBudgetImported) { // Budget updates are not occuring frequently enough to detect going over budget will evict the // same amount. - if (GetBudgetLeft(residencyManager.Get(), GetMemorySegmentGroup(D3D12_HEAP_TYPE_DEFAULT)) > 0) { + if (GetBudgetLeft(residencyManager.Get(), GetHeapSegment(D3D12_HEAP_TYPE_DEFAULT)) > 0) { return; }